Re: [Pharo-users] issue with large file path on windows

2015-08-24 Thread Nicolai Hess
2015-08-24 13:34 GMT+02:00 Henrik Johansen henrik.s.johan...@veloxit.no: On 23 Aug 2015, at 6:09 , Nicolai Hess nicolaih...@web.de wrote: And If you want to review the changes: https://github.com/nicolaihess/pharo-vm/compare/master...nicolaihess:win-long-filename 2015-08-23 13:44

Re: [Pharo-users] MSOffice DOCX generation?

2015-08-24 Thread H. Hirzel
An initial version of a DOCX export (Headings and tables) here http://ss3.gemtalksystems.com/ss/Tabular.html (click on 'latest' and load configuration and Tabular*.mcz file). --Hannes On 8/9/15, H. Hirzel hannes.hir...@gmail.com wrote: And as Model 0 Model 0 Subset ---

Re: [Pharo-users] How to execute code when after loading a package

2015-08-24 Thread Guillaume Larcheveque
you can also define your code in a class in the #initialize method (class side) 2015-08-24 17:21 GMT+02:00 Mariano Martinez Peck marianop...@gmail.com: I know there was/is a way in Monticello itself, but I think it was never widely used. I think most common solution is to use #postLoadDoIt: at

Re: [Pharo-users] How to execute code when after loading a package

2015-08-24 Thread Mariano Martinez Peck
I know there was/is a way in Monticello itself, but I think it was never widely used. I think most common solution is to use #postLoadDoIt: at different levels (packages, groups, whole project, etc) of Metacello. But yeah, you need a Metacello conf for that. On Thu, Aug 20, 2015 at 4:11 PM,

[Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread Julien Delplanque
Hi all, I created a small utility that make possible to have multi desktops: https://github.com/juliendelplanque/desktopsmanager. It show/hide windows according to the desktop you're on. I think it can be useful from my small experience, I often feel a lack of space when opening 4-5 windows

Re: [Pharo-users] How to execute code when after loading a package

2015-08-24 Thread Julien Delplanque
OK, thanks for your answers :) On 24/08/15 17:37, Guillaume Larcheveque wrote: you can also define your code in a class in the #initialize method (class side) 2015-08-24 17:21 GMT+02:00 Mariano Martinez Peck marianop...@gmail.com: I know there was/is a way in Monticello itself, but I think

Re: [Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread Julien Delplanque
Yes it should work on Pharo 4. Did you opened windows as said in the README's notes section? If you have no window opened in a desktop you cant create a new desktop. If you did, can you try: DesktopsManager uniqueInstance nextDesktop and DesktopsManager uniqueInstance previousDesktop Do

Re: [Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread Mariano Martinez Peck
It does not work for me. Should it work in Pharo 4.0? On Mon, Aug 24, 2015 at 1:39 PM, Julien Delplanque jul...@tamere.eu wrote: Hi all, I created a small utility that make possible to have multi desktops: https://github.com/juliendelplanque/desktopsmanager. It show/hide windows according

[Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread Torsten Bergmann
Julien Delplanque wrote: I created a small utility that make possible to have multi desktops: https://github.com/juliendelplanque/desktopsmanager. Your code works for me in Pharo 5, havent tried in Pharo 4. Unfortunately it does only work for Pharo windows but not general morphs. If you

Re: [Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread Julien Delplanque
On 24/08/15 19:32, Torsten Bergmann wrote: Julien Delplanque wrote: I created a small utility that make possible to have multi desktops: https://github.com/juliendelplanque/desktopsmanager. Your code works for me in Pharo 5, havent tried in Pharo 4. Unfortunately it does only work for Pharo

Re: [Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread Mariano Martinez Peck
On Mon, Aug 24, 2015 at 2:26 PM, Julien Delplanque jul...@tamere.eu wrote: Yes it should work on Pharo 4. Did you opened windows as said in the README's notes section? Yes. If you have no window opened in a desktop you cant create a new desktop. If you did, can you try:

Re: [Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread Mariano Martinez Peck
On Mon, Aug 24, 2015 at 2:57 PM, Julien Delplanque jul...@tamere.eu wrote: On 24/08/15 19:47, Mariano Martinez Peck wrote: If you have no window opened in a desktop you cant create a new desktop. If you did, can you try: DesktopsManager uniqueInstance nextDesktop and DesktopsManager

Re: [Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread Julien Delplanque
On 24/08/15 20:01, Mariano Martinez Peck wrote: On Mon, Aug 24, 2015 at 2:57 PM, Julien Delplanque jul...@tamere.eu wrote: On 24/08/15 19:47, Mariano Martinez Peck wrote: If you have no window opened in a desktop you cant create a new desktop. If you did, can you try: DesktopsManager

Re: [Pharo-users] SIXX in Pharo 4.0?

2015-08-24 Thread Ben Coman
On Mon, Aug 24, 2015 at 2:46 PM, H. Hirzel hannes.hir...@gmail.com wrote: Hello I experience a load problem of SIXX * in Pharo 4.0. https://github.com/mumez/SIXX/issues/2 The complaint is that a class ContextPart is not found. Any suggestions/hints how to proceed? ContextPart and

Re: [Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread Julien Delplanque
Thanks a lot for all these tips :) I will update the project to match with what is really expected from a multi world utility. Thanks again for the time you take to explain me this. Regards, Julien On 24/08/15 20:24, Torsten Bergmann wrote: Hi Julien, what I remember from history -

Re: [Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread Torsten Bergmann
Hi Julien, try WorldMorph installNewWorld. which will create a new world. Open a workspace and check that it is there. WorldMorph allInstances If you click in the inspector you will see a morph representation of it - so you see which one is which. Now you have two instances of WorldMorph

Re: [Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread Julien Delplanque
On 24/08/15 20:41, Torsten Bergmann wrote: Hi Julien, try WorldMorph installNewWorld. which will create a new world. Open a workspace and check that it is there. WorldMorph allInstances If you click in the inspector you will see a morph representation of it - so you see which one is

[Pharo-users] SIXX in Pharo 4.0?

2015-08-24 Thread H. Hirzel
Hello I experience a load problem of SIXX * in Pharo 4.0. https://github.com/mumez/SIXX/issues/2 The complaint is that a class ContextPart is not found. Any suggestions/hints how to proceed? Regards Hannes - * Smalltalk Instance eXchange in XML

[Pharo-users] [ANN] Pharo Consortium New Gold Member: Projector Software GmbH

2015-08-24 Thread Marcus Denker
The Pharo Consortium is very happy to announce that Projector Software GmbH has joined the Consortium as an Gold Member. About - Projector Software GmbH: http://projector.de - Pharo Consortium: http://consortium.pharo.org The goal of the Pharo Consortium is to allow companies and institutions

Re: [Pharo-users] issue with large file path on windows

2015-08-24 Thread Henrik Johansen
On 23 Aug 2015, at 6:09 , Nicolai Hess nicolaih...@web.de wrote: And If you want to review the changes: https://github.com/nicolaihess/pharo-vm/compare/master...nicolaihess:win-long-filename https://github.com/nicolaihess/pharo-vm/compare/master...nicolaihess:win-long-filename

Re: [Pharo-users] [Pharo-dev] [ANN] Pharo Consortium New Gold Member: Projector Software GmbH

2015-08-24 Thread Norbert Hartl
Great!! Norbert Am 24.08.2015 um 12:37 schrieb Marcus Denker marcus.den...@inria.fr: The Pharo Consortium is very happy to announce that Projector Software GmbH has joined the Consortium as an Gold Member. About - Projector Software GmbH: http://projector.de - Pharo Consortium:

Re: [Pharo-users] [ANN] Pharo Consortium New Gold Member: Projector Software GmbH

2015-08-24 Thread Ben Coman
On Mon, Aug 24, 2015 at 6:37 PM, Marcus Denker marcus.den...@inria.fr wrote: The Pharo Consortium is very happy to announce that Projector Software GmbH has joined the Consortium as an Gold Member. About - Projector Software GmbH: http://projector.de - Pharo Consortium:

Re: [Pharo-users] SIXX in Pharo 4.0?

2015-08-24 Thread H. Hirzel
Thanks for the help so far; Updated https://github.com/mumez/SIXX/issues/2 123 test cases pass. Suggestions how to deal with the four test cases which fail? --Hannes On 8/24/15, Ben Coman b...@openinworld.com wrote: On Mon, Aug 24, 2015 at 2:46 PM, H. Hirzel hannes.hir...@gmail.com wrote:

Re: [Pharo-users] Multi desktops inside Pharo!

2015-08-24 Thread H. Hirzel
How does this discussion relate to http://smalltalkhub.com/#!/~LaurentLaffont/TilingWindowManager ? On 8/24/15, Julien Delplanque jul...@tamere.eu wrote: On 24/08/15 20:41, Torsten Bergmann wrote: Hi Julien, try WorldMorph installNewWorld. which will create a new world. Open a