Re: [Pharo-users] Cleanup of LDAP for Pharo 6/7

2018-02-22 Thread olivier auverlot
very cool :)

2018-02-23 0:22 GMT+01:00 john pfersich :

> Good to know. Thanks for updating that.
>
> Sent from my iPhone
> Encrypted email at jgpfers...@protonmail.com
>
> > On Feb 22, 2018, at 14:18, Torsten Bergmann  wrote:
> >
> > Just as an info: the LDAP packages from
> >
> > http://smalltalkhub.com/#!/~PharoExtras/LDAP
> >
> > had no method categorization and missing class comments and was
> > not updated since Pharo 4.
> >
> > I took some minutes today to clean this up and I also added a new
> baseline/version
> > not loading Zinc (as this is already included) for Pharo 6 and 7.
> >
> > The latest config is now also in MetaRepoForPharo60 and with that
> > should be available for catalog tomorrow for easy consumption after the
> > catalog indexer runs.
> >
> > Thx
> > Torsten/astares
> >
> >
>
>


Re: [Pharo-users] Pharo and ActiveDirectory

2018-01-10 Thread olivier auverlot
Torsten,

I'm not sure that a Active Directory client protocol is available for
Pharo. We have only an LDAP framework (LDAPlayer) that runs fine (I use it
every day).

A quick solution is to use another language to build a REST service
(perhaps that a open source gateway is already available ?)  and
interfacing your Pharo app with him.

Best regards
Olivier :)


2018-01-11 2:56 GMT+01:00 Andrew Glynn :

> If you make some provision to handle attributes with the 'binary' flag
> set, which are generally base64 encoded data such as the person's photo,
> GUID/PUID, and synch options, it should be ok.
>
> LDAP uses similar encoding rules to ASN.1, and ASN.1 has better
> documentation.
>
> The only difficult problem I've run into is that binary values synched via
> HTML (common between MS LDAP and 'truer' LDAP implementations such as
> OpenLDAP and OpenDJ) often don't have the binary fields encoded correctly
> in the HTML.  I could probably dig up some code that handles binary
> attributes, but it wouldn't be Smalltalk code unfortunately.
>
> Cheers
> Andrew
>
>
> -Original Message-
> From: Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] On Behalf
> Of Torsten Bergmann
> Sent: Wednesday, January 10, 2018 6:11 PM
> To: Any question about pharo is welcome 
> Subject: [Pharo-users] Pharo and ActiveDirectory
>
> Hi,
>
> anyone used/uses Pharo to bind to ActiveDirectory?
>
> Last thread I've seen is http://forum.world.st/Pharo-
> amp-LDAP-td3308841.html
>
> Does it work now?
>
>
> Is http://map.squeak.org/package/ccbcb878-e09b-48ed-a773-5939bf8c2c3e the
> latest code is there something more updated?
>
> Thanks
> T.
>
>
>
>


Re: [Pharo-users] Who is maintaining of Artefact?

2017-09-11 Thread olivier auverlot
Hi Alejandro,

There are no activities in the Artefact project because it does what we
need. Of course, if you want explore the world of Unicode, you can do it.
We are interested :)

Best regards
Olivier


2017-09-11 21:09 GMT+02:00 Cyril Ferlicot D. <cyril.ferli...@gmail.com>:

> Le 11/09/2017 à 21:03, Alejandro Infante a écrit :
> > Hi!
> > I would like to explore having support for Unicode characters. I want to
> help for it.
> >
> > Who is the right person to talk about it?
> >
>
> Hi,
>
> Artefact was originally created by Guillaume Larcheveque and Olivier
> Auverlot. But I don't know if they have time to maintain it.
>
> > Cheers!
> > Alejandro
> >
>
>
> --
> Cyril Ferlicot
> https://ferlicot.fr
>
> http://www.synectique.eu
> 2 rue Jacques Prévert 01,
> 59650 Villeneuve d'ascq France
>
>


Re: [Pharo-users] PostgreSQL and Pharo 6

2017-04-22 Thread olivier auverlot
Hi Dimitris,

It's not a SSL problem. Normaly, you can use PostgreSQL without SSL. The
error message says that you must add your client device in the pg_hba.conf
file. This file lists all the devices that are authorized to connect to the
PostgreSQL server.

https://www.postgresql.org/docs/9.1/static/auth-pg-hba-conf.html

At work, I use the postgreSQL V2 protocol without problem with Pharo but I
have not yet tested with Pharo 6. With Garage, it's a cool solution to
build database applications.

Best regards
Olivier :)

2017-04-18 9:07 GMT+02:00 Dimitris Chloupis :

> I adjusted it for my database and gives me error
>
> EFATAL:  no pg_hba.conf entry for host "", user "", database "", SSL off
>
> any way to resolved this ?
>
> On Tue, Apr 18, 2017 at 1:24 AM Benoit St-Jean  wrote:
>
>> Try this:
>>
>> | sql conn connectionSpec result  |
>> sql := 'SELECT * FROM search_terms'.
>> conn := GAConnection new.
>> connectionSpec := GAConnectionArgs
>> hostname: 'localhost'
>> portno: 5432
>> databaseName: 'sodbxtest'
>> userName: 'sodbxtest'
>> password: 'sodbxtest'.
>> conn connectionArgs: connectionSpec.
>>
>> "Connect to the server"
>> result := conn startup.
>> (result errorResponse isKindOf: GAErrorResponse) ifTrue: [ self halt ].
>>
>> "Execute your SQL stuff"
>> result := conn execute: sql.
>> (result errorResponse isKindOf: GAErrorResponse) ifTrue: [ self halt ]
>> ifFalse: [result inspect].
>>
>> "Disconnect from the server"
>> conn close.
>>
>>
>> -
>> Benoît St-Jean
>> Yahoo! Messenger: bstjean
>> Twitter: @BenLeChialeux
>> Pinterest: benoitstjean
>> Instagram: Chef_Benito
>> IRC: lamneth
>> Blogue: endormitoire.wordpress.com
>> "A standpoint is an intellectual horizon of radius zero".  (A. Einstein)
>>
>>
>> --
>> *From:* Dimitris Chloupis 
>> *To:* Benoit St-Jean ; Any question about pharo is
>> welcome 
>> *Sent:* Monday, April 17, 2017 5:24 PM
>>
>> *Subject:* Re: [Pharo-users] PostgreSQL and Pharo 6
>>
>> Following the instructions here
>>
>> http://guillep.github.io/DBXTalk/garage/installation.html
>>
>> I did
>>
>> Gofer it
>> smalltalkhubUser: 'DBXTalk' project: 'Garage';
>> configurationOf: 'Garage';
>> load.
>>
>>
>> (ConfigurationOfGarage project version: '0.5')
>> load: 'postgresV2'.
>>
>> And it did install
>>
>>
>> On Tue, 18 Apr 2017 at 00:02, Benoit St-Jean  wrote:
>>
>> Tell me which exact package you loaded (or even better, the exact to load
>> it) and I will test some code against my PostgreSQL server...
>>
>>
>> -
>> Benoît St-Jean
>> Yahoo! Messenger: bstjean
>> Twitter: @BenLeChialeux
>> Pinterest: benoitstjean
>> Instagram: Chef_Benito
>> IRC: lamneth
>> Blogue: endormitoire.wordpress.com
>> "A standpoint is an intellectual horizon of radius zero".  (A. Einstein)
>>
>>
>> --
>> *From:* Dimitris Chloupis 
>> *To:* Benoit St-Jean ; Any question about pharo is
>> welcome 
>> *Sent:* Monday, April 17, 2017 4:55 PM
>>
>> *Subject:* Re: [Pharo-users] PostgreSQL and Pharo 6
>>
>> no conn connect does not work because GAConnection has no such method.
>> #connect exist in GAPostgresDrive but even if I go that route I get error
>> #OptionAt:IfAbsent: was sent to nil . With this code
>>
>> conn2 := GAPostgresDriver new .
>> conn2 host: 'ec2-**-***-***-185.eu-west-1.compute.amazonaws.com'
>> port: ''
>> database:'***'
>> user: '*'
>> password:''***'.
>> conn2 connect.
>>
>> Is there sample code that connects to online databases ?
>>
>>
>>
>> On Mon, Apr 17, 2017 at 11:18 PM Benoit St-Jean 
>> wrote:
>>
>> You have to #connect before executing SQL statements!
>>
>> Something like (in your code):
>>
>> conn connect.
>>
>> -
>> Benoît St-Jean
>> Yahoo! Messenger: bstjean
>> Twitter: @BenLeChialeux
>> Pinterest: benoitstjean
>> Instagram: Chef_Benito
>> IRC: lamneth
>> Blogue: endormitoire.wordpress.com
>> "A standpoint is an intellectual horizon of radius zero".  (A. Einstein)
>>
>>
>> --
>> *From:* Dimitris Chloupis 
>> *To:* Benoit St-Jean ; Any question about pharo is
>> welcome 
>> *Sent:* Monday, April 17, 2017 3:54 PM
>> *Subject:* Re: [Pharo-users] PostgreSQL and Pharo 6
>>
>> Installing from Catalog Browser fails
>>
>> I installed it via the the website instructions, it installs fine
>>
>> But if I use it this way
>>
>> conn := GAConnection new.
>> ca := GAConnectionArgs hostname: 'ec2-**-***-***-185.eu-west-1.
>> compute.amazonaws.com'
>> portno: ''
>> databaseName:'***'
>> userName: '*'
>> password:''***'.

[Pharo-users] How to use the serial port on MacOS X?

2017-03-12 Thread olivier auverlot
Hi,

I try to use the serial port to communicate with an Arduino. On Linux, no
problemo. I can open the serial port with the following code:

| serialPort baudRate comPortNumber |
baudRate := 31250.
  comPort := '/dev/ttyACM0'.

  serialPort := SerialPort new
baudRate: 31250;
   dataBits: 8;
   stopBitsType: 1;
   parityType: 0;
  yourself.

"the port is closed to ensure that it will be free"
serialPort close.
(serialPort openPort: comPort) isNil
ifTrue: [ ^self error: 'COM port not available' ]
ifFalse: [ serialPort inspect ].
serialPort close.

But on MacOS X (10.11.6), the same code used with /dev/cu.usbmodel1411
doesn't run. The error is "Cannot open '/dev/cu.usbmodel1411'". I'm sure
that is the correct serial port. If I type "more -f /dev/cu.usbmodel1411"
in a terminal, the rx/tx leds of the Arduino are blink.

Someone has an idea about this problem that is not specific of the Arduino
but concerns the generic usage of the serial port with Pharo?

Best regards
Olivier

ps: I can't test on Windows but I'm interested by a feedback.


Re: [Pharo-users] Arduino

2017-03-02 Thread olivier auverlot
Hi Ben,

Thanks for the pointers. I hadn't found all.

For the moment, I try mainly to find a usable firmata protocol.

Best regards
Olivier ;-)

2017-03-02 6:52 GMT+01:00 Ben Coman <b...@openinworld.com>:

> On Thu, Mar 2, 2017 at 5:31 AM, olivier auverlot
> <olivier.auver...@gmail.com> wrote:
> >
> > Hi,
> >
> > Since some weeks, I do some experimentations with an Arduino board. I
> search now to use my Arduino with Pharo. I have found some informations on
> the web but nothing seems usable or up to date for the latest versions of
> Pharo.
> >
> > Someone have worked on this domain ? I'm interested by a firmata client
> protocol or why not a solution to program an Arduino directly from Pharo.
> >
>
> Hi Olivier, You probably have a few of these references, but since you
> don't mention which you have,
> I'll list what I found from a quick sweep...
>
> I read [1] that the Firmata protocol "uses the MIDI message format."
>
> Pharo seems to have removed the MIDI related code after it forked from
> Squeak.
> Squeak still has it. Download 5.1 from http://squeak.org/downloads/
> Then go World Menu > Open > Method finder
> Type midi 
> and browse the code. Pharo and Squeak share a VM, so this should be
> compatible with Pharo.
>
> You'll see a few of the primitives located in classes SimpleMIDIPort
> and MidiPrimTester
> in the System-SerialPort package.
>
> Note, some of the primitives that show no references/implementors in
> the right-side pane,
> need to be right-clicked to choose Senders to see the implementation,
> since the method name is different to the pragma name.
>
> Then there is http://www.squeaksource.com/Arduino.html
> which may or may not need to MIDI code from Squeak.
> This code is circa 2013 so the (optional) FFI parts may need updating
> for Pharo UFFI.
>
> There is http://smalltalkhub.com/#!/~juanmanuelvallejos/gcodewithfirmata
> "It is an implementation of the protocol firmata in smalltalk. And
> also it contains a parsing to G code for cnc machines."
>
> There is http://smalltalkhub.com/#!/~Citilab/Snap4Arduino/
> circa 2014.
>
> There is http://smalltalkhub.com/#!/~JohanBriglia/ArduinoIO
> circa 2016, but probably not what you want being a "Simple program to
> connect easily pharo and the arduino via serial port Uses a Python
> program and terminal commands via CommandShell"
>
> There is http://smalltalkhub.com/#!/~JLaval/Arduino
> circa 2016, and the commits show PhratchArduino-janniklaval.9
> Phratch is available here http://www.phratch.com/
> Its based on Pharo 4, but seems the most current.
>
> Reading here...
> https://groups.google.com/forum/#!topic/phratch/C6IYZ-TDt50
> perhaps the most efficient path would be buying Jannik an Arduino to test
> on
> (if indeed Phratch uses the firmata protocol as you require).
>
>
> cheers -ben
>
>
>
>
>
>
>
>
> [1] https://github.com/firmata/protocol/blob/master/protocol.md
>
>


Re: [Pharo-users] Arduino

2017-03-01 Thread olivier auverlot
For the moment, I just want to do a catalog of the existing solutions. The
next step will be to evaluate them.

My main target is a Firmata protocol implementation usable with Pharo 5 or
6.

Le 1 mars 2017 10:33 PM, "stepharong"  a écrit :

> Olivier
>
> What are the topcis you investigated?
>
> did you contact the authors?
>
> STef
>
> Hi,
>
> Since some weeks, I do some experimentations with an Arduino board. I
> search now to use my Arduino with Pharo. I have found some informations on
> the web but nothing seems usable or up to date for the latest versions of
> Pharo.
>
> Someone have worked on this domain ? I'm interested by a firmata client
> protocol or why not a solution to program an Arduino directly from Pharo.
>
> Best regards
> Olivier ;-)
>
>
>
>
> --
> Using Opera's mail client: http://www.opera.com/mail/
>


[Pharo-users] Arduino

2017-03-01 Thread olivier auverlot
Hi,

Since some weeks, I do some experimentations with an Arduino board. I
search now to use my Arduino with Pharo. I have found some informations on
the web but nothing seems usable or up to date for the latest versions of
Pharo.

Someone have worked on this domain ? I'm interested by a firmata client
protocol or why not a solution to program an Arduino directly from Pharo.

Best regards
Olivier ;-)


Re: [Pharo-users] Create png from pdf

2017-01-16 Thread olivier auverlot
Hi Sabine,

Converting a PDF into a PNG with Pharo is not an easy task because you must
write a PDF reader.

With Artefact, the other approach is to draw on a form instead of
generating the PDF instructions. For geometrics items, It's relatively easy
but the respect of paper formats and the management of fonts could be very
complex.

The difficulty is to have the same result between the PDF document and the
simulated document  written in a PNG file.

Best regards
Olivier

2017-01-16 12:05 GMT+01:00 Henrik Nergaard :

> See Form protocol (*Graphics-files), #writePNGFileNamed: , and
> PNGReadWriter.
> 
> | canvas |
> canvas := FormCanvas extent: World extent.
> World fullDrawOn: canvas.
> canvas form writePNGFileNamed: 'imageOfWorld.png'
> 
>
> There are also some methods in morph (#exportAs:using: #exportAsPng), but
> these will ask for the filename via the file dialog.
> 
> World exportAsPng
> 
>
>
> Best regards,
> Henrik
>
> -Opprinnelig melding-
> Fra: Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] På vegne av
> Sabine Manaa
> Sendt: 16 January 2017 10:26
> Til: pharo-users@lists.pharo.org
> Emne: [Pharo-users] Create png from pdf
>
> Hi,
>
> currently, I create pdfs with Artefact and it works fine.
> For displaying previews of the pdf reports, I use  Apache PDFBox to
> generate pngs from the pdfs.
> This works, too.
>
> But I would prefer to generate the pngs directly from pharo and do not
> call external libraries.
>
> Stephane told me that "there is a form in a morph and it can be converted
> in png".
>
> Can anyone give me a small entry point or has done similar and provide
> some code snippet?
>
> Regards
> Sabine
>
>
>
>
>
> --
> View this message in context: http://forum.world.st/Create-
> png-from-pdf-tp4929722.html
> Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
>
>
>


Re: [Pharo-users] Chip-8

2016-11-20 Thread olivier auverlot
Very cool !!!

What are the used keys to move the player ?

Olivier ;-)

2016-11-21 0:16 GMT+01:00 Henrik Nergaard <henrik.nerga...@uia.no>:

> http://smalltalkhub.com/#!/~Latsabben/Chip8
>
>
>
> *From:* Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] *On
> Behalf Of *olivier auverlot
> *Sent:* Wednesday, November 16, 2016 11:22 AM
> *To:* Any question about pharo is welcome <pharo-users@lists.pharo.org>
> *Subject:* [Pharo-users] Chip-8
>
>
>
> Hi,
>
>
>
> I just read an fun article about Chip-8. Someone has worked on an emulator
> of this with Pharo?
>
>
>
> http://www.multigesture.net/articles/how-to-write-an-
> emulator-chip-8-interpreter/
>
> http://miguelduarte.pt/2012/07/09/chip-8-emulator-in-javascript/
>
>
>
> Best regards
>


[Pharo-users] Chip-8

2016-11-16 Thread olivier auverlot
Hi,

I just read an fun article about Chip-8. Someone has worked on an emulator
of this with Pharo?

http://www.multigesture.net/articles/how-to-write-an-emulator-chip-8-interpreter/
http://miguelduarte.pt/2012/07/09/chip-8-emulator-in-javascript/

Best regards


Re: [Pharo-users] Dues anybody try Artifact with non latin characters?

2016-11-12 Thread olivier auverlot
Denis,

Could you publish a snippet of code that generates a PDF document with a
text that contains russians letters ? We need to test.

For russian letters, I think That You need a consistent font and the proper
encoding. Normally, the Helvetica / Arial  should be ok. For the encoding,
the standard fonts use ISO-8859-1 or windows-1252. If you use UTF8, You
Could try to convert your text to this encoding before insert it in the PDF
document.

2016-11-12 12:26 GMT+01:00 Guillaume Larcheveque <
guillaume.larcheve...@gmail.com>:

> I forwarded the conversation to Olivier.
>
> Embed fonts are not yet implemented by Artefact so we will see with
> Olivier if we will join the development of it (if you plan to do it) or if
> we will just help you by answering your questions if we do not have time to
> code it.
>
> 2016-11-12 12:07 GMT+01:00 Sabine Manaa :
>
>> lets wait what Olivier or Guillaume say
>>
>> 2016-11-12 11:28 GMT+01:00 Denis Kudriashov [via Smalltalk] <[hidden
>> email] >:
>>
>>>
>>> 2016-11-11 21:07 GMT+01:00 Sabine Manaa <[hidden email]
>>> >:
>>>
 Hi Denis,

 perhaps this is the same topic (I am not sure):
 http://forum.world.st/Artefact-and-WideString-td4857147.html#a4857325

>>>
>>> Thank's Sabine. But it is not helps. And google too. It seems that I
>>> need embed fonts which is not implemented by Artifact.
>>>
>>>
>>> --
>>> If you reply to this email, your message will be added to the discussion
>>> below:
>>> http://forum.world.st/Dues-anybody-try-Artifact-with-non-lat
>>> in-characters-tp4922747p4922787.html
>>> To start a new topic under Pharo Smalltalk Users, email [hidden email]
>>> 
>>> To unsubscribe from Pharo Smalltalk Users, click here.
>>> NAML
>>> 
>>>
>>
>>
>> --
>> View this message in context: Re: Dues anybody try Artifact with non
>> latin characters?
>> 
>> Sent from the Pharo Smalltalk Users mailing list archive
>>  at
>> Nabble.com.
>>
>
>
>
> --
> *Guillaume Larcheveque*
>
>


Re: [Pharo-users] Material Design Lite

2015-12-03 Thread olivier auverlot
> Improve it would be to create upper level components to ease the us

Yes, it's now the goal :-).



2015-12-03 9:41 GMT+01:00 Guillaume Larcheveque <
guillaume.larcheve...@gmail.com>:

> I used it and it's more than a WiP. It is completely usable and there is
> examples and demos.
>
> Improve it would be to create upper level components to ease the use but
> all MDL components as google provide it are implemented.
>
> 2015-12-03 9:32 GMT+01:00 olivier auverlot <olivier.auver...@gmail.com>:
>
>> Hi,
>>
>> Kevin and me have worked this summer on a port of Material Design Lite
>> for Seaside. It's a work in progress but we think that someone could be
>> interested to use and improve our work.
>>
>> http://www.getmdl.io/
>>
>> http://smalltalkhub.com/#!/~KevinLanvin/MaterialDesignLite
>>
>> Best regards
>> Olivier
>>
>
>
>
> --
> *Guillaume Larcheveque*
>
>


Re: [Pharo-users] Artefact and WideString

2015-10-21 Thread olivier auverlot
Hi Hilaire,

Take a look in the Artefact demos. I think there are a PDF document with a
monetary character.


2015-10-21 22:02 GMT+02:00 Hilaire :

> Hello,
>
> Is it me, or is there a problem with WideString and Artefact?
>
> The following produces an empty page:
>
> page add: ((PDFFormattedTextElement from: 10mm @ 20mm to: 277mm @ 30mm)
>   alignment: PDFAlignment left;
>   text:  'Argent de poche : 1€').
>
> The text is WideString.
> Removing the €, it went ok.
>
> Hilaire
>
>
> --
> Dr. Geo
> http://drgeo.eu
> http://google.com/+DrgeoEu
>
>
>
>


Re: [Pharo-users] Pharo and VPS

2015-10-15 Thread olivier auverlot
Hi,

OVH have a very cool plan with Debian7 or 8.

https://www.ovh.com/fr/vps/vps-ssd.xml

Olivier ;-)

2015-10-15 17:40 GMT+02:00 Andres Fortier :

> As an alternative, Openshift has a free plan that includes 3 small gears
> (512RAM - 1GB storage IIRC). I've used to host different things (mostly RoR
> apps) but I think there should be no problem on hosting a Pharo app with a
> DIY cartridge.
>
> Just 2 cts.
>
> On Thu, Oct 15, 2015 at 12:32 PM, Mariano Martinez Peck <
> marianop...@gmail.com> wrote:
>
>>
>>
>> On Thu, Oct 15, 2015 at 12:17 PM, Jimmie Houchin 
>> wrote:
>>
>>> Hello,
>>>
>>> I am exploring getting a VPS similar to the 1GB option.
>>> https://www.linode.com/pricing
>>>
>>> I have not selected a company or service at this time so this is simply
>>> an example and one of my options.
>>>
>>> I have not used such a service before.
>>>
>>>
>> I am using Linode and running Pharo and GemStone there (CentOS 7). So far
>> no problem and Linode seem very very cool.
>>
>>
>>> How suitable is Pharo currently for such an use case?
>>> Will Pharo and its polling and constant minimum cpu usage be a problem?
>>>
>>
>> It's not in my case. Linode does invoice for cpu cycles, you simply has
>> CPU assigned and you do not care if it is 100% 24 hours a day or 10% used.
>> Other services like amazon etc do care about CPU cycles (the price is based
>> somehow on that I think), but not in Linode or other VPS-like.
>>
>>
>>>
>>> I am wanting to learn to use VPS/Cloud services. I am wanting to play
>>> with a web server, wiki, blog. I want control of my tools and not the
>>> standard LAMP setup that so commonly offered.
>>>
>>
>> I am very happy with Linode. It supports many nice things like having
>> multiple virtual images, clone them, backups, etc.
>> For example, I have a Linode template VM that is "ready to run my app"
>> and then I can clone such VM for each site (app instance) we deploy.
>> We have a daily backup, weekly, monthly and one more free slot.
>>
>>
>>> Any wisdom on Pharo in such an environment, pros and cons, greatly
>>> appreciated.
>>>
>>>
>> I think it depends on the type of app. For my case, I do not want to host
>> myself anymore. So I would go for cloud based for sure. Then, you have the
>> VPS like or the amazon-like. Both allow you to grow. I guess you may choose
>> this depending on your type of app. In any case, you end up having a OS
>> where you simply install Pharo and that's it.
>>
>>
>>
>> --
>> Mariano
>> http://marianopeck.wordpress.com
>>
>
>


Re: [Pharo-users] How do I run Pharo on Debian?

2015-10-08 Thread olivier auverlot
On debian 32 bits, the standard version works very well. Just unzip the
archive and lauch pharo with the pharo bash script.
Le 7 oct. 2015 22:21, "justonium"  a écrit :

> ./pharo-ui path/to/Pharo.image
>
> This isn't an executable command.
>
>
>
> --
> View this message in context:
> http://forum.world.st/How-do-I-run-Pharo-on-Debian-tp4854180p4854273.html
> Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
>
>


Re: [Pharo-users] Artifact

2015-07-26 Thread olivier auverlot
Hi Hilaire,

I just tried the stable version of Artefact in a Pharo 3.0 image. All demos
are ok but I uses Mac OS X.

Could you test with Acrobat Reader  on Linux? The PDF reader (Evince ?) has
a lack of functionalities and it's not a good thing to use it. Many PDF
specifications are not or bad supported. The situation are the same that
with browsers and the support of HTML. Only Acrobat Reader can be
considered as validation tool.

Best regards
Olivier ;-)

2015-07-26 9:34 GMT+02:00 Hilaire hila...@drgeo.eu:

 It looks like only the brochure example is broken because it block the
 image.

 Hilaire

 Le 26/07/2015 15:29, Hilaire a écrit :
  And all tests are greem
 
  Le 26/07/2015 15:23, Hilaire a écrit :
  Hello,
 
  A few demo examples from Artifact does not work in a Pharo 3.0
  environment. An empty document or a document I can't open with standard
  linux pdf viewer.
 
  I list them here:
 
  -datatableWithCaptions
  -datatable
  -paragraph
  -mosaique
  -arrow
  -brochure
  -horizontalLayout
 
  Hilaire
 
 


 --
 Dr. Geo
 http://drgeo.eu
 http://google.com/+DrgeoEu






Re: [Pharo-users] [ANN] Teapot 0.91

2015-05-10 Thread olivier auverlot
very interesting :-)

2015-05-09 21:13 GMT+02:00 Attila Magyar m.magy...@gmail.com:

 Hello,

 Teapot 0.91 released today.

 Teapot is micro web framework that focuses on simplicity and ease of use.

 Here's a summary of changes:
  - Routes and before/after filters may include conditions (see the example
 below)
  - Routes can be defined with /any:/ that serves as a wildcard matching any
 http method
  - Added /charSet:/ accessor to TeaResponse

 E.g.

 Teapot on
 GET: 'test' - result; when: [:req | req accept = 'application/json'];
 start.

 More information:

 http://smalltalkhub.com/#!/~zeroflag/Teapot



 --
 View this message in context:
 http://forum.world.st/ANN-Teapot-0-91-tp4825485.html
 Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.




[Pharo-users] Syslog client

2015-03-31 Thread olivier auverlot
Hi,

I just released an UDP client for the Syslog network protocol (RFC5424).
The product is available on SmalltalkHub.

http://smalltalkhub.com/#!/~olivierauverlot/Syslog

Best regards
Olivier ;-)


Re: [Pharo-users] Boardician (board game framework)

2015-03-24 Thread olivier auverlot
very cool !

2015-03-24 15:41 GMT+01:00 Laura Risani laura.ris...@gmail.com:

 Hi all,

 A time ago i posted two board games on the list and Stéphane said that he
 would like to extract from these and other ones he has gathered a framework
 for doing board games. So i developed a little one called 'Boardician' and
 implemented four little example games through it.

 DOCUMENTATION
 http://boardician.blogspot.com.ar/2015/03/boardician.html

 DOWNLOAD https://www.blogger.com/null
 You can install configuration BgBoardician from Configuration Browser on
 3.0 and 4.0 . This will download packages of framework (BgBoardician) and
 example games (BgBoxPush, BgEatBullet, BgDropPiece, BgEatElongating)

 To run example games send

 EDirector new play.
 BPDirector new play.
 DPDirector new play.
 GDirector new play.


 FEEDBACK https://www.blogger.com/null
 If you like (i would really like you to) to send any feedback comments on
 design / names / implementation / functionalities to add / questions you
 can post a comment on the blog / mail me.

 Next i'll be adding tests and uploading development history to project's
 repo.

 Best,
 Laura



Re: [Pharo-users] MySQL Access

2015-03-22 Thread olivier auverlot
Hi Volkert,

If you have no need of portability, you can try the ODBC connector (
http://smalltalkhub.com/#!/~PharoExtras/ODBC)

Best regards
Olivier ;-)

2015-03-22 11:37 GMT+01:00 volkert volk...@komponentenwerkstatt.de:

 Dear all,

 i need access to a MySQL DB from Pharo. What are my options here? Is
 dbxtalk the way to go?

 I would like to start with Pharo 4.0.

 OS is Windows 8.1.

 BW,
 Volkert






Re: [Pharo-users] Published some old games ...

2015-02-08 Thread olivier auverlot
very cool !

2015-02-08 12:05 GMT+01:00 Ignacio Sniechowski 0800na...@gmail.com:

 Stef,
 Thanks so much!
 I love this because its fun to analyze the code and learn from it.
 Best
 Nacho


 *Lic. Ignacio Sniechowski, MBA*
 *Prosavic SRL*

 *Tel: (011) 4542-6714*





















 On Sun, Feb 8, 2015 at 6:28 AM, stepharo steph...@free.fr wrote:

  Hi guys

 It was for so long on my todo list that I decided to start addressing it.
 I publish games that were defined long time ago in Squeak.
 - Tetris
 - Miners
 - SameGame
 - ChineseCheckers

 There are now available via the metarepository configuration browser
 I will continue to publish some others.


 Stef








Re: [Pharo-users] REST approach?

2015-02-03 Thread olivier auverlot
Zinc + Seaside REST is a very good solution that I use every days ;-)

Olivier

2015-02-04 7:13 GMT+01:00 S Krish krishnamachari.sudha...@gmail.com:


 Seaside REST  / Teapot aka Sinatra from Ruby  hope to push this
 framework further

 On Wed, Feb 4, 2015 at 9:35 AM, Cameron Sanders via Pharo-users 
 pharo-users@lists.pharo.org wrote:



 -- Forwarded message --
 From: Cameron Sanders camsand...@aol.com
 To: Any question about pharo is welcome pharo-users@lists.pharo.org
 Cc:
 Date: Tue, 3 Feb 2015 23:05:21 -0500
 Subject: REST approach?

 Our app runs on Pharo and Gemstone and must continue to do so. We use
 Zinc and Seaside. We require credentialing.

 What tools do people recommend using for setting up a REST server?
 Straight Zinc? Any tips?

 Thanks in advance!
 Cam





[Pharo-users] Pharo and ODBC

2014-11-20 Thread olivier auverlot
Hi,

I try to use the ODBC framework presents in the configurations list and
named ODBC (TorstenBergmann.5)

I want connect Pharo to a Postgresql server and I installed the latest
version of the ODBC driver. The datasource is configured as system
datasource. The connection test is ok. My computer uses Windows 7 64 bits.

In Pharo, I try to connect with the following code:

connection := ODBCConnection dsn: 'mysource' user: 'myuser' password:
'mypassword'.
connection close.

The connection fails and I get an error message: The data source (DSN) has
a specified architecture incompatibility between the driver and the
application.

Someone have an idea about this problem ? Someone works with the ODBC
solution ?

Best regards
Olivier


Re: [Pharo-users] Pharo and ODBC

2014-11-20 Thread olivier auverlot
Thanks for your help.

The ODBC source must be declared with C:\WINDOWS\SysWow64\odbcad32.exe and
use 32 bits mode.



2014-11-20 9:56 GMT+01:00 S Krish krishnamachari.sudha...@gmail.com:


 Plausible Pharo 32 bit / 64 bit conflict..?

 http://msdn.microsoft.com/en-us/library/ms712362%28v=vs.85%29.aspx

 If you use the 64-bit odbcad32.exe to configure or remove a DSN that
 connects to a 32-bit driver, for example, Driver do Microsoft Access
 (*.mdb), you will receive the following error message:

 On Thu, Nov 20, 2014 at 1:35 PM, olivier auverlot 
 olivier.auver...@gmail.com wrote:

 Hi,

 I try to use the ODBC framework presents in the configurations list and
 named ODBC (TorstenBergmann.5)

 I want connect Pharo to a Postgresql server and I installed the latest
 version of the ODBC driver. The datasource is configured as system
 datasource. The connection test is ok. My computer uses Windows 7 64 bits.

 In Pharo, I try to connect with the following code:

 connection := ODBCConnection dsn: 'mysource' user: 'myuser' password:
 'mypassword'.
 connection close.

 The connection fails and I get an error message: The data source (DSN)
 has a specified architecture incompatibility between the driver and the
 application.

 Someone have an idea about this problem ? Someone works with the ODBC
 solution ?

 Best regards
 Olivier





Re: [Pharo-users] Render PDF / Web Document in Pharo

2014-11-04 Thread Olivier Auverlot
Hi Sean,

For rendering PDF documents, you could use Artefact ( 
https://sites.google.com/site/artefactpdf/ )

Best regards
Olivier ;-)

Le 4 nov. 2014 à 20:13, Sean P. DeNigris a écrit :

 Is it possible to display either in a Morphic world? As a start, even a
 non-interactive preview would be valuable...
 
 Thanks.
 
 
 
 -
 Cheers,
 Sean
 --
 View this message in context: 
 http://forum.world.st/Render-PDF-Web-Document-in-Pharo-tp4788409.html
 Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
 



Re: [Pharo-users] Render PDF / Web Document in Pharo

2014-11-04 Thread Olivier Auverlot
No but with Pharo, I think that's not difficult to launch a PDF viewer at the 
end of PDF generation process.

Le 4 nov. 2014 à 21:59, François Stephany a écrit :

 Does artefact support *displaying* PDF in Pharo?
 
 On Tue, Nov 4, 2014 at 11:53 AM, Olivier Auverlot 
 olivier.auver...@gmail.com wrote:
 Hi Sean,
 
 For rendering PDF documents, you could use Artefact ( 
 https://sites.google.com/site/artefactpdf/ )
 
 Best regards
 Olivier ;-)
 
 Le 4 nov. 2014 à 20:13, Sean P. DeNigris a écrit :
 
 Is it possible to display either in a Morphic world? As a start, even a
 non-interactive preview would be valuable...
 
 Thanks.
 
 
 
 -
 Cheers,
 Sean
 --
 View this message in context: 
 http://forum.world.st/Render-PDF-Web-Document-in-Pharo-tp4788409.html
 Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
 
 
 



Re: [Pharo-users] Voyage: how to delete references to objects.

2014-04-18 Thread olivier auverlot
Hi,

This morning, I arrived early at office because I was impatient to test the
proposed solutions. Thank for your help, my problem is solved and I
understand better the usage of Voyage and Mongo.

We learn something each day and it's cool !

Best regards
Olivier ;-)


2014-04-17 21:56 GMT+02:00 pharo4s...@free.fr pharo4s...@free.fr:

  esteban

 you should do a pass on the voyage documentation chapter and add this kind
 of infomration.
 We can pair write if you want.

 stef


 On 17/4/14 17:56, Esteban Lorenzano wrote:


  On 17 Apr 2014, at 15:18, Norbert Hartl norb...@hartl.name wrote:


  Am 17.04.2014 um 15:05 schrieb olivier auverlot 
 olivier.auver...@gmail.com:

  thanks Robert for the explications.

   It’s Norbert btw. :)

  I agree with you that's the best way to remove a book is to delete the
 reference in  ComicsCollection.

  But how to do that ? Must I simply remove the reference in the ordered
 collection ? Voyage will syncronize automatically the data in memory with
 the content of the database ? Must I force the save of the data after
 removing the reference ?

   You need to explicitly save it as we don’t have something like write
 barriers in the image. So

  aComicCollection
  removeBook: aBook;
  save

  is needed.


  yes, and also (if you want to be clean):

  aBook remove.

  (assuming aBook is also persistent).

  But as Sabina points: #enableMissingContent in CommicCollection will
 help you to simplify things, then you just need: aBook remove, and next
 time you read aComicCollection it will “clean” the invalid reference.
 I call that “eventual integrity” :P
 but beware of it… is considered “power voyage programming” :)

  Esteban


  Norbert

  Olivier ;-)


 2014-04-17 14:10 GMT+02:00 Norbert Hartl norb...@hartl.name:


 Am 17.04.2014 um 13:53 schrieb olivier olivier.auver...@gmail.com:

  Hi,
 
  I'm using Voyage in a Pharo application.
 
  I have two MongoDB collections which are ComicsCollection and
 ComicsBook. Each book is attached to a instance of ComicsCollection. The
 reference of each book is stored in an ordered collection (in the instance
 of ComicsCollection). The problem is that if I remove a book, the reference
 to the book is not deleted from ComicsCollection.
 
  How can I remove properly a book and the reference to the book ?
 
  From the smalltalk image view the problem is usually exactly the
 opposite: You don’t delete objects but you remove references to them. As
 voyage maps objects it is a good idea to stay in the object realm. So you
 should rather remove the book from the collection. This way you won’t get
 errors just garbage. The „real“ problem that arises then is that the book
 would still be in the database. Just like it is in the image but there is
 no garbage collector for mongo. To decide that from the image is not
 possible. You load only a sub graph from the database into image memory. So
 you don’t know if there are other objects referencing the book.

 If your records fit all in memory you could load all collections and
 books and build the difference between all referenced books in the
 collections and the total amount of books. The difference will be the set
 of objects not being referenced by a collection and those can be deleted.

 If the records do not fit in memory an alternative strategy would be
 needed. I started to research if it is possible to build a map/reduce based
 garbage collector for common cases but got distracted. But I have the same
 problem so I will need to pick it up some time.

 hope that helps,

 Norbert









[Pharo-users] how to duplicate document with Voyage

2014-04-17 Thread Olivier Auverlot

Hi,

I'm using Voyage and I need to duplicate an existing document in a Mongo 
database. I suppose that the id must be changed before saving.


What is the best way to do that ?

Best regards
Olivier ;-)





Re: [Pharo-users] how to duplicate document with Voyage

2014-04-17 Thread olivier auverlot
simply ? Thanks ;-)


2014-04-17 10:42 GMT+02:00 Esteban Lorenzano esteba...@gmail.com:


 On 17 Apr 2014, at 10:17, Norbert Hartl norb...@hartl.name wrote:

 
  Am 17.04.2014 um 10:08 schrieb Olivier Auverlot 
 olivier.auver...@gmail.com:
 
  Hi,
 
  I'm using Voyage and I need to duplicate an existing document in a
 Mongo database. I suppose that the id must be changed before saving.
 
  What is the best way to do that ?
 
  If you need a shallow copy then you better just copy the object and
 store it. Changing the id is asking for trouble I guess. That would
 probably work if you implement #= on those objects but I think it is a hack.
 
  anObject copy save

 +1

 
  should do.
 
  Norbert
 
 





Re: [Pharo-users] Voyage: how to delete references to objects.

2014-04-17 Thread olivier auverlot
Norbert,

Sorry for my mistake ;-)



2014-04-17 15:18 GMT+02:00 Norbert Hartl norb...@hartl.name:


 Am 17.04.2014 um 15:05 schrieb olivier auverlot 
 olivier.auver...@gmail.com:

 thanks Robert for the explications.

 It’s Norbert btw. :)

 I agree with you that's the best way to remove a book is to delete the
 reference in  ComicsCollection.

 But how to do that ? Must I simply remove the reference in the ordered
 collection ? Voyage will syncronize automatically the data in memory with
 the content of the database ? Must I force the save of the data after
 removing the reference ?

 You need to explicitly save it as we don’t have something like write
 barriers in the image. So

 aComicCollection
 removeBook: aBook;
 save

 is needed.

 Norbert

 Olivier ;-)


 2014-04-17 14:10 GMT+02:00 Norbert Hartl norb...@hartl.name:


 Am 17.04.2014 um 13:53 schrieb olivier olivier.auver...@gmail.com:

  Hi,
 
  I'm using Voyage in a Pharo application.
 
  I have two MongoDB collections which are ComicsCollection and
 ComicsBook. Each book is attached to a instance of ComicsCollection. The
 reference of each book is stored in an ordered collection (in the instance
 of ComicsCollection). The problem is that if I remove a book, the reference
 to the book is not deleted from ComicsCollection.
 
  How can I remove properly a book and the reference to the book ?
 
 From the smalltalk image view the problem is usually exactly the
 opposite: You don’t delete objects but you remove references to them. As
 voyage maps objects it is a good idea to stay in the object realm. So you
 should rather remove the book from the collection. This way you won’t get
 errors just garbage. The „real“ problem that arises then is that the book
 would still be in the database. Just like it is in the image but there is
 no garbage collector for mongo. To decide that from the image is not
 possible. You load only a sub graph from the database into image memory. So
 you don’t know if there are other objects referencing the book.

 If your records fit all in memory you could load all collections and
 books and build the difference between all referenced books in the
 collections and the total amount of books. The difference will be the set
 of objects not being referenced by a collection and those can be deleted.

 If the records do not fit in memory an alternative strategy would be
 needed. I started to research if it is possible to build a map/reduce based
 garbage collector for common cases but got distracted. But I have the same
 problem so I will need to pick it up some time.

 hope that helps,

 Norbert







Re: [Pharo-users] JPEG support in Artifact

2014-04-04 Thread olivier auverlot
Hi Stephan,

Yes, we have discussed with Guillaume. We don't have a better solution to
propose but we will be really interested if someone write a portable JPEG
support. It will be cool to have the possibility to extract header
informations from pictures without using a plugin.

Best regards



2014-04-03 16:02 GMT+02:00 Guillaume Larcheveque 
guillaume.larcheve...@gmail.com:

 If I remember well, we used this way to get some data about image required
 by PDF format.

 Maybe there is a smarter way to do this, I will have a look with Olivier
 about this.


 2014-04-03 10:32 GMT+02:00 Stephan Eggermont step...@stack.nl:

 Reg Krock took a look at how difficult it would be to port Artefact to
 Gemstone.
 He found that JPEG support uses a plugin based reader/writer, and seems to
 render the JPEG using BitBlt and Form.

 Why are JPEGs rendered? I'd think embedding them should be enough
 (and be better for speed and image quality)

 Stephan




 --
 *Guillaume Larcheveque*




Re: [Pharo-users] Spec website: nice!

2014-02-28 Thread olivier auverlot
Hi Benjamin

It's very cool ! The website and the documentation are very pleasant and
well presented. Perhaps you could add links to the Pharo web site and the
RMoD team ?

Olivier ;-)


2014-02-28 11:34 GMT+01:00 Goubier Thierry thierry.goub...@cea.fr:



 Le 28/02/2014 11:26, Benjamin a écrit :

  Because I did not knew about it until yesterday :)


 Took me a while to understand that too :) Found the code when hacking
 support for gitfiletree in Metacello.


  I will have a look next week :P
 (or if you want to submit a PR before LOL)


 Hum, maybe over the week-end then. By the way, your link to github is
 broken :)

 Thierry

  Ben

 On 28 Feb 2014, at 11:10, Goubier Thierry thierry.goub...@cea.fr
 mailto:thierry.goub...@cea.fr wrote:

  Yes, this is cool :) Nice work.

 Benjamin, why don't you do a ConfigurationOfSpec with an url of
 'github://SpecForPharo/spec:master' ?

 Thierry

 Le 28/02/2014 10:59, p...@highoctane.be mailto:p...@highoctane.be a

 écrit :

 Didn't knew about it and came across by looking at the GitHub project
 for Spec.

 http://spec.st/

 Phil


 --
 Thierry Goubier
 CEA list
 Laboratoire des Fondations des Systèmes Temps Réel Embarqués
 91191 Gif sur Yvette Cedex
 France
 Phone/Fax: +33 (0) 1 69 08 32 92 / 83 95



 --
 Thierry Goubier
 CEA list
 Laboratoire des Fondations des Systèmes Temps Réel Embarqués
 91191 Gif sur Yvette Cedex
 France
 Phone/Fax: +33 (0) 1 69 08 32 92 / 83 95




[Pharo-users] New version of Artefact

2014-01-24 Thread Olivier Auverlot

Hi,

I released a new version of Artefact. The new version supports opacity 
effect.


http://smalltalkhub.com/#!/~RMoD/Artefact/ 
http://smalltalkhub.com/#%21/%7ERMoD/Artefact/


Best regards
Olivier ;-)


Re: [Pharo-users] New version of Artefact

2014-01-24 Thread Olivier Auverlot

Samir,

You can look at PDFDemostwoColoredRectsOpacityTest

Olivier ;-)

On 24/01/2014 13:20, Samir Saleh wrote:

Awesome! Will give it a try!

Cheers


2014/1/24 Olivier Auverlot olivier.auver...@gmail.com 
mailto:olivier.auver...@gmail.com


Hi,

I released a new version of Artefact. The new version supports
opacity effect.

http://smalltalkhub.com/#!/~RMoD/Artefact/
http://smalltalkhub.com/#%21/%7ERMoD/Artefact/

Best regards
Olivier ;-)






Re: [Pharo-users] Zinc: How to use the @ character in an URL

2013-10-24 Thread Olivier Auverlot
Thanks for the improvement. Don't hesitate to contact me if I can help you

Olivier ;-)

Le 22 oct. 2013 à 18:49, Sven Van Caekenberghe a écrit :

 
 On 22 Oct 2013, at 18:27, p...@highoctane.be p...@highoctane.be wrote:
 
 Ok, point taken.
 
 Still, ZnClient is unusable for the intended purpose as is. No matter what 
 encoding, % or not, Olivier cannot get the URL to work. Couldn't the 
 ZnClient use something like the StampClient does: options? (where 
 prefetch-count can be set for example - I also discovered the little inbox 
 thing after some hair pulling sessions BTW).
 
 
 Phil
 
 But Olivier's problem is that he is talking to a server that does not do 
 proper percent decoding, IMHO. A server parsing a URL should resolve all 
 percent encodings, after parsing using the significant delimiters (/ : ? #).
 
 http://foo.com/abc and http://foo.com/%61%62%63 are the same thing, just like 
 http://foo.com/abc@1 and http://foo.com/abc%401 are - again as far as I 
 understand it.
 
 That being said, I am going to study the specs again and might change what 
 gets encoded or not depending on the URL element, instead of encoding 
 aggressively in the better safe than sorry way.
 
 Olivier's suggestion about safer authorisation parsing does make sense and 
 will get added as well - Thanks Olivier !
 
 Sven
 
 PS: BTW, ZnClient has such an option object already.
 
 




Re: [Pharo-users] Zinc: How to use the @ character in an URL

2013-10-24 Thread Olivier Auverlot
Hi Sven,

Fantastic work ! I just tested the new version and it seem that all is ok. 

Olivier ;-)




[Pharo-users] Zinc: How to use the @ character in an URL

2013-10-22 Thread Olivier Auverlot
Hi,

I work actually on a framework to manage a Proxmox server. The Proxmox solution 
is based on a strange REST API… :-(

To get informations about an user, I must send a string with the login and the 
authentication domain. The two values are separated by a character @. 

For example: GET /api2/extjs/access/users/auverlot@LIFL

My first problem with Zinc is that the client find the character @ and the 
client think that this is an URL with authentication. I tried to use an 
encoding string with %40 but Proxmox don't find the user.

The solution must be to modify the method ZnUrl#parseAuthority:from:to: to do 
a better detection of authentication pattern:

parseAuthority: string from: start to: stop
| index  |

index := string indexOf: $@ startingAt: start.

(index  0 and: [ (string indexOf: $: startingAt: start)  index and: [ 
index  (string indexOf: $/ startingAt: start) ] ])
ifTrue: [  
self parseUserInfo: (ReadStream on: string from: start 
to: index - 1).
self parseHostPort: (ReadStream on: string from: index  
 1 to: stop ) 
]
ifFalse: [  self parseHostPort: (ReadStream on: string from: 
start to: stop ) ] 

But, it's not the end of the road :-( Because in the next steps, Zinc encodes 
the character @ in the url.  How to disabled the automatic encoding and using 
special characters in the url ?

Thanks for your help.

Best regards
Olivier ;-)


Re: [Pharo-users] How to use a MongoDB account with Voyage

2013-09-12 Thread Olivier Auverlot
Hi Esteban,

I implemented the identification with an username and a password. I modified 
some things into the package Voyage-Mongo-Core. Where do you want that I 
publish the modifications ?

Best regards
Olivier ;-) 

 Hi,
 
 sorry, that's not yet implemented :(
 but the infrastructure is already there, it is just missing the plugging 
 stuff, check into MongoDatabase#username:password:
 so, ideally, you could have a method in VOMongoRepository who just translates 
 the validation to the driver. 
 
 Cheers,
 Esteban
 
 On Sep 10, 2013, at 9:46 AM, Olivier Auverlot olivier.auver...@gmail.com 
 wrote:
 
 Hello,
 
 I need to use a login and password to connect my application to a Mongo DB 
 database. The access to the database is restricted by an account. How to use 
 a login and a password with Voyage ?
 
 Best regards
 Olivier ;-)