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 Tue Feb 19 11:47:42 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 Tue Feb 19 11:46:36 2008 *************** *** 2958,2963 **** --- 2958,2969 ---- XML_LABEL_SEPARATOR, XML_DEPENDENCY, XML_NAV_ORDER, + XML_CONTAINS, + XML_DOES_NOT_CONTAIN, + XML_BEGINS_WITH, + XML_DOES_NOT_BEGIN_WITH, + XML_ENDS_WITH, + XML_DOES_NOT_END_WITH, XML_TOKEN_END }; 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 Tue Feb 19 11:51:56 2008 *************** *** 2959,2964 **** --- 2959,2970 ---- TOKEN( "dependency", XML_DEPENDENCY ), 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 }