Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-29 Thread Esteban Lorenzano
file not found :) On Aug 29, 2013, at 2:44 PM, jan.struz public+ph...@struz.cz wrote: Hi, feel free to use integrate the following fix: Fix-Mongo-OID.cs http://forum.world.st/file/n4705616/Fix-Mongo-OID.cs Jan Sabine Knöfel wrote Hi Esteban, All, I was proceeding to seach for

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-29 Thread Esteban Lorenzano
hi well... I've never been happy on using the UUID generator for my keys, but is the fastest option I found. There are, of course, alternatives: 1) Using your own number generator (sequential, or whatever). Problem with that is that is image based, then you need a persistence strategy...

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-29 Thread jan.struz
ok, here again: Fix-Mongo-OID.cs http://forum.world.st/file/n4705649/Fix-Mongo-OID.cs :) EstebanLM wrote file not found :)On Aug 29, 2013, at 2:44 PM, jan.struz lt; public+pharo@ gt; wrote: Hi, feel free to use integrate the following fix: Fix-Mongo-OID.cs

Re: [Pharo-users] MSI packaging for Pharo

2013-08-29 Thread p...@highoctane.be
happy to have been of help. phil On Thursday, August 29, 2013, Usman Bhatti usman.bha...@gmail.com wrote: After all, I achieved the creation of MSI with the combination of Inno setup and MSI wrapper. Inno setup allows creating a setup.exe from a build script and do several types of tasks at

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-29 Thread Sven Van Caekenberghe
On 29 Aug 2013, at 16:51, Esteban Lorenzano esteba...@gmail.com wrote: hi well... I've never been happy on using the UUID generator for my keys, but is the fastest option I found. There are, of course, alternatives: 1) Using your own number generator (sequential, or whatever).

[Pharo-users] How send message with non-ascii characters via SMTP

2013-08-29 Thread vmusulainen
Hi! I try use SMTPClient from Network-Protocols. It fine work for message with only english characters at body or subject. But if add non-english (non ascii) characters and encoding it, that mail client (web interface gmail) don't encode message My code (It's code from another post in this

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-29 Thread Esteban A. Maringolo
They're certainly more unique than before :) Thanks!

[Pharo-users] Group and member with Voyage

2013-08-29 Thread Esteban A. Maringolo
Hi all, Let's say I have a class Group and a class Member. aGroup has many members. and aMember can belong to many groups. What is the proper voyageDescription for those one to many relations? Should I do something extra? Everytime I add a member to the group, both the member and the group