DO NOT REPLY [Bug 46411] Formatting of Excel date values < 1.0 show different date to Excel

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46411


Josh Micich  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |




-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 46410] [PATCH] Implementation of Excel TIME(h,m,s) function

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46410


Josh Micich  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 46411] Formatting of Excel date values < 1.0 show different date to Excel

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46411


Josh Micich  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 46410] [PATCH] Implementation of Excel TIME(h,m,s) function

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46410





--- Comment #1 from Josh Micich   2008-12-30 21:59:31 PST 
---
Applied in svn r730309 ( https://svn.apache.org/viewcvs.cgi?view=rev&rev=730309 
)


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 46250] Workbook cloneSheet()

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46250





--- Comment #2 from Mark Thompson   2008-12-30 
12:23:05 PST ---
I'm looking at the source code in 3.5, and notice a cut-n-paste error which
might be generating this issue (both of thse issues?):

In DrawingRecord.java, at the bottom, in the clone() function, the block:
if (contd != null) {
System.arraycopy(contd, 0, rec.contd, 0, contd.length);
rec.contd = new byte[ contd.length ];
}
should be:
if (contd != null) {
rec.contd = new byte[ contd.length ];
System.arraycopy(contd, 0, rec.contd, 0, contd.length);
}

The former would cause null pointer exceptions and broken drawing references in
cloned workbooks/sheets, wouldn't it?


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 46320] HSSFPictureData is missing a function int getFormat()

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46320


Yegor Kozlov  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Yegor Kozlov   2008-12-30 10:52:39 PST ---
Added in r730213 ( https://svn.apache.org/viewcvs.cgi?view=rev&rev=730213 )
Yegor


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 39472] Wrong behaviour when setting cell value to dates between 1900-01-01 and 1900-02-28

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=39472


David Fisher  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX




--- Comment #2 from David Fisher   2008-12-30 10:38:44 
PST ---
The strange behavior here in Excel is historical and Microsoft chose to keep
Excel compatible with Lotus 1-2-3 and MultiPlan at the beginning.

I don't think we care to burden date format portions of the api with tests for
these exceedingly rare cases.

If this does bother you then switch your Excel files over to "1904" date
format.

Please see the following:

http://support.microsoft.com/default.aspx?scid=kb;en-us;214058

http://support.microsoft.com/default.aspx?scid=kb;en-us;214019

http://support.microsoft.com/default.aspx?scid=kb;en-us;Q214094#6

Another alternative for you would be to simply set the cell as a number and
then apply a date format to it.


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 46229] XWPFParagraph

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46229


Yegor Kozlov  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Yegor Kozlov   2008-12-30 10:36:54 PST ---
applied in r719316 ( https://svn.apache.org/viewcvs.cgi?view=rev&rev=719316 )

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 21325] [PATCH] Praveen's patches

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=21325


Yegor Kozlov  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #20 from Yegor Kozlov   2008-12-30 10:00:23 PST ---
I think it was re-opened by mistake, two years after the patch was applied and
the bug closed.

Yegor


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 23958] Cannot get a the template feature to work when writing to an excel file.

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=23958


Yegor Kozlov  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO




--- Comment #1 from Yegor Kozlov   2008-12-30 09:57:10 PST ---
I can't reproduce the problem from its description. The sample code isn’t of
much help because it uses custom wrapper around HSSF and it makes impossible to
compile and run.

Try the latest POI-3.5-beta4 or download daily builds from
http://encore.torchbox.com/poi-svn-build/

If the problem is still there, re-open the bug and attach a unit test to
reproduce it.

Yegor


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 22939] Cannot link from a regular xls file to an xls file created by POI.

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=22939


Yegor Kozlov  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #9 from Yegor Kozlov   2008-12-30 09:41:19 PST ---
Linking to external files works properly with the latest sources.
Try POI-3.5-beta4 or download daily builds from
http://encore.torchbox.com/poi-svn-build/

Yegor


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: locked for editing by user ''

2008-12-30 Thread criverapr

Yes I'm closing the file stream.  I have attached the code.


Martin Brown-6 wrote:
> 
> On Tue, 2008-12-30 at 06:53 -0800, criverapr wrote:
>> Sorry about that I didn't give much detail.  I'm using the following jar
>> poi-3.2-FINAL-20081019.jar.  I have a lotus domino java agent that runs
>> every night and uses poi to generate a simple excel file.
> 
> Is your Java application always closing the file / file stream? If not
> then Windows file sharing might cause the error you are experiencing.
> 
> Cheers
> 
> Martin
> 
> 
> Filtered by 3BClean from http://www.3bview.com
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
> For additional commands, e-mail: dev-h...@poi.apache.org
> 
> 
> 
http://www.nabble.com/file/p21219097/ExcelWriter.txt ExcelWriter.txt 
-- 
View this message in context: 
http://www.nabble.com/locked-for-editing-by-user-%27%27-tp21209713p21219097.html
Sent from the POI - Dev mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: Open Bugs Map

2008-12-30 Thread Dave Fisher


An update to the open bugs map.

(1) Docs
https://issues.apache.org/bugzilla/show_bug.cgi?id=13424
Asks to update all docs to the current state.

Is there anyone qualified to comment if thus French translation is  
acceptable?

https://issues.apache.org/bugzilla/show_bug.cgi?id=31835

(2) GPL Issue
https://issues.apache.org/bugzilla/show_bug.cgi?id=46361
Nick reports that an APL version of the file is available and he will  
be correcting the svn when he returns to his main development machine.


(3) OOXML Software Grant
https://issues.apache.org/bugzilla/show_bug.cgi?id=46242


(4) HSSF/XSSF
https://issues.apache.org/bugzilla/show_bug.cgi?id=36793
https://issues.apache.org/bugzilla/show_bug.cgi?id=44750
https://issues.apache.org/bugzilla/show_bug.cgi?id=45260
https://issues.apache.org/bugzilla/show_bug.cgi?id=45551
https://issues.apache.org/bugzilla/show_bug.cgi?id=45552
https://issues.apache.org/bugzilla/show_bug.cgi?id=45557
https://issues.apache.org/bugzilla/show_bug.cgi?id=45564
https://issues.apache.org/bugzilla/show_bug.cgi?id=45565
https://issues.apache.org/bugzilla/show_bug.cgi?id=45790
https://issues.apache.org/bugzilla/show_bug.cgi?id=46161
https://issues.apache.org/bugzilla/show_bug.cgi?id=46302

o Graphics
https://issues.apache.org/bugzilla/show_bug.cgi?id=45312
https://issues.apache.org/bugzilla/show_bug.cgi?id=44916
https://issues.apache.org/bugzilla/show_bug.cgi?id=45129
https://issues.apache.org/bugzilla/show_bug.cgi?id=46320
https://issues.apache.org/bugzilla/show_bug.cgi?id=43125

o Dates
https://issues.apache.org/bugzilla/show_bug.cgi?id=39472

o User Styles / Formatting
https://issues.apache.org/bugzilla/show_bug.cgi?id=9633
https://issues.apache.org/bugzilla/show_bug.cgi?id=35498
https://issues.apache.org/bugzilla/show_bug.cgi?id=38432
https://issues.apache.org/bugzilla/show_bug.cgi?id=39392
https://issues.apache.org/bugzilla/show_bug.cgi?id=39998
https://issues.apache.org/bugzilla/show_bug.cgi?id=40520
https://issues.apache.org/bugzilla/show_bug.cgi?id=41478
https://issues.apache.org/bugzilla/show_bug.cgi?id=41943
https://issues.apache.org/bugzilla/show_bug.cgi?id=44461
https://issues.apache.org/bugzilla/show_bug.cgi?id=45326

o Charts
https://issues.apache.org/bugzilla/show_bug.cgi?id=43071
https://issues.apache.org/bugzilla/show_bug.cgi?id=44010
https://issues.apache.org/bugzilla/show_bug.cgi?id=41725

o Listeners
https://issues.apache.org/bugzilla/show_bug.cgi?id=27586

o RepeatingRowsAndColumns
https://issues.apache.org/bugzilla/show_bug.cgi?id=29713
https://issues.apache.org/bugzilla/show_bug.cgi?id=40829
https://issues.apache.org/bugzilla/show_bug.cgi?id=45729
https://issues.apache.org/bugzilla/show_bug.cgi?id=46287

o Radio Button Cells
https://issues.apache.org/bugzilla/show_bug.cgi?id=40283

o Comments
https://issues.apache.org/bugzilla/show_bug.cgi?id=46143

o Outlining
https://issues.apache.org/bugzilla/show_bug.cgi?id=46186
https://issues.apache.org/bugzilla/show_bug.cgi?id=46192
https://issues.apache.org/bugzilla/show_bug.cgi?id=34555
https://issues.apache.org/bugzilla/show_bug.cgi?id=40853

o Linking
https://issues.apache.org/bugzilla/show_bug.cgi?id=22939

o ShiftRows/MoveCells
https://issues.apache.org/bugzilla/show_bug.cgi?id=29957
https://issues.apache.org/bugzilla/show_bug.cgi?id=38267
https://issues.apache.org/bugzilla/show_bug.cgi?id=46266

o Formulas and Functions
https://issues.apache.org/bugzilla/show_bug.cgi?id=46345
https://issues.apache.org/bugzilla/show_bug.cgi?id=45752
https://issues.apache.org/bugzilla/show_bug.cgi?id=42297
https://issues.apache.org/bugzilla/show_bug.cgi?id=45031
https://issues.apache.org/bugzilla/show_bug.cgi?id=45970
https://issues.apache.org/bugzilla/show_bug.cgi?id=9033
https://issues.apache.org/bugzilla/show_bug.cgi?id=46028
https://issues.apache.org/bugzilla/show_bug.cgi?id=38358
https://issues.apache.org/bugzilla/show_bug.cgi?id=45808

o Cloning
https://issues.apache.org/bugzilla/show_bug.cgi?id=43615
https://issues.apache.org/bugzilla/show_bug.cgi?id=46250
https://issues.apache.org/bugzilla/show_bug.cgi?id=27075
https://issues.apache.org/bugzilla/show_bug.cgi?id=27333


o Autofilters
https://issues.apache.org/bugzilla/show_bug.cgi?id=45778

o File Format / Corruption
https://issues.apache.org/bugzilla/show_bug.cgi?id=45725
https://issues.apache.org/bugzilla/show_bug.cgi?id=23958
https://issues.apache.org/bugzilla/show_bug.cgi?id=17475

https://issues.apache.org/bugzilla/show_bug.cgi?id=36402
https://issues.apache.org/bugzilla/show_bug.cgi?id=45061
https://issues.apache.org/bugzilla/show_bug.cgi?id=29619
https://issues.apache.org/bugzilla/show_bug.cgi?id=46094
https://issues.apache.org/bugzilla/show_bug.cgi?id=35277

(5) HPSF
https://issues.apache.org/bugzilla/show_bug.cgi?id=23977
https://issues.apache.org/bugzilla/show_bug.cgi?id=32903
https://issues.apache.org/bugzilla/show_bug.cgi?id=34732
https://issues.apache.org/bugzilla/show_bug.cgi?id=35928
https://issues.apache.org/bugzilla/show_bug.cgi?id=41688
https://issues.apac

Re: locked for editing by user ''

2008-12-30 Thread David Fisher

You could shared the code that uses poi.

Is the domino agent running on a Windows server?

Which version of Office and WIndows? Are you in a high security  
environment?


Regards,
Dave

On Dec 30, 2008, at 8:53 AM, criverapr wrote:



Sorry about that I didn't give much detail.  I'm using the following  
jar
poi-3.2-FINAL-20081019.jar.  I have a lotus domino java agent that  
runs
every night and uses poi to generate a simple excel file.  Let me  
know if

you need more info.  Thank you for the prompt response.


David Fisher wrote:


It would help to understand which version of the api you are using.

What do you mean by automatically generated? Are you using a tool  
that

uses poi?

Is this a simple Excel file, or complex?

On Dec 29, 2008, at 3:54 PM, criverapr wrote:



I'm getting a locked for editing by user '' message when trying to
open an
excel file that is generated automatically using POI api.  Any  
ideas?

--
View this message in context:
http://www.nabble.com/locked-for-editing-by-user-%27%27-tp21209713p21209713.html
Sent from the POI - Dev mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org




-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org





--
View this message in context: 
http://www.nabble.com/locked-for-editing-by-user-%27%27-tp21209713p21218119.html
Sent from the POI - Dev mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org




-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: locked for editing by user ''

2008-12-30 Thread Martin Brown
On Tue, 2008-12-30 at 06:53 -0800, criverapr wrote:
> Sorry about that I didn't give much detail.  I'm using the following jar
> poi-3.2-FINAL-20081019.jar.  I have a lotus domino java agent that runs
> every night and uses poi to generate a simple excel file.

Is your Java application always closing the file / file stream? If not
then Windows file sharing might cause the error you are experiencing.

Cheers

Martin


Filtered by 3BClean from http://www.3bview.com

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: locked for editing by user ''

2008-12-30 Thread criverapr

Sorry about that I didn't give much detail.  I'm using the following jar
poi-3.2-FINAL-20081019.jar.  I have a lotus domino java agent that runs
every night and uses poi to generate a simple excel file.  Let me know if
you need more info.  Thank you for the prompt response.


David Fisher wrote:
> 
> It would help to understand which version of the api you are using.
> 
> What do you mean by automatically generated? Are you using a tool that  
> uses poi?
> 
> Is this a simple Excel file, or complex?
> 
> On Dec 29, 2008, at 3:54 PM, criverapr wrote:
> 
>>
>> I'm getting a locked for editing by user '' message when trying to  
>> open an
>> excel file that is generated automatically using POI api.  Any ideas?
>> -- 
>> View this message in context:
>> http://www.nabble.com/locked-for-editing-by-user-%27%27-tp21209713p21209713.html
>> Sent from the POI - Dev mailing list archive at Nabble.com.
>>
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
>> For additional commands, e-mail: dev-h...@poi.apache.org
>>
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
> For additional commands, e-mail: dev-h...@poi.apache.org
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/locked-for-editing-by-user-%27%27-tp21209713p21218119.html
Sent from the POI - Dev mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[g...@vmgump]: Project poi (in module poi) failed

2008-12-30 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 gene...@gump.apache.org.

Project poi has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 10 runs.
The current state of this project is 'Failed', with reason 'Build Timed Out'.
For reference only, the following projects are affected by this:
- poi :  POI


Full details are available at:
http://vmgump.apache.org/gump/public/poi/poi/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Output [poi-ooxml-gump-30122008.jar] identifier set to output 
basename: [poi-ooxml-gump]
 -DEBUG- Output [poi-contrib-gump-30122008.jar] identifier set to output 
basename: [poi-contrib-gump]
 -DEBUG- Output [poi-scratchpad-gump-30122008.jar] identifier set to output 
basename: [poi-scratchpad-gump]
 -DEBUG- Output [poi-gump-30122008.jar] identifier set to output basename: 
[poi-gump]
 -INFO- Failed with reason build timed out
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/poi/poi/gump_work/build_poi_poi.html
Work Name: build_poi_poi (Type: Build)
Work ended in a state of : Failed
Elapsed: 60 mins
Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true 
-Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/srv/gump/public/workspace/xml-xalan/build/serializer.jar:/srv/gump/public/workspace/xml-xalan/build/xalan-unbundled.jar
 org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dversion.id=gump -DDSTAMP=30122008 -f build.xml gump 
[Working Directory: /srv/gump/public/workspace/poi]
CLASSPATH: 
/usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/poi/ooxml-lib/xmlbeans-2.3.0.jar:/srv/gump/public/workspace/poi/ooxml-lib/jsr173_1.0_api.jar:/srv/gump/public/workspace/poi/ooxml-lib/ooxml-schemas-1.0.jar:/srv/gump/public/workspace/poi/ooxml-lib/openxml4j-1.0-beta.jar:/srv/gump/public/workspace/poi/build/classes:/srv/gump/public/workspace/poi/build/contrib-classes:/srv/gump/public/workspace/poi/build/scratchpad-classes:/srv/gump/public/workspace/poi/build/ooxml-classes:/srv/gump/public/workspace/poi/build/test-classes:/srv/gump/public/workspace/poi/build/scratchpad-test-classes:/srv/gump/public/workspace/poi/build/ooxml-test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/di
 
st/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/logging-log4j-12/dist/lib/log4j-30122008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-30122008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-30122008.jar:/srv/gump/public/workspace/apache-commons/beanutils/dist/commons-beanutils-30122008.jar:/srv/gump/public/workspace/apache-commons/collections/build/commons-collections-30122008.jar:/srv/gump/public/workspace/apache-commons/lang/commons-lang-30122008.jar:/srv/gump/public/workspace/junit/dist/junit-30122008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/dom4j/build/dom4j.jar
-
Buildfile: /srv/gump/public/workspace/poi/build.xml

check-jars:

fetch-jars:

testexist:

downloadfile:
  [get] Getting: 
http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.1.jar
  [get] To: /srv/gump/public/workspace/poi/lib/commons-logging-1.1.jar

testexist:

downloadfile:
  [get] Getting: http://www.ibiblio.org/maven/log4j/jars/log4j-1.2.13.jar
  [get] To: /srv/gump/public/workspace/poi/lib/log4j-1.2.13.jar

testexist:

downloadfile:
  [get] Getting: http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar
  [get] To: /srv/gump/public/workspace/poi/lib/junit-3.8.1.jar

check-ooxml-jars:

fetch-ooxml-jars:

testexist:

downloadfile:
  [get] Getting: http://www.ibiblio.org/maven/dom4j/jars/dom4j-1.6.1.jar
  [get] To: /srv/gump/public/workspace/poi/ooxml-lib/dom4j-1.6.1.jar

testexist:

downloadfile:
  [get] Getting: 
http://www.ibiblio.org/maven/org.apache.xmlbeans/jars/xmlbeans-2.3.0.jar
  [get] To: /srv/gump/public/workspace/poi/ooxml-lib/xmlbeans-2.3.0.jar
-


DO NOT REPLY [Bug 46448] Performance problem while reading a Excel 2007 document (compare to Excel 2003 document)

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46448


Yegor Kozlov  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX




--- Comment #2 from Yegor Kozlov   2008-12-30 02:04:38 PST ---
Opening *.xlsx files will always be slower that opening *.xls just because
parsing XML is always slower than reading binary data. 

We use the XMLBeans technology (http://xmlbeans.apache.org/) to map XML to Java
and takes quite some time to process OOXML documents.

A possible workaround is to use XSSF Event API:
http://poi.apache.org/spreadsheet/how-to.html#xssf_sax_api. It requires basic
understanding of the file structure but allows processing *.xlsx with low
memory footprint and much faster than using XSSF usermodel API.


Yegor


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 45431] XSSFWorkbook cannot save a macro-enabled Excel (.xlsm)

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45431


Matthew  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||FIXED




--- Comment #10 from Matthew   2008-12-30 01:47:18 PST 
---
This problem is solved in latest build.


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 46448] Performance problem while reading a Excel 2007 document (compare to Excel 2003 document)

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46448





--- Comment #1 from Matthew   2008-12-30 01:46:20 PST ---
Opening an Excel 2003 document:

FileInputStream fis = new FileInputStream(path);
POIFSFileSystem fs = new POIFSFileSystem(fis);
Workbook workbook = new HSSFWorkbook(fs);

--
Opening an Excel 2007 document:

Workbook workbook = new XSSFWorkbook(path);


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 29957] HSSFSheet removeRow() & shiftRows() do not deal with hyperlinks

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=29957


Yegor Kozlov  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Yegor Kozlov   2008-12-30 01:25:09 PST ---
Fixed in r730076 ( https://svn.apache.org/viewcvs.cgi?view=rev&rev=730076 )

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 46445] shiftRows does not move hyperlinks

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46445


Yegor Kozlov  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #3 from Yegor Kozlov   2008-12-30 01:24:37 PST ---
Fixed in r730076 ( https://svn.apache.org/viewcvs.cgi?view=rev&rev=730076 )

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



DO NOT REPLY [Bug 46448] New: Performance problem while reading a Excel 2007 document (compare to Excel 2003 document)

2008-12-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46448

   Summary: Performance problem while reading a Excel 2007 document
(compare to Excel 2003 document)
   Product: POI
   Version: 3.5-dev
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: normal
  Priority: P2
 Component: XSSF
AssignedTo: dev@poi.apache.org
ReportedBy: matthew@gmail.com


I am using POI 3.5 Beta:

- while opening an Excel 2003 document it took about 700 milliseconds. 
- while opening an Excel 2007 document it took 3000 milliseconds.
(It is 4 times slower)

Would you help on solving this issue? And please let me know if you have any
other advice which will help to resolve this issue. Thanks a lot!


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org