From Roel.Wuyts at ulb.ac.be Fri Jun 3 18:25:28 2005 From: Roel.Wuyts at ulb.ac.be (Roel Wuyts) Date: Fri, 3 Jun 2005 18:25:28 +0200 Subject: Apache - SmallWiki question Message-ID: <9DCFB0E0-1094-465F-810F-0AE9D60B5632@ulb.ac.be> Hello, I have a question about the configuration of Apache and Smallwiki to do some things on my server, and I am hoping that some of you more experienced web-serving people can help me out... This is the problem: - I have one server (lit7.ulb.ac.be) - There are two DNS aliases for this machine: decomp.ulb.ac.be and restructuring.ulb.ac.be - I have two Smallwiki's running on the machine, under two different ports: 8081 runs the 'FRFC' wiki 8082 runs the deComp wiki - users can currently access these websites by explicitly appending the portnumber: http://decomp.ulb.ac.be:8081/ (or http:// restructuring.ulb.ac.be:8081 ) http://restructuring.ulb.ac.be:8082 (or http:// decomp.ulb.ac.be:8082 ) What I want is to be able to get rid of the port addresses, so that users can do: http://decomp.ulb.ac.be --> get the decomp Smallwiki site http://restructuring.ulb.ac.be --> get the restruturing Smallwiki site I think I can accomplish this by configuring my Apache2 in the following (clumsy) way: - set up two virtual hosts: one for decomp.ulb.ac.be that hosts to some other portnumber, let's say 9092 one for restructuring.ulb.ac.be that hosts to 9091 - set up redirects in the site served on port 9091 to http:// decomp.ulb.ac.be:8081/ - set up redirects in the site served on port 9092 to http:// decomp.ulb.ac.be:8082/ I am pretty sure that this will do the trick, but it will be rather clumsy, not very efficient (redirects all the time), and the user will type http://decomp.ulb.ac.be/, hit Return, and then see the address bar change to http://decomp.ulb.ac.be:8081/ . Still, if this is the only way ... -- Roel Wuyts From avi.bryant at gmail.com Fri Jun 3 18:30:59 2005 From: avi.bryant at gmail.com (Avi Bryant) Date: Fri, 3 Jun 2005 18:30:59 +0200 Subject: Apache - SmallWiki question In-Reply-To: <9DCFB0E0-1094-465F-810F-0AE9D60B5632@ulb.ac.be> References: <9DCFB0E0-1094-465F-810F-0AE9D60B5632@ulb.ac.be> Message-ID: On 6/3/05, Roel Wuyts wrote: > Hello, > > I have a question about the configuration of Apache and Smallwiki to > do some things on my server, and I am hoping that some of you more > experienced web-serving people can help me out... > > This is the problem: > - I have one server (lit7.ulb.ac.be) > - There are two DNS aliases for this machine: decomp.ulb.ac.be and > restructuring.ulb.ac.be > - I have two Smallwiki's running on the machine, under two different > ports: > 8081 runs the 'FRFC' wiki > 8082 runs the deComp wiki Hi Roel, You want to use Apache's ProxyPass directive. It should be something like this: ServerName decomp.ulb.ac.be ProxyPass / http://localhost:8081/ ProxyPassReverse / http://localhost:8082/ and similarly for the other host. Avi From avi.bryant at gmail.com Fri Jun 3 18:31:44 2005 From: avi.bryant at gmail.com (Avi Bryant) Date: Fri, 3 Jun 2005 18:31:44 +0200 Subject: Apache - SmallWiki question In-Reply-To: References: <9DCFB0E0-1094-465F-810F-0AE9D60B5632@ulb.ac.be> Message-ID: On 6/3/05, Avi Bryant wrote: > > ServerName decomp.ulb.ac.be > ProxyPass / http://localhost:8081/ > ProxyPassReverse / http://localhost:8082/ > Oops - that was unnecessarily confusing, I meant to use the 8081 port number in both lines. Avi From saidani at info.unicaen.fr Mon Jun 6 21:54:23 2005 From: saidani at info.unicaen.fr (Samir Saidani) Date: Mon, 06 Jun 2005 21:54:23 +0200 Subject: smallwiki, accents and Squeak3.8 Message-ID: <87k6l7i7m8.fsf@info.unicaen.fr> Hi, I'm playing with smallwiki these times, and tried to set up one but got a problem with accents. Squeak 3.8 seems to resolve this problem quite well, but I was unable to load smallwiki with Squeak3.8 through squeakmap (the load script is only for Squeak3.7 and in Squeak3.7, $? isoToSqueak gives a weird answer). Thanks ! Samir -- Samir SAIDANI PhD Student in CS / Doctorant en informatique web : http://www.info.unicaen.fr/~saidani Universite de Caen - Laboratoire GREYC tel : 02-31-56-74-30 Equipe MAD - Campus II - 14032 Caen Cedex fax : 02-31-56-76-30 From chris at chrisburkert.de Tue Jun 7 15:43:57 2005 From: chris at chrisburkert.de (chris@chrisburkert.de) Date: Tue, 7 Jun 2005 15:43:57 +0200 (CEST) Subject: smallwiki, accents and Squeak3.8 In-Reply-To: <87k6l7i7m8.fsf@info.unicaen.fr> References: <87k6l7i7m8.fsf@info.unicaen.fr> Message-ID: <2327.217.69.254.231.1118151837.squirrel@www.beine-computer.de> Samir, I have to fundamentally change the loadscript. For now, you can try to do the steps in 3.8 by hand. I'll address this till the weekend. Chris From gluca980 at libero.it Tue Jun 7 18:12:50 2005 From: gluca980 at libero.it (gluca980@libero.it) Date: Tue, 7 Jun 2005 18:12:50 +0200 Subject: newbie Message-ID: Hi, I have a problem with the manage of error in smallwiki. I have in my editPage: title and Date, I do the control on the date but when I digit an incorrect date i wish that this date wasn't saved in my instance variable(date). eg: I do the first control on the date size,i would that the size is 10,so i do self date size = 10 ifFalse: [ self renderInvalideDate]. renderInvalidDate html tableRow: [ html tableHeading: 'Error:'. html tableData: [ html spanNamed: #error with: 'invalide Date' ] ] . In this case when i make an error I see the message invalide date but the incorrect date is saved on date. Can you tell me how can I do, please? Cheers Gianluca ____________________________________________________________ 6X velocizzare la tua navigazione a 56k? 6X Web Accelerator di Libero! Scaricalo su INTERNET GRATIS 6X http://www.libero.it From renggli at iam.unibe.ch Tue Jun 7 19:20:56 2005 From: renggli at iam.unibe.ch (Lukas Renggli) Date: Tue, 7 Jun 2005 19:20:56 +0200 Subject: newbie In-Reply-To: References: Message-ID: Hi, have a look at the Memento- and/or Proxy-Pattern in the Smalltalk- Design Patterns book. The idea is to cache the intermediate (and therefor maybe invalid) data in a cache and only commit it to the real object when everything validates. The described technique is a very common strategy in lots of web- application: for SmallWiki 1 there is no built in solution, but there is some code in Seaside (WAModelProxy), Mewa, SmallWiki 2 and Magritte, that automates this. Hope this helps, Lukas -- Lukas Renggli http://www.lukas-renggli.ch From chris at chrisburkert.de Tue Jun 7 22:27:10 2005 From: chris at chrisburkert.de (Chris Burkert) Date: Tue, 07 Jun 2005 22:27:10 +0200 Subject: smallwiki, accents and Squeak3.8 In-Reply-To: <87k6l7i7m8.fsf@info.unicaen.fr> References: <87k6l7i7m8.fsf@info.unicaen.fr> Message-ID: <42A6031E.5040308@chrisburkert.de> Samir, I updated the loadscript and successfully tested SmallWiki in: - Squeak 3.6 full - Squeak 3.6 basic - Squeak 3.7 full - Squeak 3.7 basic - Squeak 3.8 full - Squeak 3.8 basic best regards Chris Burkert -- http://www.chrisburkert.de/ From saidani at info.unicaen.fr Wed Jun 8 17:19:29 2005 From: saidani at info.unicaen.fr (Samir Saidani) Date: Wed, 08 Jun 2005 17:19:29 +0200 Subject: smallwiki, accents and Squeak3.8 In-Reply-To: <42A6031E.5040308@chrisburkert.de> (Chris Burkert's message of "Tue, 07 Jun 2005 22:27:10 +0200") References: <87k6l7i7m8.fsf@info.unicaen.fr> <42A6031E.5040308@chrisburkert.de> Message-ID: <87hdg8kha6.fsf@info.unicaen.fr> Hi Chris, It seems not to work with 3.8 ?? when I check http://www.chrisburkert.de/download/squeak/SmallWiki/SmallWikiLoadscript-0.9.53.st there is test only for Squeak 3.7 and 3.6 (although this script is dated on June 7). Regards Samir Chris Burkert writes: > Samir, > > I updated the loadscript and successfully tested SmallWiki in: > - Squeak 3.6 full > - Squeak 3.6 basic > - Squeak 3.7 full > - Squeak 3.7 basic > - Squeak 3.8 full > - Squeak 3.8 basic > > best regards > Chris Burkert > -- > http://www.chrisburkert.de/ -- Samir SAIDANI PhD Student in CS / Doctorant en informatique web : http://www.info.unicaen.fr/~saidani Universite de Caen - Laboratoire GREYC tel : 02-31-56-74-30 Equipe MAD - Campus II - 14032 Caen Cedex fax : 02-31-56-76-30 From saidani at info.unicaen.fr Wed Jun 8 17:22:51 2005 From: saidani at info.unicaen.fr (Samir Saidani) Date: Wed, 08 Jun 2005 17:22:51 +0200 Subject: smallwiki, accents and Squeak3.8 In-Reply-To: <42A6031E.5040308@chrisburkert.de> (Chris Burkert's message of "Tue, 07 Jun 2005 22:27:10 +0200") References: <87k6l7i7m8.fsf@info.unicaen.fr> <42A6031E.5040308@chrisburkert.de> Message-ID: <87d5qwkh4k.fsf@info.unicaen.fr> Ok, I found a workaround : delete the old loadscript due to a previous installation by hand, then reload the script but it seems quite tricky ! Chris Burkert writes: > Samir, > > I updated the loadscript and successfully tested SmallWiki in: > - Squeak 3.6 full > - Squeak 3.6 basic > - Squeak 3.7 full > - Squeak 3.7 basic > - Squeak 3.8 full > - Squeak 3.8 basic > > best regards > Chris Burkert > -- > http://www.chrisburkert.de/ -- Samir SAIDANI PhD Student in CS / Doctorant en informatique web : http://www.info.unicaen.fr/~saidani Universite de Caen - Laboratoire GREYC tel : 02-31-56-74-30 Equipe MAD - Campus II - 14032 Caen Cedex fax : 02-31-56-76-30 From chris at chrisburkert.de Wed Jun 8 17:40:02 2005 From: chris at chrisburkert.de (Chris Burkert) Date: Wed, 08 Jun 2005 17:40:02 +0200 Subject: smallwiki, accents and Squeak3.8 In-Reply-To: <87d5qwkh4k.fsf@info.unicaen.fr> References: <87k6l7i7m8.fsf@info.unicaen.fr> <42A6031E.5040308@chrisburkert.de> <87d5qwkh4k.fsf@info.unicaen.fr> Message-ID: <42A71152.7060208@chrisburkert.de> Samir Saidani wrote: > Ok, I found a workaround : delete the old loadscript due to a previous > installation by hand, then reload the script but it seems quite tricky OK, cashing effects :-) maybe I should register the installer as a new version ... next time. best regards Chris Burkert -- http://www.chrisburkert.de/ From renggli at iam.unibe.ch Thu Jun 9 18:02:42 2005 From: renggli at iam.unibe.ch (Lukas Renggli) Date: Thu, 9 Jun 2005 18:02:42 +0200 Subject: Magritte description to html input In-Reply-To: <438a2961d58821e1ca5068b363b226f6@students.unibe.ch> References: <438a2961d58821e1ca5068b363b226f6@students.unibe.ch> Message-ID: <338BA27F-6EED-4824-A659-5F0C27737FA9@iam.unibe.ch> > How can we get a HTML component from a Magritte description? > We want to do a "general search". A type (DocumentItem) can be > selected, then the available descriptions are shown. Now if a > description is selected, we need an input field corresponding to > the type of the description to specifiy the search criteria. > (checkbox for boolean description, ...). We tried attribute > asComponent, attribute class defaultComponentClass, but neither > worked. I don't properly understand what you are trying to do. What is 'attribute'? > We can not use asComponentOn: as we don't have a specific object > to edit. Magritte requires a model to store the date when you want to show a dialog built from a description. Probably the easiest thing you can do is to instantiate the selected DocumentItem and display a dialog on this one. Other possibilities might be: - you could use a scaffolder that contains a dictionary with associations of the form: description -> value. This is a technique that is commonly used for user defined forms. Take care, MAScaffolder in Magritte is currently not working, you should probably create your own class. - you could write a Memento (older versions of Magritte called it Wrapper) that doesn't require a model. HTH, Lukas -- Lukas Renggli http://www.lukas-renggli.ch From renggli at iam.unibe.ch Tue Jun 14 22:59:43 2005 From: renggli at iam.unibe.ch (Lukas Renggli) Date: Tue, 14 Jun 2005 22:59:43 +0200 Subject: SmallWiki2 / Magritte In-Reply-To: <4CCB9BC3-2595-4DA2-A132-5D767437F78C@user.net> References: <4CCB9BC3-2595-4DA2-A132-5D767437F78C@user.net> Message-ID: <5A4069CA-E237-4135-BEFD-69AFCE58FC70@iam.unibe.ch> Hi Daniel, > I have been playing with SmallWiki2 and wished to congratulate you > on this great tool. thanks a lot for your compliments. > As I was playing with it, I also became interested in using > Magritte for a couple of other applications of mine. This raised a > couple of questions: > > 1) Am I allowed to use Magritte for other purposes? Sure, Magritte will soon be published under the MIT license together with SmallWiki 2. This means, you are basically free to do with the code whatever you like, but I will take no responsibility and you have to keep a small copyright notice with my name somewhere. > 2) Is Magritte stable? Well, similar as SmallWiki 2 it is alpha code and some interfaces and internal details might change in the future. At netstyle.ch we are successfully using Magritte in one of our biggest projects. It allows our users to define and store validated forms and dialogs from their web-browser. > 3) How can I go about installing Magritte on a separate image > without SmallWiki2? Sure. I suggest that you load Magritte-All.xx.mcz from http:// mc.lukas-renggli.ch/magritte/, where xx is a version that works for you the best (probably not the latest one). If you find any bugs fix them directly in the Magritte package and submit your version to me. We never experienced problems merging in the changes from the main branch into our internal development images. Hope this helps, Lukas -- Lukas Renggli netstyle.ch GmbH, D?hlh?lzliweg 18, CH-3005 Bern Phone: +41 31 356 42 56 Fax: +41 31 356 42 57 http://www.netstyle.ch mailto:info at netstyle.ch From dsalama at user.net Tue Jun 14 23:54:08 2005 From: dsalama at user.net (Daniel Salama) Date: Tue, 14 Jun 2005 17:54:08 -0400 Subject: SmallWiki2 / Magritte In-Reply-To: <5A4069CA-E237-4135-BEFD-69AFCE58FC70@iam.unibe.ch> References: <4CCB9BC3-2595-4DA2-A132-5D767437F78C@user.net> <5A4069CA-E237-4135-BEFD-69AFCE58FC70@iam.unibe.ch> Message-ID: Thanks for your prompt reply. I have a couple of more questions: On Jun 14, 2005, at 4:59 PM, Lukas Renggli wrote: > > Sure. I suggest that you load Magritte-All.xx.mcz from http:// > mc.lukas-renggli.ch/magritte/, where xx is a version that works for > you the best (probably not the latest one). If you find any bugs > fix them directly in the Magritte package and submit your version > to me. We never experienced problems merging in the changes from > the main branch into our internal development images. I've tried loading versions .23, .22, .21, and .20 and I kept getting this: This package depends on the following classes: MAColorDescription You must resolve these dependencies before you will be able to load these definitions: MAColorDescription class>>defaultComponentClasses MAColorDescription class>>defaultMorphClasses Do you have any ideas what may be missing in my image? I was only able to successfully load version .19. Lastly, is there any further documentation on Magritte? Thanks again, Daniel -------------- next part -------------- An HTML attachment was scrubbed... URL: http://www.iam.unibe.ch/pipermail/smallwiki/attachments/20050614/68a7cbc3/attachment.htm From renggli at iam.unibe.ch Wed Jun 15 07:34:54 2005 From: renggli at iam.unibe.ch (Lukas Renggli) Date: Wed, 15 Jun 2005 07:34:54 +0200 Subject: SmallWiki2 / Magritte In-Reply-To: References: <4CCB9BC3-2595-4DA2-A132-5D767437F78C@user.net> <5A4069CA-E237-4135-BEFD-69AFCE58FC70@iam.unibe.ch> Message-ID: >> Sure. I suggest that you load Magritte-All.xx.mcz from http:// >> mc.lukas-renggli.ch/magritte/, where xx is a version that works >> for you the best (probably not the latest one). If you find any >> bugs fix them directly in the Magritte package and submit your >> version to me. We never experienced problems merging in the >> changes from the main branch into our internal development images. > > I've tried loading versions .23, .22, .21, and .20 and I kept > getting this: > > This package depends on the following classes: > MAColorDescription > You must resolve these dependencies before you will be able to load > these definitions: > MAColorDescription class>>defaultComponentClasses > MAColorDescription class>>defaultMorphClasses > > Do you have any ideas what may be missing in my image? I was only > able to successfully load version .19. Ohh, this is no problem, don't worry about it. It is an (unused and) missing dependency to an (unfinished) description class that I once played with but didn't properly removed from and integrated into the package. > Lastly, is there any further documentation on Magritte? No, unfortunately not. However some hints might be found at http:// www.lukas-renggli.ch/smallwiki/slides/intro.pdf. Cheers, Lukas -- Lukas Renggli http://www.lukas-renggli.ch From dsalama at user.net Wed Jun 15 08:34:41 2005 From: dsalama at user.net (Daniel Salama) Date: Wed, 15 Jun 2005 02:34:41 -0400 Subject: SmallWiki2 / Magritte In-Reply-To: References: <4CCB9BC3-2595-4DA2-A132-5D767437F78C@user.net> <5A4069CA-E237-4135-BEFD-69AFCE58FC70@iam.unibe.ch> Message-ID: On Jun 15, 2005, at 1:34 AM, Lukas Renggli wrote: >>> Sure. I suggest that you load Magritte-All.xx.mcz from http:// >>> mc.lukas-renggli.ch/magritte/, where xx is a version that works >>> for you the best (probably not the latest one). If you find any >>> bugs fix them directly in the Magritte package and submit your >>> version to me. We never experienced problems merging in the >>> changes from the main branch into our internal development images. >>> >> >> I've tried loading versions .23, .22, .21, and .20 and I kept >> getting this: >> >> This package depends on the following classes: >> MAColorDescription >> You must resolve these dependencies before you will be able to >> load these definitions: >> MAColorDescription class>>defaultComponentClasses >> MAColorDescription class>>defaultMorphClasses >> >> Do you have any ideas what may be missing in my image? I was only >> able to successfully load version .19. >> > > Ohh, this is no problem, don't worry about it. It is an (unused > and) missing dependency to an (unfinished) description class that I > once played with but didn't properly removed from and integrated > into the package. It's just that it won't let me pass this stage and won't let me install a newer version because of it. Thanks again, Daniel From renggli at iam.unibe.ch Wed Jun 15 08:54:29 2005 From: renggli at iam.unibe.ch (Lukas Renggli) Date: Wed, 15 Jun 2005 08:54:29 +0200 Subject: SmallWiki2 / Magritte In-Reply-To: References: <4CCB9BC3-2595-4DA2-A132-5D767437F78C@user.net> <5A4069CA-E237-4135-BEFD-69AFCE58FC70@iam.unibe.ch> Message-ID: >>>> Sure. I suggest that you load Magritte-All.xx.mcz from http:// >>>> mc.lukas-renggli.ch/magritte/, where xx is a version that works >>>> for you the best (probably not the latest one). If you find any >>>> bugs fix them directly in the Magritte package and submit your >>>> version to me. We never experienced problems merging in the >>>> changes from the main branch into our internal development images. >>>> >>>> >>> >>> I've tried loading versions .23, .22, .21, and .20 and I kept >>> getting this: >>> >>> This package depends on the following classes: >>> MAColorDescription >>> You must resolve these dependencies before you will be able to >>> load these definitions: >>> MAColorDescription class>>defaultComponentClasses >>> MAColorDescription class>>defaultMorphClasses >>> >>> Do you have any ideas what may be missing in my image? I was only >>> able to successfully load version .19. >>> >>> >> >> Ohh, this is no problem, don't worry about it. It is an (unused >> and) missing dependency to an (unfinished) description class that >> I once played with but didn't properly removed from and integrated >> into the package. >> > > It's just that it won't let me pass this stage and won't let me > install a newer version because of it. Either hit 'proceed' in the appearing debugger or create an empty class MAColorDescription before you load the package. Lukas -- Lukas Renggli http://www.lukas-renggli.ch From renggli at iam.unibe.ch Wed Jun 15 15:12:50 2005 From: renggli at iam.unibe.ch (Lukas Renggli) Date: Wed, 15 Jun 2005 15:12:50 +0200 Subject: Smallwiki FAQ In-Reply-To: <000001c571aa$0343ef50$0d00000a@ORLBOX> References: <000001c571aa$0343ef50$0d00000a@ORLBOX> Message-ID: > Sorry to bother you with this faq again but I need to do a demo at ps > lecture on Friday and cannot rely on the network. I want to change the > default style sheet in the code - not via the admin user - > otherwise I > would have to do it every time I trace a feature. So I downloaded > style.css and header.png to the same directory where my image is and > changed the method defaultStyleSheet to: > > defaultStylesheet > ^'@import "http://localhost:8080/style.css";' > > > However it doesn't work. What do I need to do? Hi Orla, you need to upload the files to SmallWiki as resources with the filename as title. SmallWiki does not serve files from the filesystem, the directory tree is purely virtual and based on the object model within the image. Lukas -- Lukas Renggli http://www.lukas-renggli.ch From renggli at iam.unibe.ch Thu Jun 16 00:21:23 2005 From: renggli at iam.unibe.ch (Lukas Renggli) Date: Thu, 16 Jun 2005 00:21:23 +0200 Subject: Aktualisierung von Descriptons auf HTML-Seite In-Reply-To: <42B09E28.30700@gmx.ch> References: <438a2961d58821e1ca5068b363b226f6@students.unibe.ch> <338BA27F-6EED-4824-A659-5F0C27737FA9@iam.unibe.ch> <42B09E28.30700@gmx.ch> Message-ID: Hello Frank, > Bei unserem Swiki-Importer haben wir eine ImportCommand, wo man > einige Angaben (z.B. Url) vornehmen muss. Nun m?chten wir ein > zus?tzliches Feld einf?gen (z.B MAStringDescription), in der die > aktuell importierte Seite aufgef?hrt wird. Dieses Feld muss also > laufend w?hrend des Importiervorgangen upgedatet werden. Ich habe > versucht mit einem Accessor innerhalb SW2ImportCommand>>doExcecute > auf dieses Feld zuzugreifen (accessor := MASelectorAccessor > selector:#url. accessor: 'Hello' to: self.), was auch zu klappen > scheint, jedoch wird das Feld visuell nicht angepasst. Was muss ich > tun, damit die aktuell importierte Seite visuell in meiner textarea > aktualisiert wird? I don't really understand what you are trying to do. It is possible to force a Magritte component to reload the values from the model by sending the message #reset? Lukas -- Lukas Renggli http://www.lukas-renggli.ch From saidani at info.unicaen.fr Fri Jun 17 15:38:30 2005 From: saidani at info.unicaen.fr (Samir Saidani) Date: Fri, 17 Jun 2005 15:38:30 +0200 Subject: [FIX] Problem with SWAdminBlackboard and Latin accents Message-ID: <87fyvhqf1l.fsf@info.unicaen.fr> Hi, And first thanks for this wonderful tool - Smallwiki - I like it ! I played a little with the latest squeakmap release of smallwiki, with Squeak 3.8, and found a problem when using SWAdminBlackboard : you have to change the contents of the method renderMenu, from SWAdminBlackboard, SWSecurity and SWTreeEditor ! renderMenu super renderMenu self renderMenuRow: self and not self renderMenuRow: self new I can change it if there is an access to Monticello. I made also a package from the work of Andreas Gerdes to get the accents working ("latin" support) with smallwiki and a hierarchical menu (see squeak.de) with Squeak 3.8 : www.squeaksource.com/SmallWikiEnh Regards, Samir -- Samir SAIDANI PhD Student in CS / Doctorant en informatique web : http://www.info.unicaen.fr/~saidani Universite de Caen - Laboratoire GREYC tel : 02-31-56-74-30 Equipe MAD - Campus II - 14032 Caen Cedex fax : 02-31-56-76-30 From Roel.Wuyts at ulb.ac.be Fri Jun 17 16:13:08 2005 From: Roel.Wuyts at ulb.ac.be (Roel Wuyts) Date: Fri, 17 Jun 2005 16:13:08 +0200 Subject: Apache - SmallWiki question In-Reply-To: References: <9DCFB0E0-1094-465F-810F-0AE9D60B5632@ulb.ac.be> Message-ID: Thanks, got it working (finally) with the stuff you posted. Was not as easy as I thought it would be, since the Apache2 configuration under OS/X-Server is a standard Apache2, but on top of which they have added some stuff to play nicely with their GUI. I have to admit that they did a pretty good job, but on the other hand it means that you have to first understand what they did before you can find the good place to dump your code :-) Now that it works it looks so simple :-) On 03 Jun 2005, at 18:30, Avi Bryant wrote: > On 6/3/05, Roel Wuyts wrote: > > >> Hello, >> >> I have a question about the configuration of Apache and Smallwiki to >> do some things on my server, and I am hoping that some of you more >> experienced web-serving people can help me out... >> >> This is the problem: >> - I have one server (lit7.ulb.ac.be) >> - There are two DNS aliases for this machine: decomp.ulb.ac.be and >> restructuring.ulb.ac.be >> - I have two Smallwiki's running on the machine, under two different >> ports: >> 8081 runs the 'FRFC' wiki >> 8082 runs the deComp wiki >> >> > > Hi Roel, > > You want to use Apache's ProxyPass directive. It should be > something like this: > > > ServerName decomp.ulb.ac.be > ProxyPass / http://localhost:8081/ > ProxyPassReverse / http://localhost:8082/ > > > and similarly for the other host. > > Avi > > From chris at chrisburkert.de Sun Jun 19 21:11:20 2005 From: chris at chrisburkert.de (Chris Burkert) Date: Sun, 19 Jun 2005 21:11:20 +0200 Subject: [FIX] Problem with SWAdminBlackboard and Latin accents In-Reply-To: <87fyvhqf1l.fsf@info.unicaen.fr> References: <87fyvhqf1l.fsf@info.unicaen.fr> Message-ID: <42B5C358.5050908@chrisburkert.de> Samir, > I can change it if there is an access to Monticello. > > I made also a package from the work of Andreas Gerdes to get the > accents working ("latin" support) with smallwiki and a hierarchical > menu (see squeak.de) with Squeak 3.8 : > www.squeaksource.com/SmallWikiEnh thanks a lot for your enhancements! I added you to the list of co-maintainers of SmallWiki-Kernel. All my Monticello files can be found at [1]. You could merge your stuff with SmallWiki-chbu-0.9.53-11.mcz, name the new file SmallWiki-sam-0.9.53-12.mcz, send it to me and register it in SqueakMap after I have uploaded it. Maybe we should use Squeak Source for this, too. best regards Chris Burkert 1: http://www.chrisburkert.de/download/squeak/SmallWiki/ -- http://www.chrisburkert.de/ From ducasse at iam.unibe.ch Sun Jun 19 22:43:42 2005 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Sun, 19 Jun 2005 22:43:42 +0200 Subject: [FIX] Problem with SWAdminBlackboard and Latin accents In-Reply-To: <42B5C358.5050908@chrisburkert.de> References: <87fyvhqf1l.fsf@info.unicaen.fr> <42B5C358.5050908@chrisburkert.de> Message-ID: On 19 juin 05, at 21:11, Chris Burkert wrote: > Samir, > > >> I can change it if there is an access to Monticello. >> I made also a package from the work of Andreas Gerdes to get the >> accents working ("latin" support) with smallwiki and a hierarchical >> menu (see squeak.de) with Squeak 3.8 : >> www.squeaksource.com/SmallWikiEnh >> > > thanks a lot for your enhancements! I added you to the list of co- > maintainers of SmallWiki-Kernel. All my Monticello files can be > found at [1]. You could merge your stuff with SmallWiki- > chbu-0.9.53-11.mcz, name the new file SmallWiki-sam-0.9.53-12.mcz, > send it to me and register it in SqueakMap after I have uploaded it. > > Maybe we should use Squeak Source for this, too. sounds like... you should > > best regards > Chris Burkert > > 1: http://www.chrisburkert.de/download/squeak/SmallWiki/ > -- > http://www.chrisburkert.de/ > From bert at impara.de Fri Jun 24 17:39:09 2005 From: bert at impara.de (Bert Freudenberg) Date: Fri, 24 Jun 2005 17:39:09 +0200 Subject: Managing permission Message-ID: <72A8676C-0A6A-4316-99A2-6AA53B3013AB@impara.de> Hi, did someone port the Admin blackboard (SmallWiki Admin package on Store) to Squeak? Does someone use it on a production server? - Bert - From ducasse at iam.unibe.ch Fri Jun 24 18:28:33 2005 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Fri, 24 Jun 2005 18:28:33 +0200 Subject: Managing permission In-Reply-To: <72A8676C-0A6A-4316-99A2-6AA53B3013AB@impara.de> References: <72A8676C-0A6A-4316-99A2-6AA53B3013AB@impara.de> Message-ID: <96B932E9-F215-4F5B-92A3-80F44225CD4A@iam.unibe.ch> if this was the one developed by david vogel this was not really working since it was introducing bugs in SW. Stef On 24 juin 05, at 17:39, Bert Freudenberg wrote: > Hi, > > did someone port the Admin blackboard (SmallWiki Admin package on > Store) to Squeak? Does someone use it on a production server? > > - Bert - > > From bert at impara.de Fri Jun 24 20:22:23 2005 From: bert at impara.de (Bert Freudenberg) Date: Fri, 24 Jun 2005 20:22:23 +0200 Subject: Managing permission In-Reply-To: <96B932E9-F215-4F5B-92A3-80F44225CD4A@iam.unibe.ch> References: <72A8676C-0A6A-4316-99A2-6AA53B3013AB@impara.de> <96B932E9-F215-4F5B-92A3-80F44225CD4A@iam.unibe.ch> Message-ID: <0071637D-D111-4B51-8533-38CB6BF05711@impara.de> Thanks. Is there any other admin tool? It's rather tedious to manage Smallwiki permissions in a workspace. - Bert - Am 24.06.2005 um 18:28 schrieb st?phane ducasse: > if this was the one developed by david vogel this was not really > working since it was introducing bugs in SW. > > Stef > > > On 24 juin 05, at 17:39, Bert Freudenberg wrote: > > >> Hi, >> >> did someone port the Admin blackboard (SmallWiki Admin package on >> Store) to Squeak? Does someone use it on a production server? >> >> - Bert - >> >> > From ducasse at iam.unibe.ch Fri Jun 24 21:28:21 2005 From: ducasse at iam.unibe.ch (=?ISO-8859-1?Q?st=E9phane_ducasse?=) Date: Fri, 24 Jun 2005 21:28:21 +0200 Subject: Managing permission In-Reply-To: <0071637D-D111-4B51-8533-38CB6BF05711@impara.de> References: <72A8676C-0A6A-4316-99A2-6AA53B3013AB@impara.de> <96B932E9-F215-4F5B-92A3-80F44225CD4A@iam.unibe.ch> <0071637D-D111-4B51-8533-38CB6BF05711@impara.de> Message-ID: > Thanks. Is there any other admin tool? It's rather tedious to > manage Smallwiki permissions in a workspace. We know ;( for SWone no. Now for SW2 we will have another model of security and we hope to have a first release at the end of the summer or beginning of October. Stef > - Bert - > > Am 24.06.2005 um 18:28 schrieb st?phane ducasse: > > >> if this was the one developed by david vogel this was not really >> working since it was introducing bugs in SW. >> >> Stef >> >> >> On 24 juin 05, at 17:39, Bert Freudenberg wrote: >> >> >> >>> Hi, >>> >>> did someone port the Admin blackboard (SmallWiki Admin package on >>> Store) to Squeak? Does someone use it on a production server? >>> >>> - Bert - >>> >>> >>> >> >> > > > > From saidani at info.unicaen.fr Wed Jun 29 17:50:51 2005 From: saidani at info.unicaen.fr (Samir Saidani) Date: Wed, 29 Jun 2005 17:50:51 +0200 Subject: Managing permission In-Reply-To: <72A8676C-0A6A-4316-99A2-6AA53B3013AB@impara.de> (Bert Freudenberg's message of "Fri, 24 Jun 2005 17:39:09 +0200") References: <72A8676C-0A6A-4316-99A2-6AA53B3013AB@impara.de> Message-ID: <87vf3xxiuc.fsf@info.unicaen.fr> Hi Bert, I use it with SW1 on a production server. See the [FIX] posted few weeks ago ! Here is the latest .mcz to download http://www.chrisburkert.de/download/squeak/SmallWiki/SmallWiki-chbu-0.9.53-sam.12.mcz I've tried to release it on squeakmap today, but squeaksource seems to be down ! Regards, Samir Bert Freudenberg writes: > Hi, > > did someone port the Admin blackboard (SmallWiki Admin package on > Store) to Squeak? Does someone use it on a production server? > > - Bert - > -- Samir SAIDANI PhD Student in CS / Doctorant en informatique web : http://www.info.unicaen.fr/~saidani Universite de Caen - Laboratoire GREYC tel : 02-31-56-74-30 Equipe MAD - Campus II - 14032 Caen Cedex fax : 02-31-56-76-30 From saidani at info.unicaen.fr Thu Jun 30 21:52:18 2005 From: saidani at info.unicaen.fr (Samir Saidani) Date: Thu, 30 Jun 2005 21:52:18 +0200 Subject: smallwiki1 on squeakmap broken Message-ID: <877jgb62rx.fsf@info.unicaen.fr> Hi, I released a version on squeakmap with latest fixes for SW1, but discovered that there is a problem with accents yet. As a consequence, the latest release on squeakmap is broken ! (the links does not work properly). For convenience and to fix this problem rapidly, I created a repository on squeaksource, called www.squeaksource.com/smallwiki1 : if there is a problem, tell me and i'll delete this project. I added Lukas as admin, and probably Chris is interested also, but didn't find him as a member on squeaksource.