Re: [Pharo-users] Glorp: `session login` fails for Garage SQLite

2017-08-06 Thread Pierce Ng
On Sun, Aug 06, 2017 at 12:54:41AM +0200, Herby Vojčík wrote: > Pharo is 6.1, Glorp, Garage etc. are #stable loaded from Pharo60 > catalog (see attachment). You may want to try GlorpSQLite. Load from Catalog Browser into a fresh 60510 image. All 889 tests should pass, as has been the case since Ph

Re: [Pharo-users] Best Practices for Bundling Documentation

2017-08-06 Thread Stephane Ducasse
Hello evan Cool I want to read them! If you have your code in github you can include pillar files there and with travis build the pdf as I did for the booklets. I prefer to separate tutorials from code. I would go for MyStuff MyStuffTutorial or This way readers can get the pdf https:/

Re: [Pharo-users] Best Practices for Bundling Documentation

2017-08-06 Thread Stephane Ducasse
or MyStuff MyStuff/Tutorial On Sun, Aug 6, 2017 at 11:00 AM, Stephane Ducasse wrote: > Hello evan > > Cool I want to read them! > If you have your code in github you can include pillar files there and > with travis build the pdf as I did for the booklets. > I prefer to separate tutorials fr

Re: [Pharo-users] PetitParser: Parse X as long as it's not Y

2017-08-06 Thread Jan Kurš
Hi, not sure if I understand your requirement, but you can try: Y not, chars star Is this what you need? Cheers Jan On Sun, Aug 6, 2017, 04:47 Sean P. DeNigris wrote: > vonbecmann wrote > > did you try with negate? > > That is the standard trick with PP, but the problem here is that I'm tryin

Re: [Pharo-users] Glorp: `session login` fails for Garage SQLite

2017-08-06 Thread Herby Vojčík
Pierce Ng wrote: On Sun, Aug 06, 2017 at 12:54:41AM +0200, Herby Vojčík wrote: Pharo is 6.1, Glorp, Garage etc. are #stable loaded from Pharo60 catalog (see attachment). You may want to try GlorpSQLite. Load from Catalog Browser into a fresh 60510 image. All 889 tests should pass, as has been

Re: [Pharo-users] Glorp: `session login` fails for Garage SQLite

2017-08-06 Thread Herby Vojčík
Guillermo Polito wrote: How did you install garage and glorp? Catalog, configurations? Can you paste here the installation instructions you followed? Just adding GarageGlorp as dependency: baseline: spec spec for: #common do: [ spec package: 'Towergame' with: [ spe

Re: [Pharo-users] PetitParser: Parse X as long as it's not Y

2017-08-06 Thread PBKResearch
Sean This seems to be what the PPAndParser is designed for. I tried the following: identifier := #letter asParser plus flatten. exclusion := ('Bar' asParser / 'Baz' asParser) negate. restricted := identifier and, exclusion. restricted matches: 'abc'. "--> true" restricted matches: 'Baz'. "--> fa

Re: [Pharo-users] Glorp: `session login` fails for Garage SQLite

2017-08-06 Thread Esteban A. Maringolo
2017-08-06 8:05 GMT-03:00 Herby Vojčík : > Guillermo Polito wrote: >> >> How did you install garage and glorp? Catalog, configurations? Can you >> paste here the installation instructions you followed? > > > Just adding GarageGlorp as dependency: > configuration: 'GarageGlorp' with:

Re: [Pharo-users] PetitParser: Parse X as long as it's not Y

2017-08-06 Thread PBKResearch
Sean A supplementary point I have just realised. The basic 'and' idea is correct, but my example is over-simplified. As written, it will reject any string beginning with 'Bar' or 'Baz'. If you use this pattern, you will need to be careful how you define the exclusion. Peter -Original Messa

Re: [Pharo-users] Best Practices for Bundling Documentation

2017-08-06 Thread Offray Vladimir Luna Cárdenas
Hi Evan, I have been working on the issue of documentation in Pharo, including bundling. So here comes my take on that. Sorry if it sounds a little bit self-promotional, but I'm really passionate about the almost unknown and unexplored possibilities of Pharo for documentation. Grafoscopio is a to

Re: [Pharo-users] Glorp: `session login` fails for Garage SQLite

2017-08-06 Thread Herby Vojčík
Esteban A. Maringolo wrote: 2017-08-06 8:05 GMT-03:00 Herby Vojčík: Guillermo Polito wrote: How did you install garage and glorp? Catalog, configurations? Can you paste here the installation instructions you followed? Just adding GarageGlorp as dependency: configuration: 'Gar

[Pharo-users] gtInspector override default select behavior

2017-08-06 Thread Evan Donahue
Hello, I have a gtInspector extension a tree-structured object. By default, when I click on one of the objects in the gtInspector, the inspector opens up another inspector on that node (using the finder-style display). What I would like to know is, is it possible to override the default click beh