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

2013-08-29 Thread Sabine Knöfel
Hi Esteban, All, I was proceeding to seach for the reason of the problem I described yesterday. I added some debugging code into VOMongoSerializer>>ensurePersisted: and the problem I described, did NOT occur. That made the whole process slower...and I had an idea I was looking into >>UUIDGe

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

2013-08-29 Thread jan.struz
Hi, feel free to use & integrate the following fix: Fix-Mongo-OID.cs Jan Sabine Knöfel wrote > Hi Esteban, All, > > I was proceeding to seach for the reason of the problem I described > yesterday. > > I added some debugging code into VO

Re: [Pharo-users] MSI packaging for Pharo

2013-08-29 Thread Usman Bhatti
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 the time of installation. A mere skeleton can be created with the wizard and then changing it isn't so difficult.

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 wrote: > Hi, > feel free to use & integrate the following fix: > > Fix-Mongo-OID.cs > > Jan > > > Sabine Knöfel wrote >> Hi Esteban, All, >> >> I was proceeding to seach for the

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... then

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

2013-08-29 Thread jan.struz
ok, here again: Fix-Mongo-OID.cs :) EstebanLM wrote > file not found :)On Aug 29, 2013, at 2:44 PM, jan.struz < > public+pharo@ > > 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 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 the time of installatio

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

2013-08-29 Thread Sven Van Caekenberghe
On 29 Aug 2013, at 16:51, Esteban Lorenzano 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). Problem with > tha

Re: [Pharo-users] Postmark email library

2013-08-29 Thread vmusulainen
Hi! Thanks you for great job! I try use package at pharo 2.0 but I get warning about dependency from JsonObject class. Which package consists this class? P.S. Gofer configuration cannot load package because absent version with marked by stable. -- View this message in context: http://foru

[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 forum)

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 g

Re: [Pharo-users] Postmark email library

2013-08-29 Thread Stéphane Ducasse
can you tell us from where you are trying to load the package and how do you use the configuration? stef On Aug 30, 2013, at 12:05 AM, vmusulainen wrote: > Hi! > > Thanks you for great job! > > I try use package at pharo 2.0 but I get warning about dependency from > JsonObject class. > > Whic