"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "inkscape-0.46/doc/keys.README" of archive inkscape-0.46.zip:


As a special service "SfR Fresh" has tried to format the requested source page into HTML format using source code syntax highlighting with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
    1 To generate HTML and SVG files from keys.xml, you'll need an XSLT 
    2 processor. Any decent XSLT 1.0 or XSLT 2.0 processor should work. For example:
    3 
    4 I. Using xsltproc (available on most Linux systems):
    5 
    6 xsltproc keys-html.xsl keys.xml > keys.html
    7 xsltproc keys-svg.xsl keys.xml > keys.svg
    8 
    9 II. Using Saxon (a Java processor that works on any Java-supporting platform):
   10 
   11 1. Install Java
   12 
   13 2. Install Saxon (http://saxon.sf.net) so that saxon.jar is in your Java classpath
   14 
   15 3. Run:
   16 
   17 java net.sf.saxon.Transform doc/keys.xml doc/keys-svg.xsl > icons/keys.svg
   18 java net.sf.saxon.Transform doc/keys.xml doc/keys-html.xsl > doc/keys.html
   19 
   20 (for Saxon 7.*) or
   21 
   22 java com.icl.saxon.StyleSheet doc/keys.xml doc/keys-svg.xsl > icons/keys.svg
   23 java com.icl.saxon.StyleSheet doc/keys.xml doc/keys-html.xsl > doc/keys.html
   24 
   25 (for Saxon 6.*)
   26