Re: [Pharo-dev] Spur VM Bug for Chinese Characters?

2016-10-17 Thread Sven Van Caekenberghe
> On 17 Oct 2016, at 03:43, Sean P. DeNigris wrote: > > Sven Van Caekenberghe-2 wrote >> Of course it does, it wouldn't be very good if it didn't ;-) > > Great! > > I fell down on "STONWriterError: custom #stonOn: implementation needed for > variable/indexable class"

Re: [Pharo-dev] Spur VM Bug for Chinese Characters?

2016-10-17 Thread Marcus Denker
> On 17 Oct 2016, at 09:17, Sven Van Caekenberghe wrote: > > >> On 17 Oct 2016, at 07:36, p...@highoctane.be wrote: >> >> I am in the other boat for reading OrderPreservingDictionary. > > Both OrderedDictionary and OrderedIdentityDictionary are handled well, see >

[Pharo-dev] [pharo-project/pharo-core]

2016-10-17 Thread GitHub
Branch: refs/tags/60260 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core]

2016-10-17 Thread GitHub
Branch: refs/tags/60261 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] 3107e3: 60261

2016-10-17 Thread GitHub
Branch: refs/heads/6.0 Home: https://github.com/pharo-project/pharo-core Commit: 3107e30982d85e81af5460e05d7622823c451f39 https://github.com/pharo-project/pharo-core/commit/3107e30982d85e81af5460e05d7622823c451f39 Author: Jenkins Build Server Date:

Re: [Pharo-dev] Spur VM Bug for Chinese Characters?

2016-10-17 Thread Sven Van Caekenberghe
> On 17 Oct 2016, at 07:36, p...@highoctane.be wrote: > > I am in the other boat for reading OrderPreservingDictionary. Both OrderedDictionary and OrderedIdentityDictionary are handled well, see #testOrderedDictionary. I believe OrderPreservingDictionary is not a standard Pharo part, it is

[Pharo-dev] [pharo-project/pharo-core] 500eb0: 60260

2016-10-17 Thread GitHub
Branch: refs/heads/6.0 Home: https://github.com/pharo-project/pharo-core Commit: 500eb064268703db37462d6d37b3ececa3b0a634 https://github.com/pharo-project/pharo-core/commit/500eb064268703db37462d6d37b3ececa3b0a634 Author: Jenkins Build Server Date:

[Pharo-dev] [JOB][Research] Postdoc "'Higher level IDEs for BlockChain Technologies"

2016-10-17 Thread Marcus Denker
We are looking to fill a Postdoc position. The candidate should : - hold a PhD degree in Computer Science - be fluent in English (French is an advantage but not required) - have good programming skills Experience with DSLs, IDEs, Models, compilers, code analysis... is a plus. Topic: Higher

Re: [Pharo-dev] Spur VM Bug for Chinese Characters?

2016-10-17 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote > You could try doing... allowComplexMapKeys: true > ... Hmm, if the default writing may use complex keys, shouldn't the default reading do the same? I found it jarring to write using the defaults, and then have the default read fail! - Cheers, Sean -- View

Re: [Pharo-dev] Spur VM Bug for Chinese Characters?

2016-10-17 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote > allowComplexMapKeys: true BTW that worked. Thanks! - Cheers, Sean -- View this message in context: http://forum.world.st/Spur-VM-Bug-for-Chinese-Characters-tp4918883p4919142.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.

Re: [Pharo-dev] Spur VM Bug for Chinese Characters?

2016-10-17 Thread Sven Van Caekenberghe
> On 18 Oct 2016, at 03:36, Sean P. DeNigris wrote: > > Sven Van Caekenberghe-2 wrote >> You could try doing... allowComplexMapKeys: true >> ... > > Hmm, if the default writing may use complex keys, shouldn't the default > reading do the same? I found it jarring to write

Re: [Pharo-dev] Spur VM Bug for Chinese Characters?

2016-10-17 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote > Hmm, Path (the superclass) is handled, it has custom #stonOn: and > #fromSton: implementations. Do you have them in your image ? They are not included in the stable version from either the Pharo 4.0 MetaC Browser, or Pharo 5.0 Catalog browser, but I copy pasted

Re: [Pharo-dev] Spur VM Bug for Chinese Characters?

2016-10-17 Thread Sven Van Caekenberghe
> On 17 Oct 2016, at 21:14, Sean P. DeNigris wrote: > > Sean P. DeNigris wrote >> I copy pasted them from the latest STON package. Thanks. > > Ugh. > >FileLocator home / 'Downloads' / 'myfile.ston' writeStreamDo: [ :s | > STON put: myDB onStream: s]. > > and then

[Pharo-dev] Pharo behind ALLSTOCKER marketplace

2016-10-17 Thread Masashi UMEZAWA
Hi all, >From Torsten, I've received a request to post about some technical details of ALLSTOCKER (http://pharo.org/success/AllStocker) . I hope these notes will be interesting to Pharo web developers. - Seaside / Teapot We are using Seaside as a main framework for ALLSTOCKER marketplace.

Re: [Pharo-dev] Pharo behind ALLSTOCKER marketplace

2016-10-17 Thread Esteban A. Maringolo
Thank you for sharing all your experience. I wasn't aware of many of the packages you're using. And I like the Mustaside approach for certain parts of a Seaside app. It still surprises me how these packages can fly so low under the radar. What version of Glorp are you using? Best regards!

Re: [Pharo-dev] Pharo behind ALLSTOCKER marketplace

2016-10-17 Thread Serge Stinckwich
Dear Masahi-san, thank you for your detailed explanations ! This is always great to see that nice tools like that exist in Pharo ecosystem and that people can do business with them. Regards, On Mon, Oct 17, 2016 at 3:05 PM, Masashi UMEZAWA wrote: > Hi all, > > From

Re: [Pharo-dev] Spur VM Bug for Chinese Characters?

2016-10-17 Thread Sean P. DeNigris
Sean P. DeNigris wrote > I copy pasted them from the latest STON package. Thanks. Ugh. FileLocator home / 'Downloads' / 'myfile.ston' writeStreamDo: [ :s | STON put: myDB onStream: s]. and then FileLocator home / 'Downloads' / 'myfile.ston' readStreamDo: [ :s | STON fromStream: s ]