Re: [Pharo-users] [ANN] Prometheas : a Pharo wiki database

2017-04-17 Thread Dimitris Chloupis
Moose devs made a Pillar rendered for GTInspector. Pillar is a markdown inspired version for Pharo. http://forum.world.st/ann-pillar-support-in-gtinspector-td4913115.html We use Pillar to generate all our HTML and PDF documentation On Tue, 18 Apr 2017 at 00:44, nacho <0800na...@gmail.com> wrote:

Re: [Pharo-users] [ANN] Prometheas : a Pharo wiki database

2017-04-17 Thread nacho
Excellent proposal Offray. Hope this get elected. I use Grafoscopio a lot to keep notes with code and would love to see markdown integration, ability to add images and links. Keep us posted! best Nacho - Nacho Smalltalker apprentice. Buenos Aires, Argentina. -- View this message in context

Re: [Pharo-users] [ANN] Prometheas : a Pharo wiki database

2017-04-17 Thread Offray Vladimir Luna Cárdenas
Not now, that I'm aware of. But with Bloc, this will be possible (Pharo 6 maybe)? Meanwhile, a Summer of Code proposal [1] tries to create a better user experience (UX) with emphasis on the markdown markup writing experience. Stay tuned :-). [1] http://mutabit.com/repos.fossil/grafoscopio/doc

Re: [Pharo-users] PostgreSQL and Pharo 6

2017-04-17 Thread Benoit St-Jean via Pharo-users
--- Begin Message --- Try this: | sql conn connectionSpec result  | sql := 'SELECT * FROM search_terms'. conn := GAConnection new. connectionSpec := GAConnectionArgs                             hostname: 'localhost'                             portno: 5432                             databaseName:

Re: [Pharo-users] [ANN] Prometheas : a Pharo wiki database

2017-04-17 Thread nacho
I'm eager to test it! One quick question, is there a way to render markdown inside an Image? thanks Nacho - Nacho Smalltalker apprentice. Buenos Aires, Argentina. -- View this message in context: http://forum.world.st/ANN-Prometheas-a-Pharo-wiki-database-tp4942110p4942461.html Sent from the

Re: [Pharo-users] PostgreSQL and Pharo 6

2017-04-17 Thread Dimitris Chloupis
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

Re: [Pharo-users] PostgreSQL and Pharo 6

2017-04-17 Thread Benoit St-Jean via Pharo-users
--- Begin Message --- 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:

Re: [Pharo-users] PostgreSQL and Pharo 6

2017-04-17 Thread Dimitris Chloupis
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' por

Re: [Pharo-users] PostgreSQL and Pharo 6

2017-04-17 Thread Benoit St-Jean via Pharo-users
--- Begin Message --- 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.wordpres

Re: [Pharo-users] PostgreSQL and Pharo 6

2017-04-17 Thread Dimitris Chloupis
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: '*

Re: [Pharo-users] Exporting Packages to Cincom Smalltalk (VisualWorks)

2017-04-17 Thread Esteban A. Maringolo
Thank you Peter. Alexandre Bergel pointed me to Roassal export classes, which does something similar to the code you pointed me to (yours seems more tidy). Thanks again, Esteban A. Maringolo 2017-04-17 12:57 GMT-03:00 Peter Uhnak : > Some time ago I hacked together a very simple thing that gen

Re: [Pharo-users] How childrenBlock: in TreeModel works

2017-04-17 Thread Peter Uhnak
I guess something like this could work... ``` d := { Dictionary with: #n -> 'whatever' with: #d -> { Dictionary with: #a -> #AA with: #b -> #BB. Dictionary with: #c -> #CC with: #d -> #DD }.

Re: [Pharo-users] Convert Literal array into Dynamic array

2017-04-17 Thread Христина Михайлюк
Thanks! But I've just handled it by using STON fromString: Khrystyna. 2017-04-17 19:14 GMT+03:00 Ben Coman : > > On Mon, Apr 17, 2017 at 1:30 AM, Христина Михайлюк < > chrismihay...@gmail.com> wrote: >> >> >> Actually, I need this interpretation {7. 8. "f"} for writing parser of >> javascript qu

Re: [Pharo-users] PostgreSQL and Pharo 6

2017-04-17 Thread Dimitris Chloupis
thank you Benoit On Mon, Apr 17, 2017 at 4:23 AM Benoit St-Jean via Pharo-users < pharo-users@lists.pharo.org> wrote: > ODBC worked fine as well if you don't need native driver access > > - > Benoît St-Jean > Yahoo! Messenger: bstjean > Twitter: @BenLeChialeux > Pinterest: benoits

Re: [Pharo-users] How childrenBlock: in TreeModel works

2017-04-17 Thread chrismihaylyk
Hello! Could anyone help me, please? I have faced with a problem of TreeModel childrenBlock: for more complex build in structure. For example, I have anOrderedCollection of Dictionary, and in each dictionary, there are exist associations, which values are anArray(aDictionary, aDictionary ..

Re: [Pharo-users] Convert Literal array into Dynamic array

2017-04-17 Thread Ben Coman
On Mon, Apr 17, 2017 at 1:30 AM, Христина Михайлюк wrote: > > > Actually, I need this interpretation {7. 8. "f"} for writing parser of > javascript queries which is used in MongoDB shell, to be able to execute > this with MongoQuery Pharo class. > Maybe, you could help me how to implement it? >

Re: [Pharo-users] best practices for using external files for testing

2017-04-17 Thread Dimitris Chloupis
ah ok that changes everything, I agree. Why use an XML file instead of a ST source file ? maybe using ST may be faster ? On Mon, Apr 17, 2017 at 7:02 PM Peter Uhnak wrote: > On Mon, Apr 17, 2017 at 12:56:42PM +, Dimitris Chloupis wrote: > > 1 mb is not big for git , 1 gb is. It's small. > >

Re: [Pharo-users] best practices for using external files for testing

2017-04-17 Thread Peter Uhnak
On Mon, Apr 17, 2017 at 12:56:42PM +, Dimitris Chloupis wrote: > 1 mb is not big for git , 1 gb is. It's small. I meant big for Pharo/to be compiled as a method source code, i.e. Something>>xmlFile ^ ' ... 1MB of string...' > > I version control blender files of 100-500mbs with ease . Git i

Re: [Pharo-users] Exporting Packages to Cincom Smalltalk (VisualWorks)

2017-04-17 Thread Peter Uhnak
Some time ago I hacked together a very simple thing that generates VW XML from code represented in Moose/UML... I guess you could use it as a starting point: https://github.com/OpenPonk/class-editor/tree/master/repository/UML-CodeGenerator.package/UCMVWXmlExporter.class Also take a look at SIF (

Re: [Pharo-users] [ANN] Prometheas : a Pharo wiki database

2017-04-17 Thread Offray Vladimir Luna Cárdenas
I will wait the announcement and start to test the integration in our "novice powered test lab" (which of course, includes me :-) ). Cheers, Offray On 17/04/17 10:43, Dimitris Chloupis wrote: No objection from me , I will make a small integration with Playground and maybe System Browser righ

Re: [Pharo-users] [ANN] Prometheas : a Pharo wiki database

2017-04-17 Thread Dimitris Chloupis
No objection from me , I will make a small integration with Playground and maybe System Browser right click menu BUT I will also provide a very minimal API (request/reply) so that it can be used by anyone so its up to you guys to integrate it with your favourite tools. I will provide the database c

Re: [Pharo-users] [ANN] Prometheas : a Pharo wiki database

2017-04-17 Thread Offray Vladimir Luna Cárdenas
For interactive beginner friendly documentation, Grafoscopio is a extensively tested (in 8 Data Weeks workshops+hackathons --almost 240 hours) beginner friendly tool. Interactive notebooks could be used with this more tooltip, chat alike tools. In fact, anything that can be put in a playgro

Re: [Pharo-users] [ANN] Prometheas : a Pharo wiki database

2017-04-17 Thread Dimitris Chloupis
The help browse is more for a detailed documentation , my goal is more concise and tooltip based. But yes it could be embeded in the Help browser too. I think that interactive documentation is more beginner friendly, where documentation is everywhere you go and you do not have to open a special to

[Pharo-users] Exporting Packages to Cincom Smalltalk (VisualWorks)

2017-04-17 Thread Esteban A. Maringolo
Is there any exporter than can convert an RPackage into a VW Parcel (.pst), in XML or Chunk format? I need to migrate a few libraries of my own and couldn't find anything, so I'm asking before start writing something :) Regards! Esteban A. Maringolo

Re: [Pharo-users] [ANN] Prometheas : a Pharo wiki database

2017-04-17 Thread Juraj Kubelka
Great! I still believe that having the extract in the Help Browser is a good idea, at least for novices. Juraj > On Apr 15, 2017, at 19:32, Dimitris Chloupis wrote: > > I plan to embed it inside the playground and create a small Pharo API for it. > If I can I will provide access for it from t

Re: [Pharo-users] Pharo6 server deployment and no home directory

2017-04-17 Thread Juraj Kubelka
Hi Holger, I have resolved the issue: https://pharo.fogbugz.com/f/cases/19944/Server-deployment-is-broken-due-to-GlobalIdentifier I will appreciate if you review it and test it. Basically it tests `

Re: [Pharo-users] best practices for using external files for testing

2017-04-17 Thread Dimitris Chloupis
1 mb is not big for git , 1 gb is. It's small. I version control blender files of 100-500mbs with ease . Git is always very fast. I have used image files (PNG) for my project ChronosManager ,it fetches them together with the repo, they sit in their own image folder inside the repo folder that con

Re: [Pharo-users] best practices for using external files for testing

2017-04-17 Thread Hernán Morales Durand
Hi Peter, In BioSmalltalk I download and extract all test files in the Configuration and then use a method in abstract test class to access test files. Cheers, Hernán 2017-04-15 13:52 GMT-03:00 Peter Uhnak : > Hi, > > is there a common/best practice for using external files in tests? > > In my