Re: [Pharo-users] Extending GTSpotter

2015-01-09 Thread Tudor Girba
The includesSubstring: is the simplest thing we could do to get some value out of the interface. More is definitely required in this direction. To build a custom search logic, you should use "processor filter: [...]". For an example, look at GTSpotter>>spotterImplementorsFor: aStep. This is stil

Re: [Pharo-users] Question about loading Roassal2 in Pharo4

2015-01-07 Thread Tudor Girba
of > ConfigurationOfGlamourCore? > > Alexandre > -- > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: > Alexandre Bergel http://www.bergel.eu > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > > > > On Jan 7, 2015, at 10:39 AM, Tudor Girba wrote: > > Hi, > > Let's not p

Re: [Pharo-users] Question about loading Roassal2 in Pharo4

2015-01-07 Thread Tudor Girba
Hi, Let's not panic :). The situation is like this: - in Pharo 4, we have ConfigurationOfGlamourCore loaded which does not have the Roassal2 presentation - to get the Roassal2 presentation, you have to load ConfigurationOfGlamour (so, the full Glamour) - an extra problem can come from the configu

Re: [Pharo-users] [Pharo-dev] Charting graphs

2015-01-06 Thread Tudor Girba
Pretty cool. The API is interesting. As I see it, this will be limited to things like bar, plots or line graphs. For example, a spider chart will not work with this one, but it will use a builder of its own, right? Some feedback: - I would rename Plugin to Decorator. From your statement, "The plu

Re: [Pharo-users] Pharo 4: Setting values from within an inspector

2015-01-05 Thread Tudor Girba
wrote: > > Well, I would say that there is a discoverability issue ;-) How about > having some small ‘edit’ icon-button in the list instead? > > > On Jan 5, 2015, at 17:29, Tudor Girba wrote: > > > > Hi, > > > > You saw it. How did you discover it? :) >

Re: [Pharo-users] Pharo 4: Setting values from within an inspector

2015-01-05 Thread Tudor Girba
Hi, You saw it. How did you discover it? :) The implementation is still a work in progress, but it already shows the direction. Now that it is out, feedback is welcome. Cheers, Doru On Mon, Jan 5, 2015 at 8:06 PM, Marcus Denker wrote: > Hi, > > This is a bit hidden, but you can double click o

[Pharo-users] [story] using the inspector to debug a metacello configuration problem

2015-01-04 Thread Tudor Girba
Hi, Happy New Year! The GTInspector reaches its full potential when it is being extended to meet custom needs. I will try to document more scenarios to show how this works in practice and how programming changes as a result. Here is a story that describes a session of debugging a Metacello conf

Re: [Pharo-users] PetitParser and PPBrowser in Pharo 3.0

2014-12-31 Thread Tudor Girba
Browser now works for me, thanks. > > Hartmut > PS: After loading the script from 'GTToolkit' activateWithoutSaving was > still unknown > > Am 31.12.14 14:14, schrieb Tudor Girba: > > Hi, > > PPBrowser uses Roassal which relies on the Athens canvas which

Re: [Pharo-users] PetitParser and PPBrowser in Pharo 3.0

2014-12-31 Thread Tudor Girba
Hi, PPBrowser uses Roassal which relies on the Athens canvas which requires FreeType fonts :). To fix this, you can go to Settings: - Make Use Free type ... true - Choose a Free type font as the default one. Or you can just use the Moose 5.0 image: http://moosetechnology.org/#install Or you can

Re: [Pharo-users] Question on temporal variables in Workspace

2014-12-29 Thread Tudor Girba
Hi, The current behavior, which indeed is preserved in the Playground because we did not get to revisit it yet, is like that: - if you do not define a variable explicitly, it will appear red. - if you run the code, the variable will be automatically define within the scope of the Playground/Worksp

Re: [Pharo-users] [ann] moose 5.0

2014-12-24 Thread Tudor Girba
BTW: Happy Holidays to all. > > Giorgio > > On Wed, Dec 24, 2014 at 12:09 AM, Tudor Girba > wrote: > >> We are happy to announce Moose 5.0: >> *http://moosetechnology.org/#install* >> >> >> Description >> --- >> >> This is by far the mo

Re: [Pharo-users] [ann] moose 5.0

2014-12-24 Thread Tudor Girba
Thanks. Doru On Wed, Dec 24, 2014 at 2:50 PM, Pierre CHANSON wrote: > Epic just like the trailers ! > > congrats, > > Pierre > > 2014-12-24 6:30 GMT-03:00 Sven Van Caekenberghe : > > Super ! >> >> Thanks a lot. >> >> > On 24 Dec 2014, a

[Pharo-users] [ann] moose 5.0

2014-12-23 Thread Tudor Girba
We are happy to announce Moose 5.0: *http://moosetechnology.org/#install* Description --- This is by far the most extensive Moose release to date. Just take a look at these two trailers. - Spotter: https://vimeo.com/113832673 - Inspector: https://vimeo.com/103463364 The key highlights are: - It

Re: [Pharo-users] Building agents in Pharo

2014-12-23 Thread Tudor Girba
Hi Andy, You can also just hook into GTSpotter. It already provides the infrastructure for handling parallel search and lets you focus only on specifying the search logic. Cheers, Doru On Tue, Dec 23, 2014 at 1:20 PM, Andy Burnett < andy.burn...@knowinnovation.com> wrote: > > Stef wrote > <<

Re: [Pharo-users] Do not forget to register to Pharo days...

2014-12-23 Thread Tudor Girba
Indeed. Please do not postpone the registration. And feel free to make noise :). Cheers, Doru On Mon, Dec 22, 2014 at 10:59 PM, stepharo wrote: > http://pharodays2015.pharo.org > > Stef > > -- www.tudorgirba.com "Every thing has its own flow"

Re: [Pharo-users] [ANN] FTP and WebDAV Plugins for Pharo's FileSystem

2014-12-22 Thread Tudor Girba
Thanks Udo. This is a useful addition. Cheers, Doru On Sun, Dec 21, 2014 at 11:12 PM, Udo Schneider < udo.schnei...@homeaddress.de> wrote: > All, > > I just finished FTP and WebDAV plugins for Pharo's FileSystem. This means > you can now access remote FTP and WebDAV loactions with the exact same

Re: [Pharo-users] Maximum number of rules in PetitParser?

2014-12-22 Thread Tudor Girba
One non-ideal solution is to split the parser into several classes inheriting from each other. Doru On Mon, Dec 22, 2014 at 6:26 AM, James Foster wrote: > I have a grammar with about 600 rules. With some work I’ve come up with a > useful subset of 400 rules. Unfortunately this is still more tha

Re: [Pharo-users] Glamour detecting changes?

2014-12-22 Thread Tudor Girba
t; buildBrowser > browser := GLMFinder new. > browser show: [ :a | > a list > display: #children; > format: #title ]. > browser title: 'Project Browser' > > And then #title: looks like this: > > title: anObject > title := anObject. > self changed: #title > &

Re: [Pharo-users] Glamour detecting changes?

2014-12-21 Thread Tudor Girba
Could you provide the code snippet you use for building the finder browser? Cheers, Doru On Sun, Dec 21, 2014 at 3:46 AM, Daniel Lyons wrote: > I have a pretty simple class and I'm using a GLMFinder to browse its > contents. If I make changes to the instance I'm browsing, it doesn't look > like

Re: [Pharo-users] [Pharo-dev] how do you use scripts?

2014-12-16 Thread Tudor Girba
Hi, On Tue, Dec 16, 2014 at 1:41 PM, Thierry Goubier wrote: > > > > 2014-12-16 13:23 GMT+01:00 Tudor Girba : >> >> Just a clarification: >> Playground is saving after each change, not only after a Go. To some >> extent, it is some sort of duplication with the

Re: [Pharo-users] [Pharo-dev] how do you use scripts?

2014-12-16 Thread Tudor Girba
Just a clarification: Playground is saving after each change, not only after a Go. To some extent, it is some sort of duplication with the DoIt actions, but the Playground saves the entire code, not just the executed one. It saves the contents in a play-cache folder by default, but you can configu

[Pharo-users] how do you use scripts?

2014-12-12 Thread Tudor Girba
Hi, As input for designing new features that better support scripting in Pharo, we would benefit from a bit more input around the role scripts play in your development life. To this end, I would like to invite you to share your scripting experience. Here are some questions to start from, but feel

Re: [Pharo-users] Roassal HTML exporter

2014-12-12 Thread Tudor Girba
Nice result! Doru On Fri, Dec 12, 2014 at 1:20 AM, Alexandre Bergel wrote: > > Hi! > > We have worked very hard on a Roassal exporter for the Web. > > Milton has produced the class RTHTML5Exporter, which may be simply invoked > as: RTHTML5Exporter new export: aRoassalView. > > Check this out: >

Re: [Pharo-users] Extending GTSpotter

2014-12-12 Thread Tudor Girba
I would like to get Shift+Enter (because Cmd+Enter will be useful in other contexts), but we wanted to have something that can live next to the Spotlight for a while. But, now that we are over the first set of problems, I would like to use Shift+Enter. Any objections? Cheers, Doru On Fri, Dec

Re: [Pharo-users] Extending GTSpotter

2014-12-11 Thread Tudor Girba
Hi, I made a mistake and the post got reverted to a previous version that did not mention Cmd+Enter. The shortcut is present again in the post. But, the discoverability problem is still present and we need to fix it. It won't be a workspace, but likely a visual element or at least a menu entry.

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-09 Thread Tudor Girba
ind such method , i tried spotter and finder . > > On Tue, Dec 9, 2014 at 1:26 PM, Tudor Girba wrote: > >> Look at the implementors of >> >> gtInspectorMappingsIn: >> >> Doru >> >> On Tue, Dec 9, 2014 at 12:24 PM, kilon alios >> wrote: >&g

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-09 Thread Tudor Girba
, will dig it out. > > On Tue, Dec 9, 2014 at 1:16 PM, Tudor Girba wrote: > >> Hi, >> >> >> >> On Tue, Dec 9, 2014 at 12:05 PM, kilon alios >> wrote: >> >>> yeap thats a great feature to have too. I would love also more info ( >>> w

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-09 Thread Tudor Girba
> On Tue, Dec 9, 2014 at 12:59 PM, Tudor Girba wrote: > >> Hi, >> >> At the moment, you can easily get back to the previous context through >> the history category. >> >> Doru >> >> On Tue, Dec 9, 2014 at 11:51 AM, kilon alios >> wrote

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-09 Thread Tudor Girba
> Since this could work as an excellent finder replacement too. > > On Tue, Dec 9, 2014 at 12:39 PM, Tudor Girba wrote: > >> This is described briefly in the post, but Johan had also a problem with >> the description. >> >> So, if you want to see all 30 classes, you div

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-09 Thread Tudor Girba
th Glamour ? >> > >> > No it's in Brick. Brick is a small extension that we made to Morphic to >> make it a little more faster and to control resizing better. >> > So it's Morphic not Glamour :) >> > >> > >> > Cheers, >> > Andrei

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-09 Thread Tudor Girba
sizing better. > > So it's Morphic not Glamour :) > > > > > > Cheers, > > Andrei > > > > > > Look very good looking and very useful cant wait to try it :) > > > > On Tue, Dec 9, 2014 at 12:36 AM, Tudor Girba > wrote: > >

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-08 Thread Tudor Girba
results list > would be: > Cmd+Shift+ArrowUp/ArrowDown = Next/Prev category, Cmd+RightArrow = Dive > into Result, Cmd+Shift+RightArrow = Dive into Category > > > On Dec 8, 2014, at 12:48, Tudor Girba wrote: > > > > Hi, > > > > Ok. Let's take it step by st

Re: [Pharo-users] [ann] gtspotter: a moldable interface for spotting objects

2014-12-08 Thread Tudor Girba
reen until I accidentally hit cmd+enter (muscle memory from > another IDE). > Would be nice to explain cmd+enter to launch in the description page. > > Cheers, > -Ed > > > > On Dec 7, 2014, at 5:14 AM, Tudor Girba wrote: > > Hi, > > Alex Syrel, Andrei Chis and I are

Re: [Pharo-users] [ Article ] LampSort, a non-recursive QuickSort implementation

2014-12-08 Thread Tudor Girba
Very nice :) I really like these pieces of work. A couple more and you'll have a book ready :). Doru On Mon, Dec 8, 2014 at 8:17 PM, Sven Van Caekenberghe wrote: > > > On 08 Dec 2014, at 19:59, Alexandre Bergel > wrote: > > > > Well written and very dictactic. > > Thanks, that was the idea. >

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-08 Thread Tudor Girba
rote: > Sorry, but no :-( > > I am always confused when people say ‘category’ because the word has so > many overloaded meanings. The same happens in the blog post, it is not > clear to me what category means here, and what does it have to do with the > collection object? > >

Re: [Pharo-users] ShoreLine Reporter is in Pharo 4

2014-12-08 Thread Tudor Girba
This is really great news! Thanks a lot for doing that. I see this as the first step in a completely new direction for Pharo. Cheers, Doru On Mon, Dec 8, 2014 at 2:27 PM, Tommaso Dal Sasso < tommaso.dalsa...@gmail.com> wrote: > Hello everybody, > > I am excited to announce that ShoreLine Repo

Re: [Pharo-users] [ann] gtspotter: a moldable interface for spotting objects

2014-12-08 Thread Tudor Girba
I think this is out of the direct realm of GTSpotter. But, it would be an interesting area nevertheless. We would likely be able to benefit from combining somehow RB rules with spotter. Cheers, Doru > Christophe. > > Le 7 déc. 2014 à 14:14, Tudor Girba a écrit : > > Hi, >

Re: [Pharo-users] Emergency evaluator and GTGenericStackDebugger

2014-12-08 Thread Tudor Girba
Reverted most. However all my Petit* >> ones trigger the same error when reloading them. I deleted them. But the >> error persists, as soon as I try open a Workspace I get the Emergency >> Evaluator screen. >> >> -Ed >> >> On Dec 7, 2014, at 12:21 AM, Tudor

Re: [Pharo-users] [Pharo-dev] [Moose-dev] [ann] gtspotter: a moldable interface for spotting objects

2014-12-07 Thread Tudor Girba
#x27;some string' ? > Globals like the Transcript ? > Singletons accessible by class side accessors, like announcers ? > An evaluation functionality, just type an expression ? > Examples ? > The clipboard (contents), open windows, processes, ... > > Anyway, I am sure you get the

Re: [Pharo-users] Emergency evaluator and GTGenericStackDebugger

2014-12-07 Thread Tudor Girba
You can actually do the same in Pharo 3 as well. Doru On Sun, Dec 7, 2014 at 9:31 PM, Nicolai Hess wrote: > Hi, > > what image do you use? > If it is pharo4, you can open the settings (World menu>System>Settings) > and disable GT playground and inspector (Glamorous Toolkit settings) > > > > > 2

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-07 Thread Tudor Girba
4:00 PM, Thierry Goubier wrote: > > > 2014-12-07 15:56 GMT+01:00 Tudor Girba : > >> Thanks, Stef. >> >> On Sun, Dec 7, 2014 at 2:35 PM, stephane ducasse < >> stephane.duca...@gmail.com> wrote: >> >>> Last time I found myself looking for

Re: [Pharo-users] [Pharo-dev] [Moose-dev] [ann] gtspotter: a moldable interface for spotting objects

2014-12-07 Thread Tudor Girba
Caekenberghe wrote: > > > On 07 Dec 2014, at 14:14, Tudor Girba wrote: > > > > Alex Syrel, Andrei Chis and I are happy to announce a new addition to > the Glamorous Toolkit: > > GTSpotter, a novel interface for spotting objects. > > Excellent work, all around

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-07 Thread Tudor Girba
:) I know how this feels. On the other hand, with this one we target 15 minutes (= the coffee break) :) Doru On Sun, Dec 7, 2014 at 4:20 PM, stephane ducasse wrote: > > Hi, > > This is indeed a significant challenge. Until that point we need a couple > of more features, of which the most impor

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-07 Thread Tudor Girba
:05 PM, stephane ducasse wrote: > > On 07 Dec 2014, at 06:56, Tudor Girba wrote: > > Thanks, Stef. > > On Sun, Dec 7, 2014 at 2:35 PM, stephane ducasse < > stephane.duca...@gmail.com> wrote: > >> Truly excellent! >> I have to try :) >> I rea

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-07 Thread Tudor Girba
ly inside the > implementor of y. > and of course I wanted to refactored them. And the default message browser > is not parametrized via an environment :_ > Exactly. This problem exists in any IDE I know. Doru > Stef > > On 07 Dec 2014, at 05:14, Tudor Girba wrote: > &

Re: [Pharo-users] [Esug-list] [ann] gtspotter: a moldable interface for spotting objects

2014-12-07 Thread Tudor Girba
rrowUp/ArrowDown = Next/Prev category, Cmd+RightArrow = Dive > into, Cmd+Shift+RightArrow = ??? > > > On Dec 7, 2014, at 10:14, Tudor Girba wrote: > > > > Hi, > > > > Alex Syrel, Andrei Chis and I are happy to announce a new addition to > the Glamorous Toolkit: >

Re: [Pharo-users] Emergency evaluator and GTGenericStackDebugger

2014-12-07 Thread Tudor Girba
or persists, as soon as I try open a Workspace I get the Emergency > Evaluator screen. > > -Ed > > On Dec 7, 2014, at 12:21 AM, Tudor Girba wrote: > > Hi, > > If I understand correctly, you are on Pharo 3. What I suggest is to open > the Monticello Browser and look at

Re: [Pharo-users] Emergency evaluator and GTGenericStackDebugger

2014-12-07 Thread Tudor Girba
Hi, If I understand correctly, you are on Pharo 3. What I suggest is to open the Monticello Browser and look at the changed packages. Then you can load the previous versions of those, and you should get back to normal. Cheers, Doru On Sun, Dec 7, 2014 at 6:08 AM, Edward Povazan wrote: > Hell

Re: [Pharo-users] Alternate Twitter

2014-12-06 Thread Tudor Girba
What does that mean? Doru On Sat, Dec 6, 2014 at 3:06 PM, Hans Schueren wrote: > > Alternate Twitter > > -- www.tudorgirba.com "Every thing has its own flow"

Re: [Pharo-users] Alternate browser

2014-12-06 Thread Tudor Girba
Indeed. It's planned. We definitely need a tour of these tools to be ready for Pharo 4.0. Doru On Fri, Dec 5, 2014 at 3:32 PM, stepharo wrote: > doru you should write a book chapter with all this material. > > Le 1/12/14 14:15, Tudor Girba a écrit : > > Interesting that

Re: [Pharo-users] Twittering Smalltalk

2014-12-05 Thread Tudor Girba
+1. Doru On Fri, Dec 5, 2014 at 4:00 PM, Thushar G R wrote: > Thank you. > > Made my day. > thushar > > On Fri, Dec 5, 2014 at 1:57 AM, Mariano Martinez Peck < > marianop...@gmail.com> wrote: > >> Very nice indeed to read that. >> >> On Thu, Dec 4, 2014 at 5:15 PM, Sven Van Caekenberghe >> wro

Re: [Pharo-users] [ANN] Pharo Days 2015. The Pharo summit is back!

2014-12-04 Thread Tudor Girba
I apologize for the mistake. It is obviously in the order: - Bronze = 1 - Silver = 2 - Gold = 4 Doru On Thu, Dec 4, 2014 at 12:16 PM, p...@highoctane.be wrote: > On Thu, Dec 4, 2014 at 11:44 AM, Tudor Girba wrote: > >> 1,2,4 represent the number of people that can participate

Re: [Pharo-users] [ANN] Pharo Days 2015. The Pharo summit is back!

2014-12-04 Thread Tudor Girba
1,2,4 represent the number of people that can participate depending on the membership level. So, a Silver Member will be able to send 1 person at 89EUR. Cheers, Doru On Thu, Dec 4, 2014 at 11:38 AM, p...@highoctane.be wrote: > On Thu, Dec 4, 2014 at 8:26 AM, stepharo wrote: > >> >> Le 3/12/14

Re: [Pharo-users] Alternate browser

2014-12-02 Thread Tudor Girba
> not reinvent the wheel. So now I will sit down and study all these > technologies and see how I can utilise them better in my workflow. Thank > you for you hard work and taking the time explaining. > > On Tue, Dec 2, 2014 at 12:29 AM, Sven Van Caekenberghe > wrote: > >>

Re: [Pharo-users] Alternate browser

2014-12-01 Thread Tudor Girba
Indeed. Can anyone help me with doing this? Doru On Mon, Dec 1, 2014 at 9:36 PM, Hilaire wrote: > Le 01/12/2014 15:09, Tudor Girba a écrit : > > > > Sorry for the trouble. I will try to migrate my websites to a more > > stable technology :(. > > > > Not p

Re: [Pharo-users] Alternate browser

2014-12-01 Thread Tudor Girba
Hi Kilon, Indeed, I was not explicit about the API. As Thierry said, the API is Glamour. Glamour is described in two book chapters: - http://www.themoosebook.org/book/internals/glamour/ - Glamour chapter in Deep Into Pharo More examples on how to use Glamour can be found directly in code. For ex

Re: [Pharo-users] Alternate browser

2014-12-01 Thread Tudor Girba
> > Access to moose sites ss a problem with months now. Hopefully this will be > solved with a reliable hosting to spreed better this technology and its > ideas. > > Cheers, > > Offray > > > El 01/12/14 a las #4, Tudor Girba escribió: > >> Interestin

Re: [Pharo-users] Alternate browser

2014-12-01 Thread Tudor Girba
Interesting that you are asking that question. This basically means that the whole philosophy of the GTInspector did not get communicated well. We have to work on this because I think GTInspector is the most significant step in object inspection since the introduction of the original inspector. So

Re: [Pharo-users] Alternate browser

2014-12-01 Thread Tudor Girba
Hi, This is precisely the direction that the IDE of Pharo is taking. Take the inspector for example. It is a tiny piece of code that can be extended in many ways and in doing so, it can support various workflows. The same is actually available already for the debugger (GTDebugger) although this

Re: [Pharo-users] Pharo Consultants Page Updated

2014-11-20 Thread Tudor Girba
Thanks! Doru On Thu, Nov 20, 2014 at 1:09 PM, Norbert Hartl wrote: > Thanks! > > Norbert > > > > > Am 20.11.2014 um 09:55 schrieb Sven Van Caekenberghe : > > > > Hi, > > > > The Pharo Consultants page has been updated, it now contains 17 entries. > > > > http://consultants.pharo.org > > > > Sv

Re: [Pharo-users] Kiviat support in Roassal

2014-11-20 Thread Tudor Girba
Great news! Is this already committed in Roassal? Doru On Thu, Nov 20, 2014 at 1:48 PM, Alexandre Bergel wrote: > Hi! > > Pierre just finished a first version of Kiviat in Roassal. Here are some > example: > > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > b := RTKiviatBuilder new. > > b objects: RTAbstract

Re: [Pharo-users] Is there a way to store workspace 'gists' in Pharo?

2014-11-10 Thread Tudor Girba
If you work with Pharo 4, they should already be saved in a play-cache folder. Cheers, Doru On Mon, Nov 10, 2014 at 3:55 PM, Andy Burnett < andy.burn...@knowinnovation.com> wrote: > From time to time I write a workspace script that I would like to keep. > Obviously, I could save them to a file,

Re: [Pharo-users] FileBrowser confusion

2014-11-06 Thread Tudor Girba
ds/File-Save-Dialog.png > can do it and it is very handy. > Both of these facilities exist (except for the favorites part): UITheme builder fileOpen: 'Import model from MSE file' extensions: #('mse'). UITheme builder fileSave: 'Your title here' extensions: #

Re: [Pharo-users] FileBrowser confusion

2014-11-06 Thread Tudor Girba
Hi, On Thu, Nov 6, 2014 at 7:49 PM, Peter Uhnák wrote: > I checked out the file browser GT Inspector (I hope that is what you were > referring to), unfortunately it's crashing a lot for me (it seems it can't > figure out file size for large files (~4GB) and some other stuff > (sockets?)). > Wh

Re: [Pharo-users] [ANN]: NewExternalWebBrowser

2014-11-06 Thread Tudor Girba
Actually, the ability to open a web browser is already present in the Pharo image out of the box through NativeBoost: NBMacShell open: 'http://pharo.org' NBWin32Shell shellBrowse: 'http://pharo.org' Cheers, Doru On Thu, Nov 6, 2014 at 6:11 PM, Sean P. DeNigris wrote: > On Nov 6, 2014, at 6:1

Re: [Pharo-users] [ANN]: NewExternalWebBrowser

2014-11-04 Thread Tudor Girba
Nice :) Thanks, Doru On Tue, Nov 4, 2014 at 7:39 PM, Sean P. DeNigris wrote: > Not too long ago, someone requested the ability to open a URL in an > external > browser. > > Now that Pharo has NativeBoost, it seems we could implement > ExternalWebBrowser much more simply. Here's a first commit f

Re: [Pharo-users] FFI structs

2014-10-30 Thread Tudor Girba
That is cool. Doru On Thu, Oct 30, 2014 at 11:37 PM, stepharo wrote: > Ronie is working on unifying all the api and proposing one syntax > mechanism for > - nativeBoost back-end > - FFI > and may be Alien > > The FFI situation is not good and we know we should improve it. > > > On

[Pharo-users] [ANN] new GT features: disk memory, ws.stfx.eu sharing, closeable panes and others

2014-10-24 Thread Tudor Girba
Hi, We are quite actively working on GT. First of all, thanks everyone for the feedback. We take it quite seriously and we do our best to take it into account. Please keep the discussions flowing. I summarized some of the things that happened recently in the playground and inspector here: http:/

Re: [Pharo-users] [Pharo-dev] Clickable class side example and initialize methods in Pharo 4.0

2014-10-22 Thread Tudor Girba
plicit >>>>> then >>>>> >>>>> >>>>> >>>>> with ExampleCategory(class)>>graphics returning a translateable >>>>> string. People can add >>>>> own categories and one easily knows about alr

Re: [Pharo-users] [Pharo-dev] Clickable class side example and initialize methods in Pharo 4.0

2014-10-22 Thread Tudor Girba
will come very handy for my users thanks :) > > On Wed, Oct 22, 2014 at 11:43 AM, Tudor Girba > wrote: > >> Hi Torsten, >> >> Thanks for this. This is indeed the way to go. >> >> Just to let you know, the example infrastructure is also being developed >

Re: [Pharo-users] [Pharo-dev] Clickable class side example and initialize methods in Pharo 4.0

2014-10-22 Thread Tudor Girba
Hi Torsten, Thanks for this. This is indeed the way to go. Just to let you know, the example infrastructure is also being developed in the context of GT, so we have a healthy interest overlap which is great. Only in our case, the discovery of the example happens through an pragma. Would it be po

Re: [Pharo-users] new Pharo Success story

2014-10-20 Thread Tudor Girba
+100 Doru On Mon, Oct 20, 2014 at 11:41 AM, Sven Van Caekenberghe wrote: > > > On 19 Oct 2014, at 09:44, stepharo wrote: > > > > Hi > > > > we just published a new success story: Pharo at CSOB > > > >http://pharo.org/success > > > > And yes we are interested in your sucess stories > > > >

Re: [Pharo-users] [Ann] Phratch 4.0

2014-10-17 Thread Tudor Girba
This is a great addition to the Pharo ecosystem. Thank you very much! Doru On Fri, Oct 17, 2014 at 11:48 AM, jannik laval wrote: > Phratch 4.0 is out of the box ! > > Phratch 4.0 is cleaner, faster and more stable than phratch 3.0. > > After the version 3.0 that was a release for usability and

Re: [Pharo-users] Trouble opening large files

2014-10-13 Thread Tudor Girba
Hi, If I understand correctly, the failure occurs while navigating in the "Items" presentation. I cannot reproduce this problem because I do not have enough disk space for such a large file :). But, could you do the following and let me know what the outcome is: 'path/to/your/large/file.xml' asF

Re: [Pharo-users] ZipFileMember>>contentStream has leading characters

2014-10-13 Thread Tudor Girba
t; file := zipper members at: 2. >> >> "file contentStream returns the stream with file's information >> uncompressed" >> >> >> On 13 October 2014 08:15, Tudor Girba wrote: >> >>> What is the code that you use?

Re: [Pharo-users] ZipFileMember>>contentStream has leading characters

2014-10-13 Thread Tudor Girba
What is the code that you use? Doru On Mon, Oct 13, 2014 at 1:31 AM, DiegoSanchez wrote: > Hi everybody! This is my first post and I'm posting this question after > going around this forum without finding answer for my question. I couldn't > wrap my mind around it. > > Here is the issue (in f

Re: [Pharo-users] [Pharo-dev] Artefact documentation is now in english

2014-10-12 Thread Tudor Girba
Thanks! Doru On Sun, Oct 12, 2014 at 7:36 PM, stepharo wrote: > Hi guys > > I finished the translation of the chapter on Artefact the pdf generator > library developed by O. Auverlot and G. Larcheveque. > > https://ci.inria.fr/pharo-contribution/job/PharoForTheEnterprise/ > lastSuccessfulBuild/

Re: [Pharo-users] Installing GToolkit

2014-10-04 Thread Tudor Girba
Hi Evan, The instructions are a bit wrong. It should be "activateWithoutSaving" instead of "activate". The GTImageSetupCommandLineHandler does more default settings. Just take a look at the activateWithoutSaving method and pick what you want, or use the script that Phil suggested only to install

Re: [Pharo-users] UI testing

2014-09-30 Thread Tudor Girba
Hi, Glamour comes with an extensive Morphic test suite. You can check it here in the subclasses of GLMMorphicTest. The superclass also has a number of utility methods. The checking is done via excellent additions to Morphic (I believe by Sean). See for example this: GLMTextMorphicTest>>testAccep

Re: [Pharo-users] [Pharo-dev] Data Analysis in Pharo

2014-09-28 Thread Tudor Girba
Indeed, this is nice! It is for this reason that Moose is a data analysis platform, and what we see now is just only tip of the iceberg, Once these tools get embedded deep in the environment the potential simply explodes. Cheers, Doru On Sun, Sep 28, 2014 at 8:27 PM, Alexandre Bergel wrote: >

Re: [Pharo-users] Loading PetitParser loads a hell of a lot of things... is there a terser version?

2014-09-25 Thread Tudor Girba
Hi, The dependencies are needed for the UI. If you can live without the UI, you can load the 'Core' group from the configuration. Cheers, Doru On Thu, Sep 25, 2014 at 2:07 PM, p...@highoctane.be wrote: > I am loading PetitParser in my image but it takes a lng time to load > and below is

Re: [Pharo-users] [ANN] Test Coverage with Hapao

2014-09-21 Thread Tudor Girba
It is :) Doru On Sun, Sep 21, 2014 at 8:28 PM, Trygve Reenskaug wrote: > Thanks. Looks like a powerful improvement. --Trygve > > > On 21.09.2014 19:34, Tudor Girba wrote: > > Class categories are system categories :). > > Since Pharo 3.0, they are replaced with

Re: [Pharo-users] [ANN] Test Coverage with Hapao

2014-09-21 Thread Tudor Girba
y know about system categories (categories of classes) and method > categories within a class. > I understood you to mean system categories. > What are class categories and why will they be removed? > --Trygve > > > > On 21.09.2014 15:36, Tudor Girba wrote: > > What do

Re: [Pharo-users] [ANN] Test Coverage with Hapao

2014-09-21 Thread Tudor Girba
What do you mean? Doru On Sun, Sep 21, 2014 at 2:42 PM, Trygve Reenskaug wrote: > > On 20.09.2014 14:51, stepharo wrote: > > This is cool I blog about it. > Now pay attention class categories will not exist in the future. > > Stef > > Any ref to this development? > -- www.tudorgirba.com "E

Re: [Pharo-users] i "am" back ...

2014-09-19 Thread Tudor Girba
Welcome back! Doru On Fri, Sep 19, 2014 at 2:07 PM, Mayuresh Kathe wrote: > hello all, > > i had to do it. > after listening to everybody's comments about my questions to the list, i > went out and checked on the current state of squeak and self. > > looks like squeak and self definitely need a

Re: [Pharo-users] Where pharo stores its selfies?

2014-09-18 Thread Tudor Girba
Typically, in the same folder where the image resides. Doru On Fri, Sep 19, 2014 at 1:01 AM, wrote: > Hi, > > I'm taking somescreenshots of Pharo using the functionality provided by > Pharo itself to make this. It seems that screenshot is properly saved, but > there is no indication about where

Re: [Pharo-users] STON: Metadata of text and yaml translations

2014-09-17 Thread Tudor Girba
Hi, In your case, you probably do not need to store text (this is what gets in the #text port) but the string correspondent. Just use "text asString" before you store the updated text in your object. Cheers, Doru On Wed, Sep 17, 2014 at 9:02 PM, Offray Vladimir Luna Cárdenas < off...@riseup.ne

Re: [Pharo-users] [ANN] Easy I18N for Pharo

2014-09-15 Thread Tudor Girba
Nice job! And nice doc! Thank you. Doru On Mon, Sep 15, 2014 at 11:18 PM, Torsten Bergmann wrote: > I just refer to my original announcement: "Need an EASY translation > framework for your Pharo application with NO EXTERNAL dependency?" > > That's it. Nothing fancy. Nothing more. Only a simple

Re: [Pharo-users] Helvetica for Pharo 3/4

2014-09-13 Thread Tudor Girba
Hi Udo, Not yet, but the good news is that both the ability to customize both the compiler and the debugger are now a reality which means that Helvetia should be much easier to implement. This should definitely be a topic of high interest. Cheers, Doru On Sat, Sep 13, 2014 at 11:58 AM, Udo Sch

Re: [Pharo-users] Workshop on Visual Data Narratives using Roassal/Pharo in our local hackerspace in Bogotá Colombia

2014-09-09 Thread Tudor Girba
Very nice initiative! Doru On Tue, Sep 9, 2014 at 9:43 PM, Alexandre Bergel wrote: > This is excellent! > > Just to let you know, if you need to do a demo of Roassal, you have here > the video a an easy to do demo: https://vimeo.com/94724841 > > Cheers, > Alexandre > -- > _,.;:~^~:;._,.;:~^~:;.

Re: [Pharo-users] [ann] pillar support in gtinspector

2014-09-07 Thread Tudor Girba
Hi, > > Great. Please keep experimenting and keep us posted. > > Well I have redefined my immediate goal for the next experiment as just > updating an object from a text pane even if this is not automatic (as I > said in the proper thread automatic updating is not working). So, how can I > get t

Re: [Pharo-users] [ann] pillar support in gtinspector

2014-09-07 Thread Tudor Girba
Maybe ... would anyone be interested in giving it a try? :) Doru On Mon, Sep 8, 2014 at 12:57 AM, Ben Coman wrote: > Tudor Girba wrote: > > Hi, > > Thanks for the feedback. Indeed, your points are much inline with where we > should go next. > > On Sun, Sep 7, 2014 at

Re: [Pharo-users] [ann] pillar support in gtinspector

2014-09-07 Thread Tudor Girba
l places" for printing described on your post at [2] >> >> [2] http://www.humane-assessment.com/blog/rethinking-print-it-in-pharo/ >> >> e. The hability to show a preview of the pdf/html in an emergent lateral >> panel in a simlar way to what TeXStudio or TeXmake

Re: [Pharo-users] [ann] pillar support in gtinspector

2014-09-07 Thread Tudor Girba
o embed a browser in a Pharo UI, and I am not aware of how to do it > > So here I put my other ideas about "bringing liveliness to documentation" > as you said and I would like to build them together. > Great. Please keep experimenting and keep us posted.

Re: [Pharo-users] Using Playground on Pharo 3.0

2014-09-05 Thread Tudor Girba
You did not do anything wrong. At the moment, these entries do not exist in the menu. Doru On Fri, Sep 5, 2014 at 11:18 AM, PBKResearch wrote: > Hello > > > > I have been playing with Moose 5.0 (Pharo 3.0 update: #30854) on Windows 7 > Pro, trying to copy and paste code from e-mails in another

Re: [Pharo-users] [ANN] JSON datatype support in PostgresV2 package

2014-09-04 Thread Tudor Girba
Thank you! Any contribution in this direction is important. Doru On Thu, Sep 4, 2014 at 9:43 PM, Esteban A. Maringolo wrote: > Oh, I forgot. > > The datatype fields are converted to instances of JsonObject, from the > PharoExtras/JSON package. > So the version 2.4 loads such package. > > Even

Re: [Pharo-users] Pharo on retina macbook

2014-09-04 Thread Tudor Girba
Hi, This should be a known issue as it was raised before. The problem occurs with any font. It has to do with the VM as far as I understood. I am not sure what is needed to be done, though. Cheers, Doru On Thu, Sep 4, 2014 at 9:20 AM, Ben Coman wrote: > Johan Brichau wrote: > >> Hi, >> >> I j

Re: [Pharo-users] Moose browsers: Updating an object value from a text pane and from an emergent window

2014-09-03 Thread Tudor Girba
Hi, As I said before, right now, Glamour does not easily the behavior you want, but you can abuse an existing mechanism of capturing changes of a port through a transmission that transforms that value. Here is an example: text := ''. GLMCompositePresentation new wrapper with: [ :wrapper | wrappe

Re: [Pharo-users] Tide installation

2014-09-03 Thread Tudor Girba
Hi, On Wed, Sep 3, 2014 at 11:08 AM, Bernat Romagosa < tibabenfortlapala...@gmail.com> wrote: > Hi Stef, > > I got Tide working alright, the only thing that's a bit off is the part of > the installation steps where it says you have to use a particular bower > version. I can issue a pull reques

Re: [Pharo-users] [Article] Reddit.st - In 10 Cool Pharo Classes

2014-09-01 Thread Tudor Girba
Nice! Doru On Mon, Sep 1, 2014 at 11:18 PM, Sven Van Caekenberghe wrote: > Hi, > > I published another introduction/tutorial article > > Reddit.st - In 10 Cool Pharo Classes > > Implementing a Reddit style web application in Pharo using Seaside, Glorp > and PostgreSQL > > > https://medium.co

<    2   3   4   5   6   7   8   9   >