-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.xml
112 lines (107 loc) · 3.09 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<page>
<p>
A data structure for well-formed XML documents, designed for Common
Lisp.
</p>
<h3>About</h3>
<p>
cxml-stp is an alternative to the
W3C's <a href="http://common-lisp.net/project/cxml/dom.html">DOM</a>,
which cxml also implements. It was written
by <a href="mailto:[email protected]">David Lichteblau</a> as an
add-on library for
<a href="http://common-lisp.net/project/cxml">Closure XML</a> and is
available under an X11-style license.
</p>
<p>
Please send bug reports
to <a href="mailto:[email protected]">
(<a href="http://common-lisp.net/cgi-bin/mailman/listinfo/cxml-devel">list information</a>).
</p>
<p>
<i>Acknowledgements:</i>
cxml-stp is inspired by <a href="http://www.xom.nu/">XOM</a>.
</p>
<h3>Download</h3>
<p>
Download a
<a href="http://www.lichteblau.com/cxml-stp/download/">tarball</a>.
</p>
<h3>Installation</h3>
<p>
cxml-stp needs
<a href="http://common-lisp.net/project/cxml">Closure XML</a>,
<a href="http://common-lisp.net/project/alexandria/">Alexandria</a>,
and <a href="http://common-lisp.net/project/plexippus-xpath/">Plexippus
XPath</a>.
</p>
<p>
<a href="http://www.cliki.net/asdf">ASDF</a> is used for
compilation. Register the .asd file, e.g. by symlinking it,
then compile cxml-stp using <tt>asdf:operate</tt>.
</p>
<pre>$ ln -sf `pwd`/cxml-stp.asd /path/to/your/registry/
* (asdf:operate 'asdf:load-op :cxml-stp)</pre>
<p>
<i>Implementation-specific notes:</i>
At this point, cxml-stp is written to work with Lisp strings
(as opposed to runes and rods), and is meant to be used on
Lisp implementations with Unicode support.
</p>
<h3>Documentation</h3>
<p>
<raute/> <a href="tutorial/index.html">Tutorial</a>
</p>
<p>
<raute/> <a href="tutorial/examples.html">Code</a> snippets
from the tutorial collected on one page
</p>
<p>
<raute/> <a href="doc/pages/cxml-stp.html">API documentation</a>
</p>
<p>
There is also a rough "STP for DOM
users" <a href="DOM-COMPARISON">comparison</a> which should be
useful if you have a specific DOM function in mind and are looking
for STP's equivalent.
</p>
<h3>Recent changes</h3>
<p><b>2008-03-dd</b></p>
<ul>
<li>
XPath support. (Thanks to Ivan Shvedunov for his contributions.)
</li>
<li>
Use 21 bit characters on Lisps offering them.
</li>
<li>
New function NUMBER-OF-CHILDREN.
</li>
<li>
Fixed FILTER-CHILDREN to return a list, not a vector.
</li>
<li>
Shortcut syntax using symbol in WITH-ATTRIBUTE (thanks to Cyrus Harmon).
</li>
<li>
Minor changes: Disabled uri syntax warnings. Represent uris as
strings, not puri objects.
</li>
</ul>
<p><b>2007-10-21</b></p>
<ul>
<li>
New function FIND-RECURSIVELY-IF.
</li>
<li>
Minor changes: Update to current CXML's SAX builders.
</li>
</ul>
<p><b>2007-08-05</b></p>
<ul>
<li>
Initial public release.
</li>
</ul>
</page>