Hello list, Is there a working version of the WebClient for 1.2.1? I tried loading the webclient-pharo package from squeaksource, but didn't get anywhere. Before, I dug further I wonder if someone can point me in the right direction.
Thanks Andy On 30 Apr 2011, at 06:02, [email protected] wrote: > Send Pharo-users mailing list submissions to > [email protected] > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users > or, via email, send a message with subject or body 'help' to > [email protected] > > You can reach the person managing the list at > [email protected] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Pharo-users digest..." > > > Today's Topics: > > 1. Tutorial on Announcements (DougEdmunds) > 2. Re: Refactoring and with: [] indention (Scott Gibson) > 3. Re: Tutorial on Announcements (St?phane Ducasse) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 29 Apr 2011 18:58:08 -0700 (PDT) > From: DougEdmunds <[email protected]> > Subject: [Pharo-users] Tutorial on Announcements > To: [email protected] > Message-ID: <[email protected]> > Content-Type: text/plain; charset=us-ascii > > http://dougedmunds.com/pmwiki.php?n=Pharo.AnnouncementsTutorial > > What you can get out of this tutorial and sample code > > How to use Announcements > Ideas on building a GUI > Associating buttons with actions > Pulling text out of a text field morph. > Convert text to numbers using exception handling > How to create and exit an endless loop > Setting process priority > > -- > View this message in context: > http://forum.world.st/Tutorial-on-Announcements-tp3485041p3485041.html > Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com. > > > > ------------------------------ > > Message: 2 > Date: Sat, 30 Apr 2011 01:18:18 -0400 > From: Scott Gibson <[email protected]> > Subject: Re: [Pharo-users] Refactoring and with: [] indention > To: A friendly place where any question about pharo is welcome > <[email protected]> > Message-ID: <[email protected]> > Content-Type: text/plain; charset=us-ascii > > Okay, so that is not exactly right. Indentions would not occur for cascaded > messages with that change. I believe I found what I needed by removing the > extra extra "self indentAround: []" call in > RBConfigurableFormatter>>acceptCascadeNode:. > > I also found where to change the code so that comments do not get pulled from > their own lines and appended to the end of code, which is nice. > > > Thanks, > Scott > > On Apr 29, 2011, at 9:26 PM, Scott Gibson wrote: > >> Thanks Lukas. I had noticed this but was not finding the correct >> combination so I thought I would ask. I did find that this extra indention >> is occurring in RBConfigurableFormatter>>isMultiLineMessage: and is fixed if >> I made the change to remove the additional indent (was IndentsForKeywords + >> 1) as seen in the snippet below. >> >> ... >> (aMessageNode arguments >> anySatisfy: [ :each | self indent: IndentsForKeywords around: [ self >> willBeMultiline: each ] ]) >> ifTrue: [ ^ true ]. >> ... >> >> This fixed my issue and seems to work well. I am sure you know this code >> very well so this is nothing you would not already know but it is pretty >> cool to me that I can make such a change to the system so easily. I now >> just need to find a good way to apply this change to my images going forward. >> >> Thanks! >> Scott >> >> On Apr 29, 2011, at 5:52 PM, Lukas Renggli wrote: >> >>> In 'World > System > Settings > Refactoring Engine > Configurable >>> Formatter' you can change all kinds of settings related to the >>> formatting. >>> >>> Lukas >>> >>> On 29 April 2011 23:00, Scott Gibson <[email protected]> wrote: >>>> When I refactor, or format the code, there seems to be too much indention >>>> where "with: []" is used. For example: >>>> >>>> renderHeaderOn: html >>>> (html div) >>>> id: 'header'; >>>> with: [ >>>> self renderLoginOn: html. >>>> self renderLogoOn: html. >>>> self renderMenuOn: html ] >>>> >>>> >>>> Is this how it is supposed to be? Is there a way to reduce the indention >>>> by one level if so? >>>> >>>> Thanks! >>>> Scott Gibson >>>> >>>> >>>> >>> >>> >>> >>> -- >>> Lukas Renggli >>> www.lukas-renggli.ch >>> >> > > > > > ------------------------------ > > Message: 3 > Date: Sat, 30 Apr 2011 09:05:18 +0200 > From: St?phane Ducasse <[email protected]> > Subject: Re: [Pharo-users] Tutorial on Announcements > To: A friendly place where any question about pharo is welcome > <[email protected]> > Message-ID: <[email protected]> > Content-Type: text/plain; charset=us-ascii > > thanks doug > I will read that because we are looking for ideas for a chapter on > announcements for PBE2 :) > > Stef > On Apr 30, 2011, at 3:58 AM, DougEdmunds wrote: > >> http://dougedmunds.com/pmwiki.php?n=Pharo.AnnouncementsTutorial >> >> What you can get out of this tutorial and sample code >> >> How to use Announcements >> Ideas on building a GUI >> Associating buttons with actions >> Pulling text out of a text field morph. >> Convert text to numbers using exception handling >> How to create and exit an endless loop >> Setting process priority >> >> -- >> View this message in context: >> http://forum.world.st/Tutorial-on-Announcements-tp3485041p3485041.html >> Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com. >> > > > > > ------------------------------ > > _______________________________________________ > Pharo-users mailing list > [email protected] > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users > > > End of Pharo-users Digest, Vol 16, Issue 56 > *******************************************
