Re: [Pharo-users] [ANN] Pharo 6.0 released!

2017-06-06 Thread Stephan Eggermont
On 06/06/17 17:11, Esteban Lorenzano wrote: Dear World, The time has come for Pharo 6.0! Yes! Well done! Stephan

Re: [Pharo-users] Some Metacello issue

2017-06-06 Thread Stephan Eggermont
On 07/06/17 06:19, Holger Freyther wrote: Hi, after having made some new releases I have an odd Metacello issue and I am not sure how to debug it. This happens on my legacy Pharo3/Pharo4 images that I still need to support in deployment. It seems to be related to a dependency chain of "app"->Vo

Re: [Pharo-users] Some Metacello issue

2017-06-06 Thread Stephan Eggermont
I would like to repeat here again: don't refer to fixed version numbers of packages out of your control in configurations. Refer to #'release' versions that can be patched by the maintainers of your dependencies. That is only appropriate when having to patch around a problem, and couples your c

Re: [Pharo-users] how to open an pharo4 image on macOs 10.12.5

2017-06-11 Thread Stephan Eggermont
On 10/06/17 20:37, Johannes Brauer wrote: I cannot figure out how to open an old pharo4 image (downloaded from pharocloud) on macOs Sierra. Is there a usable vm? The latest vm from http://files.pharo.org/vm/pharo/mac/ should be the right one. In Sierra Apple broke some path extension code. Tha

Re: [Pharo-users] Setting rowHeight: for Spec FastTableModel

2017-06-22 Thread Stephan Eggermont
On 22/06/17 10:51, Juraj Kubelka wrote: Hi, I have a code like this: FastTableModel new displayBlock: [ :node | node name ]; items: Collection withAllSubclasses; openWithSpec. Which works fine. But I would like to define row height for each item. FTTableMorph has a method rowHeight:. Is it pos

Re: [Pharo-users] Pharo 6.0 and 6.1 64 bit freeze on MacMini

2017-08-16 Thread Stephan Eggermont
Please try starting your Pharo image with a new squeak vm. I remember Tobias posting something on a full screen bug fix about a year ago, and don't know what happened with it. It was around the same time as his hiDPI fix, which triggered some garbage collection issue at the time. Some part of th

Re: [Pharo-users] Who is maintaining of Artefact?

2017-09-12 Thread Stephan Eggermont
On 12-09-17 11:11, Denis Kudriashov wrote: > Maybe it is similar as porting GLORP into Pharo. Somebody can comment on this process. The important point is that the original code is in another dialect, and the idea is not to fork, as the original maintainer develops it further. That means that

Re: [Pharo-users] PlotMorph on Pharo 6.1

2017-09-13 Thread Stephan Eggermont
On 13/09/17 19:22, Mark Bestley wrote: Unfortunatley not. That error has gone but I now get > x := x rounded. Yes, that is the question I posed. Assignment to block variables is prohibited now? Stephan

Re: [Pharo-users] (no subject)

2017-09-20 Thread Stephan Eggermont
On 20/09/17 12:17, Christophe Demarey wrote: I just updated the PharoLauncher and it should now work fine for 64-bits images. I just had time to test it roughly but you can give it a try (https://ci.inria.fr/pharo/view/Launcher/job/Launcher/149/). Pharo7 64 bit starts fine on Mac. Good work.

Re: [Pharo-users] (no subject)

2017-09-20 Thread Stephan Eggermont
On 17/09/17 05:21, Sean P. DeNigris wrote: demarey wrote Let us know if everything is fine. Was this issue [1] fixed: I think I found it. It seems to be a bug in the way Launcher/Pharo unzips the downloaded VM. The symlink libgit2.dylib becomes unlinked and appears as just a regular file. If

[Pharo-users] [Demo] Creating Bloc Widgets with Pharo

2017-09-28 Thread Stephan Eggermont
Bloc is ready for your experiments. Here is my first one. Please let me know what and how to improve. Bloc allows for the creation of beautiful widgets. Here is a panel containing collapsible subpanels that can be reordered with drag-and-drop. https://vimeo.com/235934701 Stephan BlElement subcl

Re: [Pharo-users] [Demo] Creating Bloc Widgets with Pharo

2017-09-29 Thread Stephan Eggermont
On 29/09/17 00:51, Igor Stasenko wrote: Stephan , you said you cannot replace the last one in the video. I think you can have an easy solution: you should treat a pane that you are currently over - the one you are going to replace, so if you drag over something which is not placeholder, then i

Re: [Pharo-users] [Demo] Creating Bloc Widgets with Pharo

2017-09-29 Thread Stephan Eggermont
On 29/09/17 13:20, Alexandre Bergel wrote: Why not having PrInspector>>open ? How can I open your inspector? Indeed, something like PrInspector class>>open |space| space := BlSpace new. space extent: 160@180. space root addChild: self new. space

[Pharo-users] [Demo] Creating Bloc widgets: A Color Panel

2017-10-02 Thread Stephan Eggermont
Bloc is ready for your experiments. Here is my second one. Please let me know what and how to improve. Bloc allows for the easy creation of beautiful widgets. Here is a simple color panel that allows custom colors to be added (using the current Morphic color selector dialog) and allows colors to

Re: [Pharo-users] Writing "powerpoint" like presentations in Pharo?

2017-11-03 Thread Stephan Eggermont
On 03/11/17 12:33, Tim Mackinnon wrote: Cool - great minds think alike ;) :) In your photo - there is keynote, are you creating there and then rendering in Pharo - or are you exporting to keynote to had out afterwards? That was the first experiment. I took a slide from a keynote presentat

Re: [Pharo-users] PharoLauncher directories

2017-11-13 Thread Stephan Eggermont
Op 8-11-2017 om 15:56 schreef stephan: I run into all kinds of issues with the directory structure used by the new PharoLauncher. When I copy an image with the launcher, how can I synchronize the Iceberg repositories again? Do I just need to copy the original directory containing them? Is tha

[Pharo-users] Thriving on chaos

2017-11-13 Thread Stephan Eggermont
Op 13-11-2017 om 02:55 schreef Викентий Потапов: I'm very lazy and i like to read rich manuals more than to investigate complex code. I think it is much more natural when you don't need to study the whole system before you can do simple things. The "thriving on chaos" kind of development with f

Re: [Pharo-users] Why does the test runner show red when I correct a test?

2017-11-14 Thread Stephan Eggermont
Op 15-11-2017 om 01:49 schreef Sean P. DeNigris: Again, it seems that just automatically rerunning the test immediately after a human-manipulated run and setting the color based on that second run addresses all points on both sides, no? How many times do you want to restart execution? I have wr

Re: [Pharo-users] HTTP request question for an arango driver

2017-12-10 Thread Stephan Eggermont
Op 10-12-2017 om 20:35 schreef Yann Lesage: ? If there an option to set completely off SSL, I don't think is a good idea to use it. SSL is a real improve in security when we connect to a distant server. Depending on what you need to secure against, using a single or a few secure shared tunnel

Re: [Pharo-users] Thanks All.

2017-12-26 Thread Stephan Eggermont
Op 26-12-2017 om 14:03 schreef Ian Ian: After some looking into it I believe Mongo Voyager is the easiest given the current options. Too bad Gemstone limits usage after a given number of Gems. I have always found the Gemstone people very approachable, and open to trying out ideas. Stephan

Re: [Pharo-users] Thanks All.

2017-12-26 Thread Stephan Eggermont
Op 26-12-2017 om 14:03 schreef Ian Ian: After some looking into it I believe Mongo Voyager is the easiest given the current options. Too bad Gemstone limits usage after a given number of Gems. I have always found the Gemstone people very approachable, and open to trying out ideas. Stephan

Re: [Pharo-users] Thanks All.

2017-12-26 Thread Stephan Eggermont
Op 26-12-2017 om 14:03 schreef Ian Ian: After some looking into it I believe Mongo Voyager is the easiest given the current options. Too bad Gemstone limits usage after a given number of Gems. I have always found the Gemstone people very approachable, and open to trying out ideas. Stephan

Re: [Pharo-users] Object Persistence

2017-12-28 Thread Stephan Eggermont
Torsten Bergmann wrote: > For a full Magma version on Pharo: > I doubt that will happen as Chris Muller was and still is more oriented > towards Squeak as > development platform. He is the author of Magma and beside the port it would > cost him > (or anyone who would do such a port) more effor

Re: [Pharo-users] Learning Morphic

2017-12-28 Thread Stephan Eggermont
T.D. Telford wrote: >Perhaps someone could point me to Morphic documentation (or supply > examples) on my area of interest that includes a lot of examples. Thanks. There are some screencasts with links to source starting at https://vimeo.com/130781061 Stephan

Re: [Pharo-users] A playground for Markdown?

2017-12-31 Thread Stephan Eggermont
Offray Vladimir Luna Cárdenas wrote: > Pandoc consists of a set of readers and writers. When converting a > document from one format to another, text is parsed by a reader into > pandoc’s intermediate representation of the document—an “abstract syntax > tree” or AST—which is then converted by the

[Pharo-users] Proposals and mentors GSoC

2018-01-09 Thread Stephan Eggermont
The time has come again to propose projects you'd want to see done in Google's Summer of Code for Pharo. And of course we're also looking for mentors Stephan

Re: [Pharo-users] Gettext with pharo 3 and seaside 3.1.2

2014-09-08 Thread Stephan Eggermont
Depending on your exact needs, you might be better of with the QCMagritte based multi-language support. https://www.youtube.com/watch?v=cTut44Xs3_U To try download a QCMagritte image from https://ci.inria.fr/pharo-contribution/job/QCMagritte/ start a seaside adapter ZnZincServer

Re: [Pharo-users] Gettext with pharo 3 and seaside 3.1.2

2014-09-14 Thread Stephan Eggermont
QCMagritte provides a visitor that walks your magritte descriptions and knows properties that might need translation. With those (and any extra terms you add directly) it builds up a dictionary of terms to translate. It provides a web UI where the translations can be entered and supports loading

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

2014-09-15 Thread Stephan Eggermont
Johan wrote: >I also agree 100% with Hilaire: Gettext is a standard where plenty of external >tools can work with. Though it’s nice to have translation tools in the image, >you will have to do everything yourself. Just take a look at >everyhting that >is done by poedit [1]. Do we really want to

Re: [Pharo-users] BootstrapMagritte load Error

2014-09-15 Thread Stephan Eggermont
Hi Udo, Thanks for the update. The current stable BootstrapMagritte loads version090, and works. Changing groups indeed breaks all users and forces them to upgrade. I'm not sure why version0110 and version0120 no longer refer to release versions of Seaside, nor why there is a baseline0130 Steph

Re: [Pharo-users] BootstrapMagritte load Error

2014-09-15 Thread Stephan Eggermont
Hi Udo, Thanks. That is part of what is needed. In the ConfigurationOfBootstrap, 0.12.0 refers directly to Seaside 3.1.3. I updated it to 0.12.1 Stephan

Re: [Pharo-users] Request for adding Smalltalk syntax highlight in SE network

2014-09-29 Thread Stephan Eggermont
Voted

[Pharo-users] Parsing SQL in a Pharo system

2014-10-01 Thread Stephan Eggermont
The PostgresV3 code in squeak uses subclasses of Compiler and Parser to make sure that PG3SchemaMirror subclasses can parse plsql code. That looks like a nice way to work. What do we need to do to do something similar with the Opal based infrastructure? What subclasses do I need, what methods s

Re: [Pharo-users] Pharo days: date proposal

2014-10-02 Thread Stephan Eggermont
That combines well with FOSDEM, which is the next two days in Bruxelles. Yesterday I got a mail that we'll be having a smalltalk room on Sunday. Stephan

Re: [Pharo-users] Parsing SQL in a Pharo system

2014-10-02 Thread Stephan Eggermont
Esteban wrote: >Are you using/planning to use PostgresV3? >What are its advantages over current driver (PostgresV2)? I was puzzled that a smart developer like Levente decides not to use Glorp. And I wondered why SqueakDBX decided to use V2 instead of V3, a protocol introduced in 2003 or so.

Re: [Pharo-users] Parsing SQL in a Pharo system

2014-10-03 Thread Stephan Eggermont
PostgresV3-Core/Pool looks perfectly usable. There is PG3Connection>>md5HashMessage: aString ^Smalltalk globals at: #MD5 ifPresent: [ :md5 | (md5 hashMessage: aString) hex asLowercase ] ifAbsent: [ WebUtils md5Digest: aString ] Which work

Re: [Pharo-users] Parsing SQL in a Pharo system

2014-10-03 Thread Stephan Eggermont
PostgresV3-CodeMirror is very interesting. 7 classes and less than 1K lines of code. In the base class PG3SchemaMirror, the compilerClass, parserClass, sourceCodeTemplate and shoutParserClass are overridden to return PG3-specific classes. That allows simple integration with other languages, in th

Re: [Pharo-users] ConfigurationOfSandstoneDb

2014-10-22 Thread Stephan Eggermont
Hey Mike, you should also ask for a ci,inria,fr/pharo-contributions account :) Stephan

[Pharo-users] How not to serve an AngularJs application from Pharo

2014-10-27 Thread Stephan Eggermont
A small experiment in serving an AngularJs application from Pharo. Based on https://github.com/StephanEggermont/OpenSpace Gofer it smalltalkhubUser: 'StephanEggermont' project: 'OpenSpace'; configuration; loadDevelopment. OpenSpace new start. Start a browser and open it on http://lo

Re: [Pharo-users] How not to serve an AngularJs application from Pharo

2014-10-27 Thread Stephan Eggermont
Kilon wrote >Really nice I now see the teapot stuff, for example this > >GET: 'demo/common/style.css' -> [ self styleCss ]; > >is really flexible meaning you can interpret http addresses and map them to >pharo methods. This a really cool idea indeed, I see now why people are >excited about teapot

Re: [Pharo-users] How not to serve an AngularJs application from Pharo

2014-10-29 Thread Stephan Eggermont
Kilon wrote: >would it not be better to have the html / css and js code outside the image ? >so instead to load files instead of return strings ? Only for the things that are really static. All other parts should be in the image, and be generated, just like the seaside canvas does for html. Wor

Re: [Pharo-users] Ploting all history of the commits in a Monticello repository

2014-11-10 Thread Stephan Eggermont
You might get some inspiration by taking a look at http://smalltalkhub.com/#!/~StephanEggermont/DeprecationFinder Stephan

Re: [Pharo-users] pharo consultants

2014-11-17 Thread Stephan Eggermont
Norbert wrote: > I forgot how people can add themselves. I remember a smalltalk snippet that > one can send around to update the list. That doesn't run automatically. There are already some updates waiting. Stephan The script looks like: PharoConsultant new name: ’Stepha

Re: [Pharo-users] running out of memory while processing a 220MB csv file with NeoCSVReader - tips?

2014-11-17 Thread Stephan Eggermont
Open package contents on your vm, open Contents, take a look at the info.plist SqueakMaxHeapSize 541065216 That value needs to be increased to be able to use more than ~512 MB. Alain wrote: >Let say it's your current requirement, and you want to do it like that, >a trick that m

Re: [Pharo-users] 'function unavailable' when calling OpenDBXDriver for MySQL

2014-11-17 Thread Stephan Eggermont
Hi Brad, You don't tell us if your MySQL is 32 bit? Stephan

Re: [Pharo-users] running out of memory while processing a 220MB csv file with NeoCSVReader - tips?

2014-11-18 Thread Stephan Eggermont
Alain wrote: >you are saying that zip ratio is somewhat related to normalized data, >interesting view, and certainly true :) I find it a nice heuristic to help me get started. Just sort the tables on size, start compressing them and start with ones compressing best. >About DateTimes, I think t

[Pharo-users] How to decide if a name can be used as a name for a new class?

2014-11-19 Thread Stephan Eggermont
I found isLegalClassName, but that has interesting properties 'Object' isLegalClassName false 'Bla' isLegalClassName false 'One sentence' isLegalClassName false. Stephan

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

2014-12-16 Thread Stephan Eggermont
Jan Kurs wrote: >Anyone experience with Athens can help with the first issue? >TRLabelShape>>drawOn: seem to be somehow responsible, but I don't see into >this :( Sure. The default fonts you ar easing are bitmap fonts. Roassal2 only works with FreeType fonts. If you open the settings, select ap

Re: [Pharo-users] New Pharo Collections

2014-12-17 Thread Stephan Eggermont
>The goal of my project is to make a new collections for Pharo Smalltalk. >We have a great plans about list of important collections, but we also need >your opinion about them. >So, feel free to make your suggestions about collections which you want to be >implemented. The most important chan

[Pharo-users] InfoWorld on Redline Smalltalk

2015-01-15 Thread Stephan Eggermont
continued from pharo-dev, please keep discussion here. The smalltalk on jvm situation is exactly like it shouldn't be. There are three implementations, not working together: - RTalk - Gravel - Redline The first two are driven by existing commercial smalltalk users coming from a platform that they

[Pharo-users] Stackoverflow, was: [Pharo-dev] Could we keep Pharo-dev for Pharo-dev?

2015-01-15 Thread Stephan Eggermont
Serge wrote: >Shall we move the discussion to pharo-users instead ? Yep. >I was not aware of that. Do you have recent examples about this behaviour ? The last closed question was fine. Flagging it just gets clueless moderator replies: "declined - The question really needs to be fleshed out.

Re: [Pharo-users] Could we keep Pharo-dev for Pharo-dev?

2015-01-16 Thread Stephan Eggermont
Blake wrote: >Looks like that SO question was re-opened. Maybe SO can be educated? Yes, but I'm not going to spend the time having a discussion on Meta each time a question should be reopened, especially as there are no signs of a solution. Stephan

Re: [Pharo-users] Manners on the list?

2015-01-16 Thread Stephan Eggermont
be nice >:) Most of Netnews Netiquette is still pretty useful. Cheers, Stephan Eggermont

Re: [Pharo-users] Hubcap questions

2015-01-19 Thread Stephan Eggermont
Hernán wrote: >My goal is to search the contents of the Description form field in >SmalltalkHub. >I don't know if matches the design and idea of Hubcap (really nice package >BTW). >I wonder if anyone (Torsten?) tried to download all package metadata first and >perform off-line search? What I

pharo-users@lists.pharo.org

2015-01-24 Thread Stephan Eggermont
Nicolai wrote: >The problem is, dragging stars after the mouse click on the list items >changes the selection. That means, selecting all items and after >that click on one item to start dragging, this item will be unselected. Yes, that is a well-known long time open bug 12534. It changes the selec

Re: [Pharo-users] UI framework&design options

2015-01-25 Thread Stephan Eggermont
That Maya Node Editor looks like a PasteUpMorph with Connectors to me. You'd might want to wrap them (Morphic) in a in a standard window with menu bar and toolbar from either Spec or Glamour for now. And then follow Bloc developments to move there. Stephan

[Pharo-users] Help with video recordings at Fosdem needed

2015-01-26 Thread Stephan Eggermont
At the Fosdem Smalltalk devroom this sunday, we would like some help with the video recordings. Mostly pointing the camera at the speaker and checking the sound and screen recording. If you will be there and can help for one or more sessions, please let me know. Stephan

Re: [Pharo-users] Help with video recordings at Fosdem needed

2015-01-26 Thread Stephan Eggermont
Hi Udo, thanks for helping out. The gear is organized by Fosdem. Camera on tripod, Microphone for speaker and audience questions, Simultaneous recording of screen. Over 20 simultaneous livestreams. So there will be a user manual and a help desk. Stephan

Re: [Pharo-users] Help with video recordings at Fosdem needed

2015-01-27 Thread Stephan Eggermont
Hi Udo, I've sent you an email. There will be two streams recorded from each room, one from the speakers laptop (needs to be vga) one from the camera. Camera operator only needs to point the camera in the right direction and press start/stop at the appropriate times. Organisation will either p

Re: [Pharo-users] Removal from list

2015-01-28 Thread Stephan Eggermont
On 28/01/15 07:56, Torsten Bergmann wrote: The way I do it: I first subscribe, then disable the mail receiving and use the archive http://lists.pharo.org to go through the topics I'm interested. As one is still subscribed one can still post to the list but does not get all the mail traffic in the

Re: [Pharo-users] What Essays??

2015-02-05 Thread Stephan Eggermont
Hi Richard, It is probably hard to see from 1 miles away, but we have been quite busy promoting Smalltalk recently. Pharo Days last thursday and friday and the Smalltalk Devroom at Fosdem last sunday take up a significant amount of time. Priorities Stephan

Re: [Pharo-users] Question on Morphic drawOn: method.

2015-02-06 Thread Stephan Eggermont
Hilaire wrote >Read the Pharo by example Morphic chapter, it is written for beginner The chapter is a good introduction. Also read the LaserGame Tutorial. The problems come after that. What is a good way of distributing responsibilities? How do I find which Morph already does (nearly) what I ne

Re: [Pharo-users] Image growing size

2015-02-07 Thread Stephan Eggermont
You might want to inspect this to see if this gets you something interesting. (Object allSubclasses collect: [ :aClass | aClass -> aClass allInstances size]) sort: [ :a :b | a value > b value ] It takes some time to run, especially in a larger image. Stephan

Re: [Pharo-users] recover lost changes

2015-02-11 Thread Stephan Eggermont
Norbert wrote: >> Am 10.02.2015 um 20:59 schrieb stepharo <[hidden email]>: >> >> Yes this should be fixed. >> > You mean fix the current implementation or swap it for epicea? The current implementation. It is a significant barrier to entry for new smalltalkers and gives a very bad impression

Re: [Pharo-users] recover lost changes

2015-02-11 Thread Stephan Eggermont
Norbert wrote: >Yes but resources are still sparse. I'm usually arguing the same way like you. >But at the moment I have the feeling we postpone the integration of too much >too long. >If the release is postponed until july I'd vote for integrating it now and >iron it out. >Otherwise it might

Re: [Pharo-users] GSOC 2015 application

2015-02-11 Thread Stephan Eggermont
Some project ideas 1 Better support for cross-platform co-development Glorp is originally maintained in VisualWorks. We now have a version in Pharo that is forked. It would be nice if we could make sure that changes can be synchronized. The rewriting engine is available on both platforms, and Gl

Re: [Pharo-users] GSOC 2015 application

2015-02-11 Thread Stephan Eggermont
Sebastian wrote: >Can I brainstorm a wishlist? I could get wild on it :D Sure, as long as it is projects that you would be willing to mentor, and sized like they could fit. Stephan

Re: [Pharo-users] GSOC 2015 application

2015-02-11 Thread Stephan Eggermont
Ben wrote: >Now google say... "Umbrella organizations get more slots. > If an organization is acting as an umbrella for other projects, chances are >we'll allocate more students to you simply because there's a great deal of >different types of work to be done, and we're hoping our students will

[Pharo-users] Getting notified when a morph moves

2015-02-11 Thread Stephan Eggermont
I'm trying to keep a line morph connected between two morphs while moving one of them. When I add the morph to the hand and start dragging the morph no longer receives mouseMove:. I can think of several ways to get position updates. Is there a best/easy way? Stephan

Re: [Pharo-users] Getting notified when a morph moves

2015-02-12 Thread Stephan Eggermont
Thanks Hilaire, that works fine. I can add the listener when the actual dragging starts and remove it on mouseUp. MDShape>>doDrag: aMouseMoveEvent with: aMDShape ActiveHand addEventListener: self. aMouseMoveEvent hand startDrag: aMouseMoveEvent with: aMDShape. MDShape>>handle

Re: [Pharo-users] Getting notified when a morph moves

2015-02-12 Thread Stephan Eggermont
On 12/02/15 10:20, Hilaire wrote: Frankly I don't like the idea to subscribe to the HandMorph, because at each mouse move event, you have to check for the morph A and B if they move. It is a waste of CPU cycles. Ideally you will want receive event from morph A and B whenever they changed. I am

Re: [Pharo-users] pharo and ui again

2015-02-12 Thread Stephan Eggermont
Sebastian wrote: >After 5 days I can tell ,that I am lost in Morphic, UIManager, >Traits/No-Traits, Spec, GLMMorphic, Poly >And sometimes things are even mixed up and I am not able to decide which >approach to follow,... If your goal is a "Maya Editor"-like UI, I've put together something th

Re: [Pharo-users] pharo and ui again

2015-02-12 Thread Stephan Eggermont
Thanx Nacho, fixed in .4 Stephan

Re: [Pharo-users] Getting notified when a morph moves

2015-02-12 Thread Stephan Eggermont
Hilaire wrote: >Okay if I understand correctly, the two morphs you want to link with a >line are also morphs of yours? So you can mangle into them. I was >supposing the two morphs to link could be arbitrary ones, i.e. ones you >can't modify. I am trying to get a better understanding of Morphic

Re: [Pharo-users] Writing a Login Dialog using Spec in 3 methods

2015-02-13 Thread Stephan Eggermont
In order to not get results like the extent and width should be calculated values. That would change the example code to something like LoginModel class>>defaultSpec ^SpecLayout composed newColumn: [ :col | col newRow: [ :row | row

Re: [Pharo-users] Seaside jQuery - Sorting a list with drag and drop and sending it back via Ajax causes OrderedCollection to turn into an Array?

2015-02-13 Thread Stephan Eggermont
To see a working example of this, take a look at StoryBoard Download the 30 image from https://ci.inria.fr/pharo-contribution/job/StoryBoard/ Start it, open the seaside control panel and start a ZnZincServerAdaptor on port 8080. Open a web browser on http://localhost:8080/story, register yourself

Re: [Pharo-users] Additional easy persistence: try DebrisDB for Fuel-backed Glorp interface

2015-02-13 Thread Stephan Eggermont
Hi Cam Interesting. The brain-dead-sample is a bit difficult to get started with. Would you care to talk a bit more about how to do something simple with it? An addressbook, with people having addresses and phone numbers might be an easy to use example. Cheers, Stephan

Re: [Pharo-users] [ANN] PUnQLite NoSQL database project updated

2015-02-13 Thread Stephan Eggermont
What should be done to make this work on OS X? UnQLiteFFI>>libraryFileNameForPlatform has a wrong name, but that doesn't help me. Even after renaming the library cannot be found. Stephan

Re: [Pharo-users] [ANN] PUnQLite NoSQL database project updated

2015-02-14 Thread Stephan Eggermont
Fails on Mavericks 10.9.4 in 40486 with 402 vm, 20619 with vm from 18-9-2013 open: dbHandle named: dbName mode: mode ^ self nbCall: #( int unqlite_open( db_ptr* dbHandle, String dbName, uint mode) ) module: self libraryFileNameForPlatform I did not compile myself, just used the

Re: [Pharo-users] [ANN] PUnQLite NoSQL database project updated

2015-02-14 Thread Stephan Eggermont
If I use the file from https://github.com/mumez/PunQLite/tree/master/binary/mac at least the library is found. The db file is not created though resulting in a PqCursorError in keys db := PqDatabase open: 'test.db'. db at: 'Smalltalk' put: 'COOL'. db at: 'Pharo' put: 'HOT'. db at: 'Smalltalk'

Re: [Pharo-users] i feel dumb / Pharo3 > OrderedCollection >> do:

2015-02-24 Thread Stephan Eggermont
On 24/02/15 08:05, Marcus Denker wrote: And then, with the new fast #become:, we can go back the the old implementation and grow OrderedCollection using #become:, which would mean that we would not need two objects anymore… Until the collection grows large. Then we need some chunked format, to

Re: [Pharo-users] Some MongoTalk cleanups

2015-03-04 Thread Stephan Eggermont
On 04/03/15 11:25, Torsten Bergmann wrote: cleaned up MongoTalk a little bit: Nice, thank you. You might want to change baseline17, baseline18 and version170 to point at #'release1.1' of Grease instead of stable c.q. 1.1.9. Stephan

Re: [Pharo-users] Porting Voss to Pharo

2015-03-06 Thread Stephan Eggermont
On 06/03/15 16:16, stepharo wrote: Hi guys if some of you are interested to drive porting VOSS to Pharo, let me know John sent me the code and I can give it to you. There is a dual license - LGPL - commercial What does LGPL mean for VOSS? At FOSDEM I talked with Bradley Kuhn of the

Re: [Pharo-users] smaller configurations vs groups [was Re: Pillar and GT tools in Pharo4]

2015-03-09 Thread Stephan Eggermont
On 08/03/15 13:24, Tudor Girba wrote: I summarize below why I think fine grained configurations should be preferred to groups. Configurations are both about dependencies and how to make something work together, and about how something is to be used. The granularity should be so, that changes

Re: [Pharo-users] Pillar and GT tools in Pharo4

2015-03-09 Thread Stephan Eggermont
On 07/03/15 10:42, Tudor Girba wrote: Ok. I will add a dependency from Pillar-Pharo-Tools to PetitParser core. Actually, I would rather prefer to create a separate ConfigurationOfPillarTools that adds the Pillar-Pharo-Tools and the PetitParser dependency. What that be Ok? No that is not ok. We

Re: [Pharo-users] smaller configurations vs groups [was Re: Pillar and GT tools in Pharo4]

2015-03-10 Thread Stephan Eggermont
This is one of the issues we need to avoid: having an unneeded ripple effect. GlamourCore was updated, making it necessary to update everything that has a hard version dependency on it. Even worse is that there is actually no change in GlamourCore 3.0.4. This problem gets worse the more configurat

Re: [Pharo-users] Any framework to create a blog over seaside?

2015-03-10 Thread Stephan Eggermont
On 10/03/15 13:54, Esteban Lorenzano wrote: there are also a couple of implementations http://smalltalkhub.com/#!/~mikefilonov/QDBlog http://smalltalkhub.com/#!/~mikefilonov/CSDBlog I don’t actually know any of them, but if you are looking for a blog without pier… I would probably start there.

Re: [Pharo-users] Any framework to create a blog over seaside?

2015-03-10 Thread Stephan Eggermont
On 10/03/15 16:12, Julien Delplanque wrote: On 09/03/15 21:56, stepharo wrote: If you take pier you get a blog out of the box It's no longer maintained isn't it? What do you mean? Diego posted on how to make a Bootstrap based one. https://ci.inria.fr/pharo-contribution/job/Pier3/ https://ci

Re: [Pharo-users] Omit a method from a mc commit

2015-03-17 Thread Stephan Eggermont
On 17/03/15 00:27, Serge Stinckwich wrote: Hi all, is there any way to omit a method from a Monticello commit for example in the case of containing a password that you don't want to publish ? I am not aware of a secure way to make that work. Stephan

[Pharo-users] Users of Versionner?

2015-03-18 Thread Stephan Eggermont
Who is actually using Versionner to maintain configurations? Especially configurations that are used in other configurations? Stephan

Re: [Pharo-users] new link to query all projects in smalltalkhub

2015-03-24 Thread Stephan Eggermont
On 24/03/15 11:18, Merwan Oud wrote: If the list is reduced it will be manageable, maybe not a mouseOver but a little arrow to show/hide the description under the project. We would love submissions of code for this. It is something that should not be very difficult, but takes some time to get r

Re: [Pharo-users] new link to query all projects in smalltalkhub

2015-03-25 Thread Stephan Eggermont
On 24/03/15 17:36, Merwan Ouddane wrote: Thanks for the instructions, I'll do it as soon as I can :) There is an issue that i'd like to report too, I have a team with a non-ascii character, and i can't remove team members nor delete the entire team, I'll try to fix it too. That sounds like a

Re: [Pharo-users] quick poll - which OS do you use for Pharo?

2015-03-31 Thread Stephan Eggermont
On 31/03/15 07:58, kilon alios wrote: more linux than mac ? thats a surprise . As a development desktop I recently build a silent 4790K i7 with a Philips 40" UHD. That was about half the price of the mac equivalent. I strongly prefer the mac interface, but this is more similar to the server. Th

Re: [Pharo-users] [Moose-dev] loading Glamour in Pharo 4

2015-04-01 Thread Stephan Eggermont
On 01/04/15 00:29, Andrei Chis wrote: Still in this case the problem seems to be that version 0.1 from ConfigurationOfForum wants to load the development version of Glamour in a Moose 5.0 image, which is not going to work. Thanks, that helped. Stephan

[Pharo-users] Devnology presentation slides

2015-04-02 Thread Stephan Eggermont
Yesterday, Diego and I presented Pharo at the Devnology meeting in Arnhem. http://www.slideshare.net/StephanEggermont/pharo-devnology20150401 Stephan

Re: [Pharo-users] Devnology presentation slides

2015-04-03 Thread Stephan Eggermont
On 03/04/15 19:30, stepharo wrote: Hi stefan what were the reactions of the audience? We managed to make them think. We had a very small, and very knowledgable group, so we had lots of difficult and interesting questions and discussions. The thing that impressed them the most was the incredi

Re: [Pharo-users] Eating your own dog food (Site/Blog)

2015-04-07 Thread Stephan Eggermont
On 07/04/15 10:28, Yuriy Tymchuk wrote: if I want to create a site/blog in pharo… What do I use? I know that there is Pier, but when you check its webpage, the last update is in 2011. >Pharo website is built with Marina, but when I check the repo, >the last commit was done by me and it was 2 mo

Re: [Pharo-users] Devnology presentation slides

2015-04-07 Thread Stephan Eggermont
On 02/04/15 23:18, Stephan Eggermont wrote: Diego and I presented Pharo at the Devnology meeting in Arnhem. http://www.slideshare.net/StephanEggermont/pharo-devnology20150401 And a narrative: Pharo, the Immersive Programming Experience Why do we choose to use Pharo? We feel that Pharo

Re: [Pharo-users] Devnology presentation slides

2015-04-07 Thread Stephan Eggermont
On 07/04/15 18:52, Thierry Goubier wrote: such narratives are important. Pharo uses a very simple and orthogonal language, using a very small set of constructs. I allways tend to complement with: but this very small set of constructs contains all the needed features for building highly com

Re: [Pharo-users] GitHub Mirror Workflow

2015-04-08 Thread Stephan Eggermont
On 08/04/15 14:38, Esteban Lorenzano wrote: I don’t know your problem… why would you want another format form mirroring? Because with packages the size of Roassal2 you might get rather unhappy on a machine without an SSD. That is a lot of files. Stephan

  1   2   3   4   5   6   >