Re: [Pharo-users] Tabular: https://ci.inria.fr/pharo-contribution/job/Tabular/lastCompletedBuild/testReport/

2015-08-14 Thread Ferlicot D. Cyril
Le 14/08/2015 15:07, H. Hirzel a écrit : > Thank you. > > Build 4 is now done. Where can I see which > > http://ss3.gemtalksystems.com/ss/Tabular/Tabular-HannesHirzel.nn.mcz > > file it picked? > > Hannes > You can find it on the console output. For example for the build development on Pharo

[Pharo-users] [ANN] Pharo Consortium New Gold Member:

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

Re: [Pharo-users] Tabular: XLSX import

2015-08-14 Thread H. Hirzel
Problem solved so far http://ss3.gemtalksystems.com/ss/Tabular/Tabular-HannesHirzel.63.mcz Now found out how to parse inline strings with the SAX parser I had to include t in registeredElements ^ #(row c v t) and add a method t_characters: aString self cell dat

Re: [Pharo-users] Tabular: https://ci.inria.fr/pharo-contribution/job/Tabular/lastCompletedBuild/testReport/

2015-08-14 Thread H. Hirzel
Thank you. Build 4 is now done. Where can I see which http://ss3.gemtalksystems.com/ss/Tabular/Tabular-HannesHirzel.nn.mcz file it picked? Hannes On 8/14/15, Blondeau Vincent wrote: > Hi, > > The job is built every one hour if a commit has been made. So you have to > wait a bit. > > Regards,

[Pharo-users] [Tutorial] CI Automated Build for your Pharo Application

2015-08-14 Thread Jigyasa Grover
Hi Folks ! I have been working throughout the summers on *searchQuick*, an application to enable a user to search a set of books or texts, like an encyclopedia, or some other topical book collection offline. ( https://github.com/jig08/sQuick_new ) On my mentors suggestion, I have put up my applic

Re: [Pharo-users] Tabular: https://ci.inria.fr/pharo-contribution/job/Tabular/lastCompletedBuild/testReport/

2015-08-14 Thread Blondeau Vincent
Hi, The job is built every one hour if a commit has been made. So you have to wait a bit. Regards, Vincent -Message d'origine- De : Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] De la part de H. Hirzel Envoyé : vendredi 14 août 2015 10:22 À : vincent.blondeau Cc : Any quest

[Pharo-users] Tabular: https://ci.inria.fr/pharo-contribution/job/Tabular/lastCompletedBuild/testReport/

2015-08-14 Thread H. Hirzel
Hello Vincent The integration server does not seem to pick my latest committed versions of today. What needs to be done to fix this? Regards Hannes

Re: [Pharo-users] Tabular: XLSX import

2015-08-14 Thread H. Hirzel
P.S. Code in http://ss3.gemtalksystems.com/ss/Tabular/Tabular-HannesHirzel.59.mcz On 8/14/15, H. Hirzel wrote: > I am now looking for the place in the SAX parser where the cell > content is assigned. > > > Test script (debug it) > > |wbk wsheet wimported cell fname4| > fname4 := 'TabularCon

Re: [Pharo-users] Tabular: XLSX import

2015-08-14 Thread H. Hirzel
I am now looking for the place in the SAX parser where the cell content is assigned. Test script (debug it) |wbk wsheet wimported cell fname4| fname4 := 'TabularConstructed4Exported.xlsx'. wbk := TabularWorkbook new. self assert: (wbk worksheets isEmpty).

Re: [Pharo-users] Tabular: XLSX import

2015-08-14 Thread H. Hirzel
On 8/2/15, Ben Coman wrote: > Cool. I might have a use for this soon. > cheers -ben Hello Ben The standard to implement is huge. We are dealing with a subset. Example test documents I consider using are here http://www.openoffice.org/sc/testdocs/index.html (all which are labeled 'XML') What

Re: [Pharo-users] Tabular: XLSX import

2015-08-14 Thread H. Hirzel
On 8/14/15, H. Hirzel wrote: > Vicent > > It seems that there are two importing methods implemented in the subpackage > > Tabular-Importers > > TabularCell>>extractFromXml: aXMLElement > > and above it > > TabularWorksheet>>extractContentsFromXml: aXMLDocument > > is actually never called. > > So