xref: /trunk/main/xmloff/inc/xmloff/xmlkywd.hxx (revision ecfe53c5)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef _XMLOFF_XMLKYWD_HXX
25 #define _XMLOFF_XMLKYWD_HXX
26 
27 #include <tools/string.hxx>
28 
29 /*
30  * THIS FILE IS DEPRECATED. IT IS SUPERSEDED BY XMLTOKEN.HXX.
31  *
32  * Please use xmltoken.hxx / xmltoken.cxx from now on.
33  */
34 
35 
36 /* if XML_DEFINE_KEYWORDS is defined the variables are
37    defined rather than declared. So this file MUST be included
38    WITHOUT this define.
39 
40    (Except the xmlkywd.cxx file that actually defines the
41     variables which sets this define.)
42  */
43 
44 #ifndef XML_DEFINE_KEYWORDS
45 #define XML_CONSTASCII_ACTION( n, s ) extern sal_Char __FAR_DATA n[sizeof(s)]
46 #else
47 #define XML_CONSTASCII_ACTION( n, s ) sal_Char __FAR_DATA n[sizeof(s)] = s
48 #endif
49 
50 // common XML
51 XML_CONSTASCII_ACTION( sXML_CDATA, "CDATA" );
52 XML_CONSTASCII_ACTION( sXML_WS, " " );
53 XML_CONSTASCII_ACTION( sXML_xml, "xml" );
54 XML_CONSTASCII_ACTION( sXML_xmlns, "xmlns" );
55 XML_CONSTASCII_ACTION( sXML_xml_pi, "version=\"1.0\" encoding=\"UTF-8\"" );
56 XML_CONSTASCII_ACTION( sXML_xml_doctype_prefix, "<!DOCTYPE " );
57 XML_CONSTASCII_ACTION( sXML_xml_doctype_suffix, " PUBLIC \"-//OpenOffice.org//DTD OfficeDocument 1.0//EN\" \"office.dtd\">" );
58 
59 // namespace prefixes and names
60 XML_CONSTASCII_ACTION( sXML_np_office, "office" );
61 XML_CONSTASCII_ACTION( sXML_n_office, "http://openoffice.org/2000/office" );
62 XML_CONSTASCII_ACTION( sXML_n_office_old, "http://sun.com/xmlns/staroffice/office" );
63 XML_CONSTASCII_ACTION( sXML_np_meta, "meta" );
64 XML_CONSTASCII_ACTION( sXML_n_meta, "http://openoffice.org/2000/meta" );
65 XML_CONSTASCII_ACTION( sXML_n_meta_old, "http://sun.com/xmlns/staroffice/meta" );
66 XML_CONSTASCII_ACTION( sXML_np_style, "style" );
67 XML_CONSTASCII_ACTION( sXML_n_style, "http://openoffice.org/2000/style" );
68 XML_CONSTASCII_ACTION( sXML_n_style_old, "http://sun.com/xmlns/staroffice/style" );
69 XML_CONSTASCII_ACTION( sXML_np_number, "number" );
70 XML_CONSTASCII_ACTION( sXML_n_number, "http://openoffice.org/2000/datastyle" );
71 XML_CONSTASCII_ACTION( sXML_n_number_old, "http://sun.com/xmlns/staroffice/number" );
72 XML_CONSTASCII_ACTION( sXML_np_text, "text" );
73 XML_CONSTASCII_ACTION( sXML_n_text, "http://openoffice.org/2000/text" );
74 XML_CONSTASCII_ACTION( sXML_n_text_old, "http://sun.com/xmlns/staroffice/text" );
75 XML_CONSTASCII_ACTION( sXML_np_table, "table" );
76 XML_CONSTASCII_ACTION( sXML_n_table, "http://openoffice.org/2000/table" );
77 XML_CONSTASCII_ACTION( sXML_n_table_old, "http://sun.com/xmlns/staroffice/table" );
78 XML_CONSTASCII_ACTION( sXML_np_draw, "draw" );
79 XML_CONSTASCII_ACTION( sXML_n_draw, "http://openoffice.org/2000/drawing" );
80 XML_CONSTASCII_ACTION( sXML_np_dr3d, "dr3d" );
81 XML_CONSTASCII_ACTION( sXML_n_dr3d, "http://openoffice.org/2000/dr3d" );
82 XML_CONSTASCII_ACTION( sXML_n_draw_old, "http://sun.com/xmlns/staroffice/draw" );
83 XML_CONSTASCII_ACTION( sXML_np_presentation, "presentation" );
84 XML_CONSTASCII_ACTION( sXML_n_presentation, "http://openoffice.org/2000/presentation" );
85 XML_CONSTASCII_ACTION( sXML_n_presentation_old, "http://sun.com/xmlns/staroffice/presentation" );
86 XML_CONSTASCII_ACTION( sXML_np_chart, "chart" );
87 XML_CONSTASCII_ACTION( sXML_n_chart, "http://openoffice.org/2000/chart" );
88 XML_CONSTASCII_ACTION( sXML_np_config, "config" );
89 XML_CONSTASCII_ACTION( sXML_n_config, "http://openoffice.org/2001/config" );
90 XML_CONSTASCII_ACTION( sXML_n_chart_old, "http://sun.com/xmlns/staroffice/chart" );
91 XML_CONSTASCII_ACTION( sXML_np_fo, "fo" );
92 XML_CONSTASCII_ACTION( sXML_n_fo_old, "http://www.w3.org/1999/XSL/Format/" );
93 XML_CONSTASCII_ACTION( sXML_n_fo, "http://www.w3.org/1999/XSL/Format" );
94 XML_CONSTASCII_ACTION( sXML_np_xlink, "xlink" );
95 XML_CONSTASCII_ACTION( sXML_n_xlink, "http://www.w3.org/1999/xlink" );
96 XML_CONSTASCII_ACTION( sXML_n_xlink_old, "http://www.w3.org/1999/xlink/namespace" );
97 XML_CONSTASCII_ACTION( sXML_np_dc, "dc" );
98 XML_CONSTASCII_ACTION( sXML_n_dc, "http://purl.org/dc/elements/1.1/" );
99 XML_CONSTASCII_ACTION( sXML_np_svg, "svg" );
100 XML_CONSTASCII_ACTION( sXML_n_svg, "http://www.w3.org/2000/svg" );
101 XML_CONSTASCII_ACTION( sXML_namespace_form, "form" );
102 XML_CONSTASCII_ACTION( sXML_url_form, "http://openoffice.org/2000/form" );
103 XML_CONSTASCII_ACTION( sXML_namespace_script, "script" );
104 XML_CONSTASCII_ACTION( sXML_url_script, "http://openoffice.org/2000/script" );
105 
106 XML_CONSTASCII_ACTION( sXML_np_block_list, "block-list");
107 XML_CONSTASCII_ACTION( sXML_n_block_list, "http://openoffice.org/2001/block-list" );
108 
109 XML_CONSTASCII_ACTION( sXML_np_math, "math");
110 XML_CONSTASCII_ACTION( sXML_n_math, "http://www.w3.org/1998/Math/MathML" );
111 
112 XML_CONSTASCII_ACTION( sXML_np_versions_list, "VL");
113 XML_CONSTASCII_ACTION( sXML_n_versions_list, "http://openoffice.org/2001/versions-list" );
114 
115 // units
116 XML_CONSTASCII_ACTION( sXML_unit_mm, "mm" );
117 XML_CONSTASCII_ACTION( sXML_unit_m, "m" );
118 XML_CONSTASCII_ACTION( sXML_unit_km, "km" );
119 XML_CONSTASCII_ACTION( sXML_unit_cm, "cm" );
120 XML_CONSTASCII_ACTION( sXML_unit_pt, "pt" );
121 XML_CONSTASCII_ACTION( sXML_unit_pc, "pc" );
122 XML_CONSTASCII_ACTION( sXML_unit_foot, "ft" );
123 XML_CONSTASCII_ACTION( sXML_unit_miles, "mi" );
124 XML_CONSTASCII_ACTION( sXML_unit_inch, "inch" );
125 
126 // any other
127 XML_CONSTASCII_ACTION( sXML_1, "1" );
128 XML_CONSTASCII_ACTION( sXML_10, "10" );
129 XML_CONSTASCII_ACTION( sXML_2, "2" );
130 XML_CONSTASCII_ACTION( sXML_3, "3" );
131 XML_CONSTASCII_ACTION( sXML_4, "4" );
132 XML_CONSTASCII_ACTION( sXML_5, "5" );
133 XML_CONSTASCII_ACTION( sXML_6, "6" );
134 XML_CONSTASCII_ACTION( sXML_7, "7" );
135 XML_CONSTASCII_ACTION( sXML_8, "8" );
136 XML_CONSTASCII_ACTION( sXML_9, "9" );
137 XML_CONSTASCII_ACTION( sXML_A, "A" );
138 XML_CONSTASCII_ACTION( sXML_I, "I" );
139 XML_CONSTASCII_ACTION( sXML_IBM437, "IBM437" );
140 XML_CONSTASCII_ACTION( sXML_IBM850, "IBM850" );
141 XML_CONSTASCII_ACTION( sXML_IBM860, "IBM860" );
142 XML_CONSTASCII_ACTION( sXML_IBM861, "IBM861" );
143 XML_CONSTASCII_ACTION( sXML_IBM863, "IBM863" );
144 XML_CONSTASCII_ACTION( sXML_IBM865, "IBM865" );
145 XML_CONSTASCII_ACTION( sXML_ISO_8859_1, "ISO-8859-1" );
146 XML_CONSTASCII_ACTION( sXML_OLE2, "ole2" );
147 XML_CONSTASCII_ACTION( sXML__colon, ":" );
148 XML_CONSTASCII_ACTION( sXML__empty, "" );
149 XML_CONSTASCII_ACTION( sXML__unknown_, "_unknown_" );
150 XML_CONSTASCII_ACTION( sXML_a, "a" );
151 XML_CONSTASCII_ACTION( sXML_abbreviated_name, "abbreviated-name" );
152 XML_CONSTASCII_ACTION( sXML_above, "above" );
153 XML_CONSTASCII_ACTION( sXML_abs, "abs" );
154 XML_CONSTASCII_ACTION( sXML_accent, "accent" );
155 XML_CONSTASCII_ACTION( sXML_accentunder, "accentunder" );
156 XML_CONSTASCII_ACTION( sXML_acceptance_state, "acceptance-state" );
157 XML_CONSTASCII_ACTION( sXML_accepted, "accepted" );
158 XML_CONSTASCII_ACTION( sXML_action, "action" );
159 XML_CONSTASCII_ACTION( sXML_active, "active" );
160 XML_CONSTASCII_ACTION( sXML_active_split_range, "active-split-range" );
161 XML_CONSTASCII_ACTION( sXML_active_table, "active-table" );
162 XML_CONSTASCII_ACTION( sXML_actuate, "actuate" );
163 XML_CONSTASCII_ACTION( sXML_add_in, "add-in" );
164 XML_CONSTASCII_ACTION( sXML_add_in_name, "add-in-name" );
165 XML_CONSTASCII_ACTION( sXML_address, "address" );
166 XML_CONSTASCII_ACTION( sXML_adjustment, "adjustment" );
167 XML_CONSTASCII_ACTION( sXML_algorithm, "algorithm" );
168 XML_CONSTASCII_ACTION( sXML_align, "align" );
169 XML_CONSTASCII_ACTION( sXML_all, "all" );
170 XML_CONSTASCII_ACTION( sXML_allow_empty_cell, "allow-empty-cell" );
171 XML_CONSTASCII_ACTION( sXML_alphabetical_index, "alphabetical-index" );
172 XML_CONSTASCII_ACTION( sXML_alphabetical_index_auto_mark_file, "alphabetical-index-auto-mark-file" );
173 XML_CONSTASCII_ACTION( sXML_alphabetical_index_entry_template, "alphabetical-index-entry-template" );
174 XML_CONSTASCII_ACTION( sXML_alphabetical_index_mark, "alphabetical-index-mark" );
175 XML_CONSTASCII_ACTION( sXML_alphabetical_index_mark_end, "alphabetical-index-mark-end" );
176 XML_CONSTASCII_ACTION( sXML_alphabetical_index_mark_start, "alphabetical-index-mark-start" );
177 XML_CONSTASCII_ACTION( sXML_alphabetical_index_source, "alphabetical-index-source" );
178 XML_CONSTASCII_ACTION( sXML_alphabetical_separators, "alphabetical-separators" );
179 XML_CONSTASCII_ACTION( sXML_alternate, "alternate" );
180 XML_CONSTASCII_ACTION( sXML_am_pm, "am-pm" );
181 XML_CONSTASCII_ACTION( sXML_ambient_color, "ambient-color");
182 XML_CONSTASCII_ACTION( sXML_anchor_page_number, "anchor-page-number" );
183 XML_CONSTASCII_ACTION( sXML_anchor_type, "anchor-type" );
184 XML_CONSTASCII_ACTION( sXML_and, "and" );
185 XML_CONSTASCII_ACTION( sXML_animation, "animation" );
186 XML_CONSTASCII_ACTION( sXML_animation_direction, "animation-direction" );
187 XML_CONSTASCII_ACTION( sXML_animation_start_inside, "animation-start-inside" );
188 XML_CONSTASCII_ACTION( sXML_animation_stop_inside, "animation-stop-inside" );
189 XML_CONSTASCII_ACTION( sXML_animation_repeat, "animation-repeat" );
190 XML_CONSTASCII_ACTION( sXML_animation_delay, "animation-delay" );
191 XML_CONSTASCII_ACTION( sXML_animation_steps, "animation-steps" );
192 XML_CONSTASCII_ACTION( sXML_annotation, "annotation" );
193 XML_CONSTASCII_ACTION( sXML_annotations, "annotations" );
194 XML_CONSTASCII_ACTION( sXML_annote, "annote" );
195 XML_CONSTASCII_ACTION( sXML_applet, "applet");
196 XML_CONSTASCII_ACTION( sXML_applet_name, "applet-name");
197 XML_CONSTASCII_ACTION( sXML_application_data, "application-data");
198 XML_CONSTASCII_ACTION( sXML_application_xml, "application-xml");
199 XML_CONSTASCII_ACTION( sXML_apply, "apply" );
200 XML_CONSTASCII_ACTION( sXML_apply_style_name, "apply-style-name" );
201 XML_CONSTASCII_ACTION( sXML_aqua, "aqua" );
202 XML_CONSTASCII_ACTION( sXML_arccos, "arccos" );
203 XML_CONSTASCII_ACTION( sXML_archive, "archive" );
204 XML_CONSTASCII_ACTION( sXML_arcsin, "arcsin" );
205 XML_CONSTASCII_ACTION( sXML_arctan, "arctan" );
206 XML_CONSTASCII_ACTION( sXML_area, "area" );
207 XML_CONSTASCII_ACTION( sXML_area_circle, "area-circle" );
208 XML_CONSTASCII_ACTION( sXML_area_polygon, "area-polygon" );
209 XML_CONSTASCII_ACTION( sXML_area_rectangle, "area-rectangle" );
210 XML_CONSTASCII_ACTION( sXML_article, "article" );
211 XML_CONSTASCII_ACTION( sXML_as_char, "as-char" );
212 XML_CONSTASCII_ACTION( sXML_ascending, "ascending");
213 XML_CONSTASCII_ACTION( sXML_attached_axis, "attached-axis" );
214 XML_CONSTASCII_ACTION( sXML_attractive, "attractive");
215 XML_CONSTASCII_ACTION( sXML_author, "author" );
216 XML_CONSTASCII_ACTION( sXML_author_initials, "author-initials" );
217 XML_CONSTASCII_ACTION( sXML_author_name, "author-name" );
218 XML_CONSTASCII_ACTION( sXML_auto, "auto" );
219 XML_CONSTASCII_ACTION( sXML_auto_grow_height, "auto-grow-height" );
220 XML_CONSTASCII_ACTION( sXML_auto_grow_width, "auto-grow-width" );
221 XML_CONSTASCII_ACTION( sXML_auto_reload, "auto-reload" );
222 XML_CONSTASCII_ACTION( sXML_auto_text, "auto-text" );
223 XML_CONSTASCII_ACTION( sXML_auto_text_events, "auto-text-events" );
224 XML_CONSTASCII_ACTION( sXML_auto_text_group, "auto-text-group" );
225 XML_CONSTASCII_ACTION( sXML_auto_text_indent, "auto-text-indent" );
226 XML_CONSTASCII_ACTION( sXML_up, "up" );
227 XML_CONSTASCII_ACTION( sXML_auto_update, "auto-update" );
228 XML_CONSTASCII_ACTION( sXML_automatic, "automatic");
229 XML_CONSTASCII_ACTION( sXML_automatic_find_labels, "automatic-find-labels" );
230 XML_CONSTASCII_ACTION( sXML_automatic_order, "automatic-order" );
231 XML_CONSTASCII_ACTION( sXML_automatic_styles, "automatic-styles" );
232 XML_CONSTASCII_ACTION( sXML_automatic_update, "automatic-update" );
233 XML_CONSTASCII_ACTION( sXML_average, "average" );
234 XML_CONSTASCII_ACTION( sXML_axis, "axis" );
235 XML_CONSTASCII_ACTION( sXML_back_scale, "back-scale" );
236 XML_CONSTASCII_ACTION( sXML_backface_culling, "backface-culling" );
237 XML_CONSTASCII_ACTION( sXML_background, "background" );
238 XML_CONSTASCII_ACTION( sXML_background_color, "background-color" );
239 XML_CONSTASCII_ACTION( sXML_background_image, "background-image" );
240 XML_CONSTASCII_ACTION( sXML_background_no_repeat, "no-repeat" );
241 XML_CONSTASCII_ACTION( sXML_background_objects_visible, "background-objects-visible" );
242 XML_CONSTASCII_ACTION( sXML_background_repeat, "repeat" );
243 XML_CONSTASCII_ACTION( sXML_background_stretch, "stretch" );
244 XML_CONSTASCII_ACTION( sXML_background_visible, "background-visible" );
245 XML_CONSTASCII_ACTION( sXML_bar, "bar" );
246 XML_CONSTASCII_ACTION( sXML_base64Binary, "base64Binary");
247 XML_CONSTASCII_ACTION( sXML_base_cell_address, "base-cell-address");
248 XML_CONSTASCII_ACTION( sXML_baseline, "baseline" );
249 XML_CONSTASCII_ACTION( sXML_before_date_time, "before-date-time" );
250 XML_CONSTASCII_ACTION( sXML_below , "below" );
251 XML_CONSTASCII_ACTION( sXML_between_date_times, "between-date-times" );
252 XML_CONSTASCII_ACTION( sXML_bevel , "bevel" );
253 XML_CONSTASCII_ACTION( sXML_bibiliographic_type, "bibiliographic-type" );
254 XML_CONSTASCII_ACTION( sXML_bibliography, "bibliography" );
255 XML_CONSTASCII_ACTION( sXML_bibliography_configuration, "bibliography-configuration" );
256 XML_CONSTASCII_ACTION( sXML_bibliography_data_field, "bibliography-data-field" );
257 XML_CONSTASCII_ACTION( sXML_bibliography_entry_template, "bibliography-entry-template" );
258 XML_CONSTASCII_ACTION( sXML_bibliography_mark, "bibliography-mark" );
259 XML_CONSTASCII_ACTION( sXML_bibliography_source, "bibliography-source" );
260 XML_CONSTASCII_ACTION( sXML_bibliography_type, "bibliography-type" );
261 XML_CONSTASCII_ACTION( sXML_bind_styles_to_content, "bind-styles-to-content");
262 XML_CONSTASCII_ACTION( sXML_bitmap , "bitmap" );
263 XML_CONSTASCII_ACTION( sXML_black, "black" );
264 XML_CONSTASCII_ACTION( sXML_blend, "blend" );
265 XML_CONSTASCII_ACTION( sXML_blinking, "blinking" );
266 XML_CONSTASCII_ACTION( sXML_block, "block" );
267 XML_CONSTASCII_ACTION( sXML_block_list, "block-list" );
268 XML_CONSTASCII_ACTION( sXML_blue , "blue" );
269 XML_CONSTASCII_ACTION( sXML_body, "body" );
270 XML_CONSTASCII_ACTION( sXML_bold, "bold" );
271 XML_CONSTASCII_ACTION( sXML_book, "book" );
272 XML_CONSTASCII_ACTION( sXML_booklet, "booklet" );
273 XML_CONSTASCII_ACTION( sXML_bookmark, "bookmark" );
274 XML_CONSTASCII_ACTION( sXML_bookmark_end, "bookmark-end" );
275 XML_CONSTASCII_ACTION( sXML_bookmark_ref, "bookmark-ref" );
276 XML_CONSTASCII_ACTION( sXML_bookmark_start, "bookmark-start" );
277 XML_CONSTASCII_ACTION( sXML_booktitle, "booktitle" );
278 XML_CONSTASCII_ACTION( sXML_boolean, "boolean");
279 XML_CONSTASCII_ACTION( sXML_boolean_style, "boolean-style" );
280 XML_CONSTASCII_ACTION( sXML_boolean_value, "boolean-value");
281 XML_CONSTASCII_ACTION( sXML_border, "border" );
282 XML_CONSTASCII_ACTION( sXML_border_bottom, "border-bottom" );
283 XML_CONSTASCII_ACTION( sXML_border_color, "border-color" );
284 XML_CONSTASCII_ACTION( sXML_border_left, "border-left" );
285 XML_CONSTASCII_ACTION( sXML_border_line_width, "border-line-width" );
286 XML_CONSTASCII_ACTION( sXML_border_line_width_bottom, "border-line-width-bottom" );
287 XML_CONSTASCII_ACTION( sXML_border_line_width_left, "border-line-width-left" );
288 XML_CONSTASCII_ACTION( sXML_border_line_width_right, "border-line-width-right" );
289 XML_CONSTASCII_ACTION( sXML_border_line_width_top, "border-line-width-top" );
290 XML_CONSTASCII_ACTION( sXML_border_right, "border-right" );
291 XML_CONSTASCII_ACTION( sXML_border_top, "border-top" );
292 XML_CONSTASCII_ACTION( sXML_both, "both");
293 XML_CONSTASCII_ACTION( sXML_bottom, "bottom" );
294 XML_CONSTASCII_ACTION( sXML_bottom_percent, "bottom percent");
295 XML_CONSTASCII_ACTION( sXML_bottom_values, "bottom values");
296 XML_CONSTASCII_ACTION( sXML_break_after, "break-after" );
297 XML_CONSTASCII_ACTION( sXML_break_before, "break-before" );
298 XML_CONSTASCII_ACTION( sXML_break_inside, "break-inside" );
299 XML_CONSTASCII_ACTION( sXML_bubble, "bubble" );
300 XML_CONSTASCII_ACTION( sXML_bullet_char, "bullet-char" );
301 XML_CONSTASCII_ACTION( sXML_bullet_relative_size, "bullet-relative-size" );
302 XML_CONSTASCII_ACTION( sXML_buttons, "buttons");
303 XML_CONSTASCII_ACTION( sXML_bvar, "bvar");
304 XML_CONSTASCII_ACTION( sXML_c, "c" );
305 XML_CONSTASCII_ACTION( sXML_cm, "cm" );
306 XML_CONSTASCII_ACTION( sXML_calculation_settings, "calculation-settings" );
307 XML_CONSTASCII_ACTION( sXML_calendar, "calendar" );
308 XML_CONSTASCII_ACTION( sXML_capitalize_entries, "capitalize-entries" );
309 XML_CONSTASCII_ACTION( sXML_caption, "caption" );
310 XML_CONSTASCII_ACTION( sXML_caption_point_x, "caption-point-x" );
311 XML_CONSTASCII_ACTION( sXML_caption_point_y, "caption-point-y" );
312 XML_CONSTASCII_ACTION( sXML_caption_sequence_format, "caption-sequence-format" );
313 XML_CONSTASCII_ACTION( sXML_caption_sequence_name, "caption-sequence-name" );
314 XML_CONSTASCII_ACTION( sXML_case_sensitive, "case-sensitive");
315 XML_CONSTASCII_ACTION( sXML_casemap_capitalize, "capitalize" );
316 XML_CONSTASCII_ACTION( sXML_casemap_lowercase, "lowercase" );
317 XML_CONSTASCII_ACTION( sXML_casemap_normal, "normal" );
318 XML_CONSTASCII_ACTION( sXML_casemap_small_caps, "small-caps" );
319 XML_CONSTASCII_ACTION( sXML_casemap_uppercase, "uppercase" );
320 XML_CONSTASCII_ACTION( sXML_categories, "categories" );
321 XML_CONSTASCII_ACTION( sXML_category, "category" );
322 XML_CONSTASCII_ACTION( sXML_category_and_value, "category-and-value" );
323 XML_CONSTASCII_ACTION( sXML_cell_address, "cell-address");
324 XML_CONSTASCII_ACTION( sXML_cell_content_change, "cell-content-change");
325 XML_CONSTASCII_ACTION( sXML_cell_content_deletion, "cell-content-deletion");
326 XML_CONSTASCII_ACTION( sXML_cell_count, "cell-count");
327 XML_CONSTASCII_ACTION( sXML_cell_protect, "cell-protect");
328 XML_CONSTASCII_ACTION( sXML_cell_range_address, "cell-range-address");
329 XML_CONSTASCII_ACTION( sXML_cell_range_address_list, "cell-range-address-list");
330 XML_CONSTASCII_ACTION( sXML_cell_range_source, "cell-range-source");
331 XML_CONSTASCII_ACTION( sXML_center, "center" );
332 XML_CONSTASCII_ACTION( sXML_chain_next_name, "chain-next-name" );
333 XML_CONSTASCII_ACTION( sXML_change, "change" );
334 XML_CONSTASCII_ACTION( sXML_change_deletion, "change-deletion" );
335 XML_CONSTASCII_ACTION( sXML_change_end, "change-end" );
336 XML_CONSTASCII_ACTION( sXML_change_id, "change-id" );
337 XML_CONSTASCII_ACTION( sXML_change_info, "change-info" );
338 XML_CONSTASCII_ACTION( sXML_change_start, "change-start" );
339 XML_CONSTASCII_ACTION( sXML_change_track_table_cell, "change-track-table-cell" );
340 XML_CONSTASCII_ACTION( sXML_change_view_conditions, "change-view-conditions" );
341 XML_CONSTASCII_ACTION( sXML_change_view_settings, "change-view-settings" );
342 XML_CONSTASCII_ACTION( sXML_changed_region, "changed-region" );
343 XML_CONSTASCII_ACTION( sXML_chapter, "chapter");
344 XML_CONSTASCII_ACTION( sXML_char, "char" );
345 XML_CONSTASCII_ACTION( sXML_character_count, "character-count" );
346 XML_CONSTASCII_ACTION( sXML_chart, "chart" );
347 XML_CONSTASCII_ACTION( sXML_charts, "charts" );
348 XML_CONSTASCII_ACTION( sXML_chg_author, "chg-author" );
349 XML_CONSTASCII_ACTION( sXML_chg_comment, "chg-comment" );
350 XML_CONSTASCII_ACTION( sXML_chg_date_time, "chg-date-time" );
351 XML_CONSTASCII_ACTION( sXML_ci, "ci" );
352 XML_CONSTASCII_ACTION( sXML_circle, "circle" );
353 XML_CONSTASCII_ACTION( sXML_citation_body_style_name, "citation-body-style-name" );
354 XML_CONSTASCII_ACTION( sXML_citation_style_name, "citation-style-name" );
355 XML_CONSTASCII_ACTION( sXML_class, "class" );
356 XML_CONSTASCII_ACTION( sXML_class_id, "class-id" );
357 XML_CONSTASCII_ACTION( sXML_clip, "clip" );
358 XML_CONSTASCII_ACTION( sXML_clockwise, "clockwise" );
359 XML_CONSTASCII_ACTION( sXML_close, "close" );
360 XML_CONSTASCII_ACTION( sXML_close_horizontal, "close-horizontal" );
361 XML_CONSTASCII_ACTION( sXML_close_vertical, "close-vertical" );
362 XML_CONSTASCII_ACTION( sXML_cn, "cn" );
363 XML_CONSTASCII_ACTION( sXML_code, "code" );
364 XML_CONSTASCII_ACTION( sXML_codebase, "codebase" );
365 XML_CONSTASCII_ACTION( sXML_collapse, "collapse" );
366 XML_CONSTASCII_ACTION( sXML_color, "color" );
367 XML_CONSTASCII_ACTION( sXML_color_inversion , "color-inversion" );
368 XML_CONSTASCII_ACTION( sXML_color_mode , "color-mode" );
369 XML_CONSTASCII_ACTION( sXML_column, "column" );
370 XML_CONSTASCII_ACTION( sXML_column_count, "column-count" );
371 XML_CONSTASCII_ACTION( sXML_column_gap, "column-gap" );
372 XML_CONSTASCII_ACTION( sXML_column_name, "column-name" );
373 XML_CONSTASCII_ACTION( sXML_column_sep, "column-sep" );
374 XML_CONSTASCII_ACTION( sXML_column_width, "column-width" );
375 XML_CONSTASCII_ACTION( sXML_columns, "columns" );
376 XML_CONSTASCII_ACTION( sXML_columnsplit_auto, "auto" );
377 XML_CONSTASCII_ACTION( sXML_columnsplit_avoid, "avoid" );
378 XML_CONSTASCII_ACTION( sXML_combine_entries, "combine-entries" );
379 XML_CONSTASCII_ACTION( sXML_combine_entries_with_dash, "combine-entries-with-dash" );
380 XML_CONSTASCII_ACTION( sXML_combine_entries_with_pp, "combine-entries-with-pp" );
381 XML_CONSTASCII_ACTION( sXML_comma_separated, "comma-separated" );
382 XML_CONSTASCII_ACTION( sXML_command, "command" );
383 XML_CONSTASCII_ACTION( sXML_comment, "comment" );
384 XML_CONSTASCII_ACTION( sXML_compose, "compose" );
385 XML_CONSTASCII_ACTION( sXML_cond_style_name, "cond-style-name" );
386 XML_CONSTASCII_ACTION( sXML_condition, "condition" );
387 XML_CONSTASCII_ACTION( sXML_condition_source, "condition-source");
388 XML_CONSTASCII_ACTION( sXML_condition_source_range_address, "condition-source-range-address");
389 XML_CONSTASCII_ACTION( sXML_conditional_text, "conditional-text" );
390 XML_CONSTASCII_ACTION( sXML_cone, "cone" );
391 XML_CONSTASCII_ACTION( sXML_conference, "conference" );
392 XML_CONSTASCII_ACTION( sXML_config_item, "config-item" );
393 XML_CONSTASCII_ACTION( sXML_config_item_map_indexed, "config-item-map-indexed" );
394 XML_CONSTASCII_ACTION( sXML_config_item_map_named, "config-item-map-named" );
395 XML_CONSTASCII_ACTION( sXML_config_item_map_entry, "config-item-map-entry" );
396 XML_CONSTASCII_ACTION( sXML_config_item_set, "config-item-set" );
397 XML_CONSTASCII_ACTION( sXML_configuration_settings, "configuration-settings" );
398 XML_CONSTASCII_ACTION( sXML_conjugate, "conjugate" );
399 XML_CONSTASCII_ACTION( sXML_connect_bars, "connect-bars" );
400 XML_CONSTASCII_ACTION( sXML_connection_name, "connection-name" );
401 XML_CONSTASCII_ACTION( sXML_connector, "connector" );
402 XML_CONSTASCII_ACTION( sXML_consecutive_numbering, "consecutive-numbering" );
403 XML_CONSTASCII_ACTION( sXML_consolidation, "consolidation" );
404 XML_CONSTASCII_ACTION( sXML_constant, "constant" );
405 XML_CONSTASCII_ACTION( sXML_contains_error, "contains-error");
406 XML_CONSTASCII_ACTION( sXML_contains_header, "contains-header");
407 XML_CONSTASCII_ACTION( sXML_content, "content" );
408 XML_CONSTASCII_ACTION( sXML_content_validation, "content-validation");
409 XML_CONSTASCII_ACTION( sXML_content_validation_name, "validation-name");
410 XML_CONSTASCII_ACTION( sXML_content_validations, "content-validations");
411 XML_CONSTASCII_ACTION( sXML_continue, "continue" );
412 XML_CONSTASCII_ACTION( sXML_continue_numbering, "continue-numbering" );
413 XML_CONSTASCII_ACTION( sXML_contour_path, "contour-path" );
414 XML_CONSTASCII_ACTION( sXML_contour_polygon, "contour-polygon" );
415 XML_CONSTASCII_ACTION( sXML_contrast , "contrast" );
416 XML_CONSTASCII_ACTION( sXML_control, "control" );
417 XML_CONSTASCII_ACTION( sXML_conversion_mode, "conversion-mode" );
418 XML_CONSTASCII_ACTION( sXML_copy_back, "copy-back" );
419 XML_CONSTASCII_ACTION( sXML_copy_formulas, "copy-formulas" );
420 XML_CONSTASCII_ACTION( sXML_copy_outline_levels, "copy-outline-levels" );
421 XML_CONSTASCII_ACTION( sXML_copy_results_only, "copy-results-only" );
422 XML_CONSTASCII_ACTION( sXML_copy_styles, "copy-styles" );
423 XML_CONSTASCII_ACTION( sXML_corner_radius , "corner-radius" );
424 XML_CONSTASCII_ACTION( sXML_correct, "correct");
425 XML_CONSTASCII_ACTION( sXML_cos, "cos" );
426 XML_CONSTASCII_ACTION( sXML_cosh, "cosh" );
427 XML_CONSTASCII_ACTION( sXML_cot, "cot" );
428 XML_CONSTASCII_ACTION( sXML_coth, "coth" );
429 XML_CONSTASCII_ACTION( sXML_count, "count" );
430 XML_CONSTASCII_ACTION( sXML_count_empty_lines, "count-empty-lines" );
431 XML_CONSTASCII_ACTION( sXML_count_in_floating_frames, "count-in-floating-frames" );
432 XML_CONSTASCII_ACTION( sXML_counterclockwise, "counterclockwise" );
433 XML_CONSTASCII_ACTION( sXML_countnums, "countnums" );
434 XML_CONSTASCII_ACTION( sXML_country, "country" );
435 XML_CONSTASCII_ACTION( sXML_country_asian, "country-asian" );
436 XML_CONSTASCII_ACTION( sXML_country_complex, "country-complex" );
437 XML_CONSTASCII_ACTION( sXML_covered_table_cell, "covered-table-cell" );
438 XML_CONSTASCII_ACTION( sXML_create_date, "create-date" );
439 XML_CONSTASCII_ACTION( sXML_create_date_string, "create-date-string" );
440 XML_CONSTASCII_ACTION( sXML_creation_date, "creation-date" );
441 XML_CONSTASCII_ACTION( sXML_creation_time, "creation-time" );
442 XML_CONSTASCII_ACTION( sXML_creator, "creator" );
443 XML_CONSTASCII_ACTION( sXML_crossedout_cross, "X" );
444 XML_CONSTASCII_ACTION( sXML_crossedout_double, "double-line" );
445 XML_CONSTASCII_ACTION( sXML_crossedout_none, "none" );
446 XML_CONSTASCII_ACTION( sXML_crossedout_single, "single-line" );
447 XML_CONSTASCII_ACTION( sXML_crossedout_slash, "slash" );
448 XML_CONSTASCII_ACTION( sXML_crossedout_thick, "thick-line" );
449 XML_CONSTASCII_ACTION( sXML_csc, "csc" );
450 XML_CONSTASCII_ACTION( sXML_csch, "csch" );
451 XML_CONSTASCII_ACTION( sXML_cube, "cube" );
452 XML_CONSTASCII_ACTION( sXML_cuboid, "cuboid" );
453 XML_CONSTASCII_ACTION( sXML_currency, "currency");
454 XML_CONSTASCII_ACTION( sXML_currency_style, "currency-style" );
455 XML_CONSTASCII_ACTION( sXML_currency_symbol, "currency-symbol" );
456 XML_CONSTASCII_ACTION( sXML_current, "current" );
457 XML_CONSTASCII_ACTION( sXML_current_value, "current-value" );
458 XML_CONSTASCII_ACTION( sXML_cursor_position, "cursor-position" );
459 XML_CONSTASCII_ACTION( sXML_cursor_position_x, "cursor-position-x" );
460 XML_CONSTASCII_ACTION( sXML_cursor_position_y, "cursor-position-y" );
461 XML_CONSTASCII_ACTION( sXML_custom1, "custom1" );
462 XML_CONSTASCII_ACTION( sXML_custom2, "custom2" );
463 XML_CONSTASCII_ACTION( sXML_custom3, "custom3" );
464 XML_CONSTASCII_ACTION( sXML_custom4, "custom4" );
465 XML_CONSTASCII_ACTION( sXML_custom5, "custom5" );
466 XML_CONSTASCII_ACTION( sXML_cut_offs, "cut_offs" );
467 XML_CONSTASCII_ACTION( sXML_cx, "cx" );
468 XML_CONSTASCII_ACTION( sXML_cy, "cy" );
469 XML_CONSTASCII_ACTION( sXML_cylinder, "cylinder" );
470 XML_CONSTASCII_ACTION( sXML_d, "d" );
471 XML_CONSTASCII_ACTION( sXML_dash, "dash" );
472 XML_CONSTASCII_ACTION( sXML_dashed, "dashed" );
473 XML_CONSTASCII_ACTION( sXML_data, "data");
474 XML_CONSTASCII_ACTION( sXML_data_cell_range_address, "data-cell-range-address" );
475 XML_CONSTASCII_ACTION( sXML_data_label_number, "data-label-number" );
476 XML_CONSTASCII_ACTION( sXML_data_label_symbol, "data-label-symbol" );
477 XML_CONSTASCII_ACTION( sXML_data_label_text, "data-label-text" );
478 XML_CONSTASCII_ACTION( sXML_data_pilot_field, "data-pilot-field");
479 XML_CONSTASCII_ACTION( sXML_data_pilot_level, "data-pilot-level");
480 XML_CONSTASCII_ACTION( sXML_data_pilot_member, "data-pilot-member");
481 XML_CONSTASCII_ACTION( sXML_data_pilot_members, "data-pilot-members");
482 XML_CONSTASCII_ACTION( sXML_data_pilot_subtotal, "data-pilot-subtotal");
483 XML_CONSTASCII_ACTION( sXML_data_pilot_subtotals, "data-pilot-subtotals");
484 XML_CONSTASCII_ACTION( sXML_data_pilot_table, "data-pilot-table");
485 XML_CONSTASCII_ACTION( sXML_data_pilot_tables, "data-pilot-tables");
486 XML_CONSTASCII_ACTION( sXML_data_point, "data-point" );
487 XML_CONSTASCII_ACTION( sXML_data_style, "data-style" );
488 XML_CONSTASCII_ACTION( sXML_data_style_name, "data-style-name" );
489 XML_CONSTASCII_ACTION( sXML_data_type, "data-type");
490 XML_CONSTASCII_ACTION( sXML_database_display, "database-display" );
491 XML_CONSTASCII_ACTION( sXML_database_name, "database-name");
492 XML_CONSTASCII_ACTION( sXML_database_next, "database-next" );
493 XML_CONSTASCII_ACTION( sXML_database_range, "database-range");
494 XML_CONSTASCII_ACTION( sXML_database_ranges, "database-ranges");
495 XML_CONSTASCII_ACTION( sXML_database_row_number, "database-row-number" );
496 XML_CONSTASCII_ACTION( sXML_database_select, "database-select" );
497 XML_CONSTASCII_ACTION( sXML_database_source_query, "database-source-query");
498 XML_CONSTASCII_ACTION( sXML_database_source_sql, "database-source-sql");
499 XML_CONSTASCII_ACTION( sXML_database_source_table, "database-source-table");
500 XML_CONSTASCII_ACTION( sXML_date, "date" );
501 XML_CONSTASCII_ACTION( sXML_datetime, "datetime" );
502 XML_CONSTASCII_ACTION( sXML_date_adjust, "date-adjust" );
503 XML_CONSTASCII_ACTION( sXML_date_style, "date-style" );
504 XML_CONSTASCII_ACTION( sXML_date_time, "date-time" );
505 XML_CONSTASCII_ACTION( sXML_date_value, "date-value");
506 XML_CONSTASCII_ACTION( sXML_day, "day" );
507 XML_CONSTASCII_ACTION( sXML_day_of_week, "day-of-week" );
508 XML_CONSTASCII_ACTION( sXML_dde_application, "dde-application" );
509 XML_CONSTASCII_ACTION( sXML_dde_connection, "dde-connection" );
510 XML_CONSTASCII_ACTION( sXML_dde_connection_decl, "dde-connection-decl" );
511 XML_CONSTASCII_ACTION( sXML_dde_connection_decls, "dde-connection-decls" );
512 XML_CONSTASCII_ACTION( sXML_dde_item, "dde-item" );
513 XML_CONSTASCII_ACTION( sXML_dde_link, "dde-link" );
514 XML_CONSTASCII_ACTION( sXML_dde_links, "dde-links" );
515 XML_CONSTASCII_ACTION( sXML_dde_source, "dde-source" );
516 XML_CONSTASCII_ACTION( sXML_dde_topic, "dde-topic" );
517 XML_CONSTASCII_ACTION( sXML_decimal_places, "decimal-places" );
518 XML_CONSTASCII_ACTION( sXML_decimal_replacement, "decimal-replacement" );
519 XML_CONSTASCII_ACTION( sXML_declare, "declare" );
520 XML_CONSTASCII_ACTION( sXML_decorate_words_only, "decorate-words-only" );
521 XML_CONSTASCII_ACTION( sXML_decorative, "decorative" );
522 XML_CONSTASCII_ACTION( sXML_deep, "deep" );
523 XML_CONSTASCII_ACTION( sXML_default, "default" );
524 XML_CONSTASCII_ACTION( sXML_default_cell_style_name, "default-cell-style-name" );
525 XML_CONSTASCII_ACTION( sXML_default_style, "default-style" );
526 XML_CONSTASCII_ACTION( sXML_default_style_name, "default-style-name" );
527 XML_CONSTASCII_ACTION( sXML_degree, "degree" );
528 XML_CONSTASCII_ACTION( sXML_delay, "delay" );
529 XML_CONSTASCII_ACTION( sXML_deletion, "deletion" );
530 XML_CONSTASCII_ACTION( sXML_deletions, "deletions" );
531 XML_CONSTASCII_ACTION( sXML_depth, "depth" );
532 XML_CONSTASCII_ACTION( sXML_desc, "desc" );
533 XML_CONSTASCII_ACTION( sXML_descending, "descending");
534 XML_CONSTASCII_ACTION( sXML_description, "description" );
535 XML_CONSTASCII_ACTION( sXML_detective, "detective" );
536 XML_CONSTASCII_ACTION( sXML_determinant, "determinant" );
537 XML_CONSTASCII_ACTION( sXML_diff, "diff");
538 XML_CONSTASCII_ACTION( sXML_diffuse_color, "diffuse-color" );
539 XML_CONSTASCII_ACTION( sXML_dependences, "dependences");
540 XML_CONSTASCII_ACTION( sXML_dependence, "dependence");
541 XML_CONSTASCII_ACTION( sXML_direction, "direction");
542 XML_CONSTASCII_ACTION( sXML_disabled, "disabled" );
543 XML_CONSTASCII_ACTION( sXML_disc, "disc" );
544 XML_CONSTASCII_ACTION( sXML_display, "display" );
545 XML_CONSTASCII_ACTION( sXML_display_border, "display-border");
546 XML_CONSTASCII_ACTION( sXML_display_details, "display-details");
547 XML_CONSTASCII_ACTION( sXML_display_duplicates, "display-duplicates");
548 XML_CONSTASCII_ACTION( sXML_display_empty, "display-empty");
549 XML_CONSTASCII_ACTION( sXML_display_filter_buttons, "display-filter-buttons");
550 XML_CONSTASCII_ACTION( sXML_display_formula, "display-formula" );
551 XML_CONSTASCII_ACTION( sXML_display_label, "display-label" );
552 XML_CONSTASCII_ACTION( sXML_display_levels, "display-levels" );
553 XML_CONSTASCII_ACTION( sXML_display_name, "display-name" );
554 XML_CONSTASCII_ACTION( sXML_display_outline_level, "display-outline-level" );
555 XML_CONSTASCII_ACTION( sXML_dissolve, "dissolve" );
556 XML_CONSTASCII_ACTION( sXML_distance, "distance" );
557 XML_CONSTASCII_ACTION( sXML_distribute_letter, "distribute-letter" );
558 XML_CONSTASCII_ACTION( sXML_distribute_space, "distribute-space" );
559 XML_CONSTASCII_ACTION( sXML_divide, "divide" );
560 XML_CONSTASCII_ACTION( sXML_document, "document" );
561 XML_CONSTASCII_ACTION( sXML_document_content, "document-content" );
562 XML_CONSTASCII_ACTION( sXML_document_meta, "document-meta" );
563 XML_CONSTASCII_ACTION( sXML_document_settings, "document-settings" );
564 XML_CONSTASCII_ACTION( sXML_document_styles, "document-styles" );
565 XML_CONSTASCII_ACTION( sXML_document_statistic, "document-statistic" );
566 XML_CONSTASCII_ACTION( sXML_domain, "domain" );
567 XML_CONSTASCII_ACTION( sXML_dot, "dot" );
568 XML_CONSTASCII_ACTION( sXML_dotted, "dotted" );
569 XML_CONSTASCII_ACTION( sXML_double, "double" );
570 XML_CONSTASCII_ACTION( sXML_double_sided, "double-sided" );
571 XML_CONSTASCII_ACTION( sXML_down, "down" );
572 XML_CONSTASCII_ACTION( sXML_draft, "draft");
573 XML_CONSTASCII_ACTION( sXML_draw, "draw" );
574 XML_CONSTASCII_ACTION( sXML_draw_aspect, "ole-draw-aspect" );
575 XML_CONSTASCII_ACTION( sXML_drawing, "drawing" );
576 XML_CONSTASCII_ACTION( sXML_drawings, "drawings" );
577 XML_CONSTASCII_ACTION( sXML_drawpool , "drawpool" );
578 XML_CONSTASCII_ACTION( sXML_drop_cap, "drop-cap" );
579 XML_CONSTASCII_ACTION( sXML_dynamic, "dynamic" );
580 XML_CONSTASCII_ACTION( sXML_edge_rounding, "edge-rounding" );
581 XML_CONSTASCII_ACTION( sXML_editable, "editable" );
582 XML_CONSTASCII_ACTION( sXML_editing_cycles, "editing-cycles" );
583 XML_CONSTASCII_ACTION( sXML_editing_duration, "editing-duration" );
584 XML_CONSTASCII_ACTION( sXML_edition, "edition" );
585 XML_CONSTASCII_ACTION( sXML_editor, "editor" );
586 XML_CONSTASCII_ACTION( sXML_ellipse , "ellipse" );
587 XML_CONSTASCII_ACTION( sXML_email, "email" );
588 XML_CONSTASCII_ACTION( sXML_embed, "embed" );
589 XML_CONSTASCII_ACTION( sXML_embedded_visible_area, "embedded-visible-area" );
590 XML_CONSTASCII_ACTION( sXML_embossed, "embossed" );
591 XML_CONSTASCII_ACTION( sXML_emissive_color, "emissive-color" );
592 XML_CONSTASCII_ACTION( sXML_empty, "empty");
593 XML_CONSTASCII_ACTION( sXML_enabled, "enabled" );
594 XML_CONSTASCII_ACTION( sXML_encoding, "encoding" );
595 XML_CONSTASCII_ACTION( sXML_end, "end" );
596 XML_CONSTASCII_ACTION( sXML_end_angle, "end-angle" );
597 XML_CONSTASCII_ACTION( sXML_end_cell_address, "end-cell-address" );
598 XML_CONSTASCII_ACTION( sXML_end_color, "end-color" );
599 XML_CONSTASCII_ACTION( sXML_end_column, "end-column" );
600 XML_CONSTASCII_ACTION( sXML_end_intensity, "end-intensity" );
601 XML_CONSTASCII_ACTION( sXML_end_position, "end-position" );
602 XML_CONSTASCII_ACTION( sXML_end_row, "end-row" );
603 XML_CONSTASCII_ACTION( sXML_end_table, "end-table" );
604 XML_CONSTASCII_ACTION( sXML_end_x, "end-x" );
605 XML_CONSTASCII_ACTION( sXML_end_y, "end-y" );
606 XML_CONSTASCII_ACTION( sXML_endless, "endless" );
607 XML_CONSTASCII_ACTION( sXML_endnote, "endnote" );
608 XML_CONSTASCII_ACTION( sXML_endnote_body, "endnote-body" );
609 XML_CONSTASCII_ACTION( sXML_endnote_citation, "endnote-citation" );
610 XML_CONSTASCII_ACTION( sXML_endnote_ref, "endnote-ref" );
611 XML_CONSTASCII_ACTION( sXML_endnotes_configuration, "endnotes-configuration");
612 XML_CONSTASCII_ACTION( sXML_engraved, "engraved" );
613 XML_CONSTASCII_ACTION( sXML_eq, "eq");
614 XML_CONSTASCII_ACTION( sXML_equal_author, "equal-author");
615 XML_CONSTASCII_ACTION( sXML_equal_comment, "equal-comment");
616 XML_CONSTASCII_ACTION( sXML_equal_date, "equal-date");
617 XML_CONSTASCII_ACTION( sXML_era, "era" );
618 XML_CONSTASCII_ACTION( sXML_ergo_sum, "ergo-sum" );
619 XML_CONSTASCII_ACTION( sXML_error_category, "error-category" );
620 XML_CONSTASCII_ACTION( sXML_error_lower_indicator, "error-lower-indicator" );
621 XML_CONSTASCII_ACTION( sXML_error_lower_limit, "error-lower-limit" );
622 XML_CONSTASCII_ACTION( sXML_error_macro, "error-macro" );
623 XML_CONSTASCII_ACTION( sXML_error_margin, "error-margin" );
624 XML_CONSTASCII_ACTION( sXML_error_message, "error-message" );
625 XML_CONSTASCII_ACTION( sXML_error_percentage, "error-percentage" );
626 XML_CONSTASCII_ACTION( sXML_error_upper_indicator, "error-upper-indicator" );
627 XML_CONSTASCII_ACTION( sXML_error_upper_limit, "error-upper-limit" );
628 XML_CONSTASCII_ACTION( sXML_escapement_sub, "sub" );
629 XML_CONSTASCII_ACTION( sXML_escapement_super, "super" );
630 XML_CONSTASCII_ACTION( sXML_even_page, "even-page" );
631 XML_CONSTASCII_ACTION( sXML_event, "event" );
632 XML_CONSTASCII_ACTION( sXML_event_name, "event-name" );
633 XML_CONSTASCII_ACTION( sXML_events, "events" );
634 XML_CONSTASCII_ACTION( sXML_execute, "execute" );
635 XML_CONSTASCII_ACTION( sXML_execute_macro, "execute-macro" );
636 XML_CONSTASCII_ACTION( sXML_exists, "exists" );
637 XML_CONSTASCII_ACTION( sXML_exp, "exp" );
638 XML_CONSTASCII_ACTION( sXML_exponential, "exponential" );
639 XML_CONSTASCII_ACTION( sXML_expression, "expression");
640 XML_CONSTASCII_ACTION( sXML_extra, "extra");
641 XML_CONSTASCII_ACTION( sXML_extrude, "extrude" );
642 XML_CONSTASCII_ACTION( sXML_factorial, "factorial" );
643 XML_CONSTASCII_ACTION( sXML_fade_from_bottom, "fade-from-bottom" );
644 XML_CONSTASCII_ACTION( sXML_fade_from_center, "fade-from-center" );
645 XML_CONSTASCII_ACTION( sXML_fade_from_left, "fade-from-left" );
646 XML_CONSTASCII_ACTION( sXML_fade_from_lowerleft, "fade-from-lowerleft" );
647 XML_CONSTASCII_ACTION( sXML_fade_from_lowerright, "fade-from-lowerright" );
648 XML_CONSTASCII_ACTION( sXML_fade_from_right, "fade-from-right" );
649 XML_CONSTASCII_ACTION( sXML_fade_from_top, "fade-from-top" );
650 XML_CONSTASCII_ACTION( sXML_fade_from_upperleft, "fade-from-upperleft" );
651 XML_CONSTASCII_ACTION( sXML_fade_from_upperright, "fade-from-upperright" );
652 XML_CONSTASCII_ACTION( sXML_fade_to_center, "fade-to-center" );
653 XML_CONSTASCII_ACTION( sXML_fade_out, "fade-out" );
654 XML_CONSTASCII_ACTION( sXML_false, "false" );
655 XML_CONSTASCII_ACTION( sXML_family, "family" );
656 XML_CONSTASCII_ACTION( sXML_fast, "fast" );
657 XML_CONSTASCII_ACTION( sXML_field_number, "field-number");
658 XML_CONSTASCII_ACTION( sXML_file_name, "file-name" );
659 XML_CONSTASCII_ACTION( sXML_fill, "fill" );
660 XML_CONSTASCII_ACTION( sXML_fill_color , "fill-color" );
661 XML_CONSTASCII_ACTION( sXML_fill_gradient_name, "fill-gradient-name" );
662 XML_CONSTASCII_ACTION( sXML_fill_hatch_name, "fill-hatch-name" );
663 XML_CONSTASCII_ACTION( sXML_fill_hatch_solid, "fill-hatch-solid" );
664 XML_CONSTASCII_ACTION( sXML_fill_image, "fill-image" );
665 XML_CONSTASCII_ACTION( sXML_fill_image_height, "fill-image-height" );
666 XML_CONSTASCII_ACTION( sXML_fill_image_name, "fill-image-name" );
667 XML_CONSTASCII_ACTION( sXML_fill_image_width, "fill-image-width" );
668 XML_CONSTASCII_ACTION( sXML_filter, "filter");
669 XML_CONSTASCII_ACTION( sXML_filter_and, "filter-and");
670 XML_CONSTASCII_ACTION( sXML_filter_condition, "filter-condition");
671 XML_CONSTASCII_ACTION( sXML_filter_name, "filter-name" );
672 XML_CONSTASCII_ACTION( sXML_filter_options, "filter-options" );
673 XML_CONSTASCII_ACTION( sXML_filter_or, "filter-or");
674 XML_CONSTASCII_ACTION( sXML_first_date_time, "first-date-time");
675 XML_CONSTASCII_ACTION( sXML_first_page, "first-page");
676 XML_CONSTASCII_ACTION( sXML_first_page_number, "first-page-number");
677 XML_CONSTASCII_ACTION( sXML_fit_to_contour, "fit-to-contour");
678 XML_CONSTASCII_ACTION( sXML_fit_to_size, "fit-to-size" );
679 XML_CONSTASCII_ACTION( sXML_fix, "fix" );
680 XML_CONSTASCII_ACTION( sXML_fixed, "fixed" );
681 XML_CONSTASCII_ACTION( sXML_flat, "flat" );
682 XML_CONSTASCII_ACTION( sXML_float, "float");
683 XML_CONSTASCII_ACTION( sXML_floating_frame, "floating-frame");
684 XML_CONSTASCII_ACTION( sXML_floor, "floor" );
685 XML_CONSTASCII_ACTION( sXML_fn, "fn" );
686 XML_CONSTASCII_ACTION( sXML_focal_length, "focal-length");
687 XML_CONSTASCII_ACTION( sXML_font_char_width, "font-char-width" );
688 XML_CONSTASCII_ACTION( sXML_font_charset, "font-charset" );
689 XML_CONSTASCII_ACTION( sXML_font_charset_asian, "font-charset-asian" );
690 XML_CONSTASCII_ACTION( sXML_font_charset_complex, "font-charset-complex" );
691 XML_CONSTASCII_ACTION( sXML_font_color, "font-color" );
692 XML_CONSTASCII_ACTION( sXML_font_decl, "font-decl" );
693 XML_CONSTASCII_ACTION( sXML_font_decls, "font-decls" );
694 XML_CONSTASCII_ACTION( sXML_font_family, "font-family" );
695 XML_CONSTASCII_ACTION( sXML_font_family_asian, "font-family-asian" );
696 XML_CONSTASCII_ACTION( sXML_font_family_complex, "font-family-complex" );
697 XML_CONSTASCII_ACTION( sXML_font_family_generic, "font-family-generic" );
698 XML_CONSTASCII_ACTION( sXML_font_family_generic_asian, "font-family-generic-asian" );
699 XML_CONSTASCII_ACTION( sXML_font_family_generic_complex, "font-family-generic-complex" );
700 XML_CONSTASCII_ACTION( sXML_font_kerning, "font-kerning" );
701 XML_CONSTASCII_ACTION( sXML_font_name, "font-name" );
702 XML_CONSTASCII_ACTION( sXML_font_name_asian, "font-name-asian" );
703 XML_CONSTASCII_ACTION( sXML_font_name_complex, "font-name-complex" );
704 XML_CONSTASCII_ACTION( sXML_font_pitch, "font-pitch" );
705 XML_CONSTASCII_ACTION( sXML_font_pitch_asian, "font-pitch-asian" );
706 XML_CONSTASCII_ACTION( sXML_font_pitch_complex, "font-pitch-complex" );
707 XML_CONSTASCII_ACTION( sXML_font_relief, "font-relief" );
708 XML_CONSTASCII_ACTION( sXML_font_size, "font-size" );
709 XML_CONSTASCII_ACTION( sXML_font_size_asian, "font-size-asian" );
710 XML_CONSTASCII_ACTION( sXML_font_size_complex, "font-size-complex" );
711 XML_CONSTASCII_ACTION( sXML_font_size_rel, "font-size-rel" );
712 XML_CONSTASCII_ACTION( sXML_font_size_rel_asian, "font-size-rel-asian" );
713 XML_CONSTASCII_ACTION( sXML_font_size_rel_complex, "font-size-rel-complex" );
714 XML_CONSTASCII_ACTION( sXML_font_style, "font-style" );
715 XML_CONSTASCII_ACTION( sXML_font_style_asian, "font-style-asian" );
716 XML_CONSTASCII_ACTION( sXML_font_style_complex, "font-style-complex" );
717 XML_CONSTASCII_ACTION( sXML_font_style_name, "font-style-name" );
718 XML_CONSTASCII_ACTION( sXML_font_style_name_asian, "font-style-name-asian" );
719 XML_CONSTASCII_ACTION( sXML_font_style_name_complex, "font-style-name-complex" );
720 XML_CONSTASCII_ACTION( sXML_font_variant, "font-variant" );
721 XML_CONSTASCII_ACTION( sXML_font_weight, "font-weight" );
722 XML_CONSTASCII_ACTION( sXML_font_weight_asian, "font-weight-asian" );
723 XML_CONSTASCII_ACTION( sXML_font_weight_complex, "font-weight-complex" );
724 XML_CONSTASCII_ACTION( sXML_font_width, "font-width" );
725 XML_CONSTASCII_ACTION( sXML_font_word_line_mode, "font-word-line-mode" );
726 XML_CONSTASCII_ACTION( sXML_fontfamily, "fontfamily" );
727 XML_CONSTASCII_ACTION( sXML_fontsize, "fontsize" );
728 XML_CONSTASCII_ACTION( sXML_fontstyle, "fontstyle" );
729 XML_CONSTASCII_ACTION( sXML_fontweight, "fontweight" );
730 XML_CONSTASCII_ACTION( sXML_fontwork_adjust, "fontwork-adjust" );
731 XML_CONSTASCII_ACTION( sXML_fontwork_distance, "fontwork-distance" );
732 XML_CONSTASCII_ACTION( sXML_fontwork_form, "fontwork-form" );
733 XML_CONSTASCII_ACTION( sXML_fontwork_hide_form, "fontwork-hide-form" );
734 XML_CONSTASCII_ACTION( sXML_fontwork_mirror, "fontwork-mirror" );
735 XML_CONSTASCII_ACTION( sXML_fontwork_outline, "fontwork-outline" );
736 XML_CONSTASCII_ACTION( sXML_fontwork_shadow, "fontwork-shadow" );
737 XML_CONSTASCII_ACTION( sXML_fontwork_shadow_color, "fontwork-shadow-color" );
738 XML_CONSTASCII_ACTION( sXML_fontwork_shadow_offset_x, "fontwork-shadow-offset-x" );
739 XML_CONSTASCII_ACTION( sXML_fontwork_shadow_offset_y, "fontwork-shadow-offset-y" );
740 XML_CONSTASCII_ACTION( sXML_fontwork_shadow_transparence, "fontwork-shadow-transparence" );
741 XML_CONSTASCII_ACTION( sXML_fontwork_start, "fontwork-start" );
742 XML_CONSTASCII_ACTION( sXML_fontwork_style, "fontwork-style" );
743 XML_CONSTASCII_ACTION( sXML_footer, "footer" );
744 XML_CONSTASCII_ACTION( sXML_footer_left, "footer-left" );
745 XML_CONSTASCII_ACTION( sXML_footer_style, "footer-style" );
746 XML_CONSTASCII_ACTION( sXML_footnote, "footnote" );
747 XML_CONSTASCII_ACTION( sXML_footnote_body, "footnote-body" );
748 XML_CONSTASCII_ACTION( sXML_footnote_citation, "footnote-citation" );
749 XML_CONSTASCII_ACTION( sXML_footnote_continuation_notice_backward, "footnote-continuation-notice-backward" );
750 XML_CONSTASCII_ACTION( sXML_footnote_continuation_notice_forward, "footnote-continuation-notice-forward" );
751 XML_CONSTASCII_ACTION( sXML_footnote_max_height, "footnote-max-height" );
752 XML_CONSTASCII_ACTION( sXML_distance_after_sep, "distance-after-sep" );
753 XML_CONSTASCII_ACTION( sXML_distance_before_sep, "distance-before-sep" );
754 XML_CONSTASCII_ACTION( sXML_footnote_ref, "footnote-ref" );
755 XML_CONSTASCII_ACTION( sXML_footnote_sep, "footnote-sep" );
756 XML_CONSTASCII_ACTION( sXML_footnotes_configuration, "footnotes-configuration");
757 XML_CONSTASCII_ACTION( sXML_footnotes_position, "footnotes-position" );
758 XML_CONSTASCII_ACTION( sXML_forall, "forall" );
759 XML_CONSTASCII_ACTION( sXML_force_manual, "force-manual" );
760 XML_CONSTASCII_ACTION( sXML_foreground, "foreground" );
761 XML_CONSTASCII_ACTION( sXML_foreign_object, "foreign-object" );
762 XML_CONSTASCII_ACTION( sXML_format_change, "format-change" );
763 XML_CONSTASCII_ACTION( sXML_format_source, "format-source" );
764 XML_CONSTASCII_ACTION( sXML_forms, "forms" );
765 XML_CONSTASCII_ACTION( sXML_formula, "formula");
766 XML_CONSTASCII_ACTION( sXML_formula_hidden, "formula-hidden");
767 XML_CONSTASCII_ACTION( sXML_formulas, "formulas");
768 XML_CONSTASCII_ACTION( sXML_fraction, "fraction" );
769 XML_CONSTASCII_ACTION( sXML_frame, "frame" );
770 XML_CONSTASCII_ACTION( sXML_frame_content, "frame-content" );
771 XML_CONSTASCII_ACTION( sXML_frame_display_scrollbar, "frame-display-scrollbar" );
772 XML_CONSTASCII_ACTION( sXML_frame_display_border, "frame-display-border" );
773 XML_CONSTASCII_ACTION( sXML_frame_margin_horizontal, "frame-margin-horizontal" );
774 XML_CONSTASCII_ACTION( sXML_frame_margin_vertical, "frame-margin-vertical" );
775 XML_CONSTASCII_ACTION( sXML_frame_end_margin, "frame-end-margin" );
776 XML_CONSTASCII_ACTION( sXML_frame_name, "frame-name" );
777 XML_CONSTASCII_ACTION( sXML_frame_start_margin, "frame-start-margin" );
778 XML_CONSTASCII_ACTION( sXML_freeze, "freeze" );
779 XML_CONSTASCII_ACTION( sXML_freeze_position, "freeze-position" );
780 XML_CONSTASCII_ACTION( sXML_from_another_table, "from-another-table" );
781 XML_CONSTASCII_ACTION( sXML_from_inside, "from-inside" );
782 XML_CONSTASCII_ACTION( sXML_from_left, "from-left" );
783 XML_CONSTASCII_ACTION( sXML_from_same_table, "from-same-table" );
784 XML_CONSTASCII_ACTION( sXML_from_top, "from-top" );
785 XML_CONSTASCII_ACTION( sXML_fuchsia, "fuchsia");
786 XML_CONSTASCII_ACTION( sXML_full, "full" );
787 XML_CONSTASCII_ACTION( sXML_full_screen, "full-screen" );
788 XML_CONSTASCII_ACTION( sXML_function, "function");
789 XML_CONSTASCII_ACTION( sXML_g , "g" );
790 XML_CONSTASCII_ACTION( sXML_gamma , "gamma" );
791 XML_CONSTASCII_ACTION( sXML_gap, "gap" );
792 XML_CONSTASCII_ACTION( sXML_gap_width, "gap-width" );
793 XML_CONSTASCII_ACTION( sXML_gcd, "gcd" );
794 XML_CONSTASCII_ACTION( sXML_generator, "generator" );
795 XML_CONSTASCII_ACTION( sXML_geq, "geq" );
796 XML_CONSTASCII_ACTION( sXML_gouraud, "gouraud");
797 XML_CONSTASCII_ACTION( sXML_gradient , "gradient" );
798 XML_CONSTASCII_ACTION( sXML_gradient_angle, "angle" );
799 XML_CONSTASCII_ACTION( sXML_gradient_border, "border" );
800 XML_CONSTASCII_ACTION( sXML_gradient_step_count , "gradient-step-count" );
801 XML_CONSTASCII_ACTION( sXML_gradient_style, "gradient-style" );
802 XML_CONSTASCII_ACTION( sXML_gradientstyle_axial, "axial" );
803 XML_CONSTASCII_ACTION( sXML_gradientstyle_ellipsoid, "ellipsoid" );
804 XML_CONSTASCII_ACTION( sXML_gradientstyle_linear, "linear" );
805 XML_CONSTASCII_ACTION( sXML_gradientstyle_radial, "radial" );
806 XML_CONSTASCII_ACTION( sXML_gradientstyle_rectangular, "rectangular" );
807 XML_CONSTASCII_ACTION( sXML_gradientstyle_square, "square" );
808 XML_CONSTASCII_ACTION( sXML_grand_total, "grand-total");
809 XML_CONSTASCII_ACTION( sXML_graphic , "graphic" );
810 XML_CONSTASCII_ACTION( sXML_gray, "gray" );
811 XML_CONSTASCII_ACTION( sXML_green , "green" );
812 XML_CONSTASCII_ACTION( sXML_greyscale, "greyscale" );
813 XML_CONSTASCII_ACTION( sXML_grid, "grid" );
814 XML_CONSTASCII_ACTION( sXML_groove, "groove" );
815 XML_CONSTASCII_ACTION( sXML_group_by_field_number, "group-by-field-number");
816 XML_CONSTASCII_ACTION( sXML_group_name, "group-name" );
817 XML_CONSTASCII_ACTION( sXML_grouping, "grouping" );
818 XML_CONSTASCII_ACTION( sXML_gt, "gt" );
819 XML_CONSTASCII_ACTION( sXML_h, "h" );
820 XML_CONSTASCII_ACTION( sXML_hanging, "hanging" );
821 XML_CONSTASCII_ACTION( sXML_has_persistent_data, "has-persistent-data");
822 XML_CONSTASCII_ACTION( sXML_hatch , "hatch" );
823 XML_CONSTASCII_ACTION( sXML_hatch_distance, "distance" );
824 XML_CONSTASCII_ACTION( sXML_hatch_style, "style" );
825 XML_CONSTASCII_ACTION( sXML_hatchstyle_double, "double" );
826 XML_CONSTASCII_ACTION( sXML_hatchstyle_single, "single" );
827 XML_CONSTASCII_ACTION( sXML_hatchstyle_triple, "triple" );
828 XML_CONSTASCII_ACTION( sXML_header, "header" );
829 XML_CONSTASCII_ACTION( sXML_header_left, "header-left" );
830 XML_CONSTASCII_ACTION( sXML_header_style, "header-style" );
831 XML_CONSTASCII_ACTION( sXML_headers, "headers" );
832 XML_CONSTASCII_ACTION( sXML_height, "height" );
833 XML_CONSTASCII_ACTION( sXML_help_file_name, "help-file-name" );
834 XML_CONSTASCII_ACTION( sXML_help_id, "help-id" );
835 XML_CONSTASCII_ACTION( sXML_help_message, "help-message" );
836 XML_CONSTASCII_ACTION( sXML_hidden, "hidden" );
837 XML_CONSTASCII_ACTION( sXML_hidden_and_protected, "hidden-and-protected");
838 XML_CONSTASCII_ACTION( sXML_hidden_paragraph, "hidden-paragraph" );
839 XML_CONSTASCII_ACTION( sXML_hidden_text, "hidden-text" );
840 XML_CONSTASCII_ACTION( sXML_highlighted_range, "highlighted-range" );
841 XML_CONSTASCII_ACTION( sXML_horizontal, "horizontal" );
842 XML_CONSTASCII_ACTION( sXML_horizontal_lines, "horizontal-lines" );
843 XML_CONSTASCII_ACTION( sXML_horizontal_on_left_pages, "horizontal-on-left-pages" );
844 XML_CONSTASCII_ACTION( sXML_horizontal_on_right_pages, "horizontal-on-right-pages" );
845 XML_CONSTASCII_ACTION( sXML_horizontal_pos, "horizontal-pos" );
846 XML_CONSTASCII_ACTION( sXML_horizontal_rel, "horizontal-rel" );
847 XML_CONSTASCII_ACTION( sXML_horizontal_scrollbar_width, "horizontal-scrollbar-width" );
848 XML_CONSTASCII_ACTION( sXML_horizontal_segments, "horizontal-segments" );
849 XML_CONSTASCII_ACTION( sXML_horizontal_split_mode, "horizontal-split-mode" );
850 XML_CONSTASCII_ACTION( sXML_horizontal_split_position, "horizontal-split-position" );
851 XML_CONSTASCII_ACTION( sXML_horizontal_stripes, "horizontal-stripes" );
852 XML_CONSTASCII_ACTION( sXML_hours, "hours" );
853 XML_CONSTASCII_ACTION( sXML_howpublished, "howpublished" );
854 XML_CONSTASCII_ACTION( sXML_href, "href" );
855 XML_CONSTASCII_ACTION( sXML_html, "html");
856 XML_CONSTASCII_ACTION( sXML_hyperlink_behaviour, "hyperlink-behaviour" );
857 XML_CONSTASCII_ACTION( sXML_hyphenate, "hyphenate" );
858 XML_CONSTASCII_ACTION( sXML_hyphenation_keep, "hyphenation-keep" );
859 XML_CONSTASCII_ACTION( sXML_hyphenation_ladder_count, "hyphenation-ladder-count" );
860 XML_CONSTASCII_ACTION( sXML_hyphenation_push_char_count, "hyphenation-push-char-count" );
861 XML_CONSTASCII_ACTION( sXML_hyphenation_remain_char_count, "hyphenation-remain-char-count" );
862 XML_CONSTASCII_ACTION( sXML_i, "i" );
863 XML_CONSTASCII_ACTION( sXML_icon, "icon" );
864 XML_CONSTASCII_ACTION( sXML_id, "id" );
865 XML_CONSTASCII_ACTION( sXML_ident, "ident");
866 XML_CONSTASCII_ACTION( sXML_identifier, "identifier" );
867 XML_CONSTASCII_ACTION( sXML_identify_categories, "identify-categories");
868 XML_CONSTASCII_ACTION( sXML_ideograph_alpha, "ideograph-alpha");
869 XML_CONSTASCII_ACTION( sXML_ignore_case, "ignore-case" );
870 XML_CONSTASCII_ACTION( sXML_ignore_empty_rows, "ignore-empty-rows");
871 XML_CONSTASCII_ACTION( sXML_illustration_index, "illustration-index" );
872 XML_CONSTASCII_ACTION( sXML_illustration_index_entry_template, "illustration-index-entry-template" );
873 XML_CONSTASCII_ACTION( sXML_illustration_index_source, "illustration-index-source" );
874 XML_CONSTASCII_ACTION( sXML_image, "image" );
875 XML_CONSTASCII_ACTION( sXML_image_count, "image-count" );
876 XML_CONSTASCII_ACTION( sXML_image_map, "image-map" );
877 XML_CONSTASCII_ACTION( sXML_implies, "implies" );
878 XML_CONSTASCII_ACTION( sXML_in, "in");
879 XML_CONSTASCII_ACTION( sXML_in_range, "in-range");
880 XML_CONSTASCII_ACTION( sXML_inbook, "inbook" );
881 XML_CONSTASCII_ACTION( sXML_incollection, "incollection" );
882 XML_CONSTASCII_ACTION( sXML_increment, "increment" );
883 XML_CONSTASCII_ACTION( sXML_index, "index");
884 XML_CONSTASCII_ACTION( sXML_index_body, "index-body");
885 XML_CONSTASCII_ACTION( sXML_index_entry_bibliography, "index-entry-bibliography" );
886 XML_CONSTASCII_ACTION( sXML_index_entry_chapter, "index-entry-chapter" );
887 XML_CONSTASCII_ACTION( sXML_index_entry_chapter_number, "index-entry-chapter-number" );
888 XML_CONSTASCII_ACTION( sXML_index_entry_link_end, "index-entry-link-end" );
889 XML_CONSTASCII_ACTION( sXML_index_entry_link_start, "index-entry-link-start" );
890 XML_CONSTASCII_ACTION( sXML_index_entry_page_number, "index-entry-page-number" );
891 XML_CONSTASCII_ACTION( sXML_index_entry_span, "index-entry-span" );
892 XML_CONSTASCII_ACTION( sXML_index_entry_tab_stop, "index-entry-tab-stop" );
893 XML_CONSTASCII_ACTION( sXML_index_entry_template, "index-entry-template" );
894 XML_CONSTASCII_ACTION( sXML_index_entry_text, "index-entry-text" );
895 XML_CONSTASCII_ACTION( sXML_index_name, "index-name" );
896 XML_CONSTASCII_ACTION( sXML_index_scope, "index-scope" );
897 XML_CONSTASCII_ACTION( sXML_index_source_style, "index-source-style" );
898 XML_CONSTASCII_ACTION( sXML_index_source_styles, "index-source-styles" );
899 XML_CONSTASCII_ACTION( sXML_index_title, "index-title" );
900 XML_CONSTASCII_ACTION( sXML_index_title_template, "index-title-template" );
901 XML_CONSTASCII_ACTION( sXML_information, "information" );
902 XML_CONSTASCII_ACTION( sXML_initial_creator, "initial-creator" );
903 XML_CONSTASCII_ACTION( sXML_inproceedings, "inproceedings" );
904 XML_CONSTASCII_ACTION( sXML_insertion, "insertion" );
905 XML_CONSTASCII_ACTION( sXML_insertion_cut_off, "insertion-cut-off" );
906 XML_CONSTASCII_ACTION( sXML_inset, "inset" );
907 XML_CONSTASCII_ACTION( sXML_inside, "inside" );
908 XML_CONSTASCII_ACTION( sXML_institution, "institution" );
909 XML_CONSTASCII_ACTION( sXML_int, "int" );
910 XML_CONSTASCII_ACTION( sXML_intensity, "intensity" );
911 XML_CONSTASCII_ACTION( sXML_intersect, "intersect" );
912 XML_CONSTASCII_ACTION( sXML_interval, "interval" );
913 XML_CONSTASCII_ACTION( sXML_interval_major, "interval-major" );
914 XML_CONSTASCII_ACTION( sXML_interval_minor, "interval-minor" );
915 XML_CONSTASCII_ACTION( sXML_into_english_number, "into-english-number" );
916 XML_CONSTASCII_ACTION( sXML_inverse, "inverse" );
917 XML_CONSTASCII_ACTION( sXML_is_active, "is-active");
918 XML_CONSTASCII_ACTION( sXML_is_data_layout_field, "is-data-layout-field");
919 XML_CONSTASCII_ACTION( sXML_is_hidden, "is-hidden" );
920 XML_CONSTASCII_ACTION( sXML_is_selection, "is-selection");
921 XML_CONSTASCII_ACTION( sXML_isbn, "isbn" );
922 XML_CONSTASCII_ACTION( sXML_italic, "italic" );
923 XML_CONSTASCII_ACTION( sXML_iteration, "iteration" );
924 XML_CONSTASCII_ACTION( sXML_journal, "journal" );
925 XML_CONSTASCII_ACTION( sXML_justified, "justified" );
926 XML_CONSTASCII_ACTION( sXML_justify, "justify" );
927 XML_CONSTASCII_ACTION( sXML_justify_single_word, "justify-single-word" );
928 XML_CONSTASCII_ACTION( sXML_keep_with_next, "keep-with-next" );
929 XML_CONSTASCII_ACTION( sXML_kerning_normal, "normal" );
930 XML_CONSTASCII_ACTION( sXML_key, "key" );
931 XML_CONSTASCII_ACTION( sXML_key1, "key1" );
932 XML_CONSTASCII_ACTION( sXML_key2, "key2" );
933 XML_CONSTASCII_ACTION( sXML_keyword, "keyword" );
934 XML_CONSTASCII_ACTION( sXML_keywords, "keywords" );
935 XML_CONSTASCII_ACTION( sXML_km, "km" );
936 XML_CONSTASCII_ACTION( sXML_label, "label" );
937 XML_CONSTASCII_ACTION( sXML_label_arrangement, "label-arrangement" );
938 XML_CONSTASCII_ACTION( sXML_label_cell_address, "label-cell-address" );
939 XML_CONSTASCII_ACTION( sXML_label_cell_range_address, "label-cell-range-address" );
940 XML_CONSTASCII_ACTION( sXML_label_range, "label-range" );
941 XML_CONSTASCII_ACTION( sXML_label_ranges, "label-ranges" );
942 XML_CONSTASCII_ACTION( sXML_layer, "layer" );
943 XML_CONSTASCII_ACTION( sXML_layer_set, "layer-set" );
944 XML_CONSTASCII_ACTION( sXML_lambda, "lambda" );
945 XML_CONSTASCII_ACTION( sXML_landscape, "landscape" );
946 XML_CONSTASCII_ACTION( sXML_language, "language" );
947 XML_CONSTASCII_ACTION( sXML_language_asian, "language-asian" );
948 XML_CONSTASCII_ACTION( sXML_language_complex, "language-complex" );
949 XML_CONSTASCII_ACTION( sXML_last_column_spanned, "last-column-spanned" );
950 XML_CONSTASCII_ACTION( sXML_last_page, "last-page" );
951 XML_CONSTASCII_ACTION( sXML_last_row_spanned, "last-row-spanned" );
952 XML_CONSTASCII_ACTION( sXML_leader_char, "leader-char" );
953 XML_CONSTASCII_ACTION( sXML_left, "left" );
954 XML_CONSTASCII_ACTION( sXML_left_outside, "left-outside" );
955 XML_CONSTASCII_ACTION( sXML_left_top_position, "left-top-position" );
956 XML_CONSTASCII_ACTION( sXML_legend, "legend" );
957 XML_CONSTASCII_ACTION( sXML_legend_position, "legend-position" );
958 XML_CONSTASCII_ACTION( sXML_length, "length" );
959 XML_CONSTASCII_ACTION( sXML_leq, "leq" );
960 XML_CONSTASCII_ACTION( sXML_let_text, "let-text" );
961 XML_CONSTASCII_ACTION( sXML_letter_kerning, "letter-kerning" );
962 XML_CONSTASCII_ACTION( sXML_letter_spacing, "letter-spacing" );
963 XML_CONSTASCII_ACTION( sXML_letters, "letters" );
964 XML_CONSTASCII_ACTION( sXML_level, "level" );
965 XML_CONSTASCII_ACTION( sXML_library, "library" );
966 XML_CONSTASCII_ACTION( sXML_library_embedded, "library-embedded" );
967 XML_CONSTASCII_ACTION( sXML_library_linked, "library-linked" );
968 XML_CONSTASCII_ACTION( sXML_light, "light");
969 XML_CONSTASCII_ACTION( sXML_lighting_mode, "lighting-mode");
970 XML_CONSTASCII_ACTION( sXML_lime, "lime" );
971 XML_CONSTASCII_ACTION( sXML_limit, "limit" );
972 XML_CONSTASCII_ACTION( sXML_line, "line" );
973 XML_CONSTASCII_ACTION( sXML_line_break, "line-break" );
974 XML_CONSTASCII_ACTION( sXML_line_height, "line-height" );
975 XML_CONSTASCII_ACTION( sXML_line_height_at_least, "line-height-at-least" );
976 XML_CONSTASCII_ACTION( sXML_line_spacing, "line-spacing" );
977 XML_CONSTASCII_ACTION( sXML_linear, "linear" );
978 XML_CONSTASCII_ACTION( sXML_linenumbering_configuration, "linenumbering-configuration" );
979 XML_CONSTASCII_ACTION( sXML_linenumbering_separator, "linenumbering-separator" );
980 XML_CONSTASCII_ACTION( sXML_lines, "lines" );
981 XML_CONSTASCII_ACTION( sXML_lines_used, "lines-used" );
982 XML_CONSTASCII_ACTION( sXML_link_data_style_to_source, "link-data-style-to-source" );
983 XML_CONSTASCII_ACTION( sXML_link_to_source_data, "link-to-source-data" );
984 XML_CONSTASCII_ACTION( sXML_list, "list");
985 XML_CONSTASCII_ACTION( sXML_list_block, "list-block" );
986 XML_CONSTASCII_ACTION( sXML_list_header, "list-header" );
987 XML_CONSTASCII_ACTION( sXML_list_info, "list-info" );
988 XML_CONSTASCII_ACTION( sXML_list_item, "list-item" );
989 XML_CONSTASCII_ACTION( sXML_list_level, "list-level" );
990 XML_CONSTASCII_ACTION( sXML_list_level_style_bullet, "list-level-style-bullet" );
991 XML_CONSTASCII_ACTION( sXML_list_level_style_image, "list-level-style-image" );
992 XML_CONSTASCII_ACTION( sXML_list_level_style_number, "list-level-style-number" );
993 XML_CONSTASCII_ACTION( sXML_list_name, "list-name" );
994 XML_CONSTASCII_ACTION( sXML_list_style, "list-style" );
995 XML_CONSTASCII_ACTION( sXML_list_style_name, "list-style-name" );
996 XML_CONSTASCII_ACTION( sXML_ln, "ln" );
997 XML_CONSTASCII_ACTION( sXML_locked, "locked" );
998 XML_CONSTASCII_ACTION( sXML_log, "log" );
999 XML_CONSTASCII_ACTION( sXML_logarithmic, "logarithmic" );
1000 XML_CONSTASCII_ACTION( sXML_logbase, "logbase" );
1001 XML_CONSTASCII_ACTION( sXML_long, "long" );
1002 XML_CONSTASCII_ACTION( sXML_lowlimit, "lowlimit" );
1003 XML_CONSTASCII_ACTION( sXML_lr_tb, "lr-tb" );
1004 XML_CONSTASCII_ACTION( sXML_lt, "lt");
1005 XML_CONSTASCII_ACTION( sXML_ltr, "ltr");
1006 XML_CONSTASCII_ACTION( sXML_luminance , "luminance" );
1007 XML_CONSTASCII_ACTION( sXML_macro_name, "macro-name");
1008 XML_CONSTASCII_ACTION( sXML_maction, "maction");
1009 XML_CONSTASCII_ACTION( sXML_main_entry_style_name, "main-entry-style-name" );
1010 XML_CONSTASCII_ACTION( sXML_major, "major" );
1011 XML_CONSTASCII_ACTION( sXML_maligngroup, "maligngroup");
1012 XML_CONSTASCII_ACTION( sXML_malignmark, "malignmark");
1013 XML_CONSTASCII_ACTION( sXML_manual, "manual" );
1014 XML_CONSTASCII_ACTION( sXML_map, "map" );
1015 XML_CONSTASCII_ACTION( sXML_margin_bottom, "margin-bottom" );
1016 XML_CONSTASCII_ACTION( sXML_margin_left, "margin-left" );
1017 XML_CONSTASCII_ACTION( sXML_margin_right, "margin-right" );
1018 XML_CONSTASCII_ACTION( sXML_margin_top, "margin-top" );
1019 XML_CONSTASCII_ACTION( sXML_margins, "margins" );
1020 XML_CONSTASCII_ACTION( sXML_marker, "marker" );
1021 XML_CONSTASCII_ACTION( sXML_marker_end , "marker-end" );
1022 XML_CONSTASCII_ACTION( sXML_marker_end_center , "marker-end-center" );
1023 XML_CONSTASCII_ACTION( sXML_marker_end_width , "marker-end-width" );
1024 XML_CONSTASCII_ACTION( sXML_marker_start , "marker-start" );
1025 XML_CONSTASCII_ACTION( sXML_marker_start_center , "marker-start-center" );
1026 XML_CONSTASCII_ACTION( sXML_marker_start_width , "marker-start-width" );
1027 XML_CONSTASCII_ACTION( sXML_maroon, "maroon" );
1028 XML_CONSTASCII_ACTION( sXML_master_page, "master-page" );
1029 XML_CONSTASCII_ACTION( sXML_master_page_name , "master-page-name" );
1030 XML_CONSTASCII_ACTION( sXML_master_styles, "master-styles" );
1031 XML_CONSTASCII_ACTION( sXML_mastersthesis, "mastersthesis" );
1032 XML_CONSTASCII_ACTION( sXML_match, "match");
1033 XML_CONSTASCII_ACTION( sXML_math, "math");
1034 XML_CONSTASCII_ACTION( sXML_matrix, "matrix");
1035 XML_CONSTASCII_ACTION( sXML_matrix_covered, "matrix-covered");
1036 XML_CONSTASCII_ACTION( sXML_matrixrow, "matrixrow");
1037 XML_CONSTASCII_ACTION( sXML_max, "max" );
1038 XML_CONSTASCII_ACTION( sXML_max_edge, "max-edge");
1039 XML_CONSTASCII_ACTION( sXML_max_height, "max-height");
1040 XML_CONSTASCII_ACTION( sXML_max_width, "max-width");
1041 XML_CONSTASCII_ACTION( sXML_maximum, "maximum" );
1042 XML_CONSTASCII_ACTION( sXML_maximum_difference, "maximum-difference" );
1043 XML_CONSTASCII_ACTION( sXML_may_break_between_rows, "may-break-between-rows" );
1044 XML_CONSTASCII_ACTION( sXML_may_script, "may-script" );
1045 XML_CONSTASCII_ACTION( sXML_mean, "mean" );
1046 XML_CONSTASCII_ACTION( sXML_mean_value, "mean-value" );
1047 XML_CONSTASCII_ACTION( sXML_measure, "measure" );
1048 XML_CONSTASCII_ACTION( sXML_measure_align, "measure-align" );
1049 XML_CONSTASCII_ACTION( sXML_measure_vertical_align, "measure-vertical-align" );
1050 XML_CONSTASCII_ACTION( sXML_median, "median" );
1051 XML_CONSTASCII_ACTION( sXML_medium, "medium" );
1052 XML_CONSTASCII_ACTION( sXML_merror, "merror" );
1053 XML_CONSTASCII_ACTION( sXML_message_type, "message-type" );
1054 XML_CONSTASCII_ACTION( sXML_meta, "meta" );
1055 XML_CONSTASCII_ACTION( sXML_mfenced, "mfenced" );
1056 XML_CONSTASCII_ACTION( sXML_mfrac, "mfrac" );
1057 XML_CONSTASCII_ACTION( sXML_mi, "mi" ); //MathML Math Identifier
1058 XML_CONSTASCII_ACTION( sXML_middle, "middle" );
1059 XML_CONSTASCII_ACTION( sXML_mime_type, "mime-type" );
1060 XML_CONSTASCII_ACTION( sXML_min, "min" );
1061 XML_CONSTASCII_ACTION( sXML_min_denominator_digits, "min-denominator-digits" );
1062 XML_CONSTASCII_ACTION( sXML_min_edge, "min-edge");
1063 XML_CONSTASCII_ACTION( sXML_min_exponent_digits, "min-exponent-digits" );
1064 XML_CONSTASCII_ACTION( sXML_min_height, "min-height" );
1065 XML_CONSTASCII_ACTION( sXML_min_width, "min-width" );
1066 XML_CONSTASCII_ACTION( sXML_min_integer_digits, "min-integer-digits" );
1067 XML_CONSTASCII_ACTION( sXML_min_label_distance, "min-label-distance" );
1068 XML_CONSTASCII_ACTION( sXML_min_label_width, "min-label-width" );
1069 XML_CONSTASCII_ACTION( sXML_min_line_height, "min-line-height" );
1070 XML_CONSTASCII_ACTION( sXML_min_numerator_digits, "min-numerator-digits" );
1071 XML_CONSTASCII_ACTION( sXML_min_row_height, "min-row-height" );
1072 XML_CONSTASCII_ACTION( sXML_minimum, "minimum" );
1073 XML_CONSTASCII_ACTION( sXML_minor, "minor" );
1074 XML_CONSTASCII_ACTION( sXML_minus, "minus" );
1075 XML_CONSTASCII_ACTION( sXML_minutes, "minutes" );
1076 XML_CONSTASCII_ACTION( sXML_mirror, "mirror" );
1077 XML_CONSTASCII_ACTION( sXML_mirrored, "mirrored" );
1078 XML_CONSTASCII_ACTION( sXML_misc, "misc" );
1079 XML_CONSTASCII_ACTION( sXML_miter , "miter" );
1080 XML_CONSTASCII_ACTION( sXML_mmultiscripts, "mmultiscripts" );
1081 XML_CONSTASCII_ACTION( sXML_mm, "mm" );
1082 XML_CONSTASCII_ACTION( sXML_mn, "mn" );
1083 XML_CONSTASCII_ACTION( sXML_mo, "mo" );
1084 XML_CONSTASCII_ACTION( sXML_mode, "mode" );
1085 XML_CONSTASCII_ACTION( sXML_modern, "modern" );
1086 XML_CONSTASCII_ACTION( sXML_modification_date, "modification-date" );
1087 XML_CONSTASCII_ACTION( sXML_modification_time, "modification-time" );
1088 XML_CONSTASCII_ACTION( sXML_modulate, "modulate" );
1089 XML_CONSTASCII_ACTION( sXML_module, "module" );
1090 XML_CONSTASCII_ACTION( sXML_moment, "moment" );
1091 XML_CONSTASCII_ACTION( sXML_mono, "mono" );
1092 XML_CONSTASCII_ACTION( sXML_month, "month" );
1093 XML_CONSTASCII_ACTION( sXML_move_from_bottom, "move-from-bottom" );
1094 XML_CONSTASCII_ACTION( sXML_move_from_left, "move-from-left" );
1095 XML_CONSTASCII_ACTION( sXML_move_from_right, "move-from-right" );
1096 XML_CONSTASCII_ACTION( sXML_move_from_top, "move-from-top" );
1097 XML_CONSTASCII_ACTION( sXML_move_protect, "move-protect" );
1098 XML_CONSTASCII_ACTION( sXML_mover, "mover" );
1099 XML_CONSTASCII_ACTION( sXML_movement, "movement" );
1100 XML_CONSTASCII_ACTION( sXML_movement_cut_off, "movement-cut-off" );
1101 XML_CONSTASCII_ACTION( sXML_mouse_as_pen, "mouse-as-pen" );
1102 XML_CONSTASCII_ACTION( sXML_mouse_visible, "mouse-visible" );
1103 XML_CONSTASCII_ACTION( sXML_mpadded, "mpadded");
1104 XML_CONSTASCII_ACTION( sXML_mphantom, "mphantom");
1105 XML_CONSTASCII_ACTION( sXML_mprescripts, "mprescripts");
1106 XML_CONSTASCII_ACTION( sXML_mroot, "mroot");
1107 XML_CONSTASCII_ACTION( sXML_mrow, "mrow");
1108 XML_CONSTASCII_ACTION( sXML_ms, "ms");
1109 XML_CONSTASCII_ACTION( sXML_mspace, "mspace");
1110 XML_CONSTASCII_ACTION( sXML_msqrt, "msqrt");
1111 XML_CONSTASCII_ACTION( sXML_mstyle, "mstyle");
1112 XML_CONSTASCII_ACTION( sXML_msub, "msub");
1113 XML_CONSTASCII_ACTION( sXML_msubsup, "msubsup");
1114 XML_CONSTASCII_ACTION( sXML_msup, "msup");
1115 XML_CONSTASCII_ACTION( sXML_mtable, "mtable");
1116 XML_CONSTASCII_ACTION( sXML_mtd, "mtd");
1117 XML_CONSTASCII_ACTION( sXML_mtext, "mtext");
1118 XML_CONSTASCII_ACTION( sXML_mtr, "mtr");
1119 XML_CONSTASCII_ACTION( sXML_multi_deletion_spanned, "multi-deletion-spanned");
1120 XML_CONSTASCII_ACTION( sXML_munder, "munder");
1121 XML_CONSTASCII_ACTION( sXML_munderover, "munderover");
1122 XML_CONSTASCII_ACTION( sXML_name, "name" );
1123 XML_CONSTASCII_ACTION( sXML_name_and_extension, "name-and-extension" );
1124 XML_CONSTASCII_ACTION( sXML_named_expression, "named-expression");
1125 XML_CONSTASCII_ACTION( sXML_named_expressions, "named-expressions");
1126 XML_CONSTASCII_ACTION( sXML_named_range, "named-range");
1127 XML_CONSTASCII_ACTION( sXML_navy, "navy");
1128 XML_CONSTASCII_ACTION( sXML_neq, "neq" );
1129 XML_CONSTASCII_ACTION( sXML_new, "new" );
1130 XML_CONSTASCII_ACTION( sXML_next, "next" );
1131 XML_CONSTASCII_ACTION( sXML_next_page, "next-page" );
1132 XML_CONSTASCII_ACTION( sXML_next_style_name, "next-style-name" );
1133 XML_CONSTASCII_ACTION( sXML_nohref, "nohref" );
1134 XML_CONSTASCII_ACTION( sXML_no_limit, "no-limit" );
1135 XML_CONSTASCII_ACTION( sXML_no_wrap, "no-wrap" );
1136 XML_CONSTASCII_ACTION( sXML_noempty, "!empty");
1137 XML_CONSTASCII_ACTION( sXML_nomatch, "!match");
1138 XML_CONSTASCII_ACTION( sXML_none, "none" );
1139 XML_CONSTASCII_ACTION( sXML_noprtsubset, "notprsubset" );
1140 XML_CONSTASCII_ACTION( sXML_normal, "normal" );
1141 XML_CONSTASCII_ACTION( sXML_normals_direction, "normals-direction" );
1142 XML_CONSTASCII_ACTION( sXML_normals_kind, "normals-kind" );
1143 XML_CONSTASCII_ACTION( sXML_not, "not" );
1144 XML_CONSTASCII_ACTION( sXML_not_equal_date, "not-equal-date" );
1145 XML_CONSTASCII_ACTION( sXML_note, "note" );
1146 XML_CONSTASCII_ACTION( sXML_notes, "notes" );
1147 XML_CONSTASCII_ACTION( sXML_notin, "notin" );
1148 XML_CONSTASCII_ACTION( sXML_notsubset, "notsubset" );
1149 XML_CONSTASCII_ACTION( sXML_null_date, "null-date" );
1150 XML_CONSTASCII_ACTION( sXML_null_year, "null-year" );
1151 XML_CONSTASCII_ACTION( sXML_num_format, "num-format" );
1152 XML_CONSTASCII_ACTION( sXML_num_letter_sync, "num-letter-sync" );
1153 XML_CONSTASCII_ACTION( sXML_num_prefix, "num-prefix" );
1154 XML_CONSTASCII_ACTION( sXML_num_suffix, "num-suffix" );
1155 XML_CONSTASCII_ACTION( sXML_number, "number" );
1156 XML_CONSTASCII_ACTION( sXML_number_and_name, "number-and-name" );
1157 XML_CONSTASCII_ACTION( sXML_number_columns_repeated, "number-columns-repeated" );
1158 XML_CONSTASCII_ACTION( sXML_number_columns_spanned, "number-columns-spanned" );
1159 XML_CONSTASCII_ACTION( sXML_number_lines, "number-lines" );
1160 XML_CONSTASCII_ACTION( sXML_number_matrix_columns_spanned, "number-matrix-columns-spanned" );
1161 XML_CONSTASCII_ACTION( sXML_number_matrix_rows_spanned, "number-matrix-rows-spanned" );
1162 XML_CONSTASCII_ACTION( sXML_number_position, "number-position" );
1163 XML_CONSTASCII_ACTION( sXML_number_rows_repeated, "number-rows-repeated" );
1164 XML_CONSTASCII_ACTION( sXML_number_rows_spanned, "number-rows-spanned" );
1165 XML_CONSTASCII_ACTION( sXML_number_style, "number-style" );
1166 XML_CONSTASCII_ACTION( sXML_number_wrapped_paragraphs, "number-wrapped-paragraphs" );
1167 XML_CONSTASCII_ACTION( sXML_numbered_entries, "numbered-entries" );
1168 XML_CONSTASCII_ACTION( sXML_object, "object" );
1169 XML_CONSTASCII_ACTION( sXML_object_count, "object-count" );
1170 XML_CONSTASCII_ACTION( sXML_object_index, "object-index" );
1171 XML_CONSTASCII_ACTION( sXML_object_index_entry_template, "object-index-entry-template" );
1172 XML_CONSTASCII_ACTION( sXML_object_index_source, "object-index-source" );
1173 XML_CONSTASCII_ACTION( sXML_object_name, "object-name");
1174 XML_CONSTASCII_ACTION( sXML_object_ole, "object-ole" );
1175 XML_CONSTASCII_ACTION( sXML_objects, "objects" );
1176 XML_CONSTASCII_ACTION( sXML_odd_page, "odd-page" );
1177 XML_CONSTASCII_ACTION( sXML_offset, "offset" );
1178 XML_CONSTASCII_ACTION( sXML_olive, "olive" );
1179 XML_CONSTASCII_ACTION( sXML_online, "online" );
1180 XML_CONSTASCII_ACTION( sXML_online_text, "online-text" );
1181 XML_CONSTASCII_ACTION( sXML_onLoad, "onLoad" );
1182 XML_CONSTASCII_ACTION( sXML_onRequest, "onRequest" );
1183 XML_CONSTASCII_ACTION( sXML_on_update_keep_size, "on-update-keep-size");
1184 XML_CONSTASCII_ACTION( sXML_on_update_keep_styles, "on-update-keep-styles");
1185 XML_CONSTASCII_ACTION( sXML_opaque_background, "background" );
1186 XML_CONSTASCII_ACTION( sXML_opaque_foreground, "foreground" );
1187 XML_CONSTASCII_ACTION( sXML_open, "open" );
1188 XML_CONSTASCII_ACTION( sXML_open_horizontal, "open-horizontal" );
1189 XML_CONSTASCII_ACTION( sXML_open_vertical, "open-vertical" );
1190 XML_CONSTASCII_ACTION( sXML_operation, "operation");
1191 XML_CONSTASCII_ACTION( sXML_operator, "operator");
1192 XML_CONSTASCII_ACTION( sXML_optimal, "optimal");
1193 XML_CONSTASCII_ACTION( sXML_or, "or");
1194 XML_CONSTASCII_ACTION( sXML_order, "order");
1195 XML_CONSTASCII_ACTION( sXML_ordered_list, "ordered-list" );
1196 XML_CONSTASCII_ACTION( sXML_organizations, "organizations" );
1197 XML_CONSTASCII_ACTION( sXML_orientation, "orientation");
1198 XML_CONSTASCII_ACTION( sXML_orientation_landscape, "orientation-landscape" );
1199 XML_CONSTASCII_ACTION( sXML_orientation_portrait, "orientation-portrait" );
1200 XML_CONSTASCII_ACTION( sXML_origin, "origin" );
1201 XML_CONSTASCII_ACTION( sXML_orphans, "orphans" );
1202 XML_CONSTASCII_ACTION( sXML_outline_level, "outline-level" );
1203 XML_CONSTASCII_ACTION( sXML_outline_level_style, "outline-level-style" );
1204 XML_CONSTASCII_ACTION( sXML_outline_style, "outline-style" );
1205 XML_CONSTASCII_ACTION( sXML_outset, "outset" );
1206 XML_CONSTASCII_ACTION( sXML_outside, "outside" );
1207 XML_CONSTASCII_ACTION( sXML_overlap, "overlap" );
1208 XML_CONSTASCII_ACTION( sXML_p, "p" );
1209 XML_CONSTASCII_ACTION( sXML_package_name, "package-name" );
1210 XML_CONSTASCII_ACTION( sXML_padding, "padding" );
1211 XML_CONSTASCII_ACTION( sXML_padding_bottom, "padding-bottom" );
1212 XML_CONSTASCII_ACTION( sXML_padding_left, "padding-left" );
1213 XML_CONSTASCII_ACTION( sXML_padding_right, "padding-right" );
1214 XML_CONSTASCII_ACTION( sXML_padding_top, "padding-top" );
1215 XML_CONSTASCII_ACTION( sXML_page, "page" );
1216 XML_CONSTASCII_ACTION( sXML_page_adjust, "page-adjust" );
1217 XML_CONSTASCII_ACTION( sXML_page_breaks_on_group_change, "page-breaks-on-group-change");
1218 XML_CONSTASCII_ACTION( sXML_page_content, "page-content" );
1219 XML_CONSTASCII_ACTION( sXML_page_continuation_string, "page-continuation-string" );
1220 XML_CONSTASCII_ACTION( sXML_page_count, "page-count" );
1221 XML_CONSTASCII_ACTION( sXML_page_end_margin, "page-end-margin" );
1222 XML_CONSTASCII_ACTION( sXML_page_height, "page-height" );
1223 XML_CONSTASCII_ACTION( sXML_page_master, "page-master" );
1224 XML_CONSTASCII_ACTION( sXML_page_master_name, "page-master-name" );
1225 XML_CONSTASCII_ACTION( sXML_page_number, "page-number" );
1226 XML_CONSTASCII_ACTION( sXML_page_start_margin, "page-start-margin" );
1227 XML_CONSTASCII_ACTION( sXML_page_style_name, "page-style-name" );
1228 XML_CONSTASCII_ACTION( sXML_page_thumbnail, "page-thumbnail" );
1229 XML_CONSTASCII_ACTION( sXML_page_usage, "page-usage" );
1230 XML_CONSTASCII_ACTION( sXML_page_variable_get, "page-variable-get" );
1231 XML_CONSTASCII_ACTION( sXML_page_variable_set, "page-variable-set" );
1232 XML_CONSTASCII_ACTION( sXML_page_view_zoom_value, "page-view-zoom-value" );
1233 XML_CONSTASCII_ACTION( sXML_page_width, "page-width" );
1234 XML_CONSTASCII_ACTION( sXML_pages, "pages" );
1235 XML_CONSTASCII_ACTION( sXML_paper_tray_number, "paper-tray-number" );
1236 XML_CONSTASCII_ACTION( sXML_paragraph, "paragraph" );
1237 XML_CONSTASCII_ACTION( sXML_paragraph_content, "paragraph-content" );
1238 XML_CONSTASCII_ACTION( sXML_paragraph_count, "paragraph-count" );
1239 XML_CONSTASCII_ACTION( sXML_paragraph_end_margin, "paragraph-end-margin" );
1240 XML_CONSTASCII_ACTION( sXML_paragraph_start_margin, "paragraph-start-margin" );
1241 XML_CONSTASCII_ACTION( sXML_param, "param" );
1242 XML_CONSTASCII_ACTION( sXML_parallel, "parallel" );
1243 XML_CONSTASCII_ACTION( sXML_parent_style_name, "parent-style-name" );
1244 XML_CONSTASCII_ACTION( sXML_parse_sql_statement, "parse-sql-statement");
1245 XML_CONSTASCII_ACTION( sXML_parsed, "parsed" );
1246 XML_CONSTASCII_ACTION( sXML_pause, "pause" );
1247 XML_CONSTASCII_ACTION( sXML_partialdiff, "partialdiff");
1248 XML_CONSTASCII_ACTION( sXML_password, "password");
1249 XML_CONSTASCII_ACTION( sXML_passwort, "passwort");
1250 XML_CONSTASCII_ACTION( sXML_path , "path" );
1251 XML_CONSTASCII_ACTION( sXML_pending , "pending" );
1252 XML_CONSTASCII_ACTION( sXML_percentage, "percentage");
1253 XML_CONSTASCII_ACTION( sXML_percentage_style, "percentage-style" );
1254 XML_CONSTASCII_ACTION( sXML_perspective, "perspective");
1255 XML_CONSTASCII_ACTION( sXML_phdthesis, "phdthesis" );
1256 XML_CONSTASCII_ACTION( sXML_phong, "phong");
1257 XML_CONSTASCII_ACTION( sXML_pie_offset, "pie-offset" );
1258 XML_CONSTASCII_ACTION( sXML_placeholder, "placeholder" );
1259 XML_CONSTASCII_ACTION( sXML_placeholder_type, "placeholder-type" );
1260 XML_CONSTASCII_ACTION( sXML_placing, "placing" );
1261 XML_CONSTASCII_ACTION( sXML_plain_number, "plain-number" );
1262 XML_CONSTASCII_ACTION( sXML_plain_number_and_name, "plain-number-and-name" );
1263 XML_CONSTASCII_ACTION( sXML_plot_area, "plot-area" );
1264 XML_CONSTASCII_ACTION( sXML_plugin, "plugin" );
1265 XML_CONSTASCII_ACTION( sXML_plus, "plus" );
1266 XML_CONSTASCII_ACTION( sXML_points, "points" );
1267 XML_CONSTASCII_ACTION( sXML_polygon , "polygon" );
1268 XML_CONSTASCII_ACTION( sXML_polyline , "polyline" );
1269 XML_CONSTASCII_ACTION( sXML_polynomial, "polynomial" );
1270 XML_CONSTASCII_ACTION( sXML_pool_id, "pool-id" );
1271 XML_CONSTASCII_ACTION( sXML_portrait, "portrait" );
1272 XML_CONSTASCII_ACTION( sXML_position, "position" );
1273 XML_CONSTASCII_ACTION( sXML_position_bottom, "position-bottom" );
1274 XML_CONSTASCII_ACTION( sXML_position_left, "position-left" );
1275 XML_CONSTASCII_ACTION( sXML_position_right, "position-right" );
1276 XML_CONSTASCII_ACTION( sXML_position_top, "position-top" );
1277 XML_CONSTASCII_ACTION( sXML_posture_italic, "italic" );
1278 XML_CONSTASCII_ACTION( sXML_posture_normal, "normal" );
1279 XML_CONSTASCII_ACTION( sXML_posture_oblique, "oblique" );
1280 XML_CONSTASCII_ACTION( sXML_power, "power" );
1281 XML_CONSTASCII_ACTION( sXML_precision_as_shown, "precision-as-shown" );
1282 XML_CONSTASCII_ACTION( sXML_prefix, "prefix" );
1283 XML_CONSTASCII_ACTION( sXML_presentation, "presentation" );
1284 XML_CONSTASCII_ACTION( sXML_presentation_chart , "chart" );
1285 XML_CONSTASCII_ACTION( sXML_presentation_graphic , "graphic" );
1286 XML_CONSTASCII_ACTION( sXML_presentation_notes , "notes" );
1287 XML_CONSTASCII_ACTION( sXML_presentation_object , "object" );
1288 XML_CONSTASCII_ACTION( sXML_presentation_orgchart , "orgchart" );
1289 XML_CONSTASCII_ACTION( sXML_presentation_outline , "outline" );
1290 XML_CONSTASCII_ACTION( sXML_presentation_page , "page" );
1291 XML_CONSTASCII_ACTION( sXML_presentation_page_layout, "presentation-page-layout" );
1292 XML_CONSTASCII_ACTION( sXML_presentation_page_layout_name, "presentation-page-layout-name" );
1293 XML_CONSTASCII_ACTION( sXML_presentation_subtitle , "subtitle" );
1294 XML_CONSTASCII_ACTION( sXML_presentation_table , "table" );
1295 XML_CONSTASCII_ACTION( sXML_presentation_title , "title" );
1296 XML_CONSTASCII_ACTION( sXML_previous, "previous" );
1297 XML_CONSTASCII_ACTION( sXML_previous_page, "previous-page" );
1298 XML_CONSTASCII_ACTION( sXML_print, "print" );
1299 XML_CONSTASCII_ACTION( sXML_printable, "printable" );
1300 XML_CONSTASCII_ACTION( sXML_print_content, "print-content");
1301 XML_CONSTASCII_ACTION( sXML_print_date, "print-date" );
1302 XML_CONSTASCII_ACTION( sXML_print_orientation, "print-orientation");
1303 XML_CONSTASCII_ACTION( sXML_print_page_order, "print-page-order");
1304 XML_CONSTASCII_ACTION( sXML_print_range, "print-range");
1305 XML_CONSTASCII_ACTION( sXML_print_ranges, "print-ranges");
1306 XML_CONSTASCII_ACTION( sXML_print_time, "print-time" );
1307 XML_CONSTASCII_ACTION( sXML_printed_by, "printed-by" );
1308 XML_CONSTASCII_ACTION( sXML_proceedings, "proceedings" );
1309 XML_CONSTASCII_ACTION( sXML_product, "product" );
1310 XML_CONSTASCII_ACTION( sXML_projection, "projection");
1311 XML_CONSTASCII_ACTION( sXML_properties, "properties" );
1312 XML_CONSTASCII_ACTION( sXML_protect, "protect" );
1313 XML_CONSTASCII_ACTION( sXML_protect_content, "content" );
1314 XML_CONSTASCII_ACTION( sXML_protect_position, "position" );
1315 XML_CONSTASCII_ACTION( sXML_protect_size, "size" );
1316 XML_CONSTASCII_ACTION( sXML_protected, "protected" );
1317 XML_CONSTASCII_ACTION( sXML_protection_key, "protection-key" );
1318 XML_CONSTASCII_ACTION( sXML_prsubset, "prsubset" );
1319 XML_CONSTASCII_ACTION( sXML_publisher, "publisher" );
1320 XML_CONSTASCII_ACTION( sXML_punctuation_wrap, "punctuation-wrap" );
1321 XML_CONSTASCII_ACTION( sXML_purple, "purple" );
1322 XML_CONSTASCII_ACTION( sXML_pyramid, "pyramid" );
1323 XML_CONSTASCII_ACTION( sXML_quarter, "quarter" );
1324 XML_CONSTASCII_ACTION( sXML_query_name, "query-name");
1325 XML_CONSTASCII_ACTION( sXML_quo_vadis, "quo-vadis" );
1326 XML_CONSTASCII_ACTION( sXML_quotient, "quotient" );
1327 XML_CONSTASCII_ACTION( sXML_r, "r" );
1328 XML_CONSTASCII_ACTION( sXML_radar, "radar" );
1329 XML_CONSTASCII_ACTION( sXML_random, "random" );
1330 XML_CONSTASCII_ACTION( sXML_range_address, "range-address");
1331 XML_CONSTASCII_ACTION( sXML_range_usable_as, "range-usable-as");
1332 XML_CONSTASCII_ACTION( sXML_recreate_on_edit , "recreate-on-edit" );
1333 XML_CONSTASCII_ACTION( sXML_rect , "rect" );
1334 XML_CONSTASCII_ACTION( sXML_red , "red" );
1335 XML_CONSTASCII_ACTION( sXML_ref_name, "ref-name" );
1336 XML_CONSTASCII_ACTION( sXML_reference, "reference" );
1337 XML_CONSTASCII_ACTION( sXML_reference_end, "reference-end" );
1338 XML_CONSTASCII_ACTION( sXML_reference_format, "reference-format" );
1339 XML_CONSTASCII_ACTION( sXML_reference_mark, "reference-mark" );
1340 XML_CONSTASCII_ACTION( sXML_reference_mark_end, "reference-mark-end" );
1341 XML_CONSTASCII_ACTION( sXML_reference_mark_start, "reference-mark-start" );
1342 XML_CONSTASCII_ACTION( sXML_reference_ref, "reference-ref" );
1343 XML_CONSTASCII_ACTION( sXML_reference_start, "reference-start" );
1344 XML_CONSTASCII_ACTION( sXML_reference_type, "reference-type" );
1345 XML_CONSTASCII_ACTION( sXML_refresh_delay, "refresh-delay" );
1346 XML_CONSTASCII_ACTION( sXML_region_center, "region-center" );
1347 XML_CONSTASCII_ACTION( sXML_region_left, "region-left" );
1348 XML_CONSTASCII_ACTION( sXML_region_right, "region-right" );
1349 XML_CONSTASCII_ACTION( sXML_register_true, "register-true" );
1350 XML_CONSTASCII_ACTION( sXML_register_truth_ref_style_name, "register-truth-ref-style-name" );
1351 XML_CONSTASCII_ACTION( sXML_regression_type, "regression-type" );
1352 XML_CONSTASCII_ACTION( sXML_rejected, "rejected" );
1353 XML_CONSTASCII_ACTION( sXML_rejecting_change_id, "rejecting-change-id" );
1354 XML_CONSTASCII_ACTION( sXML_rejection, "rejection" );
1355 XML_CONSTASCII_ACTION( sXML_rel_column_width, "rel-column-width" );
1356 XML_CONSTASCII_ACTION( sXML_rel_height, "rel-height" );
1357 XML_CONSTASCII_ACTION( sXML_rel_width, "rel-width" );
1358 XML_CONSTASCII_ACTION( sXML_relative, "relative" ) ;
1359 XML_CONSTASCII_ACTION( sXML_relative_tab_stop_position, "relative-tab-stop-position" );
1360 XML_CONSTASCII_ACTION( sXML_reln, "reln" ) ;
1361 XML_CONSTASCII_ACTION( sXML_rem, "rem" ) ;
1362 XML_CONSTASCII_ACTION( sXML_remove_dependents, "remove-dependents" );
1363 XML_CONSTASCII_ACTION( sXML_remove_precedents, "remove-precedents" );
1364 XML_CONSTASCII_ACTION( sXML_repeat, "repeat" );
1365 XML_CONSTASCII_ACTION( sXML_repeat_column, "repeat-column");
1366 XML_CONSTASCII_ACTION( sXML_repeat_row, "repeat-row");
1367 XML_CONSTASCII_ACTION( sXML_repeated, "repeated" );
1368 XML_CONSTASCII_ACTION( sXML_replace, "replace" );
1369 XML_CONSTASCII_ACTION( sXML_report_type, "report-type" );
1370 XML_CONSTASCII_ACTION( sXML_restart_on_page, "restart-on-page" );
1371 XML_CONSTASCII_ACTION( sXML_revision, "revision" );
1372 XML_CONSTASCII_ACTION( sXML_ridge, "ridge" );
1373 XML_CONSTASCII_ACTION( sXML_right, "right" );
1374 XML_CONSTASCII_ACTION( sXML_right_outside, "right-outside" );
1375 XML_CONSTASCII_ACTION( sXML_ring, "ring" );
1376 XML_CONSTASCII_ACTION( sXML_role, "role" );
1377 XML_CONSTASCII_ACTION( sXML_roll_from_bottom, "roll-from-bottom" );
1378 XML_CONSTASCII_ACTION( sXML_roll_from_left, "roll-from-left" );
1379 XML_CONSTASCII_ACTION( sXML_roll_from_right, "roll-from-right" );
1380 XML_CONSTASCII_ACTION( sXML_roman, "roman" );
1381 XML_CONSTASCII_ACTION( sXML_root, "root" );
1382 XML_CONSTASCII_ACTION( sXML_rotate, "rotate" );
1383 XML_CONSTASCII_ACTION( sXML_rotation, "rotation" );
1384 XML_CONSTASCII_ACTION( sXML_rotation_align, "rotation-align" );
1385 XML_CONSTASCII_ACTION( sXML_rotation_angle, "rotation-angle" );
1386 XML_CONSTASCII_ACTION( sXML_round , "round" );
1387 XML_CONSTASCII_ACTION( sXML_row, "row");
1388 XML_CONSTASCII_ACTION( sXML_rows, "rows");
1389 XML_CONSTASCII_ACTION( sXML_row_height, "row-height" );
1390 XML_CONSTASCII_ACTION( sXML_row_number, "row-number" );
1391 XML_CONSTASCII_ACTION( sXML_ruby, "ruby" );
1392 XML_CONSTASCII_ACTION( sXML_ruby_align, "ruby-align" );
1393 XML_CONSTASCII_ACTION( sXML_ruby_base, "ruby-base" );
1394 XML_CONSTASCII_ACTION( sXML_ruby_position, "ruby-position" );
1395 XML_CONSTASCII_ACTION( sXML_ruby_text, "ruby-text" );
1396 XML_CONSTASCII_ACTION( sXML_run_through, "run-through" );
1397 XML_CONSTASCII_ACTION( sXML_rx, "rx" );
1398 XML_CONSTASCII_ACTION( sXML_ry, "ry" );
1399 XML_CONSTASCII_ACTION( sXML_s, "s" );
1400 XML_CONSTASCII_ACTION( sXML_scale, "scale" );
1401 XML_CONSTASCII_ACTION( sXML_scale_min, "scale-min" );
1402 XML_CONSTASCII_ACTION( sXML_scale_text, "scale-text" );
1403 XML_CONSTASCII_ACTION( sXML_scale_to, "scale-to" );
1404 XML_CONSTASCII_ACTION( sXML_scale_to_pages, "scale-to-pages" );
1405 XML_CONSTASCII_ACTION( sXML_scatter, "scatter" );
1406 XML_CONSTASCII_ACTION( sXML_scenario, "scenario" );
1407 XML_CONSTASCII_ACTION( sXML_scenario_ranges, "scenario-ranges" );
1408 XML_CONSTASCII_ACTION( sXML_scene, "scene");
1409 XML_CONSTASCII_ACTION( sXML_school, "school" );
1410 XML_CONSTASCII_ACTION( sXML_scientific_number, "scientific-number" );
1411 XML_CONSTASCII_ACTION( sXML_score_spaces, "score-spaces" );
1412 XML_CONSTASCII_ACTION( sXML_script, "script" );
1413 XML_CONSTASCII_ACTION( sXML_scroll, "scroll" );
1414 XML_CONSTASCII_ACTION( sXML_sdev, "sdev" );
1415 XML_CONSTASCII_ACTION( sXML_search_criteria_must_apply_to_whole_cell, "search-criteria-must-apply-to-whole-cell" );
1416 XML_CONSTASCII_ACTION( sXML_sec, "sec" );
1417 XML_CONSTASCII_ACTION( sXML_sech, "sech" );
1418 XML_CONSTASCII_ACTION( sXML_second_date_time, "second-date-time" );
1419 XML_CONSTASCII_ACTION( sXML_seconds, "seconds" );
1420 XML_CONSTASCII_ACTION( sXML_section, "section" );
1421 XML_CONSTASCII_ACTION( sXML_section_desc, "section-desc" );
1422 XML_CONSTASCII_ACTION( sXML_section_name, "section-name" );
1423 XML_CONSTASCII_ACTION( sXML_section_source, "section-source" );
1424 XML_CONSTASCII_ACTION( sXML_select_page, "select-page" );
1425 XML_CONSTASCII_ACTION( sXML_selector, "selector" );
1426 XML_CONSTASCII_ACTION( sXML_semantics, "semantics" );
1427 XML_CONSTASCII_ACTION( sXML_semi_automatic, "semi-automatic" );
1428 XML_CONSTASCII_ACTION( sXML_sender_city, "sender-city" );
1429 XML_CONSTASCII_ACTION( sXML_sender_company, "sender-company" );
1430 XML_CONSTASCII_ACTION( sXML_sender_country, "sender-country" );
1431 XML_CONSTASCII_ACTION( sXML_sender_email, "sender-email" );
1432 XML_CONSTASCII_ACTION( sXML_sender_fax, "sender-fax" );
1433 XML_CONSTASCII_ACTION( sXML_sender_firstname, "sender-firstname" );
1434 XML_CONSTASCII_ACTION( sXML_sender_initials, "sender-initials" );
1435 XML_CONSTASCII_ACTION( sXML_sender_lastname, "sender-lastname" );
1436 XML_CONSTASCII_ACTION( sXML_sender_phone_private, "sender-phone-private" );
1437 XML_CONSTASCII_ACTION( sXML_sender_phone_work, "sender-phone-work" );
1438 XML_CONSTASCII_ACTION( sXML_sender_position, "sender-position" );
1439 XML_CONSTASCII_ACTION( sXML_sender_postal_code, "sender-postal-code" );
1440 XML_CONSTASCII_ACTION( sXML_sender_state_or_province, "sender-state-or-province" );
1441 XML_CONSTASCII_ACTION( sXML_sender_street, "sender-street" );
1442 XML_CONSTASCII_ACTION( sXML_sender_title, "sender-title" );
1443 XML_CONSTASCII_ACTION( sXML_sep, "sep" );
1444 XML_CONSTASCII_ACTION( sXML_separation_character, "separation-character" );
1445 XML_CONSTASCII_ACTION( sXML_separator, "separator" );
1446 XML_CONSTASCII_ACTION( sXML_sequence, "sequence" );
1447 XML_CONSTASCII_ACTION( sXML_sequence_decl, "sequence-decl" );
1448 XML_CONSTASCII_ACTION( sXML_sequence_decls, "sequence-decls" );
1449 XML_CONSTASCII_ACTION( sXML_sequence_ref, "sequence-ref" );
1450 XML_CONSTASCII_ACTION( sXML_series, "series" );
1451 XML_CONSTASCII_ACTION( sXML_series_source, "series-source" );
1452 XML_CONSTASCII_ACTION( sXML_server_map, "server-map" );
1453 XML_CONSTASCII_ACTION( sXML_set, "set" );
1454 XML_CONSTASCII_ACTION( sXML_setdiff, "setdiff" );
1455 XML_CONSTASCII_ACTION( sXML_settings, "settings" );
1456 XML_CONSTASCII_ACTION( sXML_shade_mode, "shade-mode");
1457 XML_CONSTASCII_ACTION( sXML_shadow, "shadow" );
1458 XML_CONSTASCII_ACTION( sXML_shadow_color , "shadow-color" );
1459 XML_CONSTASCII_ACTION( sXML_shadow_offset_x , "shadow-offset-x" );
1460 XML_CONSTASCII_ACTION( sXML_shadow_offset_y , "shadow-offset-y" );
1461 XML_CONSTASCII_ACTION( sXML_shadow_slant, "shadow-slant");
1462 XML_CONSTASCII_ACTION( sXML_shadow_transparency , "shadow-transparency" );
1463 XML_CONSTASCII_ACTION( sXML_shape, "shape" );
1464 XML_CONSTASCII_ACTION( sXML_shapes, "shapes" );
1465 XML_CONSTASCII_ACTION( sXML_sheet_name, "sheet-name" );
1466 XML_CONSTASCII_ACTION( sXML_shininess, "shininess" );
1467 XML_CONSTASCII_ACTION( sXML_short, "short" );
1468 XML_CONSTASCII_ACTION( sXML_show, "show" );
1469 XML_CONSTASCII_ACTION( sXML_show_accepted_changes, "show-accepted-changes" );
1470 XML_CONSTASCII_ACTION( sXML_show_rejected_changes, "show-rejected-changes" );
1471 XML_CONSTASCII_ACTION( sXML_show_changes, "show-changes" );
1472 XML_CONSTASCII_ACTION( sXML_show_changes_by_author, "show-changes-by-author" );
1473 XML_CONSTASCII_ACTION( sXML_show_changes_by_author_name, "show-changes-by-author-name" );
1474 XML_CONSTASCII_ACTION( sXML_show_changes_by_comment, "show-changes-by-comment" );
1475 XML_CONSTASCII_ACTION( sXML_show_changes_by_comment_text, "show-changes-by-comment-text" );
1476 XML_CONSTASCII_ACTION( sXML_show_changes_by_datetime, "show-changes-by-datetime" );
1477 XML_CONSTASCII_ACTION( sXML_show_changes_by_datetime_mode, "show-changes-by-datetime-mode" );
1478 XML_CONSTASCII_ACTION( sXML_show_changes_by_datetime_first_datetime, "show-changes-by-datetime-first-datetime" );
1479 XML_CONSTASCII_ACTION( sXML_show_changes_by_datetime_second_datetime, "show-changes-by-datetime-second-datetime" );
1480 XML_CONSTASCII_ACTION( sXML_show_changes_by_ranges, "show-changes-by-ranges" );
1481 XML_CONSTASCII_ACTION( sXML_show_changes_by_ranges_list, "show-changes-by-ranges-list" );
1482 XML_CONSTASCII_ACTION( sXML_show_logo, "show-logo" );
1483 XML_CONSTASCII_ACTION( sXML_show_unit, "show-unit" );
1484 XML_CONSTASCII_ACTION( sXML_shows, "shows" );
1485 XML_CONSTASCII_ACTION( sXML_side_by_side, "side-by-side" );
1486 XML_CONSTASCII_ACTION( sXML_silver, "silver" );
1487 XML_CONSTASCII_ACTION( sXML_simple, "simple" );
1488 XML_CONSTASCII_ACTION( sXML_sin, "sin" );
1489 XML_CONSTASCII_ACTION( sXML_since_date_time, "since-date-time" );
1490 XML_CONSTASCII_ACTION( sXML_since_save, "since-save" );
1491 XML_CONSTASCII_ACTION( sXML_sinh, "sinh" );
1492 XML_CONSTASCII_ACTION( sXML_size, "size" );
1493 XML_CONSTASCII_ACTION( sXML_size_protect, "size-protect" );
1494 XML_CONSTASCII_ACTION( sXML_slide, "slide" );
1495 XML_CONSTASCII_ACTION( sXML_slow, "slow" );
1496 XML_CONSTASCII_ACTION( sXML_soft_page_break, "soft-page-break" );
1497 XML_CONSTASCII_ACTION( sXML_solid, "solid" );
1498 XML_CONSTASCII_ACTION( sXML_solid_type, "solid-type" );
1499 XML_CONSTASCII_ACTION( sXML_sort, "sort");
1500 XML_CONSTASCII_ACTION( sXML_sort_ascending, "sort-ascending" );
1501 XML_CONSTASCII_ACTION( sXML_sort_by, "sort-by");
1502 XML_CONSTASCII_ACTION( sXML_sort_by_position, "sort-by-position" );
1503 XML_CONSTASCII_ACTION( sXML_sort_groups, "sort-groups");
1504 XML_CONSTASCII_ACTION( sXML_sort_key, "sort-key");
1505 XML_CONSTASCII_ACTION( sXML_sort_by_x_values, "sort-by-x-values" );
1506 XML_CONSTASCII_ACTION( sXML_source_cell_range, "source-cell-range");
1507 XML_CONSTASCII_ACTION( sXML_source_cell_range_addresses, "source-cell-range-addresses");
1508 XML_CONSTASCII_ACTION( sXML_source_field_name, "source-field-name");
1509 XML_CONSTASCII_ACTION( sXML_source_name, "source-name");
1510 XML_CONSTASCII_ACTION( sXML_source_range_address, "source-range-address");
1511 XML_CONSTASCII_ACTION( sXML_source_service, "source-service");
1512 XML_CONSTASCII_ACTION( sXML_space_before, "space-before" );
1513 XML_CONSTASCII_ACTION( sXML_span, "span" );
1514 XML_CONSTASCII_ACTION( sXML_specular, "specular");
1515 XML_CONSTASCII_ACTION( sXML_specular_color, "specular-color" );
1516 XML_CONSTASCII_ACTION( sXML_sphere, "sphere" );
1517 XML_CONSTASCII_ACTION( sXML_spiralin_left, "spiralin-left" );
1518 XML_CONSTASCII_ACTION( sXML_spiralin_right, "spiralin-right" );
1519 XML_CONSTASCII_ACTION( sXML_spiralout_left, "spiralout-left" );
1520 XML_CONSTASCII_ACTION( sXML_spiralout_right, "spiralout-right" );
1521 XML_CONSTASCII_ACTION( sXML_splines, "splines" );
1522 XML_CONSTASCII_ACTION( sXML_split, "split" );
1523 XML_CONSTASCII_ACTION( sXML_split_column, "split-column" );
1524 XML_CONSTASCII_ACTION( sXML_split_position, "split-position" );
1525 XML_CONSTASCII_ACTION( sXML_split_row, "split-row" );
1526 XML_CONSTASCII_ACTION( sXML_spreadsheet , "spreadsheet" );
1527 XML_CONSTASCII_ACTION( sXML_sql_statement, "sql-statement");
1528 XML_CONSTASCII_ACTION( sXML_stacked, "stacked" );
1529 XML_CONSTASCII_ACTION( sXML_stagger_even, "stagger-even" );
1530 XML_CONSTASCII_ACTION( sXML_stagger_odd, "stagger-odd" );
1531 XML_CONSTASCII_ACTION( sXML_standard, "standard" );
1532 XML_CONSTASCII_ACTION( sXML_standard_deviation, "standard-deviation" );
1533 XML_CONSTASCII_ACTION( sXML_starbasic, "starbasic" );
1534 XML_CONSTASCII_ACTION( sXML_start, "start" );
1535 XML_CONSTASCII_ACTION( sXML_start_color, "start-color" );
1536 XML_CONSTASCII_ACTION( sXML_start_column, "start-column" );
1537 XML_CONSTASCII_ACTION( sXML_start_intensity, "start-intensity" );
1538 XML_CONSTASCII_ACTION( sXML_start_numbering_at, "start-numbering-at" );
1539 XML_CONSTASCII_ACTION( sXML_start_page, "start-page" );
1540 XML_CONSTASCII_ACTION( sXML_start_position, "start-position" );
1541 XML_CONSTASCII_ACTION( sXML_start_row, "start-row" );
1542 XML_CONSTASCII_ACTION( sXML_start_table, "start-table" );
1543 XML_CONSTASCII_ACTION( sXML_start_value, "start-value" );
1544 XML_CONSTASCII_ACTION( sXML_start_with_navigator, "start-with-navigator" );
1545 XML_CONSTASCII_ACTION( sXML_statistics, "statistics" );
1546 XML_CONSTASCII_ACTION( sXML_status, "status" );
1547 XML_CONSTASCII_ACTION( sXML_stay_on_top, "stay-on-top" );
1548 XML_CONSTASCII_ACTION( sXML_stdev, "stdev" );
1549 XML_CONSTASCII_ACTION( sXML_stdevp, "stdevp" );
1550 XML_CONSTASCII_ACTION( sXML_steps, "steps" );
1551 XML_CONSTASCII_ACTION( sXML_stock, "stock" );
1552 XML_CONSTASCII_ACTION( sXML_stock_updown_bars, "stock-updown-bars" );
1553 XML_CONSTASCII_ACTION( sXML_stock_with_volume, "stock-with-volume" );
1554 XML_CONSTASCII_ACTION( sXML_stop, "stop" );
1555 XML_CONSTASCII_ACTION( sXML_stretch_from_bottom, "stretch-from-bottom" );
1556 XML_CONSTASCII_ACTION( sXML_stretch_from_left, "stretch-from-left" );
1557 XML_CONSTASCII_ACTION( sXML_stretch_from_right, "stretch-from-right" );
1558 XML_CONSTASCII_ACTION( sXML_stretch_from_top, "stretch-from-top" );
1559 XML_CONSTASCII_ACTION( sXML_stretchy, "stretchy" );
1560 XML_CONSTASCII_ACTION( sXML_strict , "strict" );
1561 XML_CONSTASCII_ACTION( sXML_string, "string");
1562 XML_CONSTASCII_ACTION( sXML_string_value, "string-value");
1563 XML_CONSTASCII_ACTION( sXML_string_value_if_false, "string-value-if-false" );
1564 XML_CONSTASCII_ACTION( sXML_string_value_if_true, "string-value-if-true" );
1565 XML_CONSTASCII_ACTION( sXML_stroke , "stroke" );
1566 XML_CONSTASCII_ACTION( sXML_stroke_color , "stroke-color" );
1567 XML_CONSTASCII_ACTION( sXML_stroke_dash , "stroke-dash" );
1568 XML_CONSTASCII_ACTION( sXML_stroke_linejoin , "stroke-linejoin" );
1569 XML_CONSTASCII_ACTION( sXML_stroke_opacity, "stroke-opacity" );
1570 XML_CONSTASCII_ACTION( sXML_stroke_width, "stroke-width" );
1571 XML_CONSTASCII_ACTION( sXML_structure_protected, "structure-protected" );
1572 XML_CONSTASCII_ACTION( sXML_style, "style" );
1573 XML_CONSTASCII_ACTION( sXML_style_name, "style-name" );
1574 XML_CONSTASCII_ACTION( sXML_styles, "styles" );
1575 XML_CONSTASCII_ACTION( sXML_stylesheet, "stylesheet" );
1576 XML_CONSTASCII_ACTION( sXML_sub_table, "sub-table" );
1577 XML_CONSTASCII_ACTION( sXML_subject, "subject" );
1578 XML_CONSTASCII_ACTION( sXML_subset, "subset" );
1579 XML_CONSTASCII_ACTION( sXML_subtitle, "subtitle" );
1580 XML_CONSTASCII_ACTION( sXML_subtotal_field, "subtotal-field");
1581 XML_CONSTASCII_ACTION( sXML_subtotal_rule, "subtotal-rule");
1582 XML_CONSTASCII_ACTION( sXML_subtotal_rules, "subtotal-rules");
1583 XML_CONSTASCII_ACTION( sXML_suffix, "suffix" );
1584 XML_CONSTASCII_ACTION( sXML_sum, "sum" );
1585 XML_CONSTASCII_ACTION( sXML_swiss, "swiss" );
1586 XML_CONSTASCII_ACTION( sXML_symbol, "symbol" );
1587 XML_CONSTASCII_ACTION( sXML_symbol_height, "symbol-height" );
1588 XML_CONSTASCII_ACTION( sXML_symbol_image_name, "symbol-image-name" );
1589 XML_CONSTASCII_ACTION( sXML_symbol_width, "symbol-width" );
1590 XML_CONSTASCII_ACTION( sXML_system, "system" );
1591 XML_CONSTASCII_ACTION( sXML_tab_stop, "tab-stop" );
1592 XML_CONSTASCII_ACTION( sXML_tab_stops, "tab-stops" );
1593 XML_CONSTASCII_ACTION( sXML_table, "table" );
1594 XML_CONSTASCII_ACTION( sXML_tables, "tables" );
1595 XML_CONSTASCII_ACTION( sXML_table_background, "table-background" );
1596 XML_CONSTASCII_ACTION( sXML_table_cell, "table-cell" );
1597 XML_CONSTASCII_ACTION( sXML_table_centering, "table-centering" );
1598 XML_CONSTASCII_ACTION( sXML_table_column, "table-column" );
1599 XML_CONSTASCII_ACTION( sXML_table_column_group, "table-column-group" );
1600 XML_CONSTASCII_ACTION( sXML_table_columns, "table-columns" );
1601 XML_CONSTASCII_ACTION( sXML_table_count, "table-count" );
1602 XML_CONSTASCII_ACTION( sXML_table_header, "table-header" );
1603 XML_CONSTASCII_ACTION( sXML_table_header_columns, "table-header-columns" );
1604 XML_CONSTASCII_ACTION( sXML_table_header_rows, "table-header-rows" );
1605 XML_CONSTASCII_ACTION( sXML_table_index, "table-index" );
1606 XML_CONSTASCII_ACTION( sXML_table_index_entry_template, "table-index-entry-template" );
1607 XML_CONSTASCII_ACTION( sXML_table_index_source, "table-index-source" );
1608 XML_CONSTASCII_ACTION( sXML_table_name, "table-name");
1609 XML_CONSTASCII_ACTION( sXML_table_number_list, "table-number-list");
1610 XML_CONSTASCII_ACTION( sXML_table_of_content, "table-of-content" );
1611 XML_CONSTASCII_ACTION( sXML_table_of_content_entry_template, "table-of-content-entry-template" );
1612 XML_CONSTASCII_ACTION( sXML_table_of_content_source, "table-of-content-source" );
1613 XML_CONSTASCII_ACTION( sXML_table_page, "table-page" );
1614 XML_CONSTASCII_ACTION( sXML_table_row, "table-row" );
1615 XML_CONSTASCII_ACTION( sXML_table_row_group, "table-row-group" );
1616 XML_CONSTASCII_ACTION( sXML_table_rows, "table-rows" );
1617 XML_CONSTASCII_ACTION( sXML_table_source, "table-source" );
1618 XML_CONSTASCII_ACTION( sXML_table_view, "table-view" );
1619 XML_CONSTASCII_ACTION( sXML_tab_stop_distance, "tab-stop-distance" );
1620 XML_CONSTASCII_ACTION( sXML_tan, "tan" );
1621 XML_CONSTASCII_ACTION( sXML_tanh, "tanh" );
1622 XML_CONSTASCII_ACTION( sXML_target_cell_address, "target-cell-address");
1623 XML_CONSTASCII_ACTION( sXML_target_frame_name, "target-frame-name" );
1624 XML_CONSTASCII_ACTION( sXML_target_range_address, "target-range-address");
1625 XML_CONSTASCII_ACTION( sXML_tb_rl, "tb-rl" );
1626 XML_CONSTASCII_ACTION( sXML_teal, "teal" );
1627 XML_CONSTASCII_ACTION( sXML_techreport, "techreport" );
1628 XML_CONSTASCII_ACTION( sXML_template, "template" );
1629 XML_CONSTASCII_ACTION( sXML_template_name, "template-name" );
1630 XML_CONSTASCII_ACTION( sXML_tendsto, "tendsto" );
1631 XML_CONSTASCII_ACTION( sXML_tex_filter, "texture-filter" );
1632 XML_CONSTASCII_ACTION( sXML_tex_generation_mode_x, "texture-generation-mode-x" );
1633 XML_CONSTASCII_ACTION( sXML_tex_generation_mode_y, "texture-generation-mode-y" );
1634 XML_CONSTASCII_ACTION( sXML_tex_kind, "texture-kind" );
1635 XML_CONSTASCII_ACTION( sXML_tex_mode, "texture-mode" );
1636 XML_CONSTASCII_ACTION( sXML_text, "text" );
1637 XML_CONSTASCII_ACTION( sXML_text_align, "text-align" );
1638 XML_CONSTASCII_ACTION( sXML_text_align_last, "text-align-last" );
1639 XML_CONSTASCII_ACTION( sXML_text_align_source, "text-align-source" );
1640 XML_CONSTASCII_ACTION( sXML_text_autospace, "text-autospace" );
1641 XML_CONSTASCII_ACTION( sXML_text_background_color, "text-background-color" );
1642 XML_CONSTASCII_ACTION( sXML_text_blinking, "text-blinking" );
1643 XML_CONSTASCII_ACTION( sXML_text_box, "text-box" );
1644 XML_CONSTASCII_ACTION( sXML_text_combine, "text-combine" );
1645 XML_CONSTASCII_ACTION( sXML_text_combine_end_char, "text-combine-end-char" );
1646 XML_CONSTASCII_ACTION( sXML_text_combine_start_char, "text-combine-start-char" );
1647 XML_CONSTASCII_ACTION( sXML_text_content, "text-content" );
1648 XML_CONSTASCII_ACTION( sXML_text_crossing_out, "text-crossing-out" );
1649 XML_CONSTASCII_ACTION( sXML_text_emphasize, "text-emphasize" );
1650 XML_CONSTASCII_ACTION( sXML_text_global, "text-global" );
1651 XML_CONSTASCII_ACTION( sXML_text_indent, "text-indent" );
1652 XML_CONSTASCII_ACTION( sXML_text_input, "text-input" );
1653 XML_CONSTASCII_ACTION( sXML_text_outline, "text-outline" );
1654 XML_CONSTASCII_ACTION( sXML_text_position, "text-position" );
1655 XML_CONSTASCII_ACTION( sXML_text_rotation_angle, "text-rotation-angle" );
1656 XML_CONSTASCII_ACTION( sXML_text_rotation_scale, "text-rotation-scale" );
1657 XML_CONSTASCII_ACTION( sXML_text_scale, "text-scale" );
1658 XML_CONSTASCII_ACTION( sXML_text_shadow, "text-shadow" );
1659 XML_CONSTASCII_ACTION( sXML_text_style, "text-style" );
1660 XML_CONSTASCII_ACTION( sXML_text_transform, "text-transform" );
1661 XML_CONSTASCII_ACTION( sXML_text_underline, "text-underline" );
1662 XML_CONSTASCII_ACTION( sXML_text_underline_color, "text-underline-color" );
1663 XML_CONSTASCII_ACTION( sXML_textarea_horizontal_align, "textarea-horizontal-align" );
1664 XML_CONSTASCII_ACTION( sXML_textarea_vertical_align, "textarea-vertical-align" );
1665 XML_CONSTASCII_ACTION( sXML_textual, "textual" );
1666 XML_CONSTASCII_ACTION( sXML_thick, "thick" );
1667 XML_CONSTASCII_ACTION( sXML_thin, "thin" );
1668 XML_CONSTASCII_ACTION( sXML_three_dimensional, "three-dimensional" );
1669 XML_CONSTASCII_ACTION( sXML_thumbnail, "thumbnail" );
1670 XML_CONSTASCII_ACTION( sXML_tick_marks_major_inner, "tick-marks-major-inner" );
1671 XML_CONSTASCII_ACTION( sXML_tick_marks_major_outer, "tick-marks-major-outer" );
1672 XML_CONSTASCII_ACTION( sXML_tick_marks_minor_inner, "tick-marks-minor-inner" );
1673 XML_CONSTASCII_ACTION( sXML_tick_marks_minor_outer, "tick-marks-minor-outer" );
1674 XML_CONSTASCII_ACTION( sXML_tile_repeat_offset, "tile-repeat-offset" );
1675 XML_CONSTASCII_ACTION( sXML_time, "time");
1676 XML_CONSTASCII_ACTION( sXML_time_adjust, "time-adjust" );
1677 XML_CONSTASCII_ACTION( sXML_time_style, "time-style" );
1678 XML_CONSTASCII_ACTION( sXML_time_value, "time-value");
1679 XML_CONSTASCII_ACTION( sXML_times, "times");
1680 XML_CONSTASCII_ACTION( sXML_title, "title" );
1681 XML_CONSTASCII_ACTION( sXML_to_another_table, "to-another-table" );
1682 XML_CONSTASCII_ACTION( sXML_toc_mark, "toc-mark" );
1683 XML_CONSTASCII_ACTION( sXML_toc_mark_end, "toc-mark-end" );
1684 XML_CONSTASCII_ACTION( sXML_toc_mark_start, "toc-mark-start" );
1685 XML_CONSTASCII_ACTION( sXML_top, "top" );
1686 XML_CONSTASCII_ACTION( sXML_top_percent, "top percent");
1687 XML_CONSTASCII_ACTION( sXML_top_values, "top values");
1688 XML_CONSTASCII_ACTION( sXML_trace_dependents, "trace-dependents" );
1689 XML_CONSTASCII_ACTION( sXML_trace_errors, "trace-errors" );
1690 XML_CONSTASCII_ACTION( sXML_trace_precedents, "trace-precedents" );
1691 XML_CONSTASCII_ACTION( sXML_track_changes, "track-changes" );
1692 XML_CONSTASCII_ACTION( sXML_tracked_changes, "tracked-changes" );
1693 XML_CONSTASCII_ACTION( sXML_tracked_changes_view_settings, "tracked-changes-view-settings" );
1694 XML_CONSTASCII_ACTION( sXML_transform , "transform" );
1695 XML_CONSTASCII_ACTION( sXML_transition_on_click, "transition-on-click" );
1696 XML_CONSTASCII_ACTION( sXML_transparency, "transparency" );
1697 XML_CONSTASCII_ACTION( sXML_transparency_name, "transparency-name" );
1698 XML_CONSTASCII_ACTION( sXML_transparent, "transparent" );
1699 XML_CONSTASCII_ACTION( sXML_transpose, "transpose" );
1700 XML_CONSTASCII_ACTION( sXML_true, "true" );
1701 XML_CONSTASCII_ACTION( sXML_truncate_on_overflow, "truncate-on-overflow" );
1702 XML_CONSTASCII_ACTION( sXML_ttb, "ttb");
1703 XML_CONSTASCII_ACTION( sXML_type, "type" );
1704 XML_CONSTASCII_ACTION( sXML_underline_bold, "bold" );
1705 XML_CONSTASCII_ACTION( sXML_underline_bold_dash, "bold-dash" );
1706 XML_CONSTASCII_ACTION( sXML_underline_bold_dot_dash, "bold-dot-dash" );
1707 XML_CONSTASCII_ACTION( sXML_underline_bold_dot_dot_dash, "bold-dot-dot-dash" );
1708 XML_CONSTASCII_ACTION( sXML_underline_bold_dotted, "bold-dotted" );
1709 XML_CONSTASCII_ACTION( sXML_underline_bold_long_dash, "bold-long-dash" );
1710 XML_CONSTASCII_ACTION( sXML_underline_bold_wave, "bold-wave" );
1711 XML_CONSTASCII_ACTION( sXML_underline_dash, "dash" );
1712 XML_CONSTASCII_ACTION( sXML_underline_dot_dash, "dot-dash" );
1713 XML_CONSTASCII_ACTION( sXML_underline_dot_dot_dash, "dot-dot-dash" );
1714 XML_CONSTASCII_ACTION( sXML_underline_dotted, "dotted" );
1715 XML_CONSTASCII_ACTION( sXML_underline_double, "double" );
1716 XML_CONSTASCII_ACTION( sXML_underline_double_wave, "double-wave" );
1717 XML_CONSTASCII_ACTION( sXML_underline_long_dash, "long-dash" );
1718 XML_CONSTASCII_ACTION( sXML_underline_none, "none" );
1719 XML_CONSTASCII_ACTION( sXML_underline_single, "single" );
1720 XML_CONSTASCII_ACTION( sXML_underline_small_wave, "small-wave" );
1721 XML_CONSTASCII_ACTION( sXML_underline_wave, "wave" );
1722 XML_CONSTASCII_ACTION( sXML_unformatted_text, "unformatted-text" );
1723 XML_CONSTASCII_ACTION( sXML_union, "union" );
1724 XML_CONSTASCII_ACTION( sXML_unit, "unit" );
1725 XML_CONSTASCII_ACTION( sXML_unordered_list, "unordered-list" );
1726 XML_CONSTASCII_ACTION( sXML_unpublished, "unpublished" );
1727 XML_CONSTASCII_ACTION( sXML_uplimit, "uplimit" );
1728 XML_CONSTASCII_ACTION( sXML_url, "url" );
1729 XML_CONSTASCII_ACTION( sXML_use_caption, "use-caption" );
1730 XML_CONSTASCII_ACTION( sXML_use_cell_protection, "use-cell-protection" );
1731 XML_CONSTASCII_ACTION( sXML_use_chart_objects, "use-chart-objects" );
1732 XML_CONSTASCII_ACTION( sXML_use_condition, "use-condition" );
1733 XML_CONSTASCII_ACTION( sXML_use_draw_objects, "use-draw-objects" );
1734 XML_CONSTASCII_ACTION( sXML_use_floating_frames, "use-floating-frames" );
1735 XML_CONSTASCII_ACTION( sXML_use_graphics, "use-graphics" );
1736 XML_CONSTASCII_ACTION( sXML_use_image_objects, "use-image-objects" );
1737 XML_CONSTASCII_ACTION( sXML_use_index_marks, "use-index-marks" );
1738 XML_CONSTASCII_ACTION( sXML_use_index_source_styles, "use-index-source-styles" );
1739 XML_CONSTASCII_ACTION( sXML_use_keys_as_entries, "use-keys-as-entries" );
1740 XML_CONSTASCII_ACTION( sXML_use_label, "use-label" );
1741 XML_CONSTASCII_ACTION( sXML_use_math_objects, "use-math-objects" );
1742 XML_CONSTASCII_ACTION( sXML_use_objects, "use-objects" );
1743 XML_CONSTASCII_ACTION( sXML_use_optimal_column_width, "use-optimal-column-width");
1744 XML_CONSTASCII_ACTION( sXML_use_optimal_row_height, "use-optimal-row-height");
1745 XML_CONSTASCII_ACTION( sXML_use_other_objects, "use-other-objects" );
1746 XML_CONSTASCII_ACTION( sXML_use_soft_page_breaks, "use-soft-page-breaks" );
1747 XML_CONSTASCII_ACTION( sXML_use_spreadsheet_objects, "use-spreadsheet-objects" );
1748 XML_CONSTASCII_ACTION( sXML_use_styles, "use-styles" );
1749 XML_CONSTASCII_ACTION( sXML_use_tables, "use-tables" );
1750 XML_CONSTASCII_ACTION( sXML_use_window_font_color, "use-window-font-color" );
1751 XML_CONSTASCII_ACTION( sXML_used_hierarchy, "used-hierarchy");
1752 XML_CONSTASCII_ACTION( sXML_user_defined, "user-defined" );
1753 XML_CONSTASCII_ACTION( sXML_user_field_decl, "user-field-decl" );
1754 XML_CONSTASCII_ACTION( sXML_user_field_decls, "user-field-decls" );
1755 XML_CONSTASCII_ACTION( sXML_user_field_get, "user-field-get" );
1756 XML_CONSTASCII_ACTION( sXML_user_field_input, "user-field-input" );
1757 XML_CONSTASCII_ACTION( sXML_user_index, "user-index" );
1758 XML_CONSTASCII_ACTION( sXML_user_index_entry_template, "user-index-entry-template" );
1759 XML_CONSTASCII_ACTION( sXML_user_index_mark, "user-index-mark" );
1760 XML_CONSTASCII_ACTION( sXML_user_index_mark_end, "user-index-mark-end" );
1761 XML_CONSTASCII_ACTION( sXML_user_index_mark_start, "user-index-mark-start" );
1762 XML_CONSTASCII_ACTION( sXML_user_index_source, "user-index-source" );
1763 XML_CONSTASCII_ACTION( sXML_user_transformed, "user-transformed" );
1764 XML_CONSTASCII_ACTION( sXML_username, "username");
1765 XML_CONSTASCII_ACTION( sXML_value, "value");
1766 XML_CONSTASCII_ACTION( sXML_value_type, "value-type");
1767 XML_CONSTASCII_ACTION( sXML_values_cell_range_address, "values-cell-range-address" );
1768 XML_CONSTASCII_ACTION( sXML_var, "var" );
1769 XML_CONSTASCII_ACTION( sXML_variable, "variable" );
1770 XML_CONSTASCII_ACTION( sXML_variable_decl, "variable-decl" );
1771 XML_CONSTASCII_ACTION( sXML_variable_decls, "variable-decls" );
1772 XML_CONSTASCII_ACTION( sXML_variable_get, "variable-get" );
1773 XML_CONSTASCII_ACTION( sXML_variable_input, "variable-input" );
1774 XML_CONSTASCII_ACTION( sXML_variable_set, "variable-set" );
1775 XML_CONSTASCII_ACTION( sXML_variance, "variance" );
1776 XML_CONSTASCII_ACTION( sXML_varp, "varp" );
1777 XML_CONSTASCII_ACTION( sXML_vector, "vector" );
1778 XML_CONSTASCII_ACTION( sXML_verb, "verb" );
1779 XML_CONSTASCII_ACTION( sXML_version, "version" );
1780 XML_CONSTASCII_ACTION( sXML_version_entry, "version-entry" );
1781 XML_CONSTASCII_ACTION( sXML_version_list, "version-list" );
1782 XML_CONSTASCII_ACTION( sXML_vertical, "vertical" );
1783 XML_CONSTASCII_ACTION( sXML_vertical_align, "vertical-align" );
1784 XML_CONSTASCII_ACTION( sXML_vertical_lines, "vertical-lines" );
1785 XML_CONSTASCII_ACTION( sXML_vertical_pos, "vertical-pos" );
1786 XML_CONSTASCII_ACTION( sXML_vertical_rel, "vertical-rel" );
1787 XML_CONSTASCII_ACTION( sXML_vertical_segments, "vertical-segments" );
1788 XML_CONSTASCII_ACTION( sXML_vertical_split_mode, "vertical-split-mode" );
1789 XML_CONSTASCII_ACTION( sXML_vertical_split_position, "vertical-split-position" );
1790 XML_CONSTASCII_ACTION( sXML_vertical_stripes, "vertical-stripes" );
1791 XML_CONSTASCII_ACTION( sXML_view, "view" );
1792 XML_CONSTASCII_ACTION( sXML_viewBox, "viewBox" );
1793 XML_CONSTASCII_ACTION( sXML_view_id, "view-id" );
1794 XML_CONSTASCII_ACTION( sXML_view_settings, "view-settings" );
1795 XML_CONSTASCII_ACTION( sXML_visibility, "visibility" );
1796 XML_CONSTASCII_ACTION( sXML_visible, "visible" );
1797 XML_CONSTASCII_ACTION( sXML_visible_area, "visible-area" );
1798 XML_CONSTASCII_ACTION( sXML_visible_area_height, "visible-area-height" );
1799 XML_CONSTASCII_ACTION( sXML_visible_area_left, "visible-area-left" );
1800 XML_CONSTASCII_ACTION( sXML_visible_area_top, "visible-area-top" );
1801 XML_CONSTASCII_ACTION( sXML_visible_area_width, "visible-area-width" );
1802 XML_CONSTASCII_ACTION( sXML_visited_style_name, "visited-style-name" );
1803 XML_CONSTASCII_ACTION( sXML_volatile, "volatile" );
1804 XML_CONSTASCII_ACTION( sXML_volume, "volume" );
1805 XML_CONSTASCII_ACTION( sXML_vpn, "vpn");
1806 XML_CONSTASCII_ACTION( sXML_vrp, "vrp");
1807 XML_CONSTASCII_ACTION( sXML_vup, "vup");
1808 XML_CONSTASCII_ACTION( sXML_wall, "wall" );
1809 XML_CONSTASCII_ACTION( sXML_warning, "warning" );
1810 XML_CONSTASCII_ACTION( sXML_watermark, "watermark" );
1811 XML_CONSTASCII_ACTION( sXML_wavyline_from_bottom, "wavyline-from-bottom" );
1812 XML_CONSTASCII_ACTION( sXML_wavyline_from_left, "wavyline-from-left" );
1813 XML_CONSTASCII_ACTION( sXML_wavyline_from_right, "wavyline-from-right" );
1814 XML_CONSTASCII_ACTION( sXML_wavyline_from_top, "wavyline-from-top" );
1815 XML_CONSTASCII_ACTION( sXML_week_of_year, "week-of-year" );
1816 XML_CONSTASCII_ACTION( sXML_weight_bold, "bold" );
1817 XML_CONSTASCII_ACTION( sXML_weight_normal, "normal" );
1818 XML_CONSTASCII_ACTION( sXML_white, "white" );
1819 XML_CONSTASCII_ACTION( sXML_whole_page, "whole-page" );
1820 XML_CONSTASCII_ACTION( sXML_widows, "widows" );
1821 XML_CONSTASCII_ACTION( sXML_width, "width" );
1822 XML_CONSTASCII_ACTION( sXML_word, "word" );
1823 XML_CONSTASCII_ACTION( sXML_word_count, "word-count" );
1824 XML_CONSTASCII_ACTION( sXML_wrap, "wrap" );
1825 XML_CONSTASCII_ACTION( sXML_wrap_contour, "wrap-contour" );
1826 XML_CONSTASCII_ACTION( sXML_wrap_contour_mode, "wrap-contour-mode" );
1827 XML_CONSTASCII_ACTION( sXML_wrap_option, "wrap-option" );
1828 XML_CONSTASCII_ACTION( sXML_writing_mode, "writing-mode" );
1829 XML_CONSTASCII_ACTION( sXML_www, "www" );
1830 XML_CONSTASCII_ACTION( sXML_x, "x" );
1831 XML_CONSTASCII_ACTION( sXML_x1, "x1" );
1832 XML_CONSTASCII_ACTION( sXML_x2, "x2" );
1833 XML_CONSTASCII_ACTION( sXML_x_mac_roman, "x-mac-roman" );
1834 XML_CONSTASCII_ACTION( sXML_x_symbol, "x-symbol" );
1835 XML_CONSTASCII_ACTION( sXML_x_system, "x-system" );
1836 XML_CONSTASCII_ACTION( sXML_xor, "xor" );
1837 XML_CONSTASCII_ACTION( sXML_y, "y" );
1838 XML_CONSTASCII_ACTION( sXML_y1, "y1" );
1839 XML_CONSTASCII_ACTION( sXML_y2, "y2" );
1840 XML_CONSTASCII_ACTION( sXML_year, "year" );
1841 XML_CONSTASCII_ACTION( sXML_yellow, "yellow" );
1842 XML_CONSTASCII_ACTION( sXML_zero_values, "zero-values" );
1843 XML_CONSTASCII_ACTION( sXML_zindex, "z-index" );
1844 XML_CONSTASCII_ACTION( sXML_zoom_type, "zoom-type" );
1845 XML_CONSTASCII_ACTION( sXML_zoom_value, "zoom-value" );
1846 
1847 XML_CONSTASCII_ACTION( sXML_start_shape, "start-shape");
1848 XML_CONSTASCII_ACTION( sXML_start_glue_point, "start-glue-point");
1849 XML_CONSTASCII_ACTION( sXML_end_shape, "end-shape");
1850 XML_CONSTASCII_ACTION( sXML_end_glue_point, "end-glue-point");
1851 XML_CONSTASCII_ACTION( sXML_line_number, "line-number");
1852 XML_CONSTASCII_ACTION( sXML_line_skew, "line-skew");
1853 XML_CONSTASCII_ACTION( sXML_curve, "curve" );
1854 XML_CONSTASCII_ACTION( sXML_start_line_spacing_horizontal, "start-line-spacing-horizontal" );
1855 XML_CONSTASCII_ACTION( sXML_start_line_spacing_vertical, "start-line-spacing-vertical" );
1856 XML_CONSTASCII_ACTION( sXML_end_line_spacing_horizontal, "end-line-spacing-horizontal" );
1857 XML_CONSTASCII_ACTION( sXML_end_line_spacing_vertical, "end-line-spacing-vertical" );
1858 XML_CONSTASCII_ACTION( sXML_line_distance, "line-distance" );
1859 XML_CONSTASCII_ACTION( sXML_guide_overhang, "guide-overhang" );
1860 XML_CONSTASCII_ACTION( sXML_guide_distance, "guide-distance" );
1861 XML_CONSTASCII_ACTION( sXML_start_guide, "start-guide" );
1862 XML_CONSTASCII_ACTION( sXML_end_guide, "end-guide" );
1863 
1864 XML_CONSTASCII_ACTION( sXML_dots1, "dots1" );
1865 XML_CONSTASCII_ACTION( sXML_dots1_length, "dots1-length" );
1866 XML_CONSTASCII_ACTION( sXML_dots2, "dots2" );
1867 XML_CONSTASCII_ACTION( sXML_dots2_length, "dots2-length" );
1868 XML_CONSTASCII_ACTION( sXML_enable_numbering, "enable-numbering" );
1869 
1870 XML_CONSTASCII_ACTION( sXML_top_left, "top-left" );
1871 XML_CONSTASCII_ACTION( sXML_top_right, "top-right" );
1872 XML_CONSTASCII_ACTION( sXML_bottom_left, "bottom-left" );
1873 XML_CONSTASCII_ACTION( sXML_bottom_right, "bottom-right" );
1874 
1875 XML_CONSTASCII_ACTION( sXML_fill_image_ref_point,	"fill-image-ref-point" );
1876 XML_CONSTASCII_ACTION( sXML_fill_image_ref_point_x, "fill-image-ref-point-x" );
1877 XML_CONSTASCII_ACTION( sXML_fill_image_ref_point_y, "fill-image-ref-point-y" );
1878 
1879 XML_CONSTASCII_ACTION( sXML_from_right, "from-right" );
1880 XML_CONSTASCII_ACTION( sXML_from_bottom, "from-bottom" );
1881 XML_CONSTASCII_ACTION( sXML_from_center, "from-center" );
1882 XML_CONSTASCII_ACTION( sXML_from_upper_left, "from-upper-left" );
1883 XML_CONSTASCII_ACTION( sXML_from_upper_right, "from-upper-right" );
1884 XML_CONSTASCII_ACTION( sXML_from_lower_left, "from-lower-left" );
1885 XML_CONSTASCII_ACTION( sXML_from_lower_right, "from-lower-right" );
1886 XML_CONSTASCII_ACTION( sXML_to_left, "to-left" );
1887 XML_CONSTASCII_ACTION( sXML_to_top, "to-top" );
1888 XML_CONSTASCII_ACTION( sXML_to_right, "to-right" );
1889 XML_CONSTASCII_ACTION( sXML_to_bottom, "to-bottom" );
1890 XML_CONSTASCII_ACTION( sXML_to_upper_left, "to-upper-left" );
1891 XML_CONSTASCII_ACTION( sXML_to_upper_right, "to-upper-right" );
1892 XML_CONSTASCII_ACTION( sXML_to_lower_right, "to-lower-right" );
1893 XML_CONSTASCII_ACTION( sXML_to_lower_left, "to-lower-left" );
1894 XML_CONSTASCII_ACTION( sXML_to_center, "to-center" );
1895 XML_CONSTASCII_ACTION( sXML_counter_clockwise, "counter-clockwise" );
1896 
1897 XML_CONSTASCII_ACTION( sXML_fade, "fade" );
1898 XML_CONSTASCII_ACTION( sXML_move, "move" );
1899 XML_CONSTASCII_ACTION( sXML_stripes, "stripes" );
1900 XML_CONSTASCII_ACTION( sXML_spiral_inward_left, "spiral-inward-left" );
1901 XML_CONSTASCII_ACTION( sXML_spiral_inward_right, "spiral-inward-right" );
1902 XML_CONSTASCII_ACTION( sXML_spiral_outward_left, "spiral-outward-left" );
1903 XML_CONSTASCII_ACTION( sXML_spiral_outward_right, "spiral-outward-right" );
1904 XML_CONSTASCII_ACTION( sXML_spiral, "spiral" );
1905 XML_CONSTASCII_ACTION( sXML_spiral_in, "spiral-in" );
1906 XML_CONSTASCII_ACTION( sXML_spiral_out, "spiral-out" );
1907 XML_CONSTASCII_ACTION( sXML_wavyline, "wavyline" );
1908 XML_CONSTASCII_ACTION( sXML_laser, "laser" );
1909 XML_CONSTASCII_ACTION( sXML_appear, "appear" );
1910 XML_CONSTASCII_ACTION( sXML_hide, "hide" );
1911 XML_CONSTASCII_ACTION( sXML_move_short, "move-short" );
1912 XML_CONSTASCII_ACTION( sXML_checkerboard, "checkerboard" );
1913 XML_CONSTASCII_ACTION( sXML_stretch, "stretch" );
1914 
1915 XML_CONSTASCII_ACTION( sXML_shape_id, "shape-id" );
1916 XML_CONSTASCII_ACTION( sXML_effect, "effect" );
1917 XML_CONSTASCII_ACTION( sXML_speed, "speed" );
1918 XML_CONSTASCII_ACTION( sXML_start_scale, "start-scale" );
1919 XML_CONSTASCII_ACTION( sXML_show_shape, "show-shape" );
1920 XML_CONSTASCII_ACTION( sXML_show_text, "show-text" );
1921 XML_CONSTASCII_ACTION( sXML_hide_shape, "hide-shape" );
1922 XML_CONSTASCII_ACTION( sXML_hide_text, "hide-text" );
1923 XML_CONSTASCII_ACTION( sXML_dim, "dim" );
1924 XML_CONSTASCII_ACTION( sXML_sound, "sound" );
1925 XML_CONSTASCII_ACTION( sXML_play_full, "play-full" );
1926 XML_CONSTASCII_ACTION( sXML_path_id, "path-id" );
1927 
1928 XML_CONSTASCII_ACTION( sXML_animations, "animations" );
1929 
1930 XML_CONSTASCII_ACTION( sXML_kind, "kind" );
1931 XML_CONSTASCII_ACTION( sXML_start_angle, "start-angle" );
1932 XML_CONSTASCII_ACTION( sXML_cut, "cut" );
1933 XML_CONSTASCII_ACTION( sXML_arc, "arc" );
1934 
1935 XML_CONSTASCII_ACTION( sXML_upright, "upright" );
1936 XML_CONSTASCII_ACTION( sXML_slant_x, "slant-x" );
1937 XML_CONSTASCII_ACTION( sXML_slant_y, "slant-y" );
1938 XML_CONSTASCII_ACTION( sXML_autosize, "autosize" );
1939 XML_CONSTASCII_ACTION( sXML_slant, "slant" );
1940 XML_CONSTASCII_ACTION( sXML_topcircle, "top-circle" );
1941 XML_CONSTASCII_ACTION( sXML_bottomcircle, "bottom-circle" );
1942 XML_CONSTASCII_ACTION( sXML_leftcircle, "left-circle" );
1943 XML_CONSTASCII_ACTION( sXML_rightcircle, "right-circle" );
1944 XML_CONSTASCII_ACTION( sXML_toparc, "top-arc" );
1945 XML_CONSTASCII_ACTION( sXML_bottomarc, "bottom-arc" );
1946 XML_CONSTASCII_ACTION( sXML_leftarc, "left-arc" );
1947 XML_CONSTASCII_ACTION( sXML_rightarc, "right-arc" );
1948 XML_CONSTASCII_ACTION( sXML_button1, "button1" );
1949 XML_CONSTASCII_ACTION( sXML_button2, "button2" );
1950 XML_CONSTASCII_ACTION( sXML_button3, "button3" );
1951 XML_CONSTASCII_ACTION( sXML_button4, "button4" );
1952 
1953 XML_CONSTASCII_ACTION( sXML_caption_type, "caption-type" );
1954 XML_CONSTASCII_ACTION( sXML_caption_angle_type, "caption-angle-type" );
1955 XML_CONSTASCII_ACTION( sXML_caption_angle, "caption-angle" );
1956 XML_CONSTASCII_ACTION( sXML_caption_gap, "caption-gap" );
1957 XML_CONSTASCII_ACTION( sXML_caption_escape_direction, "caption-escape-direction" );
1958 XML_CONSTASCII_ACTION( sXML_caption_escape, "caption-escape" );
1959 XML_CONSTASCII_ACTION( sXML_caption_line_length, "caption-line-length" );
1960 XML_CONSTASCII_ACTION( sXML_caption_fit_line_length, "caption-fit-line-length" );
1961 XML_CONSTASCII_ACTION( sXML_free, "free" );
1962 
1963 XML_CONSTASCII_ACTION( sXML_straight_line, "straight-line" );
1964 XML_CONSTASCII_ACTION( sXML_angled_line, "angled-line" );
1965 XML_CONSTASCII_ACTION( sXML_angled_connector_line, "angled-connector-line" );
1966 
1967 XML_CONSTASCII_ACTION( sXML_data_source_has_labels, "data-source-has-labels" );
1968 
1969 XML_CONSTASCII_ACTION( sXML_play, "play" );
1970 XML_CONSTASCII_ACTION( sXML_handout_master, "handout-master" );
1971 
1972 XML_CONSTASCII_ACTION( sXML_escape_direction, "escape-direction" );
1973 XML_CONSTASCII_ACTION( sXML_glue_point, "glue-point" );
1974 
1975 XML_CONSTASCII_ACTION( sXML_text_style_name, "text-style-name" );
1976 
1977 XML_CONSTASCII_ACTION( sXML_sort_algorithm, "sort-algorithm" );
1978 XML_CONSTASCII_ACTION( sXML_roll_from_top, "roll-from-top" );
1979 
1980 XML_CONSTASCII_ACTION( sXML_script_data, "script-data" );
1981 XML_CONSTASCII_ACTION( sXML_libraries, "libraries" );
1982 XML_CONSTASCII_ACTION( sXML_source_code, "source-code" );
1983 XML_CONSTASCII_ACTION( sXML_readonly, "readonly" );
1984 
1985 XML_CONSTASCII_ACTION( sXML_page_continuation, "page-continuation" );
1986 
1987 XML_CONSTASCII_ACTION( sXML_contains, "contains" );
1988 XML_CONSTASCII_ACTION( sXML_does_not_contain, "does-not-contain" );
1989 XML_CONSTASCII_ACTION( sXML_begins_with, "begins-with" );
1990 XML_CONSTASCII_ACTION( sXML_does_not_begin_with, "does-not-begin-with" );
1991 XML_CONSTASCII_ACTION( sXML_ends_with, "ends-with" );
1992 XML_CONSTASCII_ACTION( sXML_does_not_end_with, "does-not-end-with" );
1993 
1994 #endif
1995