Re: [Pharo-users] How to access XML tag name?

2016-03-11 Thread stepharo
Thanks Ok it was characters: I will try it What a bad name! I will probably have to build a stack or dictionary of dictionary of the part that I will not want to visit but this is another story :) Stef Le 11/3/16 14:17, Blondeau Vincent a écrit : Hi, The qualified name in function startEl

Re: [Pharo-users] OpenGL project

2016-03-11 Thread Alexandre Bergel
Hi Thibault, This is great you are trying to revive the open gl binding. This is very important. Unfortunately we do not have the man power and the knowledge to do it ourselves. So your help is highly welcome! Execute the following: Gofer new smalltalkhubUser: 'ronsaldo' project: 'Woden'; packa

Re: [Pharo-users] How to access XML tag name?

2016-03-11 Thread Brice GOVIN
Hi, according to what have found in the SAXHandler and XMLDOMParser class, you should use SAXHandler>>characters: method to get the information inside a marker. Information inside a marker is consider as an XMLString that is created after a call to XMLDOMParser>>characters:. I hope I helped

Re: [Pharo-users] OpenGL project

2016-03-11 Thread Dimitris Chloupis
yeap NBOpenGL relied on NativeBoost and our new FFI is UFFI so that means that NBOpenGL does no longer work and there are no plans to make it work at least for now. The problem is that Nativeboost was doing machine code stuff that were difficult to maintain and so it does low level stuff with NBOpe

Re: [Pharo-users] Get the code of a method - Artefact

2016-03-11 Thread g_ongenae
Yes, Artefact the PDF Library. -- View this message in context: http://forum.world.st/Get-the-code-of-a-method-Artefact-tp4883721p4884089.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] How to access XML tag name?

2016-03-11 Thread Blondeau Vincent
Hi, The qualified name in function startElement: aQualifiedName attributes: aDictionary, will be FILMS and after FILM and after TITRE,...etc... So, you have to tell to your shouldVisit: method to accept TITRE too and get in and after you should implement characters: to get the content on the tag

[Pharo-users] How to access XML tag name?

2016-03-11 Thread stepharo
Hi Yesterday I started to hack a smart SAX handler. The idea is that I want to just specify the tags I want to visit and the SAX handler should invoke (generated) visit methods. Like that I can easily get visitors on XML domain. Here is an example of what I did. | h | h := SmartSAXHa

[Pharo-users] OpenGL project

2016-03-11 Thread Thibault Raffaillac
Hi, I would like to do a bit of OpenGL in Pharo, but it does not seem to work at the moment. Tried NBOpenGL with a spur image (50560): _ fails at installation from configuration browser (need to click again on installing to get all classes) _ demo "GLTTRenderingDemo new openInWorld" fails at NB

[Pharo-users] CFP - IWST 2016 - International Workshop on Smalltalk Technologies

2016-03-11 Thread jannik laval
[Please accept our apologies if you receive multiple copies of this call] [Please send to interested colleagues / mailing-lists] CALL FOR PAPERS IWST16 — International Workshop on Smalltalk

[Pharo-users] How to get GLMSystemWindow from GTPlayground

2016-03-11 Thread Norbert Hartl
I wanted to write a small utility snippet involving GTPlayground. I want to transfer all my playgrounds from one image to another image. Something like (GTPlayground allInstances reject: [ :each | each title = 'Playground' ]) do: [ :each | (each title asFileReference , #pg) writeStream