History log of /aoo42x/main/filter/source/xslt/ (Results 1 - 25 of 26)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
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 ...

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

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)

45c064b326-Sep-2023 mseidel

Fixed typo (paramter -> parameter) and some other

(cherry picked from commit 0c72d66f1a33589bfa5729d3fc3bdd5e807826ac)

Revision tags: AOO4115-GA, 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 ...

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

Revision tags: AOO420-Dev4-m4
c2104a3920-Nov-2022 mseidel

Fixed typo (conditon -> condition)

(cherry picked from commit 2b19385f2db00c1727c126e5716a0dfcd07b8d6f)

Revision tags: AOO4113-GA, AOO4112-GA, AOO4111-GA, AOO420-Dev3-m3, AOO4110-GA, AOO419-GA
24049bef26-Nov-2020 mseidel

Fixed typos, removed whitespace

(cherry picked from commit 3dd473e4ac4461434a4b21fa5d701c93a7dd66f3)

Revision tags: AOO418-GA
fb0b81f514-Jun-2020 mseidel

Fixed typos (the the -> the) and some more

(cherry picked from commit 7950f2af818787db817abe90d4dbb3d6d8409899)

Revision tags: 420-Dev2-m2, AOO417
8571bd2f13-Jun-2019 Matthias Seidel

Merged r1861305 from trunk

Changed branding OpenOffice.org -> Apache OpenOffice, fixed typos

git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO42X@1861306 13f79535

Merged r1861305 from trunk

Changed branding OpenOffice.org -> Apache OpenOffice, fixed typos

git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO42X@1861306 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO420-Dev-m1, AOO416, AOO416-RC1, AOO415, AOO414, AOO413, AOO4121
30acf5e822-May-2016 pfg

Spelling, spelling ...

Why worry about some sprinkled German when we haven't yet learned English.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1745006 13f79535

Spelling, spelling ...

Why worry about some sprinkled German when we haven't yet learned English.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1745006 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO412, SNAPSHOT, AOO411
07a3d7f129-Apr-2014 Pedro Giffuni

Many spelling fixes: directories a* - g*.

Attempt to clean up most but certainly not all the spelling
mistakes that found home in OpenOffice through decades. We
could probably blame

Many spelling fixes: directories a* - g*.

Attempt to clean up most but certainly not all the spelling
mistakes that found home in OpenOffice through decades. We
could probably blame the international nature of the code but
it is somewhat shameful that this wasn't done before.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591058 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO410, AOO410_Beta, AOO401, AOO400, AOO340
1c11026d23-Jul-2012 Hongyun An

clean the redundant comments about UOF v2.0
Review by Hongyun An from CS2C

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1364477 13f79535-47bb-0310-9956-ffa450edef68

ed89ea2c20-Jul-2012 Armin Le Grand

xslt filter: remove the FLA horror
wordml import filter: replace FLA usage with plain XSLT
Patch by: Michael Stahl

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@13

xslt filter: remove the FLA horror
wordml import filter: replace FLA usage with plain XSLT
Patch by: Michael Stahl

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1363727 13f79535-47bb-0310-9956-ffa450edef68

show more ...

8d3f565e20-Jul-2012 Hongyun An

for revision:1363673,add the UOF v2.0 code,including 33 files,(because of forgetting to add the annotation)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1363677 13f79535-

for revision:1363673,add the UOF v2.0 code,including 33 files,(because of forgetting to add the annotation)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1363677 13f79535-47bb-0310-9956-ffa450edef68

show more ...

d3069caa20-Jul-2012 Hongyun An

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1363673 13f79535-47bb-0310-9956-ffa450edef68

8cc32e1d25-Jun-2012 Lei De Bin

#118057# - fix the word 2003 XML (wordml) filters broken

Found by: mst.ooo dot arcor.de
Patch by: mst.ooo dot arcor.de
Review by: yuanlin <yuanlin.ibm at gmail dot com> and Lei De Bi

#118057# - fix the word 2003 XML (wordml) filters broken

Found by: mst.ooo dot arcor.de
Patch by: mst.ooo dot arcor.de
Review by: yuanlin <yuanlin.ibm at gmail dot com> and Lei De Bin

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1353389 13f79535-47bb-0310-9956-ffa450edef68

show more ...

8eb6fccd29-Mar-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1306685 13f79535-47bb-0310-9956-ffa450edef68

23d132e624-Feb-2012 Pedro Giffuni

i77112 - revert for now: It's not clear why the author did not include this in CWS xsltfilter10.

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1293302 13f79535-47bb-0310-9

i77112 - revert for now: It's not clear why the author did not include this in CWS xsltfilter10.

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1293302 13f79535-47bb-0310-9956-ffa450edef68

show more ...

54b9b0c924-Feb-2012 Pedro Giffuni

i77112 - Patch to run Spreadsheetml XSLT import with JDK5/6 and Saxon. Patch by sus.

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1293286 13f79535-47bb-0310-9956-ffa450ed

i77112 - Patch to run Spreadsheetml XSLT import with JDK5/6 and Saxon. Patch by sus.

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1293286 13f79535-47bb-0310-9956-ffa450edef68

show more ...

1e519d8d31-Dec-2011 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1225987 13f79535-47bb-0310-9956-ffa450edef68


common/math.xsl
common/measure_conversion.xsl
export/common/ooo2ms_docpr.xsl
export/spreadsheetml/formular.xsl
export/spreadsheetml/ooo2spreadsheetml.xsl
export/spreadsheetml/style_mapping.xsl
export/spreadsheetml/styles.xsl
export/spreadsheetml/table.xsl
export/wordml/ooo2wordml.xsl
export/wordml/ooo2wordml_border.xsl
export/wordml/ooo2wordml_custom_draw.xsl
export/wordml/ooo2wordml_draw.xsl
export/wordml/ooo2wordml_field.xsl
export/wordml/ooo2wordml_list.xsl
export/wordml/ooo2wordml_page.xsl
export/wordml/ooo2wordml_path.xsl
export/wordml/ooo2wordml_settings.xsl
export/wordml/ooo2wordml_table.xsl
export/wordml/ooo2wordml_text.xsl
import/common/ms2ooo_docpr.xsl
import/spreadsheetml/spreadsheetml2ooo.xsl
import/wordml/wordml2ooo.xsl
import/wordml/wordml2ooo_custom_draw.xsl
import/wordml/wordml2ooo_draw.xsl
import/wordml/wordml2ooo_field.xsl
import/wordml/wordml2ooo_list.xsl
import/wordml/wordml2ooo_page.xsl
import/wordml/wordml2ooo_path.xsl
import/wordml/wordml2ooo_settings.xsl
import/wordml/wordml2ooo_table.xsl
import/wordml/wordml2ooo_text.xsl
odf2xhtml/export/common/body.xsl
odf2xhtml/export/common/styles/style_collector.xsl
odf2xhtml/export/common/styles/style_mapping_css.xsl
odf2xhtml/export/common/table/table.xsl
odf2xhtml/export/common/table/table_cells.xsl
odf2xhtml/export/common/table/table_columns.xsl
odf2xhtml/export/common/table/table_rows.xsl
odf2xhtml/export/common/table_of_content.xsl
odf2xhtml/export/xhtml/body.xsl
odf2xhtml/export/xhtml/header.xsl
odf2xhtml/export/xhtml/opendoc2xhtml.xsl
odf2xhtml/export/xhtml/table.xsl
2e155b5028-Aug-2011 Eike Rathke

added missing files

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1162590 13f79535-47bb-0310-9956-ffa450edef68

12