Re: [Pharo-users] im using pharo 7 with linux env. but cannot input korean.

2019-02-19 Thread Hilaire
Hi Pierce, Yes, this option worked to key in Chinese. By the way, do you know if any option is needed on Windows? I checked for the options but I did not see anything relevant: hilaire@PCHome:~/Travaux/Developpement/DrGeoII/trunk/build/bundles/windows/DrGeo$ wine Contents/vm/DrGeo.exe --help Usa

[Pharo-users] About Iceberg

2019-02-19 Thread Sven Van Caekenberghe
Hi, This is a thank you note about Iceberg. I have been moving all my external and internal Pharo code to git/tonel/7 and on multiple occasions I have been pleasantly surprised about the functionality and performance of Iceberg. Basically, it just works. Finally, Pharo code lives in standard o

Re: [Pharo-users] [Pharo-dev] About Iceberg

2019-02-19 Thread Damien Pollet
đź‘Ť On Tue, 19 Feb 2019 at 10:06, Hilaire wrote: > I join your thank you note, although I only use one half, the tonel > part, it is pleasant to be able to commit to file base repository and > use related tools. > > Le 19/02/2019 Ă  09:50, Sven Van Caekenberghe a Ă©crit : > > This is a thank you not

[Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Albrecht Baur via Pharo-users
--- Begin Message --- I need to execute OS commands from within a x64 pharo 7.01 image on centos7 (for example: 'zip -r 123.zip zipme/'). I found these 3 tools: OSProcess, OSSubprocess, LibC uniqueInstance But I did not find any docu on which one to use for which use case. * OSProcess is in t

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread David T. Lewis
On Tue, Feb 19, 2019 at 11:37:38AM +0100, Albrecht Baur via Pharo-users wrote: > From: Albrecht Baur > Subject: OSProcess / OSSubprocess / LibC uniqueInstance > To: pharo-users@lists.pharo.org > Date: Tue, 19 Feb 2019 11:37:38 +0100 > > I need to execute OS commands from within a x64 pharo 7.01 i

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Serge Stinckwich
On Tue, Feb 19, 2019 at 11:56 AM David T. Lewis wrote: > On Tue, Feb 19, 2019 at 11:37:38AM +0100, Albrecht Baur via Pharo-users > wrote: > > From: Albrecht Baur > > Subject: OSProcess / OSSubprocess / LibC uniqueInstance > > To: pharo-users@lists.pharo.org > > Date: Tue, 19 Feb 2019 11:37:38 +0

[Pharo-users] Pier3 & content management

2019-02-19 Thread Albrecht Baur via Pharo-users
--- Begin Message --- Hey, what is the status of Pier3 + Pier3AddOns ? -> Seems to me that it is discontinued since Pharo 5, right ? I'm asking because I look around to see if there is a project usable as a starting point of a small web content management module for seaside (nothing too compl

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Albrecht Baur via Pharo-users
--- Begin Message --- I just tried the easy way via catalog browser. I think it is OSProcess 4.6.9 from http://www.squeaksource.com/OSProcess On 19.02.19 12:01, Serge Stinckwich wrote: On Tue, Feb 19, 2019 at 11:56 AM David T. Lewis > wrote: On Tue, Feb 19, 2

[Pharo-users] How to load a single package in a Metacello baseline

2019-02-19 Thread N. Bouraqadi
Hi, I'm updating the the baseline of PharoJS to use the zinc websockets from the github repo https://github.com/svenvc/zinc. I want to load package Zinc-WebSocket-Core. So, in BaselineOfPharoJS>>#baseline: I've defined spec baseline: 'ZincHTTPComponents' with: [ spec

Re: [Pharo-users] Pier3 & content management

2019-02-19 Thread Esteban Lorenzano
Hello, Not many people are using it, but it should be not much problem make it run in Pharo 7 (and with current version of Seaside). Esteban > On 19 Feb 2019, at 12:03, Albrecht Baur via Pharo-users > wrote: > > > From: Albrecht Baur > Subject: Pier3 & content management > Date: 19 Februa

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Thierry Goubier
Hi Serge, Albrecht, loading OSProcess directly with the following expression works: Metacello new configuration: 'OSProcess'; repository: 'http://www.squeaksource.com/MetacelloRepository'; load There is still some work to be done on OSProcess adaptation to Pharo 7, but they are in ra

Re: [Pharo-users] How to load a single package in a Metacello baseline

2019-02-19 Thread Tim Mackinnon
Yeah - I have a similar issue with ExternalWebBrowser, which I load as: spec baseline: 'ExternalWebBrowser' with: [ spec repository: 'github://seandenigris/Pharo-Web-Browser:master/repository' ]; import: 'Exte

Re: [Pharo-users] How do you avoid loading master code which is indirectly referenced by a version in the baseline?

2019-02-19 Thread Tim Mackinnon
Hi Sabine - you raise an important point, and I am interested in us getting better answers to this too. Hopefully Dale see’s this and is thinking about this in Rowen. Repeatable loading is an important enterprise feature. Tim > On 18 Feb 2019, at 15:46, Sabine Manaa wrote: > > For test and de

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Serge Stinckwich
Thank you Thierry. On Tue, Feb 19, 2019 at 12:48 PM Thierry Goubier wrote: > Hi Serge, Albrecht, > > loading OSProcess directly with the following expression works: > > Metacello new > configuration: 'OSProcess'; > repository: 'http://www.squeaksource.com/MetacelloRepository'; > load

Re: [Pharo-users] How do you avoid loading master code which is indirectly referenced by a version in the baseline?

2019-02-19 Thread p...@highoctane.be
Same boat here. Phil On Tue, Feb 19, 2019, 13:05 Tim Mackinnon Hi Sabine - you raise an important point, and I am interested in us > getting better answers to this too. Hopefully Dale see’s this and is > thinking about this in Rowen. Repeatable loading is an important enterprise > feature. > > T

Re: [Pharo-users] Pier3 & content management

2019-02-19 Thread Albrecht Baur via Pharo-users
--- Begin Message --- thanks for the info - I will give it a try next weeks. On 19.02.19 12:41, Esteban Lorenzano wrote: Hello, Not many people are using it, but it should be not much problem make it run in Pharo 7 (and with current version of Seaside). Esteban On 19 Feb 2019, at 12:03, Alb

Re: [Pharo-users] About Iceberg

2019-02-19 Thread Tim Mackinnon
Yes I agree - when there is so much discussion and debate going on, its easy to lose sight of the hard work and determination that went into getting us to this brave new world. I too want to shout a big thank you for the tooling and also the support that goes along with that. I love been able t

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Albrecht Baur via Pharo-users
--- Begin Message --- Thank you. The Metacello snippet helps. It loads a newer version than that from the catalog browser. But 2 more questions: 1.: Is there a reason not to use just ... LibC uniqueInstance system: 'zip -r 123.zip zipme/' ... ? And 2.: Is it ok to use OSSubprocess on in 6

[Pharo-users] Phorms repository?

2019-02-19 Thread Manuel Leuenberger
Hi, I am looking into AST transformations and played with the RBPattern language, which isn't quite powerful enough to do what I want to do (my matching patterns are more complex). I found papers about Phorms, which seems like a nice language to investigate. But I could not find any repository

Re: [Pharo-users] Partition/Sync ready databases for Pharo?

2019-02-19 Thread Tim Mackinnon
When you say Fossil - are you referring to "https://fossil-scm.org/index.html/doc/trunk/www/index.wiki” ? I’ve seen it come up a few times - is it good? But rather than subvert Esteban’s thread - if it is the above, can you hook into it to save application runtime artefacts such that a distribu

Re: [Pharo-users] RBPattern syntax

2019-02-19 Thread Henrik Sperre Johansen
Manuel Leuenberger wrote > Hi, > > I am looking into the RB pattern language for refactoring and I am having > trouble matching and replacing non-trivial pattern. Given the following > excerpt, I want to match "b shape > > ." and replace it with "b shape: [ :x | x > > ]" > > b shape ci

Re: [Pharo-users] Iceberg working with forks - can it be easier?

2019-02-19 Thread Guillermo Polito
On Tue, Feb 19, 2019 at 2:08 AM Tim Mackinnon wrote: > Hi Guille - thanks for taking the time to write this up… in the middle > there I finally spotted the crucial bit “clone the original, push to your > fork”. I think thats what I’ve been doing wrong - and it leads to all kinds > of confusion (a

Re: [Pharo-users] How do you avoid loading master code which is indirectly referenced by a version in the baseline?

2019-02-19 Thread Guillermo Polito
Hi Sabine, maybe you want to have a look at metacello lock. https://github.com/dalehenrich/metacello-work/blob/master/docs/MetacelloScriptingAPI.md On Tue, Feb 19, 2019 at 1:06 PM Tim Mackinnon wrote: > Hi Sabine - you raise an important point, and I am interested in us > getting better answer

Re: [Pharo-users] Running pharo in daemon mode

2019-02-19 Thread sergio ruiz
My daemontools run file looks like: #!/bin/bash # settings USER="bandtracker" VM="/home/bandtracker/pharoImages/pharo" VM_PARAMS="-mmap 256m -vm-sound-null -vm-display-null" IMAGE="/home/bandtracker/pharoImages/Pharo.image" # start the vm exec \ setuidgid "$USER" \ "$VM" $VM_PARAMS "$IMA

Re: [Pharo-users] Partition/Sync ready databases for Pharo?

2019-02-19 Thread Esteban Maringolo
Hi Tim, Pierce, No problem, I was going to ask about Fossil as well, I know it is a self contained SCM, with issue tracker, and whatnot. People that uses it don't want to use git except if forced to. So I also ask how this would work. :) I saw SQLite-sync before, but it is a commercial product, a

[Pharo-users] How to uncache Commander menu items

2019-02-19 Thread Tim Mackinnon
I was going to write this question - but Denis pinged me on Discord - however I thought I would lob this into the list in case someone else hits the problem and is searching for it. (Maybe I should stick this in Calypso or Commander faq). My problem was that I had built a sub menu in Calypso an

[Pharo-users] How do you easily re-categorise methods in Calypso?

2019-02-19 Thread Tim Mackinnon
Hi - I’m scratching my head over how to easily re-caegorise methods in calypso? I’ve overridden some methods in subclasses and picked up the wrong category (which the critic is slapping me for). But when I click on the method - I can’t drag it to the new category, so if I click on the pencil in

Re: [Pharo-users] Iceberg working with forks - can it be easier?

2019-02-19 Thread Tim Mackinnon
Ah - I think I know whats happened - I didn’t do a proper reset of my fork - the real command is: Tims-MacBook-Pro:pharo-exercism macta$ git fetch exercism Tims-MacBook-Pro:pharo-exercism macta$ git reset --hard exercism/master HEAD is now at 28a7a95 Update readme for pharo smalltalk repo name #2

Re: [Pharo-users] Partition/Sync ready databases for Pharo?

2019-02-19 Thread Offray Vladimir Luna Cárdenas
Hi, I think that using Fossil depends on what things are you synchronizing and how fast. In the Grafoscopio community we use Fossil to sync documentation (Grafoscopio notebooks and Wiki pages) and issues, which means documents that move slow, and we use CodiMD [1] (Firebase based) when we do sync

Re: [Pharo-users] About Iceberg

2019-02-19 Thread Offray Vladimir Luna Cárdenas
Hi, I just want to add my grateful voices in this thread. Even as a vocal critic of the (gratuitous?) complexity of Git and the dangers in the centralization via GitHub, Iceberg makes easy to use modern VCS and get this feeling of momentum. I'm starting to port my repositoies to a community hoste

Re: [Pharo-users] Partition/Sync ready databases for Pharo?

2019-02-19 Thread Esteban Maringolo
El mar., 19 feb. 2019 a las 13:40, Offray Vladimir Luna Cárdenas () escribió: > For alternatives to Firebase I have been starting to look at [3] and > [4]. I would really love to see a Pharo client to any of such > alternatives as I would like to have real time collaboration on > Grafoscopio based

Re: [Pharo-users] Partition/Sync ready databases for Pharo?

2019-02-19 Thread Offray Vladimir Luna Cárdenas
Maybe something like the SQLite based Core Object [1], from the Etoile folks, can your for you... at least as inspiration, because the project looks pretty unmaintained. [1] http://coreobject.org/ Cheers, Offray On 19/2/19 12:45, Esteban Maringolo wrote: > El mar., 19 feb. 2019 a las 13:40, Off

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Alistair Grant
On Tue, 19 Feb 2019 at 13:45, Albrecht Baur via Pharo-users wrote: > > Thank you. > > The Metacello snippet helps. It loads a newer version than that from the > catalog browser. > > > But 2 more questions: > > 1.: Is there a reason not to use just ... > > LibC uniqueInstance system: 'zip -r 123.z

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Mariano Martinez Peck
Yeah, readme is out of date. 64 bits is working: https://github.com/pharo-contributions/OSSubprocess/issues/22 On Tue, Feb 19, 2019 at 4:48 PM Alistair Grant wrote: > On Tue, 19 Feb 2019 at 13:45, Albrecht Baur via Pharo-users > wrote: > > > > Thank you. > > > > The Metacello snippet helps. It

Re: [Pharo-users] About Iceberg

2019-02-19 Thread ducasse
> On 19 Feb 2019, at 17:45, Offray Vladimir Luna Cárdenas > wrote: > > Hi, > > I just want to add my grateful voices in this thread. > > Even as a vocal critic of the (gratuitous?) complexity of Git and the > dangers in the centralization via GitHub, Iceberg makes easy to use > modern VCS a

Re: [Pharo-users] [ANN] SETT (Store Export to Tonel Tools) for Pharo6.1

2019-02-19 Thread Esteban Maringolo
Dale, I tried to test SETT to migrate a Package from Store to our repo. But it fails while initializing the git repository. I set the destination config to `isNewRepository := false`, then it works as expected. I'm testing it against the Cincom Public Repository, which being remote and full of c

[Pharo-users] Pharo general questions for a commercial application

2019-02-19 Thread BrunoBB
Hi, My name is Bruno i'been using Smalltalk since 1999 for commercial applications, mostly Dolphin, GemStone/S and Visual Works. Now we have a commercial project and we are going to use Pharo :) So we have some general questions. 1) Which version of Pharo to use in a production deployment 6

Re: [Pharo-users] [ANN] SETT (Store Export to Tonel Tools) for Pharo6.1

2019-02-19 Thread Dale Henrichs
Esteban, I'm glad that you are taking SETT for a spin. I am not familiar with the details of SETT, but if you could submit an issue[1] with the SETT project, then someone should be able to start looking into it:) I will ping them that you ran into issues ... Dale [1] https://github.com/Gem

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Albrecht Baur via Pharo-users
--- Begin Message --- Nice! This helps -> thanks for the explanation. Albrecht On 19.02.19 21:10, Mariano Martinez Peck wrote: Yeah, readme is out of date. 64 bits is working: https://github.com/pharo-contributions/OSSubprocess/issues/22 On Tue, Feb 19, 2019 at 4:48 PM Alistair Grant