diff -cNr xmloff/inc/xmlkywd.hxx xmloff.new/inc/xmlkywd.hxx *** xmloff/inc/xmlkywd.hxx Mon Feb 18 13:38:00 2008 --- xmloff.new/inc/xmlkywd.hxx Mon Feb 18 13:21:54 2008 *************** *** 2002,2005 **** --- 2002,2012 ---- XML_CONSTASCII_ACTION( sXML_page_continuation, "page-continuation" ); + XML_CONSTASCII_ACTION( sXML_contains, "contains" ); + XML_CONSTASCII_ACTION( sXML_does_not_contain, "does-not-contain" ); + XML_CONSTASCII_ACTION( sXML_begins_with, "begins-with" ); + XML_CONSTASCII_ACTION( sXML_does_not_begin_with, "does-not-begin-with" ); + XML_CONSTASCII_ACTION( sXML_ends_with, "ends-with" ); + XML_CONSTASCII_ACTION( sXML_does_not_end_with, "does-not-end-with" ); + #endif diff -cNr xmloff/inc/xmloff/xmltoken.hxx xmloff.new/inc/xmloff/xmltoken.hxx *** xmloff/inc/xmloff/xmltoken.hxx Mon Feb 18 13:38:08 2008 --- xmloff.new/inc/xmloff/xmltoken.hxx Mon Feb 18 13:21:58 2008 *************** *** 283,288 **** --- 283,289 ---- XML_BASE_CELL_ADDRESS, XML_BASELINE, XML_BEFORE_DATE_TIME, + XML_BEGINS_WITH, XML_BELOW, XML_BETWEEN_DATE_TIMES, XML_BEVEL, *************** *** 429,434 **** --- 430,436 ---- XML_COMPOSE, XML_COND_STYLE_NAME, XML_CONDITION, + XML_CONTAINS, XML_CONDITION_SOURCE, XML_CONDITION_SOURCE_RANGE_ADDRESS, XML_CONDITIONAL_TEXT, *************** *** 610,615 **** --- 612,620 ---- XML_DOCUMENT_STATISTIC, XML_DOCUMENT_STYLES, XML_DOMAIN, + XML_DOES_NOT_CONTAIN, + XML_DOES_NOT_BEGIN_WITH, + XML_DOES_NOT_END_WITH, XML_DOT, XML_DOTS1, XML_DOTS1_LENGTH, *************** *** 666,671 **** --- 671,677 ---- XML_ENDNOTE_CITATION, XML_ENDNOTE_REF, XML_ENDNOTES_CONFIGURATION, + XML_ENDS_WITH, XML_ENGRAVED, XML_EQ, XML_EQUAL_AUTHOR, diff -cNr xmloff/source/core/xmltoken.cxx xmloff.new/source/core/xmltoken.cxx *** xmloff/source/core/xmltoken.cxx Mon Feb 18 13:38:16 2008 --- xmloff.new/source/core/xmltoken.cxx Mon Feb 18 13:59:54 2008 *************** *** 2960,2965 **** --- 2960,2972 ---- TOKEN( "nav-order", XML_NAV_ORDER ), + TOKEN( "contains", XML_CONTAINS ), + TOKEN( "does-not-contain", XML_DOES_NOT_CONTAIN ), + TOKEN( "begins-with", XML_BEGINS_WITH ), + TOKEN( "does-not-begins-with", XML_DOES_NOT_BEGIN_WITH ), + TOKEN( "ends-with", XML_ENDS_WITH ), + TOKEN( "does-not-end-with", XML_DOES_NOT_END_WITH ), + #if OSL_DEBUG_LEVEL > 0 { 0, NULL, NULL, XML_TOKEN_END } #else