From offray at riseup.net Fri Nov 11 15:37:00 2011 From: offray at riseup.net (=?ISO-8859-1?Q?Offray_Vladimir_Luna_C=E1rdenas?=) Date: Fri, 11 Nov 2011 09:37:00 -0500 Subject: Changing Cherokee for a Smalltalk based web server? Message-ID: <4EBD330C.9060002@riseup.net> Hi all, I'm getting random "504 gateway error" answers from several sites (using Zope and Rails) that are served by Cherokee using a reverse proxy setup. This error is an open issue in Cherokee and has been reported and not properly patched since 2009: https://code.google.com/p/cherokee/issues/detail?id=504 I did choose Cherokee because of its easiness to setup and newbie friendly interface and character, but with this problem I'm thinking in testing another server, may be a Smalltalk based one that have similar characteristics and can serve sites in Zope or Rails also. I know about Comanche, Swazoo and Zinc, but I don't know which of them is better (making load balance and stuff like that) and have proper documentation about using it in combination with other software (Zope and Rails in my case). Any advice on this matter is greatly appreciated, Offray From offray at riseup.net Fri Nov 18 17:00:39 2011 From: offray at riseup.net (=?ISO-8859-1?Q?Offray_Vladimir_Luna_C=E1rdenas?=) Date: Fri, 18 Nov 2011 11:00:39 -0500 Subject: Something like XDV/Diazo/Deliverance in Smalltalk? Message-ID: <4EC68127.8050405@riseup.net> Hi, Me and a group of friends in a local hackerspace[1] want to intervene the interface of this Cynin site using the technologies of Diazo[2], Xdv[3] or Deliverance[4]. Seeing the way that views are wrote in Seaside I wondder if there is someway to make a similar intervention/integration of interface without touching directly the code a la Diazo/XDV/Deliverance but using Seaside/Zinc or some similar combination. [1] http://hackbo.co/ [2] http://diazo.org/index.html [3] http://www.enfoldsystems.com/software/proxy/docs/6.0/xdvtutorial.html [4] http://packages.python.org/Deliverance/ Any pointer will be appreciated. Cheers, Offray From marianopeck at gmail.com Sat Nov 19 17:08:34 2011 From: marianopeck at gmail.com (Mariano Martinez Peck) Date: Sat, 19 Nov 2011 13:08:34 -0300 Subject: Smalltalk SyntaxHighlighter for Pier? Message-ID: Hi guys. Pier-Shout does not put colors. SyntaxHighlighter doesn't have Smalltalk. So...how can I have Smalltalk SyntaxHighlighter for Pier? Thanks, -- Mariano http://marianopeck.wordpress.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From nick.ager at gmail.com Sat Nov 19 17:15:52 2011 From: nick.ager at gmail.com (Nick Ager) Date: Sat, 19 Nov 2011 16:15:52 +0000 Subject: Smalltalk SyntaxHighlighter for Pier? In-Reply-To: References: Message-ID: Pier-Shout comes with SPHighlightedStyle>>#codeCss - the css provides the colour highlighting. On 19 November 2011 16:08, Mariano Martinez Peck wrote: > Hi guys. Pier-Shout does not put colors. SyntaxHighlighter doesn't have > Smalltalk. So...how can I have Smalltalk SyntaxHighlighter for Pier? > > Thanks, > > -- > Mariano > http://marianopeck.wordpress.com > > > _______________________________________________ > Magritte, Pier and Related Tools ... > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > -------------- next part -------------- An HTML attachment was scrubbed... URL: From renggli at gmail.com Sat Nov 19 17:25:20 2011 From: renggli at gmail.com (Lukas Renggli) Date: Sat, 19 Nov 2011 17:25:20 +0100 Subject: Smalltalk SyntaxHighlighter for Pier? In-Reply-To: References: Message-ID: Right, Pier-Shout just annotates the text with CSS classes. You need to provide the coloring yourself. For example the Seaside book uses: http://book.seaside.st/styles/shout.css Lukas On 19 November 2011 17:15, Nick Ager wrote: > Pier-Shout comes with?SPHighlightedStyle>>#codeCss - the css provides the > colour highlighting. > > On 19 November 2011 16:08, Mariano Martinez Peck > wrote: >> >> Hi guys. Pier-Shout does not put colors. SyntaxHighlighter doesn't have >> Smalltalk. So...how can I have Smalltalk SyntaxHighlighter for Pier? >> >> Thanks, >> >> -- >> Mariano >> http://marianopeck.wordpress.com >> >> >> _______________________________________________ >> Magritte, Pier and Related Tools ... >> https://www.iam.unibe.ch/mailman/listinfo/smallwiki > > > _______________________________________________ > Magritte, Pier and Related Tools ... > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > -- Lukas Renggli www.lukas-renggli.ch From nick.ager at gmail.com Sat Nov 19 17:41:07 2011 From: nick.ager at gmail.com (Nick Ager) Date: Sat, 19 Nov 2011 16:41:07 +0000 Subject: Smalltalk SyntaxHighlighter for Pier? In-Reply-To: References: Message-ID: Hi Mariano, Just in case you are not aware, here is some of the ways you can use the highlighter: Here is some smalltalk code (highlighted lines start with '==') ==WAComponent subclass: #ScrapBook == instanceVariableNames: '' == classVariableNames: '' == poolDictionaries: '' == category: 'SeasideBook-Hello' A different style: +value:source|class=ScrapBook + Show the class method: +value:source|class=NAConfiguration|classmethod=migrateToNewDispatcher+ Show an instance method: +value:source|class=NAStructure|method=root+ Hope that helps, Nick -------------- next part -------------- An HTML attachment was scrubbed... URL: From marianopeck at gmail.com Sat Nov 19 19:08:10 2011 From: marianopeck at gmail.com (Mariano Martinez Peck) Date: Sat, 19 Nov 2011 15:08:10 -0300 Subject: Smalltalk SyntaxHighlighter for Pier? In-Reply-To: References: Message-ID: On Sat, Nov 19, 2011 at 1:25 PM, Lukas Renggli wrote: > Right, Pier-Shout just annotates the text with CSS classes. You need > to provide the coloring yourself. For example the Seaside book uses: > > http://book.seaside.st/styles/shout.css > > Thanks Lukas. Sorry for the newbie question but how can I take that css and use it for my pier also? > Lukas > > > On 19 November 2011 17:15, Nick Ager wrote: > > Pier-Shout comes with SPHighlightedStyle>>#codeCss - the css provides the > > colour highlighting. > > > > On 19 November 2011 16:08, Mariano Martinez Peck > > wrote: > >> > >> Hi guys. Pier-Shout does not put colors. SyntaxHighlighter doesn't have > >> Smalltalk. So...how can I have Smalltalk SyntaxHighlighter for Pier? > >> > >> Thanks, > >> > >> -- > >> Mariano > >> http://marianopeck.wordpress.com > >> > >> > >> _______________________________________________ > >> Magritte, Pier and Related Tools ... > >> https://www.iam.unibe.ch/mailman/listinfo/smallwiki > > > > > > _______________________________________________ > > Magritte, Pier and Related Tools ... > > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > > > > > > -- > Lukas Renggli > www.lukas-renggli.ch > > _______________________________________________ > Magritte, Pier and Related Tools ... > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > -- Mariano http://marianopeck.wordpress.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From marianopeck at gmail.com Sat Nov 19 19:08:35 2011 From: marianopeck at gmail.com (Mariano Martinez Peck) Date: Sat, 19 Nov 2011 15:08:35 -0300 Subject: Smalltalk SyntaxHighlighter for Pier? In-Reply-To: References: Message-ID: On Sat, Nov 19, 2011 at 1:41 PM, Nick Ager wrote: > Hi Mariano, > > Just in case you are not aware, here is some of the ways you can use the > highlighter: > > Here is some smalltalk code (highlighted lines start with '==') > ==WAComponent subclass: #ScrapBook > == instanceVariableNames: '' > == classVariableNames: '' > == poolDictionaries: '' > == category: 'SeasideBook-Hello' > > > A different style: > +value:source|class=ScrapBook + > > Show the class method: > +value:source|class=NAConfiguration|classmethod=migrateToNewDispatcher+ > > Show an instance method: > +value:source|class=NAStructure|method=root+ > > Awesome. I was aware only about the first one hehhehe. > Hope that helps, > > Nick > > _______________________________________________ > Magritte, Pier and Related Tools ... > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > -- Mariano http://marianopeck.wordpress.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From renggli at gmail.com Sat Nov 19 19:19:48 2011 From: renggli at gmail.com (Lukas Renggli) Date: Sat, 19 Nov 2011 19:19:48 +0100 Subject: Smalltalk SyntaxHighlighter for Pier? In-Reply-To: References: Message-ID: On 19 November 2011 19:08, Mariano Martinez Peck wrote: > > > On Sat, Nov 19, 2011 at 1:25 PM, Lukas Renggli wrote: >> >> Right, Pier-Shout just annotates the text with CSS classes. You need >> to provide the coloring yourself. For example the Seaside book uses: >> >> ? ?http://book.seaside.st/styles/shout.css >> > > Thanks Lukas. Sorry for the newbie question but how can I take that css and > use it for my pier also? http://www.piercms.com/doc/faq#47520854 Lukas > >> >> Lukas >> >> >> On 19 November 2011 17:15, Nick Ager wrote: >> > Pier-Shout comes with?SPHighlightedStyle>>#codeCss - the css provides >> > the >> > colour highlighting. >> > >> > On 19 November 2011 16:08, Mariano Martinez Peck >> > wrote: >> >> >> >> Hi guys. Pier-Shout does not put colors. SyntaxHighlighter doesn't have >> >> Smalltalk. So...how can I have Smalltalk SyntaxHighlighter for Pier? >> >> >> >> Thanks, >> >> >> >> -- >> >> Mariano >> >> http://marianopeck.wordpress.com >> >> >> >> >> >> _______________________________________________ >> >> Magritte, Pier and Related Tools ... >> >> https://www.iam.unibe.ch/mailman/listinfo/smallwiki >> > >> > >> > _______________________________________________ >> > Magritte, Pier and Related Tools ... >> > https://www.iam.unibe.ch/mailman/listinfo/smallwiki >> > >> >> >> >> -- >> Lukas Renggli >> www.lukas-renggli.ch >> >> _______________________________________________ >> Magritte, Pier and Related Tools ... >> https://www.iam.unibe.ch/mailman/listinfo/smallwiki > > > > -- > Mariano > http://marianopeck.wordpress.com > > > _______________________________________________ > Magritte, Pier and Related Tools ... > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > -- Lukas Renggli www.lukas-renggli.ch From nick.ager at gmail.com Sat Nov 19 19:33:46 2011 From: nick.ager at gmail.com (Nick Ager) Date: Sat, 19 Nov 2011 18:33:46 +0000 Subject: Smalltalk SyntaxHighlighter for Pier? In-Reply-To: References: Message-ID: > > > > > Thanks Lukas. Sorry for the newbie question but how can I take that css > and > > use it for my pier also? > or just add SPHighlightedStyle to the file libraries in /config used by your pier instance -------------- next part -------------- An HTML attachment was scrubbed... URL: From marianopeck at gmail.com Sat Nov 19 19:40:17 2011 From: marianopeck at gmail.com (Mariano Martinez Peck) Date: Sat, 19 Nov 2011 15:40:17 -0300 Subject: Smalltalk SyntaxHighlighter for Pier? In-Reply-To: References: Message-ID: EXCELLENT :) that worked Thanks guys. I am slowly creating a new Pier site for DBXTalk... On Sat, Nov 19, 2011 at 3:33 PM, Nick Ager wrote: > > >> > Thanks Lukas. Sorry for the newbie question but how can I take that css >> and >> > use it for my pier also? >> > > or just add SPHighlightedStyle to the file libraries in /config used by > your pier instance > > _______________________________________________ > Magritte, Pier and Related Tools ... > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > -- Mariano http://marianopeck.wordpress.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From nick.ager at gmail.com Wed Nov 23 18:32:40 2011 From: nick.ager at gmail.com (Nick Ager) Date: Wed, 23 Nov 2011 17:32:40 +0000 Subject: Smalltalk SyntaxHighlighter for Pier? In-Reply-To: References: Message-ID: Opps it seems that the syntax has changed to: +value:source|class=WACounter|selector=renderContentOn:+ On 19 November 2011 18:08, Mariano Martinez Peck wrote: > > > On Sat, Nov 19, 2011 at 1:41 PM, Nick Ager wrote: > >> Hi Mariano, >> >> Just in case you are not aware, here is some of the ways you can use the >> highlighter: >> >> Here is some smalltalk code (highlighted lines start with '==') >> ==WAComponent subclass: #ScrapBook >> == instanceVariableNames: '' >> == classVariableNames: '' >> == poolDictionaries: '' >> == category: 'SeasideBook-Hello' >> >> >> A different style: >> +value:source|class=ScrapBook + >> >> Show the class method: >> +value:source|class=NAConfiguration|classmethod=migrateToNewDispatcher+ >> >> Show an instance method: >> +value:source|class=NAStructure|method=root+ >> >> > Awesome. I was aware only about the first one hehhehe. > > >> Hope that helps, >> >> Nick >> >> _______________________________________________ >> Magritte, Pier and Related Tools ... >> https://www.iam.unibe.ch/mailman/listinfo/smallwiki >> > > > > -- > Mariano > http://marianopeck.wordpress.com > > > _______________________________________________ > Magritte, Pier and Related Tools ... > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > -------------- next part -------------- An HTML attachment was scrubbed... URL: From nick.ager at gmail.com Thu Nov 24 13:51:14 2011 From: nick.ager at gmail.com (Nick Ager) Date: Thu, 24 Nov 2011 12:51:14 +0000 Subject: displaying a classes comments Message-ID: Hi, Pier-Shout can display method contents. Is there a way to display a classes comments in Pier? Thanks Nick -------------- next part -------------- An HTML attachment was scrubbed... URL: From renggli at gmail.com Thu Nov 24 14:16:05 2011 From: renggli at gmail.com (Lukas Renggli) Date: Thu, 24 Nov 2011 14:16:05 +0100 Subject: displaying a classes comments In-Reply-To: References: Message-ID: I don't think so, but I guess that would be easy to add to Pier-Shout. Lukas On 24 November 2011 13:51, Nick Ager wrote: > Hi, > Pier-Shout can display method contents. Is there a way to display a classes > comments in Pier? > Thanks > Nick > _______________________________________________ > Magritte, Pier and Related Tools ... > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > -- Lukas Renggli www.lukas-renggli.ch From nick.ager at gmail.com Thu Nov 24 16:19:05 2011 From: nick.ager at gmail.com (Nick Ager) Date: Thu, 24 Nov 2011 15:19:05 +0000 Subject: displaying a classes comments In-Reply-To: References: Message-ID: done: Name: Pier-Shout-NickAger.3 Author: NickAger Time: 24 November 2011, 3:18:39 pm UUID: 537bff31-88ee-43e5-a53f-10e183bcfa35 Ancestors: Pier-Shout-lr.2 value:source links now allow class comments to be extracted. The syntax: *value:source|class=MyClass|comment* On 24 November 2011 13:16, Lukas Renggli wrote: > I don't think so, but I guess that would be easy to add to Pier-Shout. > > Lukas > > On 24 November 2011 13:51, Nick Ager wrote: > > Hi, > > Pier-Shout can display method contents. Is there a way to display a > classes > > comments in Pier? > > Thanks > > Nick > > _______________________________________________ > > Magritte, Pier and Related Tools ... > > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > > > > > > -- > Lukas Renggli > www.lukas-renggli.ch > _______________________________________________ > Magritte, Pier and Related Tools ... > https://www.iam.unibe.ch/mailman/listinfo/smallwiki > -------------- next part -------------- An HTML attachment was scrubbed... URL: From damien.cassou at gmail.com Mon Nov 28 11:55:40 2011 From: damien.cassou at gmail.com (Damien Cassou) Date: Mon, 28 Nov 2011 11:55:40 +0100 Subject: Fwd: [Seaside] Pier Admin In-Reply-To: References: Message-ID: I love the demo. Would be nice to have an image built automatically with it. Thank you Nick ---------- Forwarded message ---------- From: Nick Ager Date: Sun, Nov 27, 2011 at 10:43 PM Subject: [Seaside] Pier Admin To: Seaside - general discussion Hi, Pier Admin - a new administration UI for Pier - has progressed enough to be given a wider audience. I've put a demo site up on seasidehosting.st - http://pieradmin.seasidehosting.st (be gentle it's a shared resource - any edits you make will be seen be all others). I've also recorded a short demo, illustrating some of it's features - http://vimeo.com/32749535. Install with: Gofer it renggli: 'pier2addons'; ? package: 'ConfigurationOfPierAdmin'; ? load. ConfigurationOfPierAdmin loadBleedingEdge. Hope it's of interest Nick -- Damien Cassou http://damiencassou.seasidehosting.st "Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry