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

Fixed typo (completly -> completely) and many more

99ad85ff11-Jun-2024 John Bampton

Fix spelling (#218)

* Fix spelling

* Update spreadsheetml2ooo.xsl

---------

Co-authored-by: Matthias Seidel <mseidel@apache.org>

abfbd45a11-Jun-2024 John Bampton

Fix spelling (#217)

Thanks!
Also corrected some Windows CRLF.

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

show more ...

c938ccda21-Feb-2024 John Bampton

docs: fix spelling in code comments (#203)

Revision tags: AOO420-Dev5-m5
300d486628-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>

show more ...

07225a5126-Nov-2023 John Bampton

misc: fix spelling (#185)

I think we are OK!

06fb39a115-Nov-2023 John Bampton

misc: fix spelling (#183)

* misc: fix spelling

* Update svdedxv.cxx

Small additions

---------

Co-authored-by: Matthias Seidel <mseidel@apache.org>

f667543203-Oct-2023 mseidel

Fixed typos, fixed mixed indentation, removerd whitespace

0c72d66f26-Sep-2023 mseidel

Fixed typo (paramter -> parameter) and some other

ce48dd1f18-Sep-2023 mseidel

Maintenance cleanup

434ee1f827-Jun-2023 mseidel

It is Portable Network Graphics, not Graphic

95e2fe7722-May-2023 mseidel

Fixed typos (unknown) and some other, removed whitespace

8c733e3e26-Feb-2023 mseidel

Using vim modeline, cleanup

41deec9f19-Feb-2023 mseidel

Cleanup Make files

Revision tags: AOO4115-GA
d5edfd0912-Feb-2023 DamjanJovanovic

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

Update EditEngine code to use 32 bit paragraph storage


9112548528-Jan-2023 Arrigo Marchiori

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

aee1515d19-Jan-2023 Arrigo Marchiori

Merge branch 'ppt' into trunk

This work was based on Zhangjiaxing's (@R0fM1a) reports.


Revision tags: AOO4114-GA
195282cf14-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

show more ...

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

show more ...

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

show more ...

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

show more ...

Revision tags: AOO420-Dev4-m4, AOO4113-GA, AOO4112-GA
36a4646202-Jan-2022 Damjan Jovanovic

Convert all instances of SetParaAttribs() to take a 32 bit paragraph index.

Patch by: me

c2eaa08201-Jan-2023 Damjan Jovanovic

Preliminary attempt to convert all instances of GetParagraphCount()
to return a sal_uInt32 or sal_uLong, and fix any related problems
in all their callers.

Patch by: me

272eca8e09-Dec-2022 Arrigo Marchiori

Detect some endless loops

123456789