Re: HDF

2002-02-25 Thread Rainer Klute
>Not only are the sources in CVS now but I did a little work on getting >them to use POIFS.. Check it out and let me know what you think Instead of the ArrayList class you should use the List interface for variables. And for each usage you should think about whether to use ArrayList or LinkedL

Re: HDF

2002-02-25 Thread Nicola Ken Barozzi
From: "Rainer Klute" <[EMAIL PROTECTED]> >Instead of the ArrayList class you should use the List interface >for variables. And for each usage you should think about whether >to use ArrayList or LinkedList. Using the interface instead of >an interface-implementing class gives us freedom to change

Xdocs problems

2002-02-25 Thread Rainer Klute
Hi folks, I needd your help. Porting the HPSF documentation to xdocs, I encoutered two problems: 1. The Apache Documentation DTD (public identifier "-//APACHE//DTD Documentation V1.0//EN", see src/documentation/xdocs/dtd/document-v10.dtd) does not allow to add block contents (e.g. pa

Re: Rainer Klute Committer to the POI project

2002-02-25 Thread Rainer Klute
>The POI (jakarta.apache.org/poi) community has voted Rainer Klute to be >a committer. Thanks to all of you for your confidence! Best regards Rainer Klute RAINER KLUTE IT-CONSULTING Dipl.-Inform. Rainer Klute E-Mail: [EMAIL PROTECTED] Körner Gr

Re: Xdocs problems

2002-02-25 Thread Nicola Ken Barozzi
From: "Rainer Klute" <[EMAIL PROTECTED]> > Hi folks, > > I need your help. Porting the HPSF documentation to xdocs, I > encoutered two problems: > > 1. The Apache Documentation DTD (public identifier >"-//APACHE//DTD Documentation V1.0//EN", see > src/documentation/xdocs/dtd/document-v10.dt

TH not working properly in doco

2002-02-25 Thread Nicola Ken Barozzi
Marc and Rainer noted that TH tags are not properly put in output. As a quick fix you can use the supplied patch. For a definitive fix, we could switch to the a new forrest DTD that Centipede is going to use in next version, mostly based on xhtml. I'll start sending patches to switch POI to use

Re: HDF

2002-02-25 Thread Andrew C. Oliver
Right. Eventually most of our stuff ends up in trees and ArrayLists (where the index is important). ArrayList was intended to provide that minor improvement over Vector for the moment. I literally did g/Vector/s//ArrayList/g from within the one true editor ;-). We'll be restructuring this sign

Re: Xdocs problems

2002-02-25 Thread Andrew C. Oliver
On Mon, 2002-02-25 at 03:51, Rainer Klute wrote: > Hi folks, > > I needd your help. Porting the HPSF documentation to xdocs, I > encoutered two problems: > > 1. The Apache Documentation DTD (public identifier >"-//APACHE//DTD Documentation V1.0//EN", see >src/documentation/xdocs/dtd/do

Re: HDF

2002-02-25 Thread Andrew C. Oliver
Yeah you're right about using List versus ArrayList.. I regret I didn't pay close attention to that in most places in HSSF. On Mon, 2002-02-25 at 03:30, Nicola Ken Barozzi wrote: > From: "Rainer Klute" <[EMAIL PROTECTED]> > > >Instead of the ArrayList class you should use the List interface > >

Patch queue setup?

2002-02-25 Thread Nicola Ken Barozzi
For Cocoon, i've set up an automatic notification that run twice a week and send info of pending patches to developers (once for users). I can set this up for you too, if you wish, but there is no Bugzilla up for POI yet AFAIK. What do you think? -- Nicola Ken Barozzi [EMAIL PROTE

Re: HDF

2002-02-25 Thread Said Ackley
I am new to open source development. I have a patch I want to submit. I have attached the diff file. I just commented the WordDocument class and changed the Util calls to LittleEndian. I only changed the parts that would be going over to HDFObjectFactory (no XSL-FO). I couldn't find a function in

Re: TH not working properly in doco

2002-02-25 Thread Rainer Klute
"Nicola Ken Barozzi" <[EMAIL PROTECTED]> wrote: >Marc and Rainer noted that TH tags are not properly put in output. >As a quick fix you can use the supplied patch. Sorry, your patch doesn't help. The rows that should contain the headers read like this now: Best regards Rainer Klute

Re: TH not working properly in doco

2002-02-25 Thread Nicola Ken Barozzi
I'm making transition patches to Centipede 0.2.1. Will look at this later Ciao :-) -- Nicola Ken Barozzi [EMAIL PROTECTED] - verba volant, scripta manent - (discussions get forgotten, just code remains) --

Re: TH not working properly in doco

2002-02-25 Thread Rainer Klute
>I'm making transition patches to Centipede 0.2.1. >Will look at this later Okay. I put my documentation on hold until then. Best regards Rainer Klute RAINER KLUTE IT-CONSULTING Dipl.-Inform. Rainer Klute E-Mail: [EMAIL PROTECTED] Körner Grund 2

Re: Re: HDF

2002-02-25 Thread acoliver
Great, I'll patch this when I get home. You're doing right. Haven't looked at the patch just yet, but make sure you use "-u" or "unified" format. (cvs diff -u .) -- Yes, just submit a patch for LittleEndian. Eventually most of the poi-util classes will move into various places in jakarta-

Re: TH not working properly in doco

2002-02-25 Thread acoliver
>On Mon, 25 Feb 2002 13:53:21 0100 "Nicola Ken Barozzi" <[EMAIL PROTECTED]> wrote. >Marc and Rainer noted that TH tags are not properly put in output. >As a quick fix you can use the supplied patch. > >For a definitive fix, we could switch to the a new forrest DTD that >Centipede is going to use

[Fwd: Re: Re: HDF]

2002-02-25 Thread acoliver
oops...forgot to set replyto --- Begin Message --- Great, I'll patch this when I get home. You're doing right. Haven't looked at the patch just yet, but make sure you use "-u" or "unified" format. (cvs diff -u .) -- Yes, just submit a patch for LittleEndian. Eventually most of the poi-ut

[Fwd: Re: TH not working properly in doco]

2002-02-25 Thread acoliver
... --- Begin Message --- >On Mon, 25 Feb 2002 13:53:21 0100 "Nicola Ken Barozzi" <[EMAIL PROTECTED]> wrote. >Marc and Rainer noted that TH tags are not properly put in output. >As a quick fix you can use the supplied patch. > >For a definitive fix, we could switch to the a new forrest DTD that

[PATCH] Moving POI to use Centipede 0.2.1

2002-02-25 Thread Nicola Ken Barozzi
This patch, sent as Andy suggested, contains changes to use Centipede 0.2.1 for POI. The libraries needed are in the Krysalis Centipede package on the site http://www.krysalis.org/ . There is still an issue with the "test" build that I needs system properties to be set. IMHO we can hardwire these

Ready to start rollin' Cocoon Serializers

2002-02-25 Thread Nicola Ken Barozzi
I'm in the need of the POI-Cocoon Serializers stuff, so I guess I might as well refactor (if needed...again! ;-) and make it work with latest POI. My proposal is: 1) tell me where to get the code (poi original CVS is ok?) 2) I make it work, and send patches to make it work under contrib or scratc

Re: Ready to start rollin' Cocoon Serializers

2002-02-25 Thread Nicola Ken Barozzi
From: "acoliver" <[EMAIL PROTECTED]> > 1. Yes original cvs. please commit to new poi-cocoon cvs module instance > (create if needed or I will) Ok, I will do it. > 2. Cool, let's make it avalonized...if you do it then that would be > awesome Ok, no problem. > 3b - actually that would be me fo

[Fwd: Poi-devel post from noreply@sourceforge.net requires approval]

2002-02-25 Thread Andrew C. Oliver
-- http://www.superlinksoftware.com http://jakarta.apache.org - port of Excel/Word/OLE 2 Compound Document format to java http://developer.java.sun.com/developer/bugParade/bugs/4487555.html - fix java generics! The avalanche has already start