1 #ifndef XSL_ELEMENTS_H_
2 #define XSL_ELEMENTS_H_
3 
4 #include "ltr_xsl.h"
5 
6 XMLSTRING xsl_template;
7 XMLSTRING xsl_apply;
8 XMLSTRING xsl_call;
9 XMLSTRING xsl_if;
10 XMLSTRING xsl_choose;
11 XMLSTRING xsl_when;
12 XMLSTRING xsl_otherwise;
13 XMLSTRING xsl_value_of;
14 XMLSTRING xsl_include;
15 XMLSTRING xsl_element;
16 XMLSTRING xsl_attribute;
17 XMLSTRING xsl_text;
18 XMLSTRING xsl_pi;
19 XMLSTRING xsl_comment;
20 XMLSTRING xsl_number;
21 XMLSTRING xsl_foreach;
22 XMLSTRING xsl_copy;
23 XMLSTRING xsl_sort;
24 XMLSTRING xsl_output;
25 XMLSTRING xsl_copyof;
26 XMLSTRING xsl_message;
27 XMLSTRING xsl_var;
28 XMLSTRING xsl_key;
29 XMLSTRING xsl_decimal;
30 XMLSTRING xsl_withparam;
31 XMLSTRING xsl_param;
32 XMLSTRING xsl_import;
33 
34 XMLSTRING xsl_a_match;
35 XMLSTRING xsl_a_select;
36 XMLSTRING xsl_a_test;
37 XMLSTRING xsl_a_href;
38 XMLSTRING xsl_a_name;
39 XMLSTRING xsl_a_mode;
40 XMLSTRING xsl_a_escaping;
41 XMLSTRING xsl_a_method;
42 XMLSTRING xsl_a_omitxml;
43 XMLSTRING xsl_a_standalone;
44 XMLSTRING xsl_a_media;
45 XMLSTRING xsl_a_encoding;
46 XMLSTRING xsl_a_dtpublic;
47 XMLSTRING xsl_a_dtsystem;
48 XMLSTRING xsl_a_xmlns;
49 XMLSTRING xsl_a_use;
50 XMLSTRING xsl_a_datatype;
51 XMLSTRING xsl_a_order;
52 XMLSTRING xsl_a_caseorder;
53 XMLSTRING xsl_a_fork;
54 
55 XMLSTRING xsl_a_decimal_separator;
56 XMLSTRING xsl_a_grouping_separator;
57 XMLSTRING xsl_a_percent;
58 XMLSTRING xsl_a_zero_digit;
59 XMLSTRING xsl_a_digit;
60 XMLSTRING xsl_a_pattern_separator;
61 XMLSTRING xsl_a_infinity;
62 XMLSTRING xsl_a_NaN;
63 XMLSTRING xsl_a_minus_sign;
64 
65 XMLSTRING xsl_s_xml;
66 XMLSTRING xsl_s_html;
67 XMLSTRING xsl_s_text;
68 XMLSTRING xsl_s_yes;
69 XMLSTRING xsl_s_no;
70 XMLSTRING xsl_s_number;
71 XMLSTRING xsl_s_descending;
72 XMLSTRING xsl_s_lower_first;
73 XMLSTRING xsl_s_script;
74 XMLSTRING xsl_s_node;
75 XMLSTRING xsl_s_root;
76 XMLSTRING xsl_s_deny;
77 XMLSTRING xsl_s_slash;
78 
79 XMLSTRING xsl_s_head;
80 XMLSTRING xsl_s_img;
81 XMLSTRING xsl_s_meta;
82 XMLSTRING xsl_s_hr;
83 XMLSTRING xsl_s_br;
84 XMLSTRING xsl_s_link;
85 XMLSTRING xsl_s_input;
86 
87 XMLSTRING xsl_s_red;
88 XMLSTRING xsl_s_green;
89 XMLSTRING xsl_s_yellow;
90 
91 void xsl_elements_setup();
92 
93 #endif
94