Re: [Pharo-users] Metacello with Git

2018-01-03 Thread Stephane Ducasse
>> >> About pillar, we are working on a new pipeline and lot of cleaning >> compared to the version available on smalltalkhub. >> The new version Branch new pipeline seems broken (I will check it >> tomorrow it cannot handle internal references). >> I want to be able to build the old books with the

Re: [Pharo-users] How to justify text in pillar booklets ?

2018-01-03 Thread Stephane Ducasse
Hi steven If I understand what you mean, you cannot from Pillar. Pillar is agnotisc from a layout point of view. You can edit the sbabook cls. We reply on a designer for the book and just use it without touching it. We follow the design of damien. Stef On Wed, Jan 3, 2018 at 1:29 PM, Steven C

Re: [Pharo-users] Object Persistence

2018-01-03 Thread Stephane Ducasse
Thanks manuel. On Wed, Jan 3, 2018 at 2:14 PM, Manuel Leuenberger wrote: > Hi Stef, > > The Neo4j Cypher queries express a subgraph/path that you want to match in > the big graph (nodes and edges with attributes). No fragmentation due to > normalization etc., so no joins, it’s more like a regex

Re: [Pharo-users] Formatted print for Duration

2018-01-03 Thread Andreas Brodbeck
Am 03.01.18 um 14:07 schrieb Julien: > Hello, > > I do not see how to do a formatted print from a duration. > > I would like to be able to do something like: > > String streamContents: [ :s | 90 minutes formatted: ‘hh:mm’ printOn: s ] > > The Duration>>#printOn: method prints the ANSI 5.8.2.16

Re: [Pharo-users] Examples of Garage for DB2

2018-01-03 Thread Esteban Lorenzano
I think if you use old compiler it will work: SmalltalkImage compilerClass: Compiler. Esteban > On 3 Jan 2018, at 17:42, Andrei Stebakov wrote: > > I tried before to install odbc. > Gofer new > squeaksource: 'ODBC'; > package: 'ConfigurationOfODBC'; load. > (Smalltalk at: #Configuration

Re: [Pharo-users] Examples of Garage for DB2

2018-01-03 Thread Andrei Stebakov
I tried before to install odbc. Gofer new squeaksource: 'ODBC'; package: 'ConfigurationOfODBC'; load. (Smalltalk at: #ConfigurationOfODBC) load. When I execute the code above I got an exception doesNotUnderstand: #selector in RBParser>>externalFunctionDeclaration. Looks like currentScope var

Re: [Pharo-users] Examples of Garage for DB2

2018-01-03 Thread Pierce Ng
On Wed, Jan 03, 2018 at 10:12:32AM -0500, Andrei Stebakov wrote: > Pierce, I couldn't find any smalltalk framework to work with DB2 at this > point. I couldn't also find any Pharo odbc library. That's why at this > point I am looking for any ideas how to connect to DB2 from Pharo. I suppose Instan

Re: [Pharo-users] Examples of Garage for DB2

2018-01-03 Thread Andrei Stebakov
Pierce, I couldn't find any smalltalk framework to work with DB2 at this point. I couldn't also find any Pharo odbc library. That's why at this point I am looking for any ideas how to connect to DB2 from Pharo. On Jan 3, 2018 09:52, "Pierce Ng" wrote: > On Tue, Jan 02, 2018 at 02:10:03PM -0500,

Re: [Pharo-users] Metacello with Git

2018-01-03 Thread Alistair Grant
Hi Stef, On 2 January 2018 at 20:11, Stephane Ducasse wrote: > Hi Alistair > > About pillar, we are working on a new pipeline and lot of cleaning > compared to the version available on smalltalkhub. > The new version Branch new pipeline seems broken (I will check it > tomorrow it cannot handle in

Re: [Pharo-users] Examples of Garage for DB2

2018-01-03 Thread Pierce Ng
On Tue, Jan 02, 2018 at 02:10:03PM -0500, Andrei Stebakov wrote: > I downloaded Garage to my Pharo 6.1 on windows. But in Garage I only see > drivers for MySql, Postgres and Sqlite3. > Does it mean that for DB2 I should look somewhere else or there is a way to > create a connection for DB2 using ex

Re: [Pharo-users] Object Persistence

2018-01-03 Thread Manuel Leuenberger
Hi Stef, The Neo4j Cypher queries express a subgraph/path that you want to match in the big graph (nodes and edges with attributes). No fragmentation due to normalization etc., so no joins, it’s more like a regex matcher: MATCH p=(x:PERSON)-[:KNOWS*]->(:PERSON) WHERE x.name = 'John' RETURN p;

[Pharo-users] Formatted print for Duration

2018-01-03 Thread Julien
Hello, I do not see how to do a formatted print from a duration. I would like to be able to do something like: String streamContents: [ :s | 90 minutes formatted: ‘hh:mm’ printOn: s ] The Duration>>#printOn: method prints the ANSI 5.8.2.16 format: [-]D:HH:MM:SS[.S] The Duration>>#printHumanRe

[Pharo-users] How to justify text in pillar booklets ?

2018-01-03 Thread Steven Costiou
Hi, i am using the pillar booklet tools from https://github.com/SquareBracketAssociates/Booklet-PublishingAPillarBooklet How can i justify all paragraphs in the generated spiral book, instead of having all of it aligned to left ? Steven.