[Bug 61231] Remove deprecated AreaReference constructor

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61231 --- Comment #6 from Dominik Stadler --- Actual commit seems to be at https://github.com/apache/poi/commit/5c65b55bd477868847bfc071bd95a5dd770e2741 and r1800208 -- You are receiving this mail because: You are the

Re: Build failed in Jenkins: POI-DSL-1.6 #367

2017-06-28 Thread Andreas Beeker
Just as a follow up - POI 3.17-beta1 didn't have the patch in, therefore the test project also failed. The error with the signature value is based on problem with implicit toString() calls, i.e. Date.toString(). Although we already have those in our forbidden apis list, this is futile because

Build failed in Jenkins: POI-DSL-Maven #239

2017-06-28 Thread Apache Jenkins Server
See Changes: [nick] Fix javadoc warnings [nick] Used deprecated external method removed, so remove internal method [nick] Used deprecated external method removed, so remove internal method [kiwiwings] add

Jenkins build is back to normal : POI-DSL-1.6 #369

2017-06-28 Thread Apache Jenkins Server
See - To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org For additional commands, e-mail: dev-h...@poi.apache.org

Re: Build failed in Jenkins: POI-DSL-1.6 #367

2017-06-28 Thread Andreas Beeker
I'm trying to reproduce it by setting a different Locale, but I can't break it yet ... When I'm using a test project to sign a .xlsx with POI 3.17-beta1, Libre Office doesn't like its signature. It I can't find a solution, I'll probably just comment out that line ... :( On 6/29/17 12:25 AM,

Re: Table Formula Manipulation and Matrix Function Implementation in HSSF/XSSF

2017-06-28 Thread Robert Hulbert
Correction, I meant to say array formulas. For example, when I attempted testing component binary operations (+,-,*,/) using array formulas (formula over an area w/ CTRL+SHIFT+ENTER), it evaluated to [!VALUE] in the cell where the formula was and empty string in subsequent cells. On 2017-06-27

Re: Table Formula Manipulation and Matrix Function Implementation in HSSF/XSSF

2017-06-28 Thread Robert Hulbert
LLNL currently uses POI for reading and writing workbooks and would like to extend that functionality so that their engineers could use the matrix operations for configuration purposes. They also want me to learn and relay my experiences in helping an open source project. On 2017-06-27 15:51

Build failed in Jenkins: POI-DSL-1.6 #368

2017-06-28 Thread Apache Jenkins Server
See Changes: [fanningpj] Ensure SpreadsheetVersion is set for AreaReferences -- [...truncated 22.09 KB...] generate-geometry: compile-scratchpad: [javac] Compiling 487

Re: Build failed in Jenkins: POI-DSL-1.6 #367

2017-06-28 Thread pj.fanning
I see a similar test issue when I build on my laptop -- View this message in context: http://apache-poi.1045710.n5.nabble.com/Build-failed-in-Jenkins-POI-DSL-1-6-367-tp5727976p5727978.html Sent from the POI - Dev mailing list archive at Nabble.com.

[Bug 61231] Remove deprecated AreaReference constructor

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61231 PJ Fanning changed: What|Removed |Added Resolution|--- |FIXED

Build failed in Jenkins: POI-DSL-1.6 #367

2017-06-28 Thread Apache Jenkins Server
See Changes: [kiwiwings] Bug 61182 - Invalid signature created for streamed xslx file -- [...truncated 23.46 KB...] generate-geometry: compile-scratchpad: [javac]

[Bug 61182] Invalid signature created for streamed xslx file

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61182 Andreas Beeker changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 61231] Remove deprecated AreaReference constructor

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61231 --- Comment #4 from Nick Burch --- Comment on attachment 35087 --> https://bz.apache.org/bugzilla/attachment.cgi?id=35087 patch3 with CreationHelper changes The unit tests look cleaner to me with the creation helper

[Bug 61231] Remove deprecated AreaReference constructor

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61231 --- Comment #3 from PJ Fanning --- Created attachment 35087 --> https://bz.apache.org/bugzilla/attachment.cgi?id=35087=edit patch3 with CreationHelper changes Thanks Nick for the review - patch3 has a change to the

[Bug 61182] Invalid signature created for streamed xslx file

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61182 Andreas Beeker changed: What|Removed |Added Hardware|PC |All

[Bug 61231] Remove deprecated AreaReference constructor

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61231 --- Comment #2 from Nick Burch --- Might it make sense to either allow passing in a Workbook when creating an AreaReference (to get the version from), or allowing creation of an AreaReference from CreationHelper (to again

Re: [Bug 60422] DataFormatter.formatCellValue returns incorrect value for German 'Buchhaltung' format

2017-06-28 Thread Greg Woolsey
I'm suspicious Excel is doing extra work to translate formats for display to match the OS locale display settings even though the underlying storage always uses English standards. On Wed, Jun 28, 2017, 11:24 wrote: > https://bz.apache.org/bugzilla/show_bug.cgi?id=60422 > >

RE: [RESULT][VOTE] Apache POI 3.17-beta1 release (RC1)

2017-06-28 Thread Allison, Timothy B.
Thank you, Andi, for running the release! On 6/28/17 4:39 AM, Javen O'Neal wrote: > Thanks, Andi. > > Looks like Maven Central has the artifacts now. Other mirrors may not > be up to date, though. > http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.poi%22 > > On Jun 27, 2017 16:31,

[Bug 60422] DataFormatter.formatCellValue returns incorrect value for German 'Buchhaltung' format

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60422 --- Comment #16 from PJ Fanning --- Looking at wet_test.xls, the 4.33 cell has this format. CELL_RECORD_TYPE .formatindex = aa This cell format is added as a custom format in FormatTrackingHSSFListener. The

Re: Table Formula Manipulation and Matrix Function Implementation in HSSF/XSSF

2017-06-28 Thread Hulbert, Robert Douglas
LLNL currently uses POI for reading and writing workbooks and would like to extend that functionality so that their engineers could use the matrix operations for configuration purposes. They also want me to learn and relay my experiences in helping an open source project. CLARIFICATION: I

Re: Moving to Git

2017-06-28 Thread Dave Fisher
Hi - Infrastructure is just now getting something called GitBox going which should help with integration of Apache LDAP etcetera. They are also working on a JIRA service ticket improvement. Javen it might be good if you reached out to Infrastructure and a clear explanation of how to properly

[Bug 61231] Remove deprecated AreaReference constructor

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61231 PJ Fanning changed: What|Removed |Added Attachment #35085|0 |1 is

Jenkins build is back to normal : POI-DSL-1.8 #183

2017-06-28 Thread Apache Jenkins Server
See - To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org For additional commands, e-mail: dev-h...@poi.apache.org

RE: Moving to Git

2017-06-28 Thread Allison, Timothy B.
Y, we did it on Tika...in fact, we also jumped to github directly. It was great. Not sure it dramatically increased contributions, but it does feel modern... -Original Message- From: Greg Woolsey [mailto:greg.wool...@gmail.com] Sent: Wednesday, June 28, 2017 9:37 AM To: POI

Re: Moving to Git

2017-06-28 Thread Andreas Beeker
I'm 0 - although I haven't done much with git/-hub, it seems to be the (new) standard ... > Then we'd be able to have github show merged PR's with credit to the > author rather than closed PR's. I wonder what is our stance at credits? ... I usually remove the author tags when I rework code -

Re: Moving to Git

2017-06-28 Thread Greg Woolsey
I'd be all for that. Not particularly proficient, but I can Google like everyone else. On Wed, Jun 28, 2017, 01:35 Javen O'Neal wrote: > A fair increase in Github PR's. Having a git repo might increase the > number of (good) PR's we get, as that seems to be where a lot of >

Build failed in Jenkins: POI-DSL-1.8 #182

2017-06-28 Thread Apache Jenkins Server
See Changes: [fanningpj] Remove some deprecated *SSF APIs -- [...truncated 173.84 KB...] [junit] Running org.apache.poi.xssf.model.TestThemesTable [junit] Tests run: 3,

[Bug 60422] DataFormatter.formatCellValue returns incorrect value for German 'Buchhaltung' format

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60422 --- Comment #15 from PJ Fanning --- Actally, it seems that I'm wrong about the '.' in the format string - it does seem that this should be a '.' in the result and that if you want ',' in the output then your format must be

[Bug 60422] DataFormatter.formatCellValue returns incorrect value for German 'Buchhaltung' format

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60422 --- Comment #14 from PJ Fanning --- I've been doing a bit more experimentation. It seems that simpler formats are handled correctly, locale wise. I think some of the main issues are: * DataFormatter should set the

Re: [RESULT][VOTE] Apache POI 3.17-beta1 release (RC1)

2017-06-28 Thread Andreas Beeker
Maybe I should change my template ... :S ... I'll wait with the general announcement until 2017-07-01, otherwise it looks strange to have the release date in the future ... Anyways the trunk is of course now open for changes ... Andi On 6/28/17 4:39 AM, Javen O'Neal wrote: > Thanks, Andi. > >

[Bug 61231] New: Remove deprecated AreaReference constructor

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61231 Bug ID: 61231 Summary: Remove deprecated AreaReference constructor Product: POI Version: 3.17-dev Hardware: PC OS: Mac OS X 10.1 Status: NEW Severity:

[Bug 61226] Remove some of the deprecated methods in the HSSF/XSSF code base

2017-06-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61226 PJ Fanning changed: What|Removed |Added Status|NEW |RESOLVED

Moving to Git

2017-06-28 Thread Javen O'Neal
A fair increase in Github PR's. Having a git repo might increase the number of (good) PR's we get, as that seems to be where a lot of developers are at. Then we'd be able to have github show merged PR's with credit to the author rather than closed PR's. Looks like some of Apache Commons is going