Revision tags: AOO420-Dev5-m5 |
|
93fe1cd1 | 01-Dec-2023 |
John Bampton |
misc: fix spelling, fix test (#189) (cherry picked from commit 1d8849008a84a6bffbaf07728e05ff67da5b8f3b) |
e29da1cf | 01-Dec-2023 |
John Bampton |
misc: fix spelling (#188) (cherry picked from commit 658724749b24075f388495ec64d7dee08bfc1db1) |
509df7cb | 30-Nov-2023 |
John Bampton |
misc: fix spelling (#187) * misc: fix spelling * Update TestExtension.java * Update FilterFactory.idl * Update ExtendedTypeDetectionFactory.idl * Update L
misc: fix spelling (#187) * misc: fix spelling * Update TestExtension.java * Update FilterFactory.idl * Update ExtendedTypeDetectionFactory.idl * Update LocationTest.java * Update HelpComponent.java * Update HelpSearch.java * Update TestExtension.java * Update SOReportJobFactory.java --------- Co-authored-by: Matthias Seidel <mseidel@apache.org> (cherry picked from commit 7f5c89d5b2565ed069498a1c8ac682c2e94f3fe2)
show more ...
|
ebe15e47 | 28-Nov-2023 |
John Bampton |
misc: fix spelling (#186) * misc: fix spelling * Update cmdid.h * Update svdopath.cxx * Update RowSetCache.cxx --------- Co-authored-by: Matthias
misc: fix spelling (#186) * misc: fix spelling * Update cmdid.h * Update svdopath.cxx * Update RowSetCache.cxx --------- Co-authored-by: Matthias Seidel <mseidel@apache.org> (cherry picked from commit 300d4866462a073a2285741ed956e98ff5957a82)
show more ...
|
d271d0d8 | 26-Nov-2023 |
John Bampton |
misc: fix spelling (#185) I think we are OK! (cherry picked from commit 07225a5114337e103be90ecef3d7824f6e2778ac) |
8aad49dc | 19-Nov-2023 |
John Bampton |
misc: fix spelling (#184) (cherry picked from commit 81afc36f7a09c292588450c65ebdfe3d58b4bfc3) |
cbe561cd | 15-Nov-2023 |
John Bampton |
misc: fix spelling (#183) * misc: fix spelling * Update svdedxv.cxx Small additions --------- Co-authored-by: Matthias Seidel <mseidel@apache.org> (ch
misc: fix spelling (#183) * misc: fix spelling * Update svdedxv.cxx Small additions --------- Co-authored-by: Matthias Seidel <mseidel@apache.org> (cherry picked from commit 06fb39a16a5bf3c389e9853a62dce04a425b8019)
show more ...
|
Revision tags: AOO4115-GA, AOO4114-GA |
|
b9aa0698 | 12-Jan-2023 |
Damjan Jovanovic |
In ODF (19.679.2 of ODF 1.3), the <table:covered-table-cell> element's table:number-columns-repeated attribute has a default value of 1, meaning the cell spans the cell to its right. However
In ODF (19.679.2 of ODF 1.3), the <table:covered-table-cell> element's table:number-columns-repeated attribute has a default value of 1, meaning the cell spans the cell to its right. However when the XSLT import filter converts from SpreadsheetML's ss:MergeAcross to ODF's table:number-columns-repeated, it always inserts a <table:covered-table-cell> element, and then adds the table:number-columns-repeated attribute only if it is greater than 1. This breaks when ss:MergeAcross="0", because ODF's defaulting to 1 ends up occupying an extra empty cell to the right when it shouldn't. Fix this by only inserting the <table:covered-table-cell> when ss:MergeAcross > 0. Add a test document to prove this. Fixes #100989 - SpreadsheetML: cell with ss:MergeAcross="0" gets an extra empty cell to the right Patch by: me (cherry picked from commit a896732bfcd282115c06407a2f1da77694fa8d19)
show more ...
|
0f570a54 | 11-Jan-2023 |
Damjan Jovanovic |
Our XSLT-based MS Office 2003 SpreadsheetML format import filter, when doing conversion from R1C1 style column references to our A1 style references, had a bug where it was treating the colum
Our XSLT-based MS Office 2003 SpreadsheetML format import filter, when doing conversion from R1C1 style column references to our A1 style references, had a bug where it was treating the column value as 0-based, and dividing by 26 to find the 1st letter and taking the remainder when divided by 26 for the second letter. Those numbers are then each converted to a letter [0 = nothing, 1 = "A", 2 = "B", ..., 26 = "Z"]. However since R1C1 is 1-based, and not 0-based, this breaks for column numbers which are multiples of 26, as 26 mod 26 = 0, so the least significant digit is converted to nothing while the most significant digit gets incremented too early. Fix this by converting the column number to 0-based by subtracting 1 before calculation, then adding 1 to the least significant digit afterwards. Also the fact we have 2 letters limited us to a maximum of 26^2 = 676 columns, after which column references would wrap around. Fix this too, by adding a 3rd letter, which lets us address a maximum of 17576 columns. Add a sample file to our unit tests. Found by: alex dot plantema at xs4all dot nl Patch by: me (cherry picked from commit 577fe17932e0dec38662067d1a86e7fd6ae525b6)
show more ...
|
Revision tags: AOO420-Dev4-m4 |
|
a1409b3e | 24-Sep-2022 |
Carl Marcum |
Tab function test document and test (#156) Refs i19221 - added test and test document to test star basic Tab function in Calc. Patch-By: Czesław Wolański (cherry picked from com
Tab function test document and test (#156) Refs i19221 - added test and test document to test star basic Tab function in Calc. Patch-By: Czesław Wolański (cherry picked from commit 3b297b461537a449cdc46a885832873b48e62701)
show more ...
|
Revision tags: AOO4113-GA |
|
3b5ec47b | 10-Jun-2022 |
Carl Marcum |
Refs i126272 - add test and test document for testing Basic comment in single-line if statements (#152) * Refs i126272 - added test and test document to test fix for comment in single line i
Refs i126272 - add test and test document for testing Basic comment in single-line if statements (#152) * Refs i126272 - added test and test document to test fix for comment in single line if statement. (cherry picked from commit 07758af81c4094b8c020cf9852c971f9ff19be4f)
show more ...
|
48b860b6 | 14-Jan-2023 |
Damjan Jovanovic |
When importing SpreadsheetML ss:DateTime, import the entire value, not only the first 19 characters. Add a test file for this bug. Fixes: #128554 - Office 2003 SpreadsheetML: fr
When importing SpreadsheetML ss:DateTime, import the entire value, not only the first 19 characters. Add a test file for this bug. Fixes: #128554 - Office 2003 SpreadsheetML: fractional seconds are silently ignored during import Patch by: me (cherry picked from commit 195282cf3d8bfaa9e1cec43b093251d9df87f4ba)
show more ...
|
fcf28a01 | 29-May-2022 |
Carl Marcum |
Fix TestFormulaDocs to run against AOO41X, make parameterized, and fix late screenshots (#149) updated TestFormulaDocs test to be a parameterized test to better see which document failed.
Fix TestFormulaDocs to run against AOO41X, make parameterized, and fix late screenshots (#149) updated TestFormulaDocs test to be a parameterized test to better see which document failed. Fixed late screenshots on failures. Added timeout for dialog hangs when running tests against AOO41X branch due to some BASIC bug fixes for i112383 [1] and it's commit [2] and i117960 [3] and it's commit [4] not being back-ported to AOO41X. [1] https://bz.apache.org/ooo/show_bug.cgi?id=112383 [2] 323c350 [3] https://bz.apache.org/ooo/show_bug.cgi?id=117960 [4] 725d867 (cherry picked from commit 7d8592c79cfa104063570593e943fed55296950b)
show more ...
|
Revision tags: AOO4112-GA |
|
cc57ba34 | 15-Jan-2022 |
mseidel |
Fixed typos, removed whitespace, removed multiple license headers (cherry picked from commit 916729d09a13a81b9710827c57afa2a17578286c) |
a3a36028 | 27-Oct-2021 |
mseidel |
Fixed operation system -> operating system (cherry picked from commit 2c9c3879af5ada9e92ad992096cfc0c875dbfded) |
Revision tags: AOO4111-GA, AOO420-Dev3-m3 |
|
2b3f926e | 04-Jun-2021 |
Carl Marcum |
Refs #i128455# - updated junit to 4.13.2. updated NamedRequest inner class Suite constructor to match the signature of the super class ParentRunner that was the only constructor until JUnit 4.13. No
Refs #i128455# - updated junit to 4.13.2. updated NamedRequest inner class Suite constructor to match the signature of the super class ParentRunner that was the only constructor until JUnit 4.13. Now ParentRunner has a second constructor that made passing a null arg ambiguous. (#131)
show more ...
|
dee6bc11 | 31-May-2021 |
Carl Marcum |
Refs #128452 - JUnit and Hamcrest update for test automation (#130) Refs #128452 - update junit lib from 4.10 to 4.12 added hamcrest 2.2 and updated build and run files. |
ca5bdfe8 | 14-May-2021 |
Carl Marcum |
Tests for warning dialog on certain hyperlinks in documents (i128450) (#128) * Refs #i128450 - added fvt test class for verifying a warning dialog for certain hyperlinks. Added a test me
Tests for warning dialog on certain hyperlinks in documents (i128450) (#128) * Refs #i128450 - added fvt test class for verifying a warning dialog for certain hyperlinks. Added a test method to bvt test so there is some coverage there. added UI mappings for hyperlink dialogs. * Refs #i128450 - removed http and https protcols. * Refs #i128450 - updated comments for change in fvt test method name.
show more ...
|
Revision tags: AOO4110-GA |
|
495a0bca | 09-Jan-2021 |
Carl Marcum |
Flaky tests (#115) work on bvt flaky tests by adding a sleep and/or getting a value before checking the test result. (cherry picked from commit 882d61eb9b6ebfc60c9a29cf74aa165f1d6b0a2a) |
Revision tags: AOO419-GA, AOO418-GA |
|
8b543d73 | 19-Sep-2020 |
Carl Marcum |
Refs #6 - updated junit url to https (#98) (cherry picked from commit ed5580f768e8fa444b6120a915b0ba3ff46754db) |
87fe75f0 | 31-Jul-2020 |
Damjan Jovanovic |
Deal with a test that expects strikeout style (X, /, bold, etc.) to be preserved when saving to .doc, even though neither the fileformat, nor apparently MS Office itself, support that.
Deal with a test that expects strikeout style (X, /, bold, etc.) to be preserved when saving to .doc, even though neither the fileformat, nor apparently MS Office itself, support that. Closes i120656 - the bold,with / and with X strike through change to single when save to doc Patch by: me (cherry picked from commit 4e588b9e25e0ea797c0e7d78b564a1b48a56819e)
show more ...
|
3a0d36e0 | 31-Jul-2020 |
Damjan Jovanovic |
Typo. Patch by: me (cherry picked from commit ff9157e3c2e6eea1bdfb12a088bffba652a52002) |
af962848 | 31-Jul-2020 |
Damjan Jovanovic |
Allow for tested editing time to be a little longer than expected. Patch by: me (cherry picked from commit 13ae91bf77e0f3b925db7293580c0ad450ab5530) |
ac56a168 | 31-Jul-2020 |
Damjan Jovanovic |
Add the registry modification that will disable clearing user personal info on saving, so that saving and reloading fields like revision number can be tested. Closes #i128398# - auto
Add the registry modification that will disable clearing user personal info on saving, so that saving and reloading fields like revision number can be tested. Closes #i128398# - autotest fvt.uno.sd.file.CheckFileProperties loses some DocumentProperties when saving Patch by: me (cherry picked from commit ce8ed6d52e206eeb0bf9eb7547f3b52546514d5e)
show more ...
|
2ee5ff7e | 31-Jul-2020 |
Damjan Jovanovic |
Fix a classic bug that was breaking all registry modifications during tests, where the return value of a string change method was not getting assigned anywhere, and the original read-only str
Fix a classic bug that was breaking all registry modifications during tests, where the return value of a string change method was not getting assigned anywhere, and the original read-only string was expected to be the one changed. Patch by: me (cherry picked from commit 5045dcc653b31c87d6b268d887ec5821c03a2dec)
show more ...
|