Logoj0ke.net Open Build Service > Projects > Apache:Modules > apache2-mod_xml2enc > USAGE
Sign Up | Log In

File USAGE of Package apache2-mod_xml2enc

 
1
Usage
2
3
There are two usage scenarios:
4
Filter modules enabled for mod_xml2enc
5
6
Modules such as mod_proxy_html version 3.1 and up use the xml2enc_charset optional function to retrieve the charset argument to pass to the libxml2 parser, and may use the xml2enc_filter optional function to postprocess to another encoding. Using mod_xml2enc with an enabled module, no configuration is necessary: the other module will configure mod_xml2enc for you (though you may still want to customise it using the configuration directives below).
7
Non-enabled modules
8
9
To use it with a libxml2-based module that isn't explicitly enabled for mod_xml2enc, you will have to configure the filter chain yourself. For example, to use it with mod_publisher to improve the latter's i18n support with HTML and XML, you could use
10
11
12
FilterProvider iconv    xml2enc Content-Type $text/html
13
FilterProvider iconv    xml2enc Content-Type $xml
14
FilterProvider markup   markup-publisher Content-Type $text/html
15
FilterProvider markup   markup-publisher Content-Type $xml
16
FilterChain iconv markup
17
18
mod_publisher will now support any character set supported by either (or both) of libxml2 or apr_xlate/iconv.
19
Programming API
20
21
Programmers writing libxml2-based filter modules are encouraged to enable them for mod_xml2enc, to provide strong i18n support for your users without reinventing the wheel. The programming API is exposed in mod_xml2enc.h, and a usage example is mod_proxy_html.
22
Configuration
23
24
The following configuration directives are available:
25
26
xml2EncDefault
27
28
    Syntax xml2EncDefault name
29
30
    This defines the default encoding to assume when absolutely no charset information is available from the backend server. The default value for this is ISO-8859-1, as specified in HTTP/1.0 and assumed in earlier modules.
31
xml2EncAlias
32
33
    Syntax xml2EncAlias charset alias [alias ...]
34
35
    This server-wide directive aliases one or more charset to another charset. This enables encodings not recognised by libxml2 to be handled internally by libxml2's charset support using the translation table for a recognised charset. This serves two purposes: to support character sets (or names) not recognised either by libxml2 or iconv, and to skip conversion for a charset where it is known to be unnecessary.
36
xml2StartParse
37
38
    Syntax xml2StartParse element [elt*]
39
40
    Specify that the markup parser should start at the first instance of any of the elements specified. This can be used where a broken backend inserts leading junk that messes up the parser (example here). It should never be used for XML, nor well-formed HTML.
41
42
Post-Processing
43
44
There is currently no direct way to configure post-processing. Another module can invoke post-processing to output a desired character set, but a system administrator cannot do so directly.
45