Code

paint bucket, node sculpting, grow/shrink selection updates; general copyedit and...
[inkscape.git] / doc / keys.README
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:
4 I. Using xsltproc (available on most Linux systems):
6 xsltproc keys-html.xsl keys.xml > keys.html
7 xsltproc keys-svg.xsl keys.xml > keys.svg
9 II. Using Saxon (a Java processor that works on any Java-supporting platform):
11 1. Install Java
13 2. Install Saxon (http://saxon.sf.net) so that saxon.jar is in your Java classpath
15 3. Run:
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
20 (for Saxon 7.*) or
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
25 (for Saxon 6.*)