Re: [Pharo-users] ZnClient problem with extensions

2015-12-04 Thread Dimitris Chloupis
Thank you both I will give both a try and be back with more questions :) On Fri, Dec 4, 2015 at 6:57 PM Skip Lentz wrote: > Hi, > > On Dec 4, 2015, at 11:56 AM, Dimitris Chloupis > wrote: > > because I am clueless with web dev can you help me understand how to do > this with ZnClient ? > > > I

Re: [Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread Sven Van Caekenberghe
Then why not introduce a MongoTimestamp and be done with it ? > On 04 Dec 2015, at 17:41, Henrik Johansen > wrote: > > >> On 04 Dec 2015, at 5:22 , Sven Van Caekenberghe wrote: >> >> According to http://bsonspec.org/spec.html there are indeed 2 different types >> >> "\x09" e_name int64 UTC

Re: [Pharo-users] Datatables

2015-12-04 Thread Gabriel Nicolás Gonzalez
Hi, I think you can find what you are looking for at http://www.seaside.st/documentation/persistence. Regards, S.T. Gabriel Nicolás González 2015-12-04 11:58 GMT-03:00 Pablo R. Digonzelli : > Hi, I am interesting in using Datatables in a Seaside app. > I know there is wrapper fot this in StHub

Re: [Pharo-users] Installation

2015-12-04 Thread Rodrigo Coimbra
Thank you Offray! I need Pharo to apply Moose platform...I'm already working on it! Cheers Em Quinta-feira, 3 de Dezembro de 2015 20:43, Offray Vladimir Luna Cárdenas escreveu: Rodrigo, That screen means you're going fine. Next thing is to select an image in the left and click on

Re: [Pharo-users] ZnClient problem with extensions

2015-12-04 Thread Skip Lentz
Hi, > On Dec 4, 2015, at 11:56 AM, Dimitris Chloupis wrote: > > because I am clueless with web dev can you help me understand how to do this > with ZnClient ? I tried some things, such as this snippet: ZnClient new setIfModifiedSince: DateAndTime now; contentReader: [ :entity

Re: [Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread Henrik Johansen
> On 04 Dec 2015, at 5:41 , Henrik Johansen > wrote: > > > That's what we have Monticello groups for, right? ;) > I meant to write *Metacello* groups, obviously... Cheers, Henry signature.asc Description: Message signed with OpenPGP using GPGMail

Re: [Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread Henrik Johansen
> On 04 Dec 2015, at 5:22 , Sven Van Caekenberghe wrote: > > According to http://bsonspec.org/spec.html there are indeed 2 different types > > "\x09" e_name int64 UTC datetime > > "\x11" e_name int64 Timestamp > > I would guess that you need 2 different (sub)classes in Pharo if you want t

Re: [Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread Esteban Lorenzano
> On 04 Dec 2015, at 17:25, Norbert Hartl wrote: > >> >> Am 04.12.2015 um 16:40 schrieb Henrik Johansen >> : >> >> >>> On 04 Dec 2015, at 3:49 , Esteban Lorenzano wrote: >>> >>> Yes I think… I still do not update voyage to Pharo5 (there are not >>> TimeStamps anymore). >>> >>> Esteban >>

Re: [Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread Esteban Lorenzano
> On 04 Dec 2015, at 17:22, Sven Van Caekenberghe wrote: > > According to http://bsonspec.org/spec.html there are indeed 2 different types > > "\x09" e_name int64 UTC datetime > > "\x11" e_name int64 Timestamp > > I would guess that you need 2 different (sub)classes in Pharo if you want t

Re: [Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread Norbert Hartl
> Am 04.12.2015 um 16:40 schrieb Henrik Johansen : > > >> On 04 Dec 2015, at 3:49 , Esteban Lorenzano wrote: >> >> Yes I think… I still do not update voyage to Pharo5 (there are not >> TimeStamps anymore). >> >> Esteban >> >>> On 04 Dec 2015, at 15:43, stepharo wrote: >>> >>> Does it make

Re: [Pharo-users] How can we verify that a daemon is listening on a TCP socket

2015-12-04 Thread Norbert Hartl
> Am 04.12.2015 um 16:07 schrieb stepharo : > > Hi guys > > I would like to know if a daemon (mongo) is listening on a given TCP socket? Of course it is :) Default port is 27017 Norbert

Re: [Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread Sven Van Caekenberghe
According to http://bsonspec.org/spec.html there are indeed 2 different types "\x09" e_name int64 UTC datetime "\x11" e_name int64 Timestamp I would guess that you need 2 different (sub)classes in Pharo if you want to honour this spec. It has little to do with the almost empty TimeStamp

Re: [Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread Esteban Lorenzano
I was thinking what to do… maybe couple voyage with ZTimestamp could be a good idea? > On 04 Dec 2015, at 16:40, Henrik Johansen > wrote: > > >> On 04 Dec 2015, at 3:49 , Esteban Lorenzano wrote: >> >> Yes I think… I still do not update voyage to Pharo5 (there are not >> TimeStamps anymore

[Pharo-users] Datatables

2015-12-04 Thread Pablo R. Digonzelli
Hi, I am interesting in using Datatables in a Seaside app. I know there is wrapper fot this in StHub. Is there is examples how to use it? TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 San Miguel de Tucumán Email: pdigonze...@softsargentina.c

Re: [Pharo-users] How can we verify that a daemon is listening on a TCP socket

2015-12-04 Thread Blondeau Vincent
Hi, You should try netstat -uta in a shell console. And see if there is a localhost port opened on what you expect. I have not tested on my laptop but it should work. Vincent > -Message d'origine- > De : Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] De la part de > stepharo >

Re: [Pharo-users] How can we verify that a daemon is listening on a TCP socket

2015-12-04 Thread Robert Withers
> netstat -a | grep LISTEN | grep that should get you there. Robert On 12/04/2015 10:07 AM, stepharo wrote: Hi guys I would like to know if a daemon (mongo) is listening on a given TCP socket? Stef

Re: [Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread stepharo
so can you push it? Le 4/12/15 15:49, Esteban Lorenzano a écrit : Yes I think… I still do not update voyage to Pharo5 (there are not TimeStamps anymore). Esteban On 04 Dec 2015, at 15:43, stepharo wrote: Does it make sense to have Name: ConfigurationOfVoyageMongo-EstebanLorenzano.38 Au

Re: [Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread Henrik Johansen
> On 04 Dec 2015, at 3:49 , Esteban Lorenzano wrote: > > Yes I think… I still do not update voyage to Pharo5 (there are not TimeStamps > anymore). > > Esteban > >> On 04 Dec 2015, at 15:43, stepharo wrote: >> >> Does it make sense to have >> >> Name: ConfigurationOfVoyageMongo-EstebanLore

Re: [Pharo-users] How can we verify that a daemon is listening on a TCP socket

2015-12-04 Thread Sven Van Caekenberghe
Depending on the protocol you just connect to it and see if that works ;-) With a short timeout, of course. I would just use the matching client in Pharo. > On 04 Dec 2015, at 16:07, stepharo wrote: > > Hi guys > > I would like to know if a daemon (mongo) is listening on a given TCP socket? >

Re: [Pharo-users] evolutions of squeakelib & crypto (Reed Solomon)

2015-12-04 Thread Sven Van Caekenberghe
Another suggestion: if you intend to make something cross dialect and hope to get traction, I would not use a project name which contains one dialect, but something more general like Cryptography, or some cool project name, like Seaside, Fuel, ... > On 04 Dec 2015, at 15:43, Robert Withers wro

Re: [Pharo-users] evolutions of squeakelib & crypto (Reed Solomon)

2015-12-04 Thread Sven Van Caekenberghe
http://rmod.inria.fr/web/software/Fuel http://rmod.inria.fr/web/software/Fuel/Version1.9/Documentation/Installation "The default packageswork out of the box in Pharo 1.1.1, 1.1.2, 1.2, 1.3, 1.4, 2.0 and Squeak 4.1, 4.2, 4.3, 4.4." And I would guess newer versions too. > On 04 Dec 2015, at 15:43

[Pharo-users] How can we verify that a daemon is listening on a TCP socket

2015-12-04 Thread stepharo
Hi guys I would like to know if a daemon (mongo) is listening on a given TCP socket? Stef

Re: [Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread Esteban Lorenzano
Yes I think… I still do not update voyage to Pharo5 (there are not TimeStamps anymore). Esteban > On 04 Dec 2015, at 15:43, stepharo wrote: > > Does it make sense to have > > Name: ConfigurationOfVoyageMongo-EstebanLorenzano.38 > Author: EstebanLorenzano > Time: 9 May 2015, 8:40:27.23963 am

Re: [Pharo-users] evolutions of squeakelib & crypto (Reed Solomon)

2015-12-04 Thread Esteban Lorenzano
which squeak version? of what? > On 04 Dec 2015, at 12:15, Robert Withers wrote: > > I just realized that the squeak version uses ReferenceStream while the Pharo > version uses Fuel, so the binary serializations are different and they won't > speak to each other. Any chance that Fuel is port

Re: [Pharo-users] ZnClient problem with extensions

2015-12-04 Thread Sven Van Caekenberghe
I decided to add the behaviour "use filename from original request, which could make a difference when redirects are followed" to #downloadTo: while #downloadEntityTo: remains unchanged (not that it could change because the original request is gone by then). In Zn #bleedingEdge: === Name: Zinc

Re: [Pharo-users] evolutions of squeakelib & crypto (Reed Solomon)

2015-12-04 Thread Robert Withers
I use squeak 5.0 and would want the Fuel support to customize for wire serializations and substitutions, such that Squeak and Pharo could talk to each other, and all other Fuel environments. The Fuel changes I made are in the Pharo port of SqueakElib in the SqueakElib-CapTP-Serialization catego

[Pharo-users] Mongo configuration for Pharo40

2015-12-04 Thread stepharo
Does it make sense to have Name: ConfigurationOfVoyageMongo-EstebanLorenzano.38 Author: EstebanLorenzano Time: 9 May 2015, 8:40:27.23963 am UUID: 9ba71817-b3f9-4f66-8579-e09e5deb5935 Ancestors: ConfigurationOfVoyageMongo-EstebanLorenzano.37 fixed a problem with the versionner tool in the Cat

Re: [Pharo-users] MacroRecorder available in Pharo

2015-12-04 Thread Alexandre Bergel
Excellent! Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > On Dec 4, 2015, at 5:34 AM, Gustavo Santos wrote: > > Hello guys, > > I would like to present you MacroRecorder, a tool to bui

Re: [Pharo-users] ZnClient problem with extensions

2015-12-04 Thread Dimitris Chloupis
"Thanks for the feedback." Thanks for this very useful library :) "Hmm, that is tricky. If you inspect ZnLogEvent announcer during the execution you will notice that a redirect is involved. Your original request for https://github.com/kilon/ChronosManager/archive/master.zip gets redirected to a r

Re: [Pharo-users] ZnClient problem with extensions

2015-12-04 Thread Skip Lentz
> On Dec 4, 2015, at 8:01 AM, Dimitris Chloupis wrote: > > I am on Yosemite, latest 5 image, lastest VM and using this code > > ZnClient new url: 'https://github.com/kilon/ChronosManager/archive/master.zip > '; > setIfModifiedSince:

Re: [Pharo-users] Code pane in Pharo 5

2015-12-04 Thread Marcus Denker
> On 04 Dec 2015, at 09:55, p...@highoctane.be wrote: > > Is there a way to have that pane with *less* noise around the code? > > Like getting rid of the suggestions panel at the bottom? Or the status line > with W +L Format as you type? > > Not that I do not like them (at times), just that al

Re: [Pharo-users] [Moose-dev] MacroRecorder available in Pharo

2015-12-04 Thread Leonardo Silva
Nice work Gustavo, congratulations ! Leonardo On Fri, Dec 4, 2015 at 6:34 AM, Gustavo Santos wrote: > Hello guys, > > I would like to present you MacroRecorder, a tool to build custom source > code transformations in Pharo. > > The tool is available in the Catalog for some weeks now. > The curr

Re: [Pharo-users] evolutions of squeakelib & crypto (Reed Solomon)

2015-12-04 Thread Stephan Eggermont
On 03-12-15 23:06, Robert Withers wrote: Are any of these used by both squeak and Pharo? That would be the right move I think. I will ask about getting my password reset for squeaksource, since that is where the old code resides. All of them. Mostly timing of project start/high activity and who

Re: [Pharo-users] ZnClient problem with extensions

2015-12-04 Thread Sven Van Caekenberghe
Hi Dimitris, Thanks for the feedback. > On 04 Dec 2015, at 08:01, Dimitris Chloupis wrote: > > I am on Yosemite, latest 5 image, lastest VM and using this code > > ZnClient new url: > 'https://github.com/kilon/ChronosManager/archive/master.zip'; > setIfModifiedSince: (Date year: 2015 month:

Re: [Pharo-users] Code pane in Pharo 5

2015-12-04 Thread Nicolai Hess
2015-12-04 9:55 GMT+01:00 p...@highoctane.be : > Is there a way to have that pane with *less* noise around the code? > > Like getting rid of the suggestions panel at the bottom? > You can disable the "Quality Assistance"-NautilusPlugin > Or the status line with W +L Format as you type? > > Not

[Pharo-users] Code pane in Pharo 5

2015-12-04 Thread p...@highoctane.be
Is there a way to have that pane with *less* noise around the code? Like getting rid of the suggestions panel at the bottom? Or the status line with W +L Format as you type? Not that I do not like them (at times), just that all of the bright red/green icons are distracting (a little more toned do

Re: [Pharo-users] [Moose-dev] MacroRecorder available in Pharo

2015-12-04 Thread Dimitris Chloupis
WOW a pharo video where someone actually speaks, thats rare :D Impressive tool, and certainly useful if you have to do a lot of changes in a lot of code. The name is a bit misleading because its not really a general purpose macro recorder and focused only on transformations. I vaguely remember a

[Pharo-users] MacroRecorder available in Pharo

2015-12-04 Thread Gustavo Santos
Hello guys, I would like to present you MacroRecorder, a tool to build custom source code transformations in Pharo. The tool is available in the Catalog for some weeks now. The current version runs in Pharo 5 and there is an old version running in Pharo 4. To show how this tool works, I prepared