History log of /aoo41x/main/writerfilter/source/doctok/ (Results 1 - 23 of 23)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: AOO420-Dev5-m5, AOO4115-GA, AOO4114-GA, AOO420-Dev4-m4, AOO4113-GA, AOO4112-GA, AOO4111-GA, AOO420-Dev3-m3, AOO4110-GA, AOO419-GA, AOO418-GA, 420-Dev2-m2, AOO417, AOO420-Dev-m1, AOO416, AOO416-RC1, AOO415, AOO414, AOO413, AOO4121, AOO412, SNAPSHOT, AOO411
be7fbbea06-Sep-2015 Pedro Giffuni

Clean up all of typos that cause header guard warnings when building the
OpenOffice source with clang.

Submitted by: Don Lewis

git-svn-id: https://svn.apache.org/repos/asf/ope

Clean up all of typos that cause header guard warnings when building the
OpenOffice source with clang.

Submitted by: Don Lewis

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1701535 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit c64f2bbd0edaad703073b2f91f32833ae4aefc42)

show more ...

881812ae21-Oct-2020 Jim Jagielski

restore

3d95fef421-Oct-2020 Jim Jagielski

canon way to test

9510f38416-Sep-2020 Don Lewis

Fix writerfilter build on CentOS 5 with recent libxslt.

xsltproc generates a corrupt writerfilter/.../inc/doctok/resources.hxx
file on CentOS 5 with libxslt 1.1.33 or newer. This does n

Fix writerfilter build on CentOS 5 with recent libxslt.

xsltproc generates a corrupt writerfilter/.../inc/doctok/resources.hxx
file on CentOS 5 with libxslt 1.1.33 or newer. This does not happen
with the CentOS 5 native version of xsltproc/libxslt, or with any version
of xsltproc/libxslt on CentOS 6 or newer. The problem is that this xsl:
<xsl:if test="$shift>0">
evaluates as true if $shift is an empty string on CentOS 5 with new
libxslt and evaluates as false everywhere else. Work around this by
changing the xsl to:
<xsl:if test="string-length($shift)>0 and $shift>0">
Curiously:
<xsl:if test="$shift">
also does not work properly, which is surprising since both "0" and ""
should evaluate to false in a boolean context.

show more ...

Revision tags: AOO410, AOO410_Beta
14ac695d07-Feb-2014 Oliver-Rainer Wittmann

123345: import - correct handling of sub tables
import - import table's left margin
import - set table's bottom margin explicitly



git-svn-id: https://svn.ap

123345: import - correct handling of sub tables
import - import table's left margin
import - set table's bottom margin explicitly



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

show more ...

b862c97c28-Jan-2014 Herbert Dürr

#i124131# use smart pointer's bool operator instead of comparing its content against NULL

this makes the code more typesafe and avoids the -Wnull-conversion warnings
seen with boost>=1.5

#i124131# use smart pointer's bool operator instead of comparing its content against NULL

this makes the code more typesafe and avoids the -Wnull-conversion warnings
seen with boost>=1.55 smart pointers in C+11 enabled build environments


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

show more ...

ab31a70119-Dec-2013 Oliver-Rainer Wittmann

113059: *.docx import: correct handling of comment/annotation, footnote and endnote IDs for parsing the corresponding sub streams

Kudos to Pavel <paveljanik@apache.org> for his analy

113059: *.docx import: correct handling of comment/annotation, footnote and endnote IDs for parsing the corresponding sub streams

Kudos to Pavel <paveljanik@apache.org> for his analysis and findings

cherry-picked from branch ooxml-osba



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

show more ...

Revision tags: AOO401, AOO400
52845faf30-Nov-2012 Yuri Dario

i118923 - OS/2 port: use of gcc style import libraries.

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

Revision tags: AOO340
3a3c740115-Jun-2012 Herbert Dürr

#c705103# fix WW8SttbRgtplc::getEntry() for positive index argument

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

30cfceef30-Mar-2012 Andrew Rist

Update headers to Alv2 headers

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

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

90af1b4f29-Mar-2012 Andrew Rist

Update headers to Alv2 headers

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

1054447728-Mar-2012 Andre Fischer

Added AL2 license.

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

b31e36b322-Feb-2012 Andrew Rist

Update headers to Alv2 headers

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

e4af8f1124-Jan-2012 Pedro Giffuni

Avoid some uses of non portable #!/bin/bash in shell scripts.

bash is common in GNU/linux but is, in general, not
available by default on other systems or likely to
be in a different

Avoid some uses of non portable #!/bin/bash in shell scripts.

bash is common in GNU/linux but is, in general, not
available by default on other systems or likely to
be in a different place. When possible /bin/sh
should be used but if bash extensions are required
"#!/bin/env bash" is considered more portable.


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

show more ...

705deb1a18-Jan-2012 Andrew Rist

Update headers to Alv2 headers

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

8809db7a18-Jan-2012 Andrew Rist

Update headers to Alv2 headers

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

e76eebc612-Jan-2012 Andrew Rist

Update headers to Alv2 headers

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

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

b8a377c606-Nov-2011 Andrew Rist

Update headers to Alv2 headers

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

b4a4f18c06-Nov-2011 Andrew Rist

Update headers to Alv2 headers

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

af750e9629-Aug-2011 Mathias Bauer

added some more missing files

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

cdf0e10c16-Aug-2011 rcweir

Initial import of the old OOo hg repository tip revision.

.../trunk/main is a copy of (currently tip-most)
http://hg.services.openoffice.org/OOO340/rev/c904c1944462

.../trunk/

Initial import of the old OOo hg repository tip revision.

.../trunk/main is a copy of (currently tip-most)
http://hg.services.openoffice.org/OOO340/rev/c904c1944462

.../trunk/extras/l10n is a copy of (currently tip-most)
http://hg.services.openoffice.org/master_l10n/OOO340/rev/af6bc9467af5

Note that the following files with line-end and/or encoding anomalies were left out (they will need to be to be checked in separately):

/ooo/trunk/core/dictionaries/de_DE/README_hyph_de_DE.txt
/ooo/trunk/core/dictionaries/de_CH/README_hyph_de_CH.txt
/ooo/trunk/core/dictionaries/de_AT/README_hyph_de_AT.txt
/ooo/trunk/core/gettext/gettext-0.18.1.1.patch
/ooo/trunk/core/apache-commons/patches/codec.patch
/ooo/trunk/core/libcroco/libcroco-0.6.2.patch
/ooo/trunk/core/testautomation/writer/optional/input/import/mactext.txt
/ooo/trunk/core/graphite/graphite-2.3.1.patch
/ooo/trunk/core/hwpfilter/source/hwpeq.cpp
/ooo/trunk/core/solenv/bin/cwstouched.pl
/ooo/trunk/core/readlicense_oo/html/THIRDPARTYLICENSEREADME.html
/ooo/trunk/core/writerfilter/source/doctok/escher.html
/ooo/trunk/core/writerfilter/source/odiapi/qname/resource/office2003/WordprocessingML Schemas/xsdlib.xsd
/ooo/trunk/core/writerfilter/source/odiapi/qname/resource/office2003/WordprocessingML Schemas/wordnetaux.xsd
/ooo/trunk/core/filter/source/xslt/odf2xhtml/export/common/body.xsl
/ooo/trunk/core/filter/source/xslt/odf2xhtml/export/common/styles/style_mapping_css.xsl

Also: Repository.mk from the l10n toplevel


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

show more ...