while adding my project to ss3.gemstone.com/ss but when I do commit in monticello I get following error "ZnHttpUnsuccessful : 501 Not Implemented"
Asked
Active
Viewed 103 times
2
-
Can you include from which Smalltalk (Pharo, Squeak, Gemstone,...) you are trying to upload. Also: include the full definition of the repository in monticello (the text you see when selecting 'edit repository) – Johan B Apr 13 '13 at 07:10
-
I tried in pharo 1.4 we are using it for coursework. also the repo info is MCGemstoneRepository location: 'http://ss3.gemstone.com/ss/' user: '**' password: '***' – j10 Apr 13 '13 at 22:34
1 Answers
6
You need to specify the repository where you want to push to in your url. Your url points to the squeaksource base url, which is not valid.
For example:
MCGemstoneRepository
location: 'http://ss3.gemstone.com/ss/MyProject'
user: ''
password: ''

Johan B
- 2,461
- 14
- 16
-
thanks a lot. it works !!!
@Johan B : could you please take a look here : http://stackoverflow.com/questions/16004435/seaside-2-events-on-html-anchor – j10 Apr 14 '13 at 21:51