Hi,
Yesterday we finish the conversion to tonel, but I announced it just replying to the build that realises it. So I announce here officially and in his own mail :) You can resume contributions. This change should improve everybody's life but in particular windows users. I would like to know how them feel the new format in that context. Of course, I know there are still a lot of optimisation/improvements we need to do, but this is a beginning :) cheers, Esteban |
Great, thanks for all the hard work behind the scenes.
> On 3 Nov 2017, at 11:50, Esteban Lorenzano <[hidden email]> wrote: > > Hi, > > Yesterday we finish the conversion to tonel, but I announced it just replying to the build that realises it. > So I announce here officially and in his own mail :) > > You can resume contributions. > > This change should improve everybody's life but in particular windows users. I would like to know how them feel the new format in that context. > > Of course, I know there are still a lot of optimisation/improvements we need to do, but this is a beginning :) > > cheers, > Esteban > > > |
Esteban
when I save code in Tonel I get - #category : 'HelpSystem-Core-Builders' + #category : #HelpSystem-Core-Builders and this is not a correct symbol. So why do we get broken code? Stef On Sun, Nov 5, 2017 at 8:21 PM, Sven Van Caekenberghe <[hidden email]> wrote: > Great, thanks for all the hard work behind the scenes. > >> On 3 Nov 2017, at 11:50, Esteban Lorenzano <[hidden email]> wrote: >> >> Hi, >> >> Yesterday we finish the conversion to tonel, but I announced it just replying to the build that realises it. >> So I announce here officially and in his own mail :) >> >> You can resume contributions. >> >> This change should improve everybody's life but in particular windows users. I would like to know how them feel the new format in that context. >> >> Of course, I know there are still a lot of optimisation/improvements we need to do, but this is a beginning :) >> >> cheers, >> Esteban >> >> >> > > |
2017-11-05 22:17 GMT+01:00 Stephane Ducasse <[hidden email]>: Esteban It is a property of STON. STON format does not contain expressions so there is no conflict. However, at least it is not very educational to use such symbols that are not valid in standard Pharo grammar. -- Pavel
|
> On 5 Nov 2017, at 22:23, Pavel Krivanek <[hidden email]> wrote: > > > > 2017-11-05 22:17 GMT+01:00 Stephane Ducasse <[hidden email]>: > Esteban > > when I save code in Tonel I get > > - #category : 'HelpSystem-Core-Builders' > + #category : #HelpSystem-Core-Builders > > and this is not a correct symbol. > > So why do we get broken code? > > It is a property of STON. STON format does not contain expressions so there is no conflict. However, at least it is not very educational to use such symbols that are not valid in standard Pharo grammar. Yes, STON is a bit more liberal with Symbols than normal Smalltalk, but it is totally consistent with itself. STON fromString: (STON toString: #'My Strange Symbol'). STON fromString: (STON toString: #'foo-bar'). If a Symbol consists only of characters in 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_./' then the Symbol does not need to be quoted. I see no problem there. > -- Pavel > > > Stef > > > On Sun, Nov 5, 2017 at 8:21 PM, Sven Van Caekenberghe <[hidden email]> wrote: > > Great, thanks for all the hard work behind the scenes. > > > >> On 3 Nov 2017, at 11:50, Esteban Lorenzano <[hidden email]> wrote: > >> > >> Hi, > >> > >> Yesterday we finish the conversion to tonel, but I announced it just replying to the build that realises it. > >> So I announce here officially and in his own mail :) > >> > >> You can resume contributions. > >> > >> This change should improve everybody's life but in particular windows users. I would like to know how them feel the new format in that context. > >> > >> Of course, I know there are still a lot of optimisation/improvements we need to do, but this is a beginning :) > >> > >> cheers, > >> Esteban > >> > >> > >> > > > > > > |
Free forum by Nabble | Edit this page |