Build failed in Jenkins: POI-DSL-old-Xerces #55

2017-11-11 Thread Apache Jenkins Server
See 


Changes:

[onealj] +svn:eol-style native *.java

[onealj] github #81: sheet names are case insensitive

[onealj] XWPFTable#getRows() should return an unmodifiable list unless the 
method can correctly update xmlbeans in response to modifying the list

[onealj] make tableRows final; initialize where defined rather than in 
constructor.

[onealj] deprecate XWPFTable#addNewRowBetween(int,int), which has not been 
implemented since 2008 when this class was first authored. (Unrelated: This 
closes #82 on github).

[jmarkmurphy] Surface XSSF Header/Footer Attributes (60887)

[centic] Some JavaDoc adjustments, typos, IntelliJ warnings

[onealj] update changelog for bug 61727, 61730

[onealj] bug 61730: remove asSet function from unit test

[onealj] bug 61730: remove CellRangeAddressBase which is eager. The lazy 
iterator is safer, less likely to cause an OOM/DoS.

[onealj] bug 61730: add javadoc

[onealj] bug 61730: add iterator interface to CellRangeAddressBase for 
iterating over CellAddresses

[onealj] bug 61727: make TestCellRangeUtil unit tests more explicit

[centic] Enhance unit-test to Verify that bug 58785 is already via via some 
other change

[onealj] bug 61727: CellRangeUtil Merge cell ranges broken. Thanks for Sven 
Rieckhoff for the patch

[centic] Adjust some tests to properly close resources

[centic] Bug #57517: Fix various things in HSSFOptimiser to make many more 
cases work fine: Column styles, row styles, user defined styles, ...
Also call optimise in integration-tests and handle some cases of invalid 
content in files.

--
[...truncated 1.24 MB...]
 [java] at 
org.apache.poi.ss.util.BaseTestCellUtil.setCellStyleProperty(BaseTestCellUtil.java:59)
 [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 [java] at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
 [java] at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 [java] at java.lang.reflect.Method.invoke(Method.java:498)
 [java] at 
org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
 [java] at 
org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
 [java] at 
org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
 [java] at 
org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
 [java] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
 [java] at 
org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
 [java] at 
org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
 [java] at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
 [java] at 
org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
 [java] at 
org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
 [java] at 
org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
 [java] at 
org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
 [java] at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
 [java] at org.junit.runners.Suite.runChild(Suite.java:128)
 [java] at org.junit.runners.Suite.runChild(Suite.java:27)
 [java] at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
 [java] at 
org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
 [java] at 
org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
 [java] at 
org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
 [java] at 
org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
 [java] at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
 [java] at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
 [java] at org.junit.runner.JUnitCore.run(JUnitCore.java:115)
 [java] at org.junit.runner.JUnitCore.run(JUnitCore.java:105)
 [java] at org.junit.runner.JUnitCore.run(JUnitCore.java:94)
 [java] at org.apache.poi.util.OOXMLLite.build(OOXMLLite.java:149)
 [java] at org.apache.poi.util.OOXMLLite.main(OOXMLLite.java:94)
 [java] Caused by: java.io.IOException: Permission denied
 [java] at java.io.UnixFileSystem.createFileExclusively(Native Method)
 [java] at java.io.File.createTempFile(File.java:2024)
 [java] at 
org.apache.poi.util.DefaultTempFileCreationStrategy.createTempFile(DefaultTempFileCreationStrategy.java:110)
 [java] at org.apache.poi.util.TempFile.createTempFile(TempFile.java:66)
 [java] at 
org.apache.poi.xssf.streaming.SheetDataWriter.createTempFile(SheetDataWriter.java:87)
 [java] at 

[Bug 61749] New: Replace case sensitive comparisons where Microsoft Office behavior is case insensitive

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61749

Bug ID: 61749
   Summary: Replace case sensitive comparisons where Microsoft
Office behavior is case insensitive
   Product: POI
   Version: unspecified
  Hardware: PC
OS: All
Status: NEW
  Severity: normal
  Priority: P2
 Component: POI Overall
  Assignee: dev@poi.apache.org
  Reporter: one...@apache.org
  Target Milestone: ---

Created attachment 35520
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=35520=edit
case sensitive comparisons that possibly should be case insensitive

POI may be too restrictive with case sensitive string comparisons, such as
sheet names in a workbook. Where the Microsoft Office behavior is case
insensitive, POI should use String#equalsIgnoreCase(String) or
String.toLowerCase(Locale.ROOT)/String.toUpperCase(Locale.ROOT).

I found a few case sensitive comparisons with a few greps.

-- 
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



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

2017-11-11 Thread Apache Jenkins Server
See 


Changes:

[onealj] XWPFTable#getRows() should return an unmodifiable list unless the 
method can correctly update xmlbeans in response to modifying the list

[onealj] make tableRows final; initialize where defined rather than in 
constructor.

[onealj] deprecate XWPFTable#addNewRowBetween(int,int), which has not been 
implemented since 2008 when this class was first authored. (Unrelated: This 
closes #82 on github).

--
[...truncated 99.73 KB...]
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestMatch
Running org.apache.poi.ss.formula.functions.TestMid
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestMid
Running org.apache.poi.ss.formula.functions.TestMirr
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec - in 
org.apache.poi.ss.formula.functions.TestMirr
Running org.apache.poi.ss.formula.functions.TestCountFuncs
Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec - in 
org.apache.poi.ss.formula.functions.TestCountFuncs
Running org.apache.poi.ss.formula.functions.TestIntercept
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec - in 
org.apache.poi.ss.formula.functions.TestIntercept
Running org.apache.poi.ss.formula.functions.TestSumifs
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec - in 
org.apache.poi.ss.formula.functions.TestSumifs
Running 
org.apache.poi.ss.formula.functions.TestWeekNumFunctionsFromSpreadsheet2013
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestWeekNumFunctionsFromSpreadsheet2013
Running org.apache.poi.ss.formula.functions.TestSubtotal
Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec - in 
org.apache.poi.ss.formula.functions.TestSubtotal
Running org.apache.poi.ss.formula.functions.TestComplex
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestComplex
Running org.apache.poi.ss.formula.functions.TestAddress
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestAddress
Running org.apache.poi.ss.formula.functions.TestBin2Dec
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestBin2Dec
Running org.apache.poi.ss.formula.functions.TestSumif
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec - in 
org.apache.poi.ss.formula.functions.TestSumif
Running org.apache.poi.ss.formula.functions.TestText
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec - in 
org.apache.poi.ss.formula.functions.TestText
Running org.apache.poi.ss.formula.functions.TestValue
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestValue
Running org.apache.poi.ss.formula.functions.TestStatsLib
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestStatsLib
Running org.apache.poi.ss.formula.functions.TestIndexFunctionFromSpreadsheet
Tests run: 98, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec - in 
org.apache.poi.ss.formula.functions.TestIndexFunctionFromSpreadsheet
Running org.apache.poi.ss.formula.functions.TestLen
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestLen
Running org.apache.poi.ss.formula.functions.TestDec2Hex
Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec - in 
org.apache.poi.ss.formula.functions.TestDec2Hex
Running org.apache.poi.ss.formula.functions.TestNpv
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec - in 
org.apache.poi.ss.formula.functions.TestNpv
Running org.apache.poi.ss.formula.functions.TestOct2Dec
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestOct2Dec
Running org.apache.poi.ss.formula.functions.TestAverage
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestAverage
Running org.apache.poi.ss.formula.functions.TestDStarFunctionsFromSpreadsheet
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestDStarFunctionsFromSpreadsheet
Running org.apache.poi.ss.formula.functions.TestPPMT
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec - in 
org.apache.poi.ss.formula.functions.TestPPMT
Running org.apache.poi.ss.formula.functions.TestDelta
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in 
org.apache.poi.ss.formula.functions.TestDelta
Running 

[GitHub] poi pull request #82: org.apache.poi.xwpf.converter.core.XWPFConverterExcept...

2017-11-11 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/poi/pull/82


---

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



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

2017-11-11 Thread Apache Jenkins Server
See 


Changes:

[jmarkmurphy] Surface XSSF Header/Footer Attributes (60887)

--
[...truncated 1.26 MB...]
 [java] at 
org.apache.poi.ss.util.BaseTestCellUtil.setCellStyleProperty(BaseTestCellUtil.java:59)
 [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 [java] at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
 [java] at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 [java] at java.lang.reflect.Method.invoke(Method.java:498)
 [java] at 
org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
 [java] at 
org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
 [java] at 
org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
 [java] at 
org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
 [java] at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
 [java] at 
org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
 [java] at 
org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
 [java] at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
 [java] at 
org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
 [java] at 
org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
 [java] at 
org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
 [java] at 
org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
 [java] at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
 [java] at org.junit.runners.Suite.runChild(Suite.java:128)
 [java] at org.junit.runners.Suite.runChild(Suite.java:27)
 [java] at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
 [java] at 
org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
 [java] at 
org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
 [java] at 
org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
 [java] at 
org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
 [java] at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
 [java] at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
 [java] at org.junit.runner.JUnitCore.run(JUnitCore.java:115)
 [java] at org.junit.runner.JUnitCore.run(JUnitCore.java:105)
 [java] at org.junit.runner.JUnitCore.run(JUnitCore.java:94)
 [java] at org.apache.poi.util.OOXMLLite.build(OOXMLLite.java:149)
 [java] at org.apache.poi.util.OOXMLLite.main(OOXMLLite.java:94)
 [java] Caused by: java.io.IOException: Permission denied
 [java] at java.io.UnixFileSystem.createFileExclusively(Native Method)
 [java] at java.io.File.createTempFile(File.java:2024)
 [java] at 
org.apache.poi.util.DefaultTempFileCreationStrategy.createTempFile(DefaultTempFileCreationStrategy.java:110)
 [java] at org.apache.poi.util.TempFile.createTempFile(TempFile.java:66)
 [java] at 
org.apache.poi.xssf.streaming.SheetDataWriter.createTempFile(SheetDataWriter.java:87)
 [java] at 
org.apache.poi.xssf.streaming.SheetDataWriter.(SheetDataWriter.java:70)
 [java] at 
org.apache.poi.xssf.streaming.SheetDataWriter.(SheetDataWriter.java:75)
 [java] at 
org.apache.poi.xssf.streaming.SXSSFWorkbook.createSheetDataWriter(SXSSFWorkbook.java:324)
 [java] at 
org.apache.poi.xssf.streaming.SXSSFSheet.(SXSSFSheet.java:80)
 [java] at 
org.apache.poi.xssf.streaming.SXSSFWorkbook.createAndRegisterSXSSFSheet(SXSSFWorkbook.java:646)
 [java] ... 34 more
 [java] 314) createCell(org.apache.poi.ss.util.TestSXSSFCellUtil)
 [java] java.lang.RuntimeException: java.io.IOException: Permission denied
 [java] at 
org.apache.poi.xssf.streaming.SXSSFWorkbook.createAndRegisterSXSSFSheet(SXSSFWorkbook.java:650)
 [java] at 
org.apache.poi.xssf.streaming.SXSSFWorkbook.createSheet(SXSSFWorkbook.java:638)
 [java] at 
org.apache.poi.xssf.streaming.SXSSFWorkbook.createSheet(SXSSFWorkbook.java:84)
 [java] at 
org.apache.poi.ss.util.BaseTestCellUtil.createCell(BaseTestCellUtil.java:176)
 [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 [java] at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
 [java] at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 [java] at java.lang.reflect.Method.invoke(Method.java:498)
 [java] at 
org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
 

[Bug 60887] Surface XSSF header/footer attributes

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60887

--- Comment #4 from Javen O'Neal  ---
Make sure to document any surprising behavior in the javadoc. It sounds like
some of this functionality would be better implemented in a different class to
make the global behavior less surprising. But I am not familiar enough with
printing, headers, or footers to suggest something better.

-- 
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



[Bug 61745] [PATCH] Added Support To create chart object For DOCX

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61745

--- Comment #8 from Javen O'Neal  ---
Thank you for adding support for charts in XWPF!

Would you be able to write some unit tests (or modify existing ones) to cover
the new and changed functionality? See
https://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/xwpf/usermodel/TestXWPFPictureData.java?view=log
for an example.

Would you also be able to make the following changes:
XWPFDocument#getCharts:
return Collections.unmodifiableList(charts);

XWPFChart:
Remove @Deprecated API's in XWPFChart. No need for deprecated API's in new
code.
Update javadocs to @since POI 4.0.0

It looks like this was modeled after XWPFPictureData. To whoever ends up
committing this code to the svn repo, an "svn cp XWPFPictureData.java
XWPFChart.java; cp patch.tar.gz/XWPFChart.java ." might make sense.
If there's any code that XWPFChart and XWPFPictureData share in common, it may
make sense to create a class that implements the common methods.

-- 
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: Charts

2017-11-11 Thread Javen O'Neal
Alain BĂ©arez has contributed several pull requests for a common
charting API between XSSF and XSLF via github-68 [1] and github-72 [2]
that need a signed contributor license agreement before merging. The
CLA is in progress.

Sandeep Tiwari recently opened bug 61745 with a patch for XWPF. This
is a smaller patch that probably doesn't require a CLA (code submitted
to POI devs for inclusion in POI is implicitly ASL 2.0 licensed unless
stated otherwise). I don't think this change conflicts with Alain's
work. If someone is interested in using XDDF in XWPF, that work can be
done after this patch is committed.

[1] https://github.com/apache/poi/pull/68
[2] https://github.com/apache/poi/pull/72
[3] https://bz.apache.org/bugzilla/show_bug.cgi?id=61745

On Sat, Nov 11, 2017 at 2:11 PM, Mark Murphy  wrote:
> I think I have heard of a charting effort in progress for POI, I am hoping
> that is in a common module, at least for the XML formats so that we don't
> have to copy it to each of the document types. Can someone let me know how
> that is going? I have a patch for XWPF, and I want to make sure it doesn't
> conflict with the way that effort is handling things.

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



[Bug 61745] [PATCH] Added Support To create chart object For DOCX

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61745

--- Comment #7 from Javen O'Neal  ---
This patch was generated with "ant -f patch.xml" (patch.tar.gz was the hint)
[1]

I fixed the mime-type of the patch to application/tar+gzip (Bugzilla sets the
mime type of attachments marked as a patch to "text/plain", hence the binary
mess your browser displayed).

This patch should download directly now. Apply this patch to a clean svn
checkout using
> ant -f patch.xml apply
or 
> tar xvzf patch.tar.gz
> svn patch patch.txt
> svn add ...

[1] https://poi.apache.org/guidelines.html#Approach+1+-+use+Ant

-- 
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



[Bug 61745] [PATCH] Added Support To create chart object For DOCX

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61745

Javen O'Neal  changed:

   What|Removed |Added

  Attachment #35516|text/plain  |application/tar+gzip
  mime type||
  Attachment #35516|1   |0
   is patch||

-- 
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



Charts

2017-11-11 Thread Mark Murphy
I think I have heard of a charting effort in progress for POI, I am hoping
that is in a common module, at least for the XML formats so that we don't
have to copy it to each of the document types. Can someone let me know how
that is going? I have a patch for XWPF, and I want to make sure it doesn't
conflict with the way that effort is handling things.


[Bug 61745] [PATCH] Added Support To create chart object For DOCX

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61745

Mark Murphy  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #6 from Mark Murphy  ---
I can't read the patch as it looks like it was just pasted into the text field
in a non-text format. Please attach a file that contains the whole patch. I can
read your test file though.

-- 
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



[Bug 61745] [PATCH] Added Support To create chart object For DOCX

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61745

--- Comment #4 from SANDEEP TIWARI  ---
Created attachment 35518
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=35518=edit
Test input ms-word file

this is test ms-word file from which we are creating chart object,

-- 
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



[Bug 61745] [PATCH] Added Support To create chart object For DOCX

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61745

--- Comment #3 from SANDEEP TIWARI  ---
Comment on attachment 35517
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=35517
Test java file to check functionality of

This is the test java file to test the functionality of new enhancement i.e
creating chart object from MS-word file

-- 
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



[Bug 61745] [PATCH] Added Support To create chart object For DOCX

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61745

--- Comment #2 from SANDEEP TIWARI  ---
Created attachment 35517
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=35517=edit
Test java file to check functionality of

-- 
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



[Bug 60887] Surface XSSF header/footer attributes

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60887

Mark Murphy  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEW |RESOLVED

--- Comment #3 from Mark Murphy  ---
Added r1814950

-- 
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



[Bug 61745] [PATCH] Added Support To create chart object For DOCX

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61745

SANDEEP TIWARI  changed:

   What|Removed |Added

 CC||er.sandeeptiwar...@gmail.co
   ||m

--- Comment #1 from SANDEEP TIWARI  ---
Created attachment 35516
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=35516=edit
This Patch contains 1 java files XWPFChart and 2 modified java XWPFDocument,
XWPFRelation.This patch we can use to create chart object reading Document
file.

In DOCX (MS-Word) document we are not able to create chart object by reading
chart from document file.In this Patch i added 1 java files XWPFChart which we
can use to create chart object and then can use all method to add/modify chart
properties same as we are using in case of PPT/EXCEL along with that i modified
2 java files XWPFDocument, XWPFRelation to parse chart from document and add
relation in document file.

-- 
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



[Bug 61745] New: [PATCH] Added Support To create chart object For DOCX

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61745

Bug ID: 61745
   Summary: [PATCH] Added Support To create chart object For DOCX
   Product: POI
   Version: 3.17-FINAL
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P2
 Component: XWPF
  Assignee: dev@poi.apache.org
  Reporter: er.sandeeptiwar...@gmail.com
  Target Milestone: ---

-- 
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



[Bug 60277] getHyperlinks() method doesn't work for some kind of Hyperlink

2017-11-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60277

--- Comment #4 from Dominik Stadler  ---
We currently support links as described here:
http://officeopenxml.com/WPhyperlink.php, however there seems to be another
type of link via Fields, see http://officeopenxml.com/WPfieldInstructions.php,
which is used here. 

However I could not find more detailed description of these type of links in a
quick search through the spec.

-- 
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