Re: Updating the website

2005-07-08 Thread Glen Stampoultzis
Done... thought I had a cron job checking group write that but obviously it doesn't work. [EMAIL PROTECTED] wrote: I fixed all files to have g+w and dirs g+x which I own or have group permission to. If Glen does this: ssh -l glens cvs.apache.org cd /x1/www/jakarta.apache.org/poi find .

Re: Updating the website

2005-07-08 Thread acoliver
Justin Erenkrantz wrote: --On July 8, 2005 1:50:28 PM -0400 [EMAIL PROTECTED] wrote: I fixed all files to have g+w and dirs g+x which I own or have group Please set the sticky group bit (aka 2000) on the poi dir (above) and subdirs and make me owner of everything including the directory (I am

Re: Updating the website

2005-07-08 Thread acoliver
I fixed all files to have g+w and dirs g+x which I own or have group permission to. If Glen does this: ssh -l glens cvs.apache.org cd /x1/www/jakarta.apache.org/poi find . -type f -exec chmod g+w '{}' ';' find . -type d -exec chmod g+x '{}' ';' Then we should have a short term solution For a

cvs commit: jakarta-poi/src/scratchpad/src/org/apache/poi/hslf/record Record.java

2005-07-08 Thread nick
nick2005/07/08 10:38:55 Modified:src/scratchpad/src/org/apache/poi/hslf/record Record.java Log: Move from having the list of classes to use for records from being in here, to being in RecordTypes Should make adding new record handling classes cleaner and more extensible (Cha

cvs commit: jakarta-poi/src/testcases/org/apache/poi/hssf/usermodel TestBugs.java TestUnfixedBugs.java

2005-07-08 Thread avik
avik2005/07/08 09:01:07 Modified:src/testcases/org/apache/poi/hssf/usermodel TestBugs.java TestUnfixedBugs.java Log: bug 34575 fixed, thanks Amol Revision ChangesPath 1.23 +0 -2 jakarta-poi/src/testcases/org/apache/poi/hssf/usermodel

cvs commit: jakarta-poi/src/scratchpad/src/org/apache/poi/hslf/dev SlideShowDumper.java

2005-07-08 Thread nick
nick2005/07/08 08:57:07 Added: src/scratchpad/src/org/apache/poi/hslf/dev SlideShowDumper.java Log: Record level dumper of powerpoint files, and their constituent escher parts Prints out in indented text what occurs where (Code has existed for a whil

RE: [Bug 35527] - ArrayIndexOutOfBoundsException when reading xl s file

2005-07-08 Thread Amol Deshmukh
Well, I left out mentioning that the changed code is a part of ObjRecord.fillFields(..) I believe writing out is handled as well. Actually, since fillFields(..) is called by the constructor, I think writing out is handled as a result. I ran all unit tests and tried reading the file that caused

cvs commit: jakarta-poi/src/java/org/apache/poi/hssf/model FormulaParser.java

2005-07-08 Thread avik
avik2005/07/08 08:19:53 Modified:src/java/org/apache/poi/hssf/model FormulaParser.java Log: trivial edit Revision ChangesPath 1.22 +1 -1 jakarta-poi/src/java/org/apache/poi/hssf/model/FormulaParser.java Index: FormulaParser.java =

cvs commit: jakarta-poi/src/java/org/apache/poi/hssf/record ObjRecord.java

2005-07-08 Thread amol
amol2005/07/06 15:01:13 Modified:src/java/org/apache/poi/hssf/record ObjRecord.java Log: fix for issues 34575 and 35527 { fillFields(..) modified } Revision ChangesPath 1.8 +5 -3 jakarta-poi/src/java/org/apache/poi/hssf/record/ObjRecord.java Index: Ob

Re: [Bug 35527] - ArrayIndexOutOfBoundsException when reading xls file

2005-07-08 Thread Avik Sengupta
Thanks Amol, this was a long standing bug. Does you fix handle writing out as well? Sorry, too lazy to read the code! :) On Fri, 2005-07-08 at 16:59 +0200, [EMAIL PROTECTED] wrote: > DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· > RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT >

DO NOT REPLY [Bug 35527] - ArrayIndexOutOfBoundsException when reading xls file

2005-07-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 34575] - File in Bug 15556 now fails to read due to OBJ Record

2005-07-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35527] - ArrayIndexOutOfBoundsException when reading xls file

2005-07-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: Updating the website

2005-07-08 Thread Nick Burch
On Fri, 8 Jul 2005, Avik Sengupta wrote: Usually we try to keep all files group(jakarta) writable.. I'm not sure how receptive the infra group will be about a new unix group. Your suggestions below would work with group jakarta, no? Yes, but it would mean that any jarkarta committer could upda

Re: Updating the website

2005-07-08 Thread Avik Sengupta
Usually we try to keep all files group(jakarta) writable.. I'm not sure how receptive the infra group will be about a new unix group. Your suggestions below would work with group jakarta, no? Thoughts? - Avik On Fri, 2005-07-08 at 11:49 +0100, Nick Burch wrote: > Hi All > > It seems that at the

cvs commit: jakarta-poi/src/scratchpad/testcases/org/apache/poi/hslf/record TestRecordTypes.java

2005-07-08 Thread nick
nick2005/07/08 05:37:56 Added: src/scratchpad/testcases/org/apache/poi/hslf/record TestRecordTypes.java Log: Tests to ensure that RecordTypes.java is behaving as expected Revision ChangesPath 1.1 jakarta-poi/src/scratchpad/t

cvs commit: jakarta-poi/src/scratchpad/src/org/apache/poi/hslf/record RecordTypes.java

2005-07-08 Thread nick
nick2005/07/08 05:37:14 Added: src/scratchpad/src/org/apache/poi/hslf/record RecordTypes.java Log: Based on version submitted by Yegor Kozlov Allows easy access to the names of records armed only with their type, or the handling class for a given type

Updating the website

2005-07-08 Thread Nick Burch
Hi All It seems that at the moment, only Glen can update the whole website, but that there are a few bits Andrew is the actual owner of. All the files on the website are group owned by jakarta, but it's a bit random if the files+directories have group write permissions. What do people think

Re: [EMAIL PROTECTED]: Project jakarta-poi-3 (in module jakarta-poi-3) failed

2005-07-08 Thread Avik Sengupta
actually, we should move jakarta-poi-3 to jakarta-poi .. On Fri, 2005-07-08 at 11:41 +0100, Nick Burch wrote: > On Fri, 8 Jul 2005, Avik Sengupta wrote: > > There should be an xml file in the gump cvs that defines the project. > > Nick, you should have access, by default. > > OK, I've updated

Re: [EMAIL PROTECTED]: Project jakarta-poi-3 (in module jakarta-poi-3) failed

2005-07-08 Thread Nick Burch
On Fri, 8 Jul 2005, Avik Sengupta wrote: There should be an xml file in the gump cvs that defines the project. Nick, you should have access, by default. OK, I've updated the definitions for jakarta-poi-3. Without knowing more about gump, I can't see how to tell it to pull the revision number f

Re: [EMAIL PROTECTED]: Project jakarta-poi-3 (in module jakarta-poi-3) failed

2005-07-08 Thread Avik Sengupta
There should be an xml file in the gump cvs that defines the project. Nick, you should have access, by default. I think we should delete the jakarta-poi project (it points to a branch that has been discontinued) . The jakarta-poi-3 project is the only significant one at the moment. Regards - Av

Re: [GUMP@vmgump]: Project jakarta-poi-3 (in module jakarta-poi-3) failed

2005-07-08 Thread Nick Burch
On Fri, 8 Jul 2005, Gump [HEAD] :-( wrote: Project jakarta-poi-3 has an issue affecting its community integration. This issue affects 1 projects, and has been outstanding for 15 runs. The current state of this project is 'Failed', with reason 'Missing Build Outputs'. For reference only, the foll

[GUMP@vmgump]: Project jakarta-poi-3 (in module jakarta-poi-3) failed

2005-07-08 Thread Gump [HEAD] :-(
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project jakarta-poi-3 has an issue affecting its community integration. This issue affect

[EMAIL PROTECTED]: Project jakarta-poi-3 (in module jakarta-poi-3) failed

2005-07-08 Thread Gump [HEAD] :-(
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project jakarta-poi-3 has an issue affecting its community integration. This issue affect

[EMAIL PROTECTED]: Project jakarta-poi (in module jakarta-poi) failed

2005-07-08 Thread Gump [REL_2_BRANCH] :-(
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project jakarta-poi has an issue affecting its community integration. This issue affects

[EMAIL PROTECTED]: Project jakarta-poi (in module jakarta-poi) failed

2005-07-08 Thread Gump [REL_2_BRANCH] :-(
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project jakarta-poi has an issue affecting its community integration. This issue affects