[GitHub] [poi] pjfanning commented on pull request #180: #63819 Add DateValue function

2020-05-15 Thread GitBox
pjfanning commented on pull request #180: URL: https://github.com/apache/poi/pull/180#issuecomment-629460633 Thanks - merged This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [poi] asfgit closed pull request #180: #63819 Add DateValue function

2020-05-15 Thread GitBox
asfgit closed pull request #180: URL: https://github.com/apache/poi/pull/180 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] pjfanning commented on pull request #179: add an option for RangeCopier.copyRange() also clone styles

2020-05-15 Thread GitBox
pjfanning commented on pull request #179: URL: https://github.com/apache/poi/pull/179#issuecomment-629447747 Thanks - merged This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [poi] asfgit closed pull request #179: add an option for RangeCopier.copyRange() also clone styles

2020-05-15 Thread GitBox
asfgit closed pull request #179: URL: https://github.com/apache/poi/pull/179 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] RemboL opened a new pull request #181: make Value function work with arrays

2020-05-19 Thread GitBox
RemboL opened a new pull request #181: URL: https://github.com/apache/poi/pull/181 I noticed that value function doesn't work well (or at all) with array formulas. It was pretty frustrating when we tried to evaluate array formula like "=SUM(VALUE($B$2:$B$4))" and got error, when in Ms

[GitHub] [poi] netmackan opened a new pull request #182: Fix root property size calculation.

2020-05-19 Thread GitBox
netmackan opened a new pull request #182: URL: https://github.com/apache/poi/pull/182 Before this patch the POIFSMiniStore.syncWithDataStore() method sets the root property size to be based on the number of sectors in each block that is used. However it can happen is some files

[GitHub] [poi] netmackan commented on pull request #182: Fix root property size calculation.

2020-05-19 Thread GitBox
netmackan commented on pull request #182: URL: https://github.com/apache/poi/pull/182#issuecomment-630794652 I also have patches for 4.1.2, 4.0.1 and 3.15 if wanted. This is an automated message from the Apache Git Service.

[GitHub] [poi] RemboL opened a new pull request #180: #63819 Add DateValue function

2020-05-14 Thread GitBox
RemboL opened a new pull request #180: URL: https://github.com/apache/poi/pull/180 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to

[GitHub] [poi] pjfanning commented on pull request #182: Fix root property size calculation.

2020-05-20 Thread GitBox
pjfanning commented on pull request #182: URL: https://github.com/apache/poi/pull/182#issuecomment-631722702 @netmackan do you have a file that demos this problem? This is an automated message from the Apache Git Service. To

[GitHub] [poi] leowebb edited a comment on pull request #187: Add length validation for Excel DataValidations that are list literals.

2020-10-16 Thread GitBox
leowebb edited a comment on pull request #187: URL: https://github.com/apache/poi/pull/187#issuecomment-667723572 Hello! Thank you for the response. I've added a sample file that won't open in Excel, and a corresponding test that throws an exception from the DataValidation when

[GitHub] [poi] jacobharris919 opened a new pull request #193: Change TRUNC implementation to use MathX

2020-10-20 Thread GitBox
jacobharris919 opened a new pull request #193: URL: https://github.com/apache/poi/pull/193 The TRUNC implementation is still broken. (BUG: https://bz.apache.org/bugzilla/show_bug.cgi?id=62506 ) 1. Bug 62506 reports that TRUNC(0.29, 2) = 0.28 2. The solution proposed in that bugfix

[GitHub] [poi] tcerdaITBA opened a new pull request #192: Fix DOUGHNUT chart creation

2020-08-28 Thread GitBox
tcerdaITBA opened a new pull request #192: URL: https://github.com/apache/poi/pull/192 Currently the DOUGHNUT chart requires `XDDFChartAxis` and `XDDFValueAxis` objects in its creation which is not correct. As with the PIE and PIE3D charts, the DOUGHNUT chart does not need these axis

[GitHub] [poi] snaketl commented on pull request #176: Update XSSFSheetConditionalFormatting.java

2020-08-20 Thread GitBox
snaketl commented on pull request #176: URL: https://github.com/apache/poi/pull/176#issuecomment-677679695 Nice job! Any plans to have a release version soon with this changes? Thanks in advance! This is an automated

[GitHub] [poi] pjfanning commented on pull request #183: fix gradle build after #64411 changes

2020-05-27 Thread GitBox
pjfanning commented on pull request #183: URL: https://github.com/apache/poi/pull/183#issuecomment-634921478 LGTM. Merged. This is an automated message from the Apache Git Service. To respond to the message, please log on to

[GitHub] [poi] asfgit closed pull request #183: fix gradle build after #64411 changes

2020-05-27 Thread GitBox
asfgit closed pull request #183: URL: https://github.com/apache/poi/pull/183 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] kortov opened a new pull request #183: fix gradle build after #64411 changes

2020-05-27 Thread GitBox
kortov opened a new pull request #183: URL: https://github.com/apache/poi/pull/183 After rearranging some lib folders of ooxml in https://github.com/apache/poi/commit/114a4dbd41c56e4c544836e58fae02aae6793cdf , gradle build (and therefore IDE imports) was broken. This fixes the issue.

[GitHub] [poi] bosofelipe commented on pull request #154: [bug-57342] Excel compatible Zip64 implementation

2020-05-29 Thread GitBox
bosofelipe commented on pull request #154: URL: https://github.com/apache/poi/pull/154#issuecomment-636060520 @rzymek Could you give me an example because i try generate a large excel with 37000 rows and 2500 coluns and file still corrupted using apache 4.1.2

[GitHub] [poi] bosofelipe commented on pull request #154: [bug-57342] Excel compatible Zip64 implementation

2020-05-29 Thread GitBox
bosofelipe commented on pull request #154: URL: https://github.com/apache/poi/pull/154#issuecomment-636070287 @rzymek my current code failed `import java.io.File; import java.io.FileOutputStream; import org.apache.commons.compress.archivers.zip.Zip64Mode; import

[GitHub] [poi] bosofelipe edited a comment on pull request #154: [bug-57342] Excel compatible Zip64 implementation

2020-05-29 Thread GitBox
bosofelipe edited a comment on pull request #154: URL: https://github.com/apache/poi/pull/154#issuecomment-636070287 @rzymek my current code failed `import java.io.File; import java.io.FileOutputStream; import org.apache.commons.compress.archivers.zip.Zip64Mode; import

[GitHub] [poi] pjfanning commented on pull request #154: [bug-57342] Excel compatible Zip64 implementation

2020-05-29 Thread GitBox
pjfanning commented on pull request #154: URL: https://github.com/apache/poi/pull/154#issuecomment-636071530 Zip64Mode.AsNeeded is more correct - always may mean you use zip64 mode when you don't need it This is an

[GitHub] [poi] rzymek edited a comment on pull request #154: [bug-57342] Excel compatible Zip64 implementation

2020-05-31 Thread GitBox
rzymek edited a comment on pull request #154: URL: https://github.com/apache/poi/pull/154#issuecomment-636462830 Are you getting "corrupted file" error from Excel or OpenOffice or something else? OpenOffice Calc has a [limit of 1024

[GitHub] [poi] rzymek commented on pull request #154: [bug-57342] Excel compatible Zip64 implementation

2020-05-31 Thread GitBox
rzymek commented on pull request #154: URL: https://github.com/apache/poi/pull/154#issuecomment-636462830 Are you getting "corrupted file" error from Excel or OpenOffice or something else? OpenOffice Calc has a limit of 1024 columns (Excel's limit is 16k columns). Other than that, the

[GitHub] [poi] pjfanning commented on pull request #154: [bug-57342] Excel compatible Zip64 implementation

2020-05-31 Thread GitBox
pjfanning commented on pull request #154: URL: https://github.com/apache/poi/pull/154#issuecomment-636493479 Thanks @rzymek - we might want to make Zip64Mode.Always the default - needs some experimentation before we'd make that change though

[GitHub] [poi] rzymek commented on pull request #154: [bug-57342] Excel compatible Zip64 implementation

2020-05-31 Thread GitBox
rzymek commented on pull request #154: URL: https://github.com/apache/poi/pull/154#issuecomment-636494966 Exactly. I think that custom zip64 implementation should sit as an option for a few versions (it's only enabled when Zip64Mode.Always).

[GitHub] [poi] pjfanning commented on pull request #154: [bug-57342] Excel compatible Zip64 implementation

2020-05-31 Thread GitBox
pjfanning commented on pull request #154: URL: https://github.com/apache/poi/pull/154#issuecomment-636483470 @rzymek thanks for clarifying - do you know what effect setting Zip64Mode.Always has if you create a small spreadsheet - will this file cause problems for Excel?

[GitHub] [poi] rzymek commented on pull request #154: [bug-57342] Excel compatible Zip64 implementation

2020-05-31 Thread GitBox
rzymek commented on pull request #154: URL: https://github.com/apache/poi/pull/154#issuecomment-636492054 As far as I checked, Zip64Mode.Always does not cause problem with Excel even in small files. When it comes to Excel and big files (XML over 4Gb), then ZIP64 must be declared in the

[GitHub] [poi] bosofelipe commented on pull request #154: [bug-57342] Excel compatible Zip64 implementation

2020-06-01 Thread GitBox
bosofelipe commented on pull request #154: URL: https://github.com/apache/poi/pull/154#issuecomment-636839433 @rzymek I tested with Libre Office... now i tested with MS Excel and the problem was solved, Is a limitation of Libre office, with you told us? Tks a lot!

[GitHub] [poi] asfgit closed pull request #193: Change TRUNC implementation to use MathX

2020-10-20 Thread GitBox
asfgit closed pull request #193: URL: https://github.com/apache/poi/pull/193 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] pjfanning commented on pull request #193: Change TRUNC implementation to use MathX

2020-10-20 Thread GitBox
pjfanning commented on pull request #193: URL: https://github.com/apache/poi/pull/193#issuecomment-713040936 Merged with https://github.com/apache/poi/commit/dd9f132c232c24d939adba5065280fbba0e4ed42 - thanks This is an

[GitHub] [poi] Sayi opened a new pull request #188: CTChartSpace may have set CTExternalData element

2020-08-07 Thread GitBox
Sayi opened a new pull request #188: URL: https://github.com/apache/poi/pull/188 Use the existing CTExternalData element, so that we can keep the settings such as autoUpdate in CTExternalData. This is an automated message

[GitHub] [poi] asfgit closed pull request #189: Move date parsing logic to DateParser

2020-08-11 Thread GitBox
asfgit closed pull request #189: URL: https://github.com/apache/poi/pull/189 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] pjfanning commented on pull request #187: Add length validation for Excel DataValidations that are list literals.

2020-08-11 Thread GitBox
pjfanning commented on pull request #187: URL: https://github.com/apache/poi/pull/187#issuecomment-672089871 thanks - merged with https://github.com/apache/poi/commit/a8d90aba91ba8788c784e644a6cff2acbcaba4f1 This is an

[GitHub] [poi] Nick-Rivera-Meredith opened a new pull request #190: Fixed small typos in Javadoc

2020-08-11 Thread GitBox
Nick-Rivera-Meredith opened a new pull request #190: URL: https://github.com/apache/poi/pull/190 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[GitHub] [poi] pjfanning commented on pull request #189: Move date parsing logic to DateParser

2020-08-12 Thread GitBox
pjfanning commented on pull request #189: URL: https://github.com/apache/poi/pull/189#issuecomment-672689340 Thanks - merged with https://github.com/apache/poi/commit/e86ba86f2dbc6c48b34a24bed3cbb2ba2e087648 This is an

[GitHub] [poi] asfgit closed pull request #190: Fixed small typos in Javadoc

2020-08-12 Thread GitBox
asfgit closed pull request #190: URL: https://github.com/apache/poi/pull/190 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] pjfanning commented on pull request #190: Fixed small typos in Javadoc

2020-08-12 Thread GitBox
pjfanning commented on pull request #190: URL: https://github.com/apache/poi/pull/190#issuecomment-672689592 Thanks - merged with https://github.com/apache/poi/commit/252a4eccc949445bb20c5dfc4667bc0f823f40f6 This is an

[GitHub] [poi] asfgit closed pull request #187: Add length validation for Excel DataValidations that are list literals.

2020-08-09 Thread GitBox
asfgit closed pull request #187: URL: https://github.com/apache/poi/pull/187 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] pjfanning commented on pull request #188: CTChartSpace may have set CTExternalData element

2020-08-07 Thread GitBox
pjfanning commented on pull request #188: URL: https://github.com/apache/poi/pull/188#issuecomment-670780711 Looks good to me. I can merge (using svn) if you haven't got svn write access yet. This is an automated message

[GitHub] [poi] Sayi closed pull request #188: CTChartSpace may have set CTExternalData element

2020-08-09 Thread GitBox
Sayi closed pull request #188: URL: https://github.com/apache/poi/pull/188 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] Sayi commented on pull request #188: CTChartSpace may have set CTExternalData element

2020-08-09 Thread GitBox
Sayi commented on pull request #188: URL: https://github.com/apache/poi/pull/188#issuecomment-671021752 r1880707 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub

[GitHub] [poi] leowebb opened a new pull request #187: Add length validation for Excel DataValidations that are list literals.

2020-08-01 Thread GitBox
leowebb opened a new pull request #187: URL: https://github.com/apache/poi/pull/187 Hello, I am not entirely sure if this is a bug, but as I was writing some code to produce a list literal for data validations, I was running into an issue where when I was producing an xlsx, I was

[GitHub] [poi] leowebb commented on pull request #187: Add length validation for Excel DataValidations that are list literals.

2020-08-02 Thread GitBox
leowebb commented on pull request #187: URL: https://github.com/apache/poi/pull/187#issuecomment-667723572 Hello! Thank you for the response. I've added a sample file that is won't open in Excel, and a corresponding test that throws an exception from the DataValidation when reading

[GitHub] [poi] centic9 commented on pull request #187: Add length validation for Excel DataValidations that are list literals.

2020-08-02 Thread GitBox
centic9 commented on pull request #187: URL: https://github.com/apache/poi/pull/187#issuecomment-667637358 Thanks for the contribution. Any chance you can add a sample file to the test-data/spreadsheet directory and a unit-test which verifies the added length-validation?

[GitHub] [poi] RemboL opened a new pull request #189: Move date parsing logic to DateParser

2020-08-11 Thread GitBox
RemboL opened a new pull request #189: URL: https://github.com/apache/poi/pull/189 Recently I implemented DateValue function that would parse dates in different formats. Since then, I noticed that there are other functions (YEARFRAC, in particular) that use date parsing logic and

[GitHub] [poi] RemboL opened a new pull request #185: Fix if function in array formulas with 2nd argument evaluating to error

2020-07-02 Thread GitBox
RemboL opened a new pull request #185: URL: https://github.com/apache/poi/pull/185 I reported this before as https://bz.apache.org/bugzilla/show_bug.cgi?id=64459 , basically issue is that formula "IF(FALSE(), #VALUE!, 1)" when being used as array formula evaluates to error value passed

[GitHub] [poi] pjfanning commented on pull request #185: Fix if function in array formulas with 2nd argument evaluating to error

2020-07-02 Thread GitBox
pjfanning commented on pull request #185: URL: https://github.com/apache/poi/pull/185#issuecomment-653174482 thanks - but can you add a test case that uses IfFunctionTestCaseData.xls ? This is an automated message from the

[GitHub] [poi] RemboL commented on pull request #185: Fix if function in array formulas with 2nd argument evaluating to error

2020-07-02 Thread GitBox
RemboL commented on pull request #185: URL: https://github.com/apache/poi/pull/185#issuecomment-653176081 https://github.com/apache/poi/blob/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestIFFunctionFromSpreadsheet.java already does that, I believe

[GitHub] [poi] pjfanning commented on pull request #185: Fix if function in array formulas with 2nd argument evaluating to error

2020-07-02 Thread GitBox
pjfanning commented on pull request #185: URL: https://github.com/apache/poi/pull/185#issuecomment-653213502 So you are replacing a pre-existing xls file and believe that the pre-existing test is enough and that no extra assertions should be added to this test?

[GitHub] [poi] pjfanning commented on pull request #184: Super sxssf

2020-07-03 Thread GitBox
pjfanning commented on pull request #184: URL: https://github.com/apache/poi/pull/184#issuecomment-653629861 Renamed the classes in https://github.com/apache/poi/commit/9f8b864c413bb3418e79a15172e7d2aac10ee12e This is an

[GitHub] [poi] asfgit closed pull request #185: Fix if function in array formulas with 2nd argument evaluating to error

2020-07-03 Thread GitBox
asfgit closed pull request #185: URL: https://github.com/apache/poi/pull/185 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] pjfanning commented on pull request #185: Fix if function in array formulas with 2nd argument evaluating to error

2020-07-03 Thread GitBox
pjfanning commented on pull request #185: URL: https://github.com/apache/poi/pull/185#issuecomment-653628453 merged with https://github.com/apache/poi/commit/be096396384f93c4d9027484a997509edf240708 - thanks This is an

[GitHub] [poi] Sayi opened a new pull request #186: 64600: Avoid NPE when styleid is null

2020-07-14 Thread GitBox
Sayi opened a new pull request #186: URL: https://github.com/apache/poi/pull/186 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to

[GitHub] [poi] asfgit closed pull request #186: 64600: Avoid NPE when styleid is null

2020-07-14 Thread GitBox
asfgit closed pull request #186: URL: https://github.com/apache/poi/pull/186 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] pjfanning commented on pull request #186: 64600: Avoid NPE when styleid is null

2020-07-14 Thread GitBox
pjfanning commented on pull request #186: URL: https://github.com/apache/poi/pull/186#issuecomment-658275049 merged - thanks This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [poi] RemboL edited a comment on pull request #185: Fix if function in array formulas with 2nd argument evaluating to error

2020-07-02 Thread GitBox
RemboL edited a comment on pull request #185: URL: https://github.com/apache/poi/pull/185#issuecomment-653321876 Yes. This test is built so that it scans the excel file and adds new data row to `@Parameterized` test defined in the base class per properly defined row in excel. I've

[GitHub] [poi] RemboL commented on pull request #185: Fix if function in array formulas with 2nd argument evaluating to error

2020-07-02 Thread GitBox
RemboL commented on pull request #185: URL: https://github.com/apache/poi/pull/185#issuecomment-653321876 Yes. This test is built so that it scans the excel file and adds new data row to @Parameterized test defined in the base class per properly defined row in excel. I've added 4

[GitHub] [poi] mobreza opened a new pull request #184: Super sxssf

2020-06-25 Thread GitBox
mobreza opened a new pull request #184: URL: https://github.com/apache/poi/pull/184 Rebased MR !141 on current master. https://github.com/apache/poi/pull/141 This is an automated message from the Apache Git Service.

[GitHub] [poi] mobreza commented on pull request #184: Super sxssf

2020-06-25 Thread GitBox
mobreza commented on pull request #184: URL: https://github.com/apache/poi/pull/184#issuecomment-649980596 @pjfanning This is to resume discussions and figure out if this code is still useful since it's a year since the previous MR.

[GitHub] [poi] pjfanning commented on pull request #184: Super sxssf

2020-06-26 Thread GitBox
pjfanning commented on pull request #184: URL: https://github.com/apache/poi/pull/184#issuecomment-650121638 * `protected ISheetInjector createSheetInjector(InputStream xis) throws IOException` is now correct * I don't like the SuperSXSSF names, can we use EmittingSXSSF instead?

[GitHub] [poi] pjfanning commented on pull request #184: Super sxssf

2020-06-26 Thread GitBox
pjfanning commented on pull request #184: URL: https://github.com/apache/poi/pull/184#issuecomment-650119909 This code does not compile This is an automated message from the Apache Git Service. To respond to the message,

[GitHub] [poi] mobreza commented on pull request #184: Super sxssf

2020-06-28 Thread GitBox
mobreza commented on pull request #184: URL: https://github.com/apache/poi/pull/184#issuecomment-650908411 Migration from 3.17 (!) to 5.0.0-SNAPSHOT required renaming the `SuperSXSSF*` to `EmittingSXSSF*` and some minor updates:

[GitHub] [poi] mobreza commented on pull request #184: Super sxssf

2020-06-28 Thread GitBox
mobreza commented on pull request #184: URL: https://github.com/apache/poi/pull/184#issuecomment-650743781 I'll check our existing code that uses this extension. What's the URL of the maven SNAPSHOTS repository? This is an

[GitHub] [poi] pjfanning commented on pull request #184: Super sxssf

2020-06-28 Thread GitBox
pjfanning commented on pull request #184: URL: https://github.com/apache/poi/pull/184#issuecomment-650744641 https://github.com/mobreza/poi/pull/1#issuecomment-650729604 provides an example of how to use code (except the `SuperSXXSF` classes are renamed as `EmittingSXXSF`

[GitHub] [poi] pjfanning commented on pull request #184: Super sxssf

2020-06-28 Thread GitBox
pjfanning commented on pull request #184: URL: https://github.com/apache/poi/pull/184#issuecomment-650756831 @mobreza I'm struggling to think of a good name for these classes. SuperSXSSF was too vague but EmittingSXSSF is not right either. How about DeferredSXSSF or LazySXSSF because of

[GitHub] [poi] mobreza commented on pull request #184: Super sxssf

2020-06-28 Thread GitBox
mobreza commented on pull request #184: URL: https://github.com/apache/poi/pull/184#issuecomment-65075 Thanks, will have a look. I was expecting it at https://repository.apache.org/content/groups/snapshots. This is an

[GitHub] [poi] pjfanning commented on pull request #184: Super sxssf

2020-06-28 Thread GitBox
pjfanning commented on pull request #184: URL: https://github.com/apache/poi/pull/184#issuecomment-650744038 when https://builds.apache.org/view/P/view/POI/job/POI-DSL-1.8/1011/ completes - check https://builds.apache.org/view/P/view/POI/job/POI-DSL-1.8/lastSuccessfulBuild/artifact/

[GitHub] [poi] pjfanning commented on pull request #184: Super sxssf

2020-06-28 Thread GitBox
pjfanning commented on pull request #184: URL: https://github.com/apache/poi/pull/184#issuecomment-650742399 Thanks. Merged with https://github.com/apache/poi/commit/f06c45421b1904f196f6aa4c2f99989a1f3185c6 We can treat this as beta for now, as I expect that we might need to add

[GitHub] [poi] asfgit closed pull request #184: Super sxssf

2020-06-28 Thread GitBox
asfgit closed pull request #184: URL: https://github.com/apache/poi/pull/184 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] mobreza commented on pull request #141: Super-streaming SXSSF

2020-06-25 Thread GitBox
mobreza commented on pull request #141: URL: https://github.com/apache/poi/pull/141#issuecomment-649509233 Is there a way to reopen this PR? This is an automated message from the Apache Git Service. To respond to the

[GitHub] [poi] pjfanning commented on pull request #141: Super-streaming SXSSF

2020-06-25 Thread GitBox
pjfanning commented on pull request #141: URL: https://github.com/apache/poi/pull/141#issuecomment-649512790 @mobreza could you create a new MR from your branch? This is an automated message from the Apache Git Service. To

[GitHub] [poi] jandhollander commented on pull request #141: Super-streaming SXSSF

2020-06-25 Thread GitBox
jandhollander commented on pull request #141: URL: https://github.com/apache/poi/pull/141#issuecomment-649478994 @mobreza @pjfanning Is this something that could make it in, in the future? We have a web application that uses SXSSF and would like the download of a workbook to start

[GitHub] [poi] pjfanning commented on pull request #141: Super-streaming SXSSF

2020-06-25 Thread GitBox
pjfanning commented on pull request #141: URL: https://github.com/apache/poi/pull/141#issuecomment-649492993 This PR has been corrupted but if someone wants to create a new one, we might consider it. This is an automated

[GitHub] [poi] netmackan commented on pull request #182: Fix root property size calculation.

2020-06-10 Thread GitBox
netmackan commented on pull request #182: URL: https://github.com/apache/poi/pull/182#issuecomment-641781168 Hi @pjfanning, Unfortunately, I do not own the test file so I can not share it. But I will try to create a new one and get back as soon as I get time. The file

[GitHub] [poi] asfgit closed pull request #182: Fix root property size calculation.

2020-06-10 Thread GitBox
asfgit closed pull request #182: URL: https://github.com/apache/poi/pull/182 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] asfgit closed pull request #181: make Value function work with arrays

2020-06-06 Thread GitBox
asfgit closed pull request #181: URL: https://github.com/apache/poi/pull/181 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] pjfanning commented on pull request #182: Fix root property size calculation.

2020-06-09 Thread GitBox
pjfanning commented on pull request #182: URL: https://github.com/apache/poi/pull/182#issuecomment-641356071 @netmackan is there any extra context you can give us on this issue? The code has probably never supported the scenario you seem to want to fix.

[GitHub] [poi] asfgit closed pull request #191: Fix RuntimeException on array formula referencing blank cell

2020-08-14 Thread GitBox
asfgit closed pull request #191: URL: https://github.com/apache/poi/pull/191 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] RemboL opened a new pull request #191: Fix RuntimeException on array formula referencing blank cell

2020-08-14 Thread GitBox
RemboL opened a new pull request #191: URL: https://github.com/apache/poi/pull/191 I had an array formula that referenced range which contained blank cells - this caused exception, because method evaluateFormulaCellValue did not expect BlankEval. Interestingly enough, this does not happen

[GitHub] [poi] robmv commented on pull request #198: Remove jdk.charset module dependency for spreadsheets generation

2020-11-25 Thread GitBox
robmv commented on pull request #198: URL: https://github.com/apache/poi/pull/198#issuecomment-734036119 > If you get that warning Just for clarifying, I don't get that error, in my machine the build is ok. The Travis CI display that error, see my previous message about the Travis

[GitHub] [poi] pjfanning commented on a change in pull request #203: Prototype nullability annotations

2020-12-06 Thread GitBox
pjfanning commented on a change in pull request #203: URL: https://github.com/apache/poi/pull/203#discussion_r537045639 ## File path: src/java/org/apache/poi/common/usermodel/fonts/FontGroup.java ## @@ -42,10 +44,14 @@ Licensed to the Apache Software Foundation (ASF) under one

[GitHub] [poi] pjfanning commented on a change in pull request #203: Prototype nullability annotations

2020-12-06 Thread GitBox
pjfanning commented on a change in pull request #203: URL: https://github.com/apache/poi/pull/203#discussion_r537047512 ## File path: src/java/org/apache/poi/common/usermodel/fonts/FontGroup.java ## @@ -42,10 +44,14 @@ Licensed to the Apache Software Foundation (ASF) under one

[GitHub] [poi] MariusVolkhart commented on a change in pull request #203: Prototype nullability annotations

2020-12-06 Thread GitBox
MariusVolkhart commented on a change in pull request #203: URL: https://github.com/apache/poi/pull/203#discussion_r536930760 ## File path: src/java/org/apache/poi/common/usermodel/fonts/package-info.java ## @@ -0,0 +1,4 @@ +@NonNullApi Review comment: Marks every

[GitHub] [poi] pjfanning commented on pull request #202: Remove PackagePart#flush() API

2020-12-06 Thread GitBox
pjfanning commented on pull request #202: URL: https://github.com/apache/poi/pull/202#issuecomment-739585879 We have a policy of deprecating code before removing it. I don't think this change is a good idea, even if the code is not really used.

[GitHub] [poi] sigemiz opened a new pull request #204: Fix typo

2020-12-06 Thread GitBox
sigemiz opened a new pull request #204: URL: https://github.com/apache/poi/pull/204 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to

[GitHub] [poi] MariusVolkhart closed pull request #202: Remove PackagePart#flush() API

2020-12-06 Thread GitBox
MariusVolkhart closed pull request #202: URL: https://github.com/apache/poi/pull/202 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go

[GitHub] [poi] pjfanning commented on pull request #204: Fix typo

2020-12-07 Thread GitBox
pjfanning commented on pull request #204: URL: https://github.com/apache/poi/pull/204#issuecomment-739779623 Thanks. Merged using https://github.com/apache/poi/commit/29642eedb1dd488d5da40caaef418c7274f7b769 This is an

[GitHub] [poi] asfgit closed pull request #204: Fix typo

2020-12-07 Thread GitBox
asfgit closed pull request #204: URL: https://github.com/apache/poi/pull/204 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] MariusVolkhart opened a new pull request #202: Remove PackagePart#flush() API

2020-12-05 Thread GitBox
MariusVolkhart opened a new pull request #202: URL: https://github.com/apache/poi/pull/202 This method is never called by the POI code, and none of the built-in implementations have meaningful implementation of the method. PackagePropertiesPart#flush() was called in one location,

[GitHub] [poi] MariusVolkhart opened a new pull request #203: Prototype nullability annotations

2020-12-05 Thread GitBox
MariusVolkhart opened a new pull request #203: URL: https://github.com/apache/poi/pull/203 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above

[GitHub] [poi] MariusVolkhart commented on a change in pull request #203: Prototype nullability annotations

2020-12-05 Thread GitBox
MariusVolkhart commented on a change in pull request #203: URL: https://github.com/apache/poi/pull/203#discussion_r536930125 ## File path: src/java/org/apache/poi/common/usermodel/fonts/FontGroup.java ## @@ -42,10 +44,14 @@ Licensed to the Apache Software Foundation (ASF)

[GitHub] [poi] Alain-Bearez opened a new pull request #201: Bug 64950: handle doughnut hole size

2020-12-04 Thread GitBox
Alain-Bearez opened a new pull request #201: URL: https://github.com/apache/poi/pull/201 I did not have time to test and I will not have time to follow up in the next days. :( This is an automated message from the Apache

[GitHub] [poi] asfgit closed pull request #200: Update OPCPackage#getPartsByRelationshipType docs to reflect behavior

2020-12-08 Thread GitBox
asfgit closed pull request #200: URL: https://github.com/apache/poi/pull/200 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [poi] MariusVolkhart commented on a change in pull request #205: Change XPWFPictureData#getChecksum() to return long instead of Long

2020-12-08 Thread GitBox
MariusVolkhart commented on a change in pull request #205: URL: https://github.com/apache/poi/pull/205#discussion_r538863717 ## File path: src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFPictureData.java ## @@ -146,7 +146,7 @@ public int getPictureType() { return 0;

[GitHub] [poi] pjfanning commented on a change in pull request #205: Change XPWFPictureData#getChecksum() to return long instead of Long

2020-12-08 Thread GitBox
pjfanning commented on a change in pull request #205: URL: https://github.com/apache/poi/pull/205#discussion_r538861083 ## File path: src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFPictureData.java ## @@ -146,7 +146,7 @@ public int getPictureType() { return 0;

[GitHub] [poi] MariusVolkhart opened a new pull request #205: Change XPWFPictureData#getChecksum() to return long instead of Long

2020-12-08 Thread GitBox
MariusVolkhart opened a new pull request #205: URL: https://github.com/apache/poi/pull/205 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above

[GitHub] [poi] pjfanning commented on a change in pull request #206: Improve perfomance of cell evaluation

2020-12-10 Thread GitBox
pjfanning commented on a change in pull request #206: URL: https://github.com/apache/poi/pull/206#discussion_r540110069 ## File path: src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFRow.java ## @@ -49,6 +48,7 @@ Licensed to the Apache Software Foundation (ASF) under one or

[GitHub] [poi] centic9 commented on pull request #201: Bug 64950: handle doughnut hole size

2020-12-10 Thread GitBox
centic9 commented on pull request #201: URL: https://github.com/apache/poi/pull/201#issuecomment-742572225 Test-build is running at https://ci-builds.apache.org/job/POI/job/POI-DSL-Github-PullRequests/1/ This is an

[GitHub] [poi] ledstellar opened a new pull request #206: Improve perfomance of cell evaluation

2020-12-10 Thread GitBox
ledstellar opened a new pull request #206: URL: https://github.com/apache/poi/pull/206 The `SXSSFRow.getRowNum()` method is heavily used from various parts of the code (in particular, from the cell evaluation method). Current implementation of the method is using iterating over sheet rows

[GitHub] [poi] pjfanning edited a comment on pull request #207: add SLF4JLogger

2020-12-17 Thread GitBox
pjfanning edited a comment on pull request #207: URL: https://github.com/apache/poi/pull/207#issuecomment-747676752 merged - https://github.com/apache/poi/commit/e1b0bc6e1db18aa9fe0314ee77559c116742f3cd This is an automated

[GitHub] [poi] pjfanning commented on pull request #207: add SLF4JLogger

2020-12-17 Thread GitBox
pjfanning commented on pull request #207: URL: https://github.com/apache/poi/pull/207#issuecomment-747676752 merged This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub

  1   2   3   4   5   6   7   8   9   10   >