History log of /aoo42x/main/filter/source/ (Results 1 - 25 of 215)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
d2b2672117-Jul-2024 mseidel

Fixed typo (completly -> completely) and many more

(cherry picked from commit 870c37922ca0ef0ac9f3f6f409d697814dc73d8a)

1fb1d6b811-Jun-2024 John Bampton

Fix spelling (#218)

* Fix spelling

* Update spreadsheetml2ooo.xsl

---------

Co-authored-by: Matthias Seidel <mseidel@apache.org>
(cherry picked from commit 99a

Fix spelling (#218)

* Fix spelling

* Update spreadsheetml2ooo.xsl

---------

Co-authored-by: Matthias Seidel <mseidel@apache.org>
(cherry picked from commit 99ad85ff5d61cf2054d3df3b4503ee1b84f3f4d0)

show more ...

4e167d9c11-Jun-2024 John Bampton

Fix spelling (#217)

Thanks!
Also corrected some Windows CRLF.

(cherry picked from commit abfbd45ab9c232a6256d927aa27fe09a250de2cc)

4200b70501-Apr-2024 John Bampton

Fix spelling in code comments (#210)

* Fix spelling in code comments

* Update wordml2ooo_field.xsl

* Update ooo2wordml_border.xsl

---------

Co-authored-by

Fix spelling in code comments (#210)

* Fix spelling in code comments

* Update wordml2ooo_field.xsl

* Update ooo2wordml_border.xsl

---------

Co-authored-by: Matthias Seidel <mseidel@apache.org>
(cherry picked from commit c809b0d38055f2551e1d74a528bd818a9857f3c8)

show more ...

c34b68ab21-Feb-2024 John Bampton

docs: fix spelling in code comments (#203)

(cherry picked from commit c938ccda3ac505248a9f1ba389738d0de385daba)

Revision tags: AOO420-Dev5-m5
ebe15e4728-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 ...

d271d0d826-Nov-2023 John Bampton

misc: fix spelling (#185)

I think we are OK!

(cherry picked from commit 07225a5114337e103be90ecef3d7824f6e2778ac)

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

1784980f03-Oct-2023 mseidel

Fixed typos, fixed mixed indentation, removerd whitespace

(cherry picked from commit f667543289ac266f8a98fbe20467995f22658975)

45c064b326-Sep-2023 mseidel

Fixed typo (paramter -> parameter) and some other

(cherry picked from commit 0c72d66f1a33589bfa5729d3fc3bdd5e807826ac)

facfa76918-Sep-2023 mseidel

Maintenance cleanup

(cherry picked from commit ce48dd1f26396c7ab9fed48d2df6a6b2bfcf6e06)

eeb5090027-Jun-2023 mseidel

It is Portable Network Graphics, not Graphic

(cherry picked from commit 434ee1f83a744cf74ad9410985e99646680a8e7b)

5db5960c22-May-2023 mseidel

Fixed typos (unknown) and some other, removed whitespace

(cherry picked from commit 95e2fe77240256cfc0711c47019d8b74a6327be0)

0cd1d3bc26-Feb-2023 mseidel

Using vim modeline, cleanup

(cherry picked from commit 8c733e3e3dc39b4d0997cd00d76f346f7fdf5138)

334b405c19-Feb-2023 mseidel

Cleanup Make files

(cherry picked from commit 41deec9fbf385ebd2ff21199e9eb3301a269d33d)

Revision tags: AOO4115-GA
7a98084212-Feb-2023 DamjanJovanovic

Merge pull request #164 from DamjanJovanovic/editeng-32bit-paragraphs

Update EditEngine code to use 32 bit paragraph storage

(cherry picked from commit d5edfd09768da46c2f9d7c365bf67

Merge pull request #164 from DamjanJovanovic/editeng-32bit-paragraphs

Update EditEngine code to use 32 bit paragraph storage

(cherry picked from commit d5edfd09768da46c2f9d7c365bf67318f0694735)

show more ...

Revision tags: AOO4114-GA
b9aa069812-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 ...

0f570a5411-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 ...

48b860b614-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 ...

470c0b0b28-Jan-2023 Arrigo Marchiori

Add a "referer" property to SfxObjectShell::CallXScript() and trust macros explicitly requested by the user

(cherry picked from commit 9112548547be8d3a47281bcef5925a60e1435527)

Revision tags: AOO420-Dev4-m4
8b614d9109-Dec-2022 Arrigo Marchiori

Detect some endless loops

(cherry picked from commit 272eca8e075d834a9a9235a4c9e52e17c2276f2f)

48a2f9cd13-Jan-2023 Damjan Jovanovic

Dates and times are loaded wrongly from SpreadsheetML files, because the filter
loads only the date or time portion of the ss:DateTime based on the cell's
style.

Rather always load t

Dates and times are loaded wrongly from SpreadsheetML files, because the filter
loads only the date or time portion of the ss:DateTime based on the cell's
style.

Rather always load the ss:DateTime as our ODF office:date-value in the
XMLSchema-2 dateTime format, with both its date and time part, and then rely on
formatting to display only the date or time as desired.

Fixes: #82849 - SpreadsheetML ss:DateTime cell value is loaded as either only
a date or a time

Patch by: Philip J. Turmel <philip@turmel.org>
Reviewed by: me

(cherry picked from commit 0db4a4f44da1c0fb06154ba61c960a18427e751b)

show more ...

c2104a3920-Nov-2022 mseidel

Fixed typo (conditon -> condition)

(cherry picked from commit 2b19385f2db00c1727c126e5716a0dfcd07b8d6f)

4b08535211-Aug-2022 mseidel

Fixed Powerpoint -> PowerPoint

(cherry picked from commit 96eff78449471f0a47d9dd67e20ea2d4ec78fe8d)

Revision tags: AOO4113-GA, AOO4112-GA, AOO4111-GA
e62cf9b415-Aug-2021 mseidel

Fixed typos, removed whitespace

(cherry picked from commit 8b7f65dd6db2479b7ae7529f8b484f6095fe9ada)

123456789