Re: [Pharo-users] Programmatic Scoped Browsing

2013-12-06 Thread Hernán Morales Durand
Sorry for the late reply. May anyone can drop a line for how to contribute (not bug reporting/patch) to projects like RB and Nautilus? Because there are 3 Nautilus repositories in SmalltalkHub... Hernán 2013/11/24 Stéphane Ducasse > > On Nov 24, 2013, at 5:55 PM, Hernán Morales Durand < > h

Re: [Pharo-users] Loading Cog fails under Windows

2013-12-06 Thread Hernán Morales Durand
Thanks Clement, got it. FYI doing the checkout leads to a filename too long $ git checkout -f HEAD error: unable to create file mc/VMMaker-oscog.package/GeniePlugin.class/instance /primSameClassAbsoluteStrokeDistanceMyPoints.otherPoints.myVectors.otherVectors. mySquaredLengths.otherSquaredLengths

Re: [Pharo-users] Loading Cog fails under Windows

2013-12-06 Thread Clément Béra
Hello. Can you try to git clone this repo: https://github.com/pharo-project/pharo-vm and then in the folder named 'image', there's a script named newImage.sh. Run it, it should get you an image named generator.image with Pharo 2 + Cog. Anyway it's a bug ... 2013/12/6 Hernán Morales Durand >

Re: [Pharo-users] reopen closed issues (4798)

2013-12-06 Thread Stéphane Ducasse
Thanks nicolai We just received your license agreement :) tx again. Stef On Dec 6, 2013, at 2:51 PM, Nicolai Hess wrote: > 2013/12/6 Marcus Denker > > On 06 Dec 2013, at 13:55, Nicolai Hess wrote: > >> Hi, >> >> if an issue is closed without any comment, what could be the reason? >> (This

[Pharo-users] Loading Cog fails under Windows

2013-12-06 Thread Hernán Morales Durand
When I try to install Cog (GuillermoPolito.127) from the Configuration Browser in a clean Pharo 2.0 (Windows 7 x64), fails with the following message: "The symbolic version #stable is not defined in ConfigurationOfCog for the current platform." I download the image + vm with the following command

Re: [Pharo-users] (MimeConverter forEncoding: 'quoted-printable') subclass responsibility

2013-12-06 Thread Sven Van Caekenberghe
Hi Joachim, I loaded/copied your code into Pharo 3.0 and made the necessary changes, as well as some simplifications, to make everything work. See the attached fileouts. The tests were almost immediately green. I have one question though, I had to change two tests to make them work: #testDeco

Re: [Pharo-users] command line command from pharo image

2013-12-06 Thread Sabine Knöfel
Nicolai, thank you very much for clarification. Indeed: there was a silly error in my command when copying it from Mac to windows (path) and the notepad test worked. So the problem is solved for me. I can call from Mac OS and from Windows and I am happy:-) Regards Sabine On Fri, Dec 6, 2013 at

Re: [Pharo-users] Does there exist a template library for Pharo

2013-12-06 Thread Esteban A. Maringolo
Norbert Hartl implemented Mustache templating for Pharo: http://norbert.hartl.name/blog/2013/10/03/mustache-templates-for-smalltalk/ 'This is some letter you ({{ name }}) can sign here to {{ whatever }}' asMustacheTemplate value: { 'name' -> 'Friedrich'. 'whatever' -> [ self printwhateverShouldBe

[Pharo-users] Does there exist a template library for Pharo

2013-12-06 Thread Friedrich Dominicus
I wonder if something like embedding Smalltalk in other texts is somwhere to be foudn for Pharo e.g "This is some letter you (<% self name %>) can sign here to <% self printwhateverShouldBePrintedHere %>" So embedding Smalltallk into documents with add "dynamic" content I'm not looking in som

Re: [Pharo-users] reopen closed issues (4798)

2013-12-06 Thread Nicolai Hess
2013/12/6 Marcus Denker > > On 06 Dec 2013, at 13:55, Nicolai Hess wrote: > > Hi, > > if an issue is closed without any comment, what could be the reason? > (This one https://pharo.fogbugz.com/default.asp?4798). > > Would someone note if I comment on closed issues or are they filtered out? > > >

Re: [Pharo-users] reopen closed issues (4798)

2013-12-06 Thread Marcus Denker
On 06 Dec 2013, at 13:55, Nicolai Hess wrote: > Hi, > > if an issue is closed without any comment, what could be the reason? > (This one https://pharo.fogbugz.com/default.asp?4798). > > Would someone note if I comment on closed issues or are they filtered out? To me this one looks like a mist

[Pharo-users] reopen closed issues (4798)

2013-12-06 Thread Nicolai Hess
Hi, if an issue is closed without any comment, what could be the reason? (This one https://pharo.fogbugz.com/default.asp?4798). Would someone note if I comment on closed issues or are they filtered out? Can I /or should I reopen issues if they are reproducable. regards Nicolai

Re: [Pharo-users] command line command from pharo image

2013-12-06 Thread Nicolai Hess
2013/12/6 Sabine Knöfel > Hi Torsten, Sean, > > http://smalltalkhub.com/#!/~OS/OS-Windows > looks great. > > I have not found a solution yet to send a call to OS from pharo (I develop > with mac since a few weeks now and deployment is currently windows) and I > am > thinking about moving to Pharo

Re: [Pharo-users] (MimeConverter forEncoding: 'quoted-printable') subclass responsibility

2013-12-06 Thread Sven Van Caekenberghe
Hi Joachim, The code is perfectly readable, including the German (which I can read/understand more or less, speaking/writing is quite bad though), thanks a lot. I will try to port it later today or this evening. Sven On 06 Dec 2013, at 12:26, jtuc...@objektfabrik.de wrote: > Hi Sven, > > I j

Re: [Pharo-users] (MimeConverter forEncoding: 'quoted-printable') subclass responsibility

2013-12-06 Thread jtuc...@objektfabrik.de
Hi Sven, I just see there will be some problems with the test Strings in Pharo. VAST is not Unicode aware yet, so the fileout of german umlauts and such will very likely be wrong when pasting into Pharo. I am happy to send you corrections for the decoded strings in the test code if your German

Re: [Pharo-users] (MimeConverter forEncoding: 'quoted-printable') subclass responsibility

2013-12-06 Thread jtuc...@objektfabrik.de
Hi Sven, here you are. It's possible you get into minor troubles parsing the files, but the code is short enough to even copy/paste it into Pharo I guess. Since it is a fileout from VAST, you may need to tweak the categories for monticello and such. Please let me know if there are problems w

Re: [Pharo-users] (MimeConverter forEncoding: 'quoted-printable') subclass responsibility

2013-12-06 Thread Sven Van Caekenberghe
On 06 Dec 2013, at 12:04, jtuc...@objektfabrik.de wrote: > Hi Sven, > > Of course I don't mind. I'll be happy if you find it useful enough to use it > in Pharo. Great! > The .dat is VAST's proprietary export format for code. So you'd have to > install VAST to get it. > > I am not a Pharo co

Re: [Pharo-users] (MimeConverter forEncoding: 'quoted-printable') subclass responsibility

2013-12-06 Thread jtuc...@objektfabrik.de
Hi Sven, Of course I don't mind. I'll be happy if you find it useful enough to use it in Pharo. The .dat is VAST's proprietary export format for code. So you'd have to install VAST to get it. I am not a Pharo contributor yet, so I will see if I can send you a fileout of the code that shoul

Re: [Pharo-users] (MimeConverter forEncoding: 'quoted-printable') subclass responsibility

2013-12-06 Thread Sven Van Caekenberghe
Hi Joachim, On 06 Dec 2013, at 11:22, jtuc...@objektfabrik.de wrote: > Hi Sabine, > > this is not of immediate help for you, but I once wrote a > QuotedPrintableEncode for VA Smalltalk. It is in productive use and should > handle both encoding and decoding just fine. > You can find it on vastg

Re: [Pharo-users] (MimeConverter forEncoding: 'quoted-printable') subclass responsibility

2013-12-06 Thread jtuc...@objektfabrik.de
Hi Sabine, this is not of immediate help for you, but I once wrote a QuotedPrintableEncode for VA Smalltalk. It is in productive use and should handle both encoding and decoding just fine. You can find it on vastgoodies.com and I am sure it is not hard to port to Pharo. More details: http:/

Re: [Pharo-users] (MimeConverter forEncoding: 'quoted-printable') subclass responsibility

2013-12-06 Thread Sabine Knöfel
Hi Sven, this would be great. I need it for sending mails and some mail reader, e.g. Thunderbird on Mac (Thank you Joachim for reporting this bug :-) ) need this in the subject if there are special signs in it. Example: Subject: =?ISO-8859-1?Q?Kindle_f=FCr_nur_49_EUR?= Regards Sabine On Fri,

Re: [Pharo-users] (MimeConverter forEncoding: 'quoted-printable') subclass responsibility

2013-12-06 Thread Sven Van Caekenberghe
Yes, indeed QuotedPrintableMimeConverter>>#mimeEncode is missing. It shouldn’t be too hard to implement, although it is a bit of a ‘human’ format rather than a technical one. http://en.wikipedia.org/wiki/Quoted-printable I’ll see what I can do. Sven On 06 Dec 2013, at 09:35, Sabine Knöfel w

Re: [Pharo-users] command line command from pharo image

2013-12-06 Thread Sabine Knöfel
Hi Torsten, Sean, http://smalltalkhub.com/#!/~OS/OS-Windows looks great. I have not found a solution yet to send a call to OS from pharo (I develop with mac since a few weeks now and deployment is currently windows) and I am thinking about moving to Pharo 3.0 for further development due to the OS

[Pharo-users] (MimeConverter forEncoding: 'quoted-printable') subclass responsibility

2013-12-06 Thread Sabine Knöfel
Hi, I need this, too. http://forum.world.st/Issue-4782-Quoted-printable-encoding-incomplete-implementation-td3823737.html The bug was closed after transferring it to fogbugs: https://pharo.fogbugz.com/f/cases/4825 Sebastian, may I ask you, how did you solve this? regards Sabine -- View t