From chris at chrisburkert.de Sun May 2 15:35:08 2004 From: chris at chrisburkert.de (Chris Burkert) Date: Sun, 02 May 2004 15:35:08 +0200 Subject: Adding action to template? In-Reply-To: <408F7140.1010503@squeakland.org> References: <408E7F0A.3020906@squeakland.org> <2B11981D-9863-11D8-BE22-000393CFE6C8@student.unibe.ch> <408E8854.4030708@squeakland.org> <89026FE7-988A-11D8-BE22-000393CFE6C8@student.unibe.ch> <408F6993.1040109@squeakland.org> <02705E35-98F0-11D8-BE22-000393CFE6C8@student.unibe.ch> <408F7140.1010503@squeakland.org> Message-ID: <4094F90C.7060804@chrisburkert.de> Hi, I came back from Turkey this weekend, so please sorry for the late reply. This reply addresses everybody who reads it ... not just Michael. Michael Rueger wrote: >> I suspect that there is a bug in the admin-interface of SmallWiki for >> Squeak, as I cannot reproduce it in VisualWorks. > > I was afraid you were going to say something like that. > > BTW, what is the schedule/method to backport stuff into the squeak version? I have currently not the time to look at the problem, but *maybe* in 2 weeks. The current Squeak version is 0.9.23 which is a old one, but there were no bugs reported in the last weeks. The Admin stuff is not included in this version. Generelly I have no schedule to sync both ports. I just work on it when I have the time. I know about 5-10 people which use the squeak port. If you want a better support then I would advise you to use the VisualWorks version :) I generally would be happy if somebody could co-maintain the squeak-port or even supplant me. It is not so much work to (about 5 hours a month not included the time to read and learn about this and that). I definitely finish this work september 2004. The reason why I started it was to learn about it. I've learned much :) So if somebody has the time ... I would be happy! Regards Chris Burkert -- http://www.chrisburkert.de/ From chris at chrisburkert.de Mon May 3 07:44:16 2004 From: chris at chrisburkert.de (Chris Burkert) Date: Mon, 03 May 2004 07:44:16 +0200 Subject: [Q] How to transfer data from an old to a new image Message-ID: <4095DC30.1020707@chrisburkert.de> Hi, I have to transfer data from an old to a new image, including the content of the pages, user accounts and roles, uploaded files ... What is the best way to do this? Regards Chris Burkert -- http://www.chrisburkert.de/ From renggli at student.unibe.ch Mon May 3 09:06:51 2004 From: renggli at student.unibe.ch (Lukas Renggli) Date: Mon, 3 May 2004 09:06:51 +0200 Subject: [Q] How to transfer data from an old to a new image In-Reply-To: <4095DC30.1020707@chrisburkert.de> References: <4095DC30.1020707@chrisburkert.de> Message-ID: <73A520DD-9CD0-11D8-A130-000393CFE6C8@student.unibe.ch> Hi Chris, > I have to transfer data from an old to a new image, including the > content of the pages, user accounts and roles, uploaded files ... SIXX was made for this, but I have to admit that I haven't used it for about one year, so I don't know if it still works. For Squeak a good and easy solution would be to use ReferenceStreams. Try something like this: " save " stream := ReferenceStream fileNamed: 'smallwiki.obj'. stream nextPut: server root. stream close. " load " stream := ReferenceStream fileNamed: 'smallwiki.obj'. server root: stream next. stream close. Maybe one could even implement a tiny storage-strategy in Squeak to support ReferenceStreams by default. Cheers, Lukas -- Lukas Renggli http://renggli.freezope.org From vogel at iam.unibe.ch Mon May 3 10:13:19 2004 From: vogel at iam.unibe.ch (david vogel) Date: Mon, 03 May 2004 10:13:19 +0200 Subject: [Q] How to transfer data from an old to a new image In-Reply-To: <73A520DD-9CD0-11D8-A130-000393CFE6C8@student.unibe.ch> References: <4095DC30.1020707@chrisburkert.de> <73A520DD-9CD0-11D8-A130-000393CFE6C8@student.unibe.ch> Message-ID: <4095FF1F.9000509@iam.unibe.ch> hi, in visualworks, another way could be using a bos (BinaryObjectStorage) file. there is an example by ivan tomek at http://www.whysmalltalk.com/tutorials/intro_visual_small.htm cheers, david. Lukas Renggli wrote: > Hi Chris, > >> I have to transfer data from an old to a new image, including the >> content of the pages, user accounts and roles, uploaded files ... > > > SIXX was made for this, but I have to admit that I haven't used it for > about one year, so I don't know if it still works. > > For Squeak a good and easy solution would be to use ReferenceStreams. > Try something like this: > > " save " > stream := ReferenceStream fileNamed: 'smallwiki.obj'. > stream nextPut: server root. > stream close. > > " load " > stream := ReferenceStream fileNamed: 'smallwiki.obj'. > server root: stream next. > stream close. > > Maybe one could even implement a tiny storage-strategy in Squeak to > support ReferenceStreams by default. > > Cheers, > Lukas > From vogel at iam.unibe.ch Mon May 3 15:06:29 2004 From: vogel at iam.unibe.ch (david vogel) Date: Mon, 03 May 2004 15:06:29 +0200 Subject: roles/users management interface Message-ID: <409643D5.7020105@iam.unibe.ch> hi, there are two management interfaces for smallwiki available at cincom store: 1) SmallWiki Admin Default: interface to the original security model of smallwiki. easy to use and understand 2) SmallWiki Admin: interface to the extended security model of smallwiki. more complex. 1) functionality of default interface: ====================== - create/delete users - assign roles to users - create/delete roles - assign permissions to roles restrictions that apply via the interface: - an admin can only assign those roles to users that he has created himself or that he owns himself. - an admin can only delete the roles that he has created himself. - an admin can only delete users that he has created himself. - an admin can only assign those permissions to a role that he owns himself. - BUT: an admin can redefine any role he wants to. therefore he is able to remove permissions from some other admin roles! modification to original model: - when a user visits the root of the wiki tree, the permissions of his role(s) are removed (cleanup). (this is necessary when a role is not defined at the root of the wiki tree, but at some 'lower' level in the tree.) 2) functionality of extended interface: ======================== - create/delete users - assign roles to users - create/delete roles - assign permissions to roles - create a barrier role in order to stop the acquisition mechanism for the other roles at the same level. restrictions that apply via the interface: - an admin can only manage roles and users that he has created himself. - an admin can only manage permissions that he owns himself. i.e., he can only add/remove those permissions that he owns. modification to the original model: - the computation of roles is done in a different way (using some sort of acquisition that is similar to the zope model) FAQ: ==== 1) when should I use the interface 1? => when just one administrator is managing the wiki site. 2) when should I use the interface 2? => when you have several administrators, that are responsible for 'their' part (structures, roles, users) of the wiki site. documentation: ========== - the documentation (the difference of the two models are explained and discussed) of these two models is available at: http://www.iam.unibe.ch/~scg/smallwiki/smallwiki_models_description.pdf - the management interface to the default securtity model described in this docmentation (smallwiki_models_description.pdf) is already enhanced: - an admin can only assign those roles to users that he has created himself or that he owns himself. - an admin can only delete the roles that he has created himself. - an admin can only delete users that he has created himself. - an admin can only assign those permissions to a role that he owns himself. cheers, david. From vogel at iam.unibe.ch Mon May 3 17:03:05 2004 From: vogel at iam.unibe.ch (david vogel) Date: Mon, 03 May 2004 17:03:05 +0200 Subject: roles/users management interface In-Reply-To: <409643D5.7020105@iam.unibe.ch> References: <409643D5.7020105@iam.unibe.ch> Message-ID: <40965F29.9000703@iam.unibe.ch> hi, notes concerning images, css, and javascript in order to make use of the overview functions and to include the images and style sheets, I refer to the section 'Accessing the Admin Advanced Interface' in the appendix "SMALLWIKI IN A NUTSHELL" of the documentation: http://www.iam.unibe.ch/~scg/smallwiki/smallwiki_models_description.pdf cheers, david. ps. the interface works properly without these css and javascript, but some nice functionality (collabsible wiki tree etc.) will get lost :-( david vogel wrote: > hi, > > there are two management interfaces for smallwiki available at cincom > store: > > 1) SmallWiki Admin Default: interface to the original security model > of smallwiki. easy to use and understand > 2) SmallWiki Admin: interface to the extended security model of > smallwiki. more complex. > > 1) functionality of default interface: > ====================== > - create/delete users > - assign roles to users > > - create/delete roles > - assign permissions to roles > > restrictions that apply via the interface: > - an admin can only assign those roles to users that he has created > himself or that he owns himself. > - an admin can only delete the roles that he has created himself. > - an admin can only delete users that he has created himself. > - an admin can only assign those permissions to a role that he owns > himself. > - BUT: an admin can redefine any role he wants to. therefore he is > able to remove permissions from some other admin roles! > > > modification to original model: > - when a user visits the root of the wiki tree, the permissions of his > role(s) are removed (cleanup). > (this is necessary when a role is not defined at the root of the > wiki tree, but at some 'lower' level in the tree.) > > 2) functionality of extended interface: > ======================== > - create/delete users > - assign roles to users > > - create/delete roles > - assign permissions to roles > > - create a barrier role in order to stop the acquisition mechanism for > the other roles at the same level. > > restrictions that apply via the interface: > - an admin can only manage roles and users that he has created himself. > - an admin can only manage permissions that he owns himself. i.e., he > can only add/remove those permissions that he owns. > > modification to the original model: > - the computation of roles is done in a different way (using some sort > of acquisition that is similar to the zope model) > > > FAQ: > ==== > 1) when should I use the interface 1? > => when just one administrator is managing the wiki site. > > 2) when should I use the interface 2? > => when you have several administrators, that are responsible for > 'their' part (structures, roles, users) of the wiki site. > > documentation: > ========== > - the documentation (the difference of the two models are explained > and discussed) of these two models is available at: > http://www.iam.unibe.ch/~scg/smallwiki/smallwiki_models_description.pdf > > - the management interface to the default securtity model described in > this docmentation (smallwiki_models_description.pdf) is already > enhanced: > - an admin can only assign those roles to users that he has created > himself or that he owns himself. > - an admin can only delete the roles that he has created himself. > - an admin can only delete users that he has created himself. > - an admin can only assign those permissions to a role that he owns > himself. > > > cheers, > david. > > > > > > > > From bergel at iam.unibe.ch Wed May 5 10:12:55 2004 From: bergel at iam.unibe.ch (Alexandre Bergel) Date: Wed, 5 May 2004 10:12:55 +0200 Subject: Smallwiki issue Message-ID: <20040505081255.GA25372@iam.unibe.ch> Hi! What is the meaning of the following: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= !Contents of this Site [ "If you are not logged-in as administrator, please remove everything between the square-brackets before saving the page!" structure renderListOfChildrenOn: html ] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= I understand they are intended to render all the children of a folder. However it make people to wonder about it. Its meaning is not obvious. For instance Michele called me because of this 3 lines. Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.iam.unibe.ch/~bergel ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. From renggli at student.unibe.ch Wed May 5 10:35:23 2004 From: renggli at student.unibe.ch (Lukas Renggli) Date: Wed, 5 May 2004 10:35:23 +0200 Subject: Smallwiki issue In-Reply-To: <20040505081255.GA25372@iam.unibe.ch> References: <20040505081255.GA25372@iam.unibe.ch> Message-ID: <26C76FA6-9E6F-11D8-A130-000393CFE6C8@student.unibe.ch> > What is the meaning of the following: > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > !Contents of this Site > [ "If you are not logged-in as administrator, please remove everything > between the square-brackets before saving the page!" > structure renderListOfChildrenOn: html ] > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > > I understand they are intended to render all the children of a folder. > However it make people to wonder about it. Its meaning is not obvious. > For instance Michele called me because of this 3 lines. By default a folder renders a list of its children, but since folders contain a documents as well the default behavior had to be mimicked like this. Most people probably don't ever modify the body of a folder anyway, so i think they would be lost if they get an empty web-page there. The comment should help, because if you try to modify and save this folder whilst not logged in as admin, you get an error as you are not allowed to compile Smalltalk blocks. I'm open to proposals of better and more obvious solutions, however I don't have time to do any coding in the near future. Cheers, Lukas -- Lukas Renggli http://renggli.freezope.org From renggli at student.unibe.ch Wed May 5 10:43:39 2004 From: renggli at student.unibe.ch (Lukas Renggli) Date: Wed, 5 May 2004 10:43:39 +0200 Subject: Fwd: i18n for VW SmallWiki Message-ID: <4E1E042F-9E70-11D8-A130-000393CFE6C8@student.unibe.ch> Hi, > That is a strange error. I couldn't recover it. I use VW7.2, same > as you. Anyway, please try more primitive way. Here is a changeset > version. loading SmallWikiI18N from the changeset worked nicely. The web-interface seem to run fine, but unfortunately there are 12 tests suddenly failing. What is more, there are no tests that cover the added functionality. Maybe you (or somebody else) could have a look at those problems? Currently I'm too flooded with other things, therefor I'm unable to spend much time on SmallWiki. Cheers, Lukas -- Lukas Renggli http://renggli.freezope.org From yokokawa at logical.design.co.jp Wed May 5 12:22:54 2004 From: yokokawa at logical.design.co.jp (Koji Yokokawa) Date: Wed, 05 May 2004 19:22:54 +0900 Subject: i18n for VW SmallWiki In-Reply-To: <4E1E042F-9E70-11D8-A130-000393CFE6C8@student.unibe.ch> References: <4E1E042F-9E70-11D8-A130-000393CFE6C8@student.unibe.ch> Message-ID: <20040505190004.A770.YOKOKAWA@logical.design.co.jp> OK, I'll check the failed tests at this weekend. BTW, my last mail to this ML was lost. The changeset file was attached on the mail. Is attachment banned in this ML? On Wed, 5 May 2004 10:43:39 +0200 Lukas Renggli wrote: > Hi, > > > That is a strange error. I couldn't recover it. I use VW7.2, same > > as you. Anyway, please try more primitive way. Here is a changeset > > version. > > loading SmallWikiI18N from the changeset worked nicely. The > web-interface seem to run fine, but unfortunately there are 12 tests > suddenly failing. What is more, there are no tests that cover the added > functionality. > > Maybe you (or somebody else) could have a look at those problems? > Currently I'm too flooded with other things, therefor I'm unable to > spend much time on SmallWiki. > > Cheers, > Lukas > > -- > Lukas Renggli > http://renggli.freezope.org -- Koji Yokokawa http://yengawa.webhop.org/ From renggli at student.unibe.ch Wed May 5 12:54:01 2004 From: renggli at student.unibe.ch (Lukas Renggli) Date: Wed, 5 May 2004 12:54:01 +0200 Subject: SORRY - Flood of Mails In-Reply-To: <20040505190004.A770.YOKOKAWA@logical.design.co.jp> References: <4E1E042F-9E70-11D8-A130-000393CFE6C8@student.unibe.ch> <20040505190004.A770.YOKOKAWA@logical.design.co.jp> Message-ID: <84DA00AC-9E82-11D8-A130-000393CFE6C8@student.unibe.ch> > BTW, my last mail to this ML was lost. The changeset file was attached > on the mail. Is attachment banned in this ML? Thanks for pointing out this problem, I checked with in the mailing-list settings and there were a couple of mails pending, obviously all containing attachments. SOME OF THESE MAILS ARE REALLY OLD, IGNORE THEM :) I don't know how to handle this with majordomo, I never received a request for approving these mails and don't know how to let them send automatically. Sorry for the inconvenience! Cheers, Lukas -- Lukas Renggli http://renggli.freezope.org From ducasse at iam.unibe.ch Wed May 5 19:48:34 2004 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Wed, 5 May 2004 19:48:34 +0200 Subject: Help button on the mainpage? In-Reply-To: <5369E546-1372-11D8-9C8F-000A958C4F3C@iam.unibe.ch> References: <5369E546-1372-11D8-9C8F-000A958C4F3C@iam.unibe.ch> Message-ID: <6DF9F85B-9EBC-11D8-811E-000A9573EAE2@iam.unibe.ch> On 10 nov. 03, at 12:37, Markus G?lli wrote: > Maybe I am blind, but this should really be there, no? Yes for the syntax for the syntax you should click on the syntax hyperlink. I always forget it is there :) Stef > > Thanks, > > markus > From ducasse at iam.unibe.ch Wed May 5 19:51:05 2004 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Wed, 5 May 2004 19:51:05 +0200 Subject: SORRY - Flood of Mails In-Reply-To: <84DA00AC-9E82-11D8-A130-000393CFE6C8@student.unibe.ch> References: <4E1E042F-9E70-11D8-A130-000393CFE6C8@student.unibe.ch> <20040505190004.A770.YOKOKAWA@logical.design.co.jp> <84DA00AC-9E82-11D8-A130-000393CFE6C8@student.unibe.ch> Message-ID: No problem it was fun to see some old one about the css. :) Stef On 5 mai 04, at 12:54, Lukas Renggli wrote: >> BTW, my last mail to this ML was lost. The changeset file was >> attached on the mail. Is attachment banned in this ML? > > Thanks for pointing out this problem, I checked with in the > mailing-list settings and there were a couple of mails pending, > obviously all containing attachments. > > SOME OF THESE MAILS ARE REALLY OLD, IGNORE THEM :) > > I don't know how to handle this with majordomo, I never received a > request for approving these mails and don't know how to let them send > automatically. > > Sorry for the inconvenience! > > Cheers, > Lukas > > -- > Lukas Renggli > http://renggli.freezope.org > From michael at squeakland.org Thu May 6 11:35:00 2004 From: michael at squeakland.org (Michael Rueger) Date: Thu, 06 May 2004 11:35:00 +0200 Subject: SORRY - Flood of Mails In-Reply-To: <84DA00AC-9E82-11D8-A130-000393CFE6C8@student.unibe.ch> References: <4E1E042F-9E70-11D8-A130-000393CFE6C8@student.unibe.ch> <20040505190004.A770.YOKOKAWA@logical.design.co.jp> <84DA00AC-9E82-11D8-A130-000393CFE6C8@student.unibe.ch> Message-ID: <409A06C4.4070702@squeakland.org> Lukas Renggli wrote: > I don't know how to handle this with majordomo, I never received a > request for approving these mails and don't know how to let them send > automatically. You should switch to mailman. It is much better to maintain and easier to handle for subscribers as well. We used majordomo for squeakland and it never really worked that well. Michael From ducasse at iam.unibe.ch Fri May 14 11:03:35 2004 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Fri, 14 May 2004 11:03:35 +0200 Subject: how to add smallwiki in a rss feed Message-ID: <952F8238-A585-11D8-8FE5-000A9573EAE2@iam.unibe.ch> hi lukas I tried to add http://kilana.unibe.ch:9090/?action=RSSChangesFeed to a rss feed reader and it did not work. I guess that this is because the action RSSchangesFeed is not enable at the top level. Is it right? should we add it on each local wiki? Stef From ducasse at iam.unibe.ch Fri May 14 11:04:34 2004 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Fri, 14 May 2004 11:04:34 +0200 Subject: SmallWiki rssfeed Message-ID: http://kilana.unibe.ch:9090/?action=RSSChangesFeed I got an XML parsing error. Any ideas how to fix? From avanos at xs4all.nl Fri May 14 11:05:53 2004 From: avanos at xs4all.nl (Adriaan van Os) Date: Fri, 14 May 2004 11:05:53 +0200 (CEST) Subject: SmallWiki rssfeed In-Reply-To: References: Message-ID: <13417.62.58.162.194.1084525553.squirrel@webmail.xs4all.nl> Hi Stephane, Special characters in the title of a structure break the rss generation. This is a known problem. Cheers, Adriaan. > http://kilana.unibe.ch:9090/?action=RSSChangesFeed > I got an XML parsing error. Any ideas how to fix? > > From avanos at xs4all.nl Fri May 14 11:59:45 2004 From: avanos at xs4all.nl (Adriaan van Os) Date: Fri, 14 May 2004 11:59:45 +0200 (CEST) Subject: SmallWiki rssfeed In-Reply-To: References: <13417.62.58.162.194.1084525553.squirrel@webmail.xs4all.nl> Message-ID: <19697.62.58.162.194.1084528785.squirrel@webmail.xs4all.nl> You are using an escape sequence in 'Comité d'Organisation' and unfortunately an & also breaks the rss generation. Therefor, I dont know how to workaround it except then not using those characters in titles. Adriaan. > But this is strange because the title of our wiki is lmo2005 so I do > not see how we can have strange character. Do you know a fix? > > Stef > > On 14 mai 04, at 11:05, Adriaan van Os wrote: > >> Hi Stephane, >> >> Special characters in the title of a structure break the rss >> generation. >> This is a known problem. >> >> Cheers, >> Adriaan. >> >>> http://kilana.unibe.ch:9090/?action=RSSChangesFeed >>> I got an XML parsing error. Any ideas how to fix? >>> >>> >> > > From ducasse at iam.unibe.ch Fri May 14 11:54:41 2004 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Fri, 14 May 2004 11:54:41 +0200 Subject: SmallWiki rssfeed In-Reply-To: <13417.62.58.162.194.1084525553.squirrel@webmail.xs4all.nl> References: <13417.62.58.162.194.1084525553.squirrel@webmail.xs4all.nl> Message-ID: But this is strange because the title of our wiki is lmo2005 so I do not see how we can have strange character. Do you know a fix? Stef On 14 mai 04, at 11:05, Adriaan van Os wrote: > Hi Stephane, > > Special characters in the title of a structure break the rss > generation. > This is a known problem. > > Cheers, > Adriaan. > >> http://kilana.unibe.ch:9090/?action=RSSChangesFeed >> I got an XML parsing error. Any ideas how to fix? >> >> > From ducasse at iam.unibe.ch Fri May 14 12:33:30 2004 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Fri, 14 May 2004 12:33:30 +0200 Subject: SmallWiki rssfeed In-Reply-To: <19697.62.58.162.194.1084528785.squirrel@webmail.xs4all.nl> References: <13417.62.58.162.194.1084525553.squirrel@webmail.xs4all.nl> <19697.62.58.162.194.1084528785.squirrel@webmail.xs4all.nl> Message-ID: <24D7B630-A592-11D8-8FE5-000A9573EAE2@iam.unibe.ch> Ok so we will change that for now On 14 mai 04, at 11:59, Adriaan van Os wrote: > You are using an escape sequence in 'Comité d'Organisation' and > unfortunately an & also breaks the rss generation. Therefor, I dont > know > how to workaround it except then not using those characters in titles. > > Adriaan. > >> But this is strange because the title of our wiki is lmo2005 so I do >> not see how we can have strange character. Do you know a fix? >> >> Stef >> >> On 14 mai 04, at 11:05, Adriaan van Os wrote: >> >>> Hi Stephane, >>> >>> Special characters in the title of a structure break the rss >>> generation. >>> This is a known problem. >>> >>> Cheers, >>> Adriaan. >>> >>>> http://kilana.unibe.ch:9090/?action=RSSChangesFeed >>>> I got an XML parsing error. Any ideas how to fix? >>>> >>>> >>> >> >> > From yokokawa at logical.design.co.jp Sat May 15 14:04:12 2004 From: yokokawa at logical.design.co.jp (Koji Yokokawa) Date: Sat, 15 May 2004 21:04:12 +0900 Subject: i18n for VW SmallWiki In-Reply-To: <20040505190004.A770.YOKOKAWA@logical.design.co.jp> References: <4E1E042F-9E70-11D8-A130-000393CFE6C8@student.unibe.ch> <20040505190004.A770.YOKOKAWA@logical.design.co.jp> Message-ID: <20040515201338.A1C4.YOKOKAWA@logical.design.co.jp> Hi, Lukas This changeset is a new I18N-extension. I fixed the code to success in all tests, and added some new tests about internationalization. (All failures related to the wikiIdentifier. So, in this version, Character>>isWikiIdentifier can check it correctly) On Wed, 05 May 2004 19:22:54 +0900 Koji Yokokawa wrote: > OK, I'll check the failed tests at this weekend. > > BTW, my last mail to this ML was lost. The changeset file was attached > on the mail. > Is attachment banned in this ML? > > > On Wed, 5 May 2004 10:43:39 +0200 > Lukas Renggli wrote: > > > Hi, > > > > > That is a strange error. I couldn't recover it. I use VW7.2, same > > > as you. Anyway, please try more primitive way. Here is a changeset > > > version. > > > > loading SmallWikiI18N from the changeset worked nicely. The > > web-interface seem to run fine, but unfortunately there are 12 tests > > suddenly failing. What is more, there are no tests that cover the added > > functionality. > > > > Maybe you (or somebody else) could have a look at those problems? > > Currently I'm too flooded with other things, therefor I'm unable to > > spend much time on SmallWiki. > > > > Cheers, > > Lukas > > > > -- > > Lukas Renggli > > http://renggli.freezope.org > > -- > Koji Yokokawa > http://yengawa.webhop.org/ -- Koji Yokokawa http://yengawa.webhop.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: SmallWikiI18N02.zip Type: application/x-zip-compressed Size: 10704 bytes Desc: not available Url : http://www.iam.unibe.ch/pipermail/smallwiki/attachments/20040515/40399583/SmallWikiI18N02.bin From yokokawa at logical.design.co.jp Sat May 15 14:04:12 2004 From: yokokawa at logical.design.co.jp (Koji Yokokawa) Date: Sat, 15 May 2004 21:04:12 +0900 Subject: i18n for VW SmallWiki In-Reply-To: <20040505190004.A770.YOKOKAWA@logical.design.co.jp> References: <4E1E042F-9E70-11D8-A130-000393CFE6C8@student.unibe.ch> <20040505190004.A770.YOKOKAWA@logical.design.co.jp> Message-ID: <20040515201338.A1C4.YOKOKAWA@logical.design.co.jp> Hi, Lukas This changeset is a new I18N-extension. I fixed the code to success in all tests, and added some new tests about internationalization. (All failures related to the wikiIdentifier. So, in this version, Character>>isWikiIdentifier can check it correctly) On Wed, 05 May 2004 19:22:54 +0900 Koji Yokokawa wrote: > OK, I'll check the failed tests at this weekend. > > BTW, my last mail to this ML was lost. The changeset file was attached > on the mail. > Is attachment banned in this ML? > > > On Wed, 5 May 2004 10:43:39 +0200 > Lukas Renggli wrote: > > > Hi, > > > > > That is a strange error. I couldn't recover it. I use VW7.2, same > > > as you. Anyway, please try more primitive way. Here is a changeset > > > version. > > > > loading SmallWikiI18N from the changeset worked nicely. The > > web-interface seem to run fine, but unfortunately there are 12 tests > > suddenly failing. What is more, there are no tests that cover the added > > functionality. > > > > Maybe you (or somebody else) could have a look at those problems? > > Currently I'm too flooded with other things, therefor I'm unable to > > spend much time on SmallWiki. > > > > Cheers, > > Lukas > > > > -- > > Lukas Renggli > > http://renggli.freezope.org > > -- > Koji Yokokawa > http://yengawa.webhop.org/ -- Koji Yokokawa http://yengawa.webhop.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: SmallWikiI18N02.zip Type: application/x-zip-compressed Size: 10704 bytes Desc: not available Url : http://www.iam.unibe.ch/pipermail/smallwiki/attachments/20040515/40399583/SmallWikiI18N02-0001.bin From Roel.Wuyts at ulb.ac.be Sun May 16 21:04:02 2004 From: Roel.Wuyts at ulb.ac.be (Roel Wuyts) Date: Sun, 16 May 2004 21:04:02 +0200 Subject: Stupid question Message-ID: Hello, I downloaded the latest SmallWiki from the Cincom store, but after loading it two of the tests fail, and I cannot start a server. This happens on OS-X and Windows. I tried with different versions of Swazoo, but to no avail. What am I doing wrong? -- Roel Wuyts DeComp roel.wuyts at ulb.ac.be Universit? Libre de Bruxelles http://homepages.ulb.ac.be/~rowuyts/ Belgique Board Member of the European Smalltalk User Group: www.esug.org From Roel.Wuyts at ulb.ac.be Thu May 20 16:04:17 2004 From: Roel.Wuyts at ulb.ac.be (Roel Wuyts) Date: Thu, 20 May 2004 16:04:17 +0200 Subject: Stupid question In-Reply-To: References: Message-ID: <9507ECF6-AA66-11D8-B86F-000A95C8D208@ulb.ac.be> It works with 0.9.48 of SmallWiki -->> 0.9.76.bb10 of Swazoo <<-- (thanks Alex) On 16 May 2004, at 21:04, Roel Wuyts wrote: > Hello, > I downloaded the latest SmallWiki from the Cincom store, but after > loading it two of the tests fail, and I cannot start a server. This > happens on OS-X and Windows. I tried with different versions of > Swazoo, but to no avail. What am I doing wrong? > > -- > Roel Wuyts > DeComp > roel.wuyts at ulb.ac.be Universit? Libre de > Bruxelles > http://homepages.ulb.ac.be/~rowuyts/ > Belgique > Board Member of the European Smalltalk User Group: www.esug.org > > Roel Wuyts DeComp roel.wuyts at ulb.ac.be Universit? Libre de Bruxelles http://homepages.ulb.ac.be/~rowuyts/ Belgique Board Member of the European Smalltalk User Group: www.esug.org From chris at chrisburkert.de Mon May 24 06:50:00 2004 From: chris at chrisburkert.de (Chris Burkert) Date: Mon, 24 May 2004 06:50:00 +0200 Subject: Debugging Problem In-Reply-To: <000001c44103$e53e9e10$2202a8c0@MyToshiba> References: <000001c44103$e53e9e10$2202a8c0@MyToshiba> Message-ID: <40B17EF8.9040608@chrisburkert.de> Glenn Swanlund wrote: > I?m using SmallWiki with Squeak 3.6 and adding some customization. When > an error occurs while running new code, there is no error message in the > browser or Squeak. Is there a way to get the error message visible somehow? You have to set the Debug Level of the Comanche Server. Regards Chris Burkert -- http://www.chrisburkert.de/ From ssastre at seaswork.com.ar Fri May 28 06:47:32 2004 From: ssastre at seaswork.com.ar (=?iso-8859-1?Q?Sebasti=E1n_Sastre?=) Date: Fri, 28 May 2004 01:47:32 -0300 Subject: Can't edit, etc Message-ID: Hi all, I'm new to the SmallWiki world. I've installed it in a squeak image and after playing arround for a while I can't see the commands 'view edit ...' even when I log as admin. any clue? best regards, Sebasti?n Sastre ssastre at seaswork.com.ar www.seaswork.com.ar -------------- next part -------------- An HTML attachment was scrubbed... URL: http://www.iam.unibe.ch/pipermail/smallwiki/attachments/20040528/db531df0/attachment.htm From ducasse at iam.unibe.ch Sat May 29 09:09:04 2004 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Sat, 29 May 2004 09:09:04 +0200 Subject: A forum in Smalltalk :) Message-ID: <116ACEAE-B13F-11D8-95F2-000A9573EAE2@iam.unibe.ch> http://p208.ezboard.com/fptcgzone65991frm12.showMessage?topicID=2.topic www.ezboard.com have 120 PC in cluster and VW behind :) Stef From Serge.Stinckwich at info.unicaen.fr Sat May 29 12:41:42 2004 From: Serge.Stinckwich at info.unicaen.fr (Serge Stinckwich) Date: Sat, 29 May 2004 12:41:42 +0200 Subject: A forum in Smalltalk :) In-Reply-To: <116ACEAE-B13F-11D8-95F2-000A9573EAE2@iam.unibe.ch> References: <116ACEAE-B13F-11D8-95F2-000A9573EAE2@iam.unibe.ch> Message-ID: Le 29 mai 04, ? 09:09, st?phane ducasse a ?crit : > http://p208.ezboard.com/fptcgzone65991frm12.showMessage?topicID=2.topic > > www.ezboard.com have 120 PC in cluster and VW behind :) How do you know ? We need to collect this kind of information somewhere, maybe on the ESUG site ? -- Serge Stinckwich -< ) Universit? de Caen>CNRS UMR 6072>GREYC>MAD /~\ http://purl.org/net/SergeStinckwich (/ | Smalltalkers do: [:it | All with: Class, (And love: it)] _|_/ From ducasse at iam.unibe.ch Sat May 29 15:36:24 2004 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Sat, 29 May 2004 15:36:24 +0200 Subject: A forum in Smalltalk :) In-Reply-To: References: <116ACEAE-B13F-11D8-95F2-000A9573EAE2@iam.unibe.ch> Message-ID: <2D99A428-B175-11D8-95F2-000A9573EAE2@iam.unibe.ch> I know because I saw in Smalltalk Solution a presentation on the topic and also this story about ezboard was during a long moment on the cincom store. On 29 mai 04, at 12:41, Serge Stinckwich wrote: > > Le 29 mai 04, ? 09:09, st?phane ducasse a ?crit : > >> http://p208.ezboard.com/fptcgzone65991frm12.showMessage? >> topicID=2.topic >> >> www.ezboard.com have 120 PC in cluster and VW behind :) > > How do you know ? > We need to collect this kind of information somewhere, maybe on the > ESUG site ? Yes please go ahead > > > -- > Serge Stinckwich -< ) > Universit? de Caen>CNRS UMR 6072>GREYC>MAD /~\ > http://purl.org/net/SergeStinckwich (/ | > Smalltalkers do: [:it | All with: Class, (And love: it)] _|_/ > > From ssastre at seaswork.com.ar Sun May 30 18:22:22 2004 From: ssastre at seaswork.com.ar (=?iso-8859-1?Q?Sebasti=E1n_Sastre?=) Date: Sun, 30 May 2004 13:22:22 -0300 Subject: Can't edit, etc In-Reply-To: Message-ID: I've reinstalled the system on a clean squeak image and everything is ok now. I wan't to use a wiki but as a prived site. I don't wan't the wiki be readable for anyone not loggued in. This can be done with SmallWiki? how can I configure/modyfy it to acomplish that? Thank you, Sebasti?n Sastre ssastre at seaswork.com.ar www.seaswork.com.ar -----Mensaje original----- De: owner-smallwiki at iam.unibe.ch [mailto:owner-smallwiki at iam.unibe.ch] En nombre de Sebasti?n Sastre Enviado el: Viernes, 28 de Mayo de 2004 01:48 Para: smallwiki at iam.unibe.ch Asunto: Can't edit, etc Hi all, I'm new to the SmallWiki world. I've installed it in a squeak image and after playing arround for a while I can't see the commands 'view edit ...' even when I log as admin. any clue? best regards, Sebasti?n Sastre ssastre at seaswork.com.ar www.seaswork.com.ar -------------- next part -------------- An HTML attachment was scrubbed... URL: http://www.iam.unibe.ch/pipermail/smallwiki/attachments/20040530/a0dba484/attachment.htm From renggli at student.unibe.ch Sun May 30 20:46:39 2004 From: renggli at student.unibe.ch (Lukas Renggli) Date: Sun, 30 May 2004 20:46:39 +0200 Subject: Can't edit, etc In-Reply-To: References: Message-ID: > I wan't to use a wiki but as a prived site. I don't wan't the wiki be > readable for anyone not loggued in. Remove all the view permission from the Anonymous-Group. In VisualWorks the following code snipped does it for you: (server userAt: 'anonymous') roles do: [ :role | Structure allSubclassesDo: [ :class | role remove: class permissionView ] ] There is also a administration extension that can do the trick from the web-interface, but it is currently available in VisualWorks only. Hope this helps, Lukas -- Lukas Renggli http://renggli.freezope.org From ducasse at iam.unibe.ch Sun May 30 20:53:19 2004 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Sun, 30 May 2004 20:53:19 +0200 Subject: Can't edit, etc In-Reply-To: References: Message-ID: <9DD8CCB6-B26A-11D8-AA69-000A9573EAE2@iam.unibe.ch> Hi sebastian > I've reinstalled the system on a clean squeak image and everything is > ok now. > I wan't to use a wiki but as a prived site. I don't wan't the wiki be > readable for anyone not loggued in. > This can be done with SmallWiki? how can I configure/modyfy it to > acomplish that? Yes this can be done. You can set up role and users and do what you want. You can even have different pages wiht different possibility. However, I guess that there is no user interface for setting up the roles and user (we will release a new version in beginning of july). So to change the user and the role, you should have a look at the documentation of SmallWiki (I do not remember anymore) and create everything in a workspace for now. David is your master available on the web? could you send me the pdf that I add it into the archive. Stef > ? > Thank you, > ? > > Sebasti?n Sastre > ssastre at seaswork.com.ar > www.seaswork.com.ar > -----Mensaje original----- > De: owner-smallwiki at iam.unibe.ch [mailto:owner-smallwiki at iam.unibe.ch] > En nombre de Sebasti?n Sastre > Enviado el: Viernes, 28 de Mayo de 2004 01:48 > Para: smallwiki at iam.unibe.ch > Asunto: Can't edit, etc > > Hi all, > ? > ??? I'm new to the SmallWiki world. I've installed it in a squeak > image and after playing arround for a while I can't see the commands > 'view edit ...' even when I log as admin. > ? > ??? any clue? > ? > ??? best regards, > ? > > Sebasti?n Sastre > ssastre at seaswork.com.ar > www.seaswork.com.ar > ? From ssastre at seaswork.com.ar Sun May 30 22:08:38 2004 From: ssastre at seaswork.com.ar (=?iso-8859-1?Q?Sebasti=E1n_Sastre?=) Date: Sun, 30 May 2004 17:08:38 -0300 Subject: Latin text (RE: Can't edit, etc) In-Reply-To: Message-ID: Lukas, Yes ! It workrs nicely. I have the swiki up and runnig. I'm seeing the lating characters are rendering in bad shape. Perhaps the charset can be configured to spanish (as is this case)? Where I can say to smallwiki this? thanks (again) Sebasti?n Sastre ssastre at seaswork.com.ar www.seaswork.com.ar > -----Mensaje original----- > De: owner-smallwiki at iam.unibe.ch > [mailto:owner-smallwiki at iam.unibe.ch] En nombre de Lukas Renggli > Enviado el: Domingo, 30 de Mayo de 2004 15:47 > Para: smallwiki at iam.unibe.ch > Asunto: Re: Can't edit, etc > > > > I wan't to use a wiki but as a prived site. I don't wan't > the wiki be > > readable for anyone not loggued in. > > Remove all the view permission from the Anonymous-Group. In > VisualWorks > the following code snipped does it for you: > > (server userAt: 'anonymous') roles do: [ :role | > Structure allSubclassesDo: [ :class | > role remove: class permissionView ] ] > > There is also a administration extension that can do the > trick from the > web-interface, but it is currently available in VisualWorks only. > > Hope this helps, > Lukas > > -- > Lukas Renggli > http://renggli.freezope.org > From renggli at student.unibe.ch Sun May 30 20:46:39 2004 From: renggli at student.unibe.ch (Lukas Renggli) Date: Sun, 30 May 2004 20:46:39 +0200 Subject: Can't edit, etc In-Reply-To: References: Message-ID: > I wan't to use a wiki but as a prived site. I don't wan't the wiki be > readable for anyone not loggued in. Remove all the view permission from the Anonymous-Group. In VisualWorks the following code snipped does it for you: (server userAt: 'anonymous') roles do: [ :role | Structure allSubclassesDo: [ :class | role remove: class permissionView ] ] There is also a administration extension that can do the trick from the web-interface, but it is currently available in VisualWorks only. Hope this helps, Lukas -- Lukas Renggli http://renggli.freezope.org