fixed links in the docs/index.html
This commit is contained in:
@ -1,4 +1,3 @@
|
|||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
@ -22,6 +21,7 @@
|
|||||||
pre.none { padding:5px; background-color:#ffffff }
|
pre.none { padding:5px; background-color:#ffffff }
|
||||||
</style>
|
</style>
|
||||||
<meta name="description" content="Fast and portable perl-compatible regular expressions for Common Lisp.">
|
<meta name="description" content="Fast and portable perl-compatible regular expressions for Common Lisp.">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body bgcolor=white>
|
<body bgcolor=white>
|
||||||
@ -63,7 +63,7 @@ href="http://www.hpc.unm.edu/~download/LoGS/">LoGS</a>, <a href="http://cafespot
|
|||||||
href="http://weitz.de/regex-coach/">The Regex Coach</a>.
|
href="http://weitz.de/regex-coach/">The Regex Coach</a>.
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<font color=red>Download shortcut:</font> <a href="http://weitz.de/files/cl-ppcre.tar.gz">http://weitz.de/files/cl-ppcre.tar.gz</a>.
|
<font color=red><a href="https://github.com/edicl/cl-ppcre/archive/master.zip">Download current version</a></font> or visit the <a href="https://github.com/edicl/cl-ppcre/">project on Github</a>.
|
||||||
|
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
@ -150,14 +150,14 @@ href="http://weitz.de/regex-coach/">The Regex Coach</a>.
|
|||||||
<br> <br><h3><a name="install" class=none>Download and installation</a></h3>
|
<br> <br><h3><a name="install" class=none>Download and installation</a></h3>
|
||||||
|
|
||||||
CL-PPCRE together with this documentation can be downloaded from <a
|
CL-PPCRE together with this documentation can be downloaded from <a
|
||||||
href="http://weitz.de/files/cl-ppcre.tar.gz">http://weitz.de/files/cl-ppcre.tar.gz</a>. The
|
href="https://github.com/edicl/cl-ppcre/archive/master.zip">Github</a>. The
|
||||||
current version is 2.0.11.
|
current version is 2.0.11.
|
||||||
<p>
|
<p>
|
||||||
CL-PPCRE comes with a system definition
|
CL-PPCRE comes with a system definition
|
||||||
for <a href="http://www.cliki.net/asdf">ASDF</a> and you compile and
|
for <a href="http://www.cliki.net/asdf">ASDF</a> and you compile and
|
||||||
load it in the usual way. There are no dependencies (except that the
|
load it in the usual way. There are no dependencies (except that the
|
||||||
<a href="#test">test suite</a> which is not needed for normal operation depends
|
<a href="#test">test suite</a> which is not needed for normal operation depends
|
||||||
on <a href="http://weitz.de/flexi-streams/">FLEXI-STREAMS</a>).
|
on <a href="https://github.com/edicl/flexi-streams/">FLEXI-STREAMS</a>).
|
||||||
<p>
|
<p>
|
||||||
The preferred way to install CL-PPCRE is
|
The preferred way to install CL-PPCRE is
|
||||||
through <a href="http://www.quicklisp.org/" target="_new">Quicklisp</a>:
|
through <a href="http://www.quicklisp.org/" target="_new">Quicklisp</a>:
|
||||||
@ -215,7 +215,7 @@ they obviously don't make sense in Lisp.
|
|||||||
<li><code>\N{name}</code> (named characters), <code>\x{263a}</code>
|
<li><code>\N{name}</code> (named characters), <code>\x{263a}</code>
|
||||||
(wide hex characters), <code>\l</code>, <code>\u</code>,
|
(wide hex characters), <code>\l</code>, <code>\u</code>,
|
||||||
<code>\L</code>, and <code>\U</code>
|
<code>\L</code>, and <code>\U</code>
|
||||||
because they're actually not part of Perl's <em>regex</em> syntax - but see <a href="http://weitz.de/cl-interpol/">CL-INTERPOL</a>.
|
because they're actually not part of Perl's <em>regex</em> syntax - but see <a href="https://github.com/edicl/cl-interpol/">CL-INTERPOL</a>.
|
||||||
|
|
||||||
<li><code>\X</code> (extended Unicode), and <code>\C</code> (single
|
<li><code>\X</code> (extended Unicode), and <code>\C</code> (single
|
||||||
character). But you can of course use all characters
|
character). But you can of course use all characters
|
||||||
@ -1628,7 +1628,7 @@ convert a parse tree).
|
|||||||
<br> <br><h3><a name="unicode" class=none>Unicode properties</a></h3>
|
<br> <br><h3><a name="unicode" class=none>Unicode properties</a></h3>
|
||||||
|
|
||||||
You can add support for Unicode properties to CL-PPCRE by loading
|
You can add support for Unicode properties to CL-PPCRE by loading
|
||||||
the CL-PPCRE-UNICODE system (which depends on <a href="http://weitz.de/cl-unicode/">CL-UNICODE</a>):
|
the CL-PPCRE-UNICODE system (which depends on <a href="https://github.com/edicl/cl-unicode/">CL-UNICODE</a>):
|
||||||
<pre>
|
<pre>
|
||||||
(asdf:oos 'asdf:load-op :cl-ppcre-unicode)
|
(asdf:oos 'asdf:load-op :cl-ppcre-unicode)
|
||||||
</pre>
|
</pre>
|
||||||
@ -1636,7 +1636,7 @@ This will automatically
|
|||||||
install <a href="#unicode-property-resolver"><code>UNICODE-PROPERTY-RESOLVER</code></a>
|
install <a href="#unicode-property-resolver"><code>UNICODE-PROPERTY-RESOLVER</code></a>
|
||||||
as your <a href="#*property-resolver*">property resolver</a>.
|
as your <a href="#*property-resolver*">property resolver</a>.
|
||||||
<p>
|
<p>
|
||||||
See the <a href="http://weitz.de/cl-unicode/">CL-UNICODE</a>
|
See the <a href="https://github.com/edicl/cl-unicode/">CL-UNICODE</a>
|
||||||
documentation for information about the supported Unicode properties
|
documentation for information about the supported Unicode properties
|
||||||
and how they are named.
|
and how they are named.
|
||||||
|
|
||||||
@ -1644,7 +1644,7 @@ and how they are named.
|
|||||||
<blockquote><br>
|
<blockquote><br>
|
||||||
A <a href="#*property-resolver*">property
|
A <a href="#*property-resolver*">property
|
||||||
resolver</a> which understands Unicode properties using
|
resolver</a> which understands Unicode properties using
|
||||||
<a href="http://weitz.de/cl-unicode/">CL-UNICODE</a>'s <a href="http://weitz.de/cl-unicode/#property-test"><code>PROPERTY-TEST</code></a>
|
<a href="https://github.com/edicl/cl-unicode/">CL-UNICODE</a>'s <code>PROPERTY-TEST</code>
|
||||||
function. This resolver is automatically installed
|
function. This resolver is automatically installed
|
||||||
in <a href="#*property-resolver*"><code>*PROPERTY-RESOLVER*</code></a>
|
in <a href="#*property-resolver*"><code>*PROPERTY-RESOLVER*</code></a>
|
||||||
when the <a href="#unicode">CL-PPCRE-UNICODE</a> system is loaded.
|
when the <a href="#unicode">CL-PPCRE-UNICODE</a> system is loaded.
|
||||||
@ -1881,10 +1881,10 @@ report it.
|
|||||||
<h4><a name="uprops" class=none>Different names for Unicode properties</a></h4>
|
<h4><a name="uprops" class=none>Different names for Unicode properties</a></h4>
|
||||||
|
|
||||||
The names of <a href="#unicode">Unicode properties</a> are derived
|
The names of <a href="#unicode">Unicode properties</a> are derived
|
||||||
from <a href="http://weitz.de/cl-unicode/">CL-UNICODE</a> and might
|
from <a href="https://github.com/edicl/cl-unicode/">CL-UNICODE</a> and might
|
||||||
differ slightly from the names in Perl. Most of them should be
|
differ slightly from the names in Perl. Most of them should be
|
||||||
identical, though.
|
identical, though.
|
||||||
Also, <a href="http://weitz.de/cl-unicode/">CL-UNICODE</a> is based on
|
Also, <a href="https://github.com/edicl/cl-unicode/">CL-UNICODE</a> is based on
|
||||||
Unicode 5.1 while your installed Perl version might be not.
|
Unicode 5.1 while your installed Perl version might be not.
|
||||||
|
|
||||||
<h4><a name="mac" class=none><code>"\r"</code> doesn't work with MCL</a></h4>
|
<h4><a name="mac" class=none><code>"\r"</code> doesn't work with MCL</a></h4>
|
||||||
@ -1940,7 +1940,7 @@ Bummer!
|
|||||||
<p>
|
<p>
|
||||||
What gives? <code>"\\Q...\\E"</code> in CL-PPCRE should only
|
What gives? <code>"\\Q...\\E"</code> in CL-PPCRE should only
|
||||||
be used in literal strings. If you want to quote arbitrary strings,
|
be used in literal strings. If you want to quote arbitrary strings,
|
||||||
try <a href="http://weitz.de/cl-interpol/">CL-INTERPOL</a> or use <a
|
try <a href="https://github.com/edicl/cl-interpol/">CL-INTERPOL</a> or use <a
|
||||||
href="#quote-meta-chars"><code>QUOTE-META-CHARS</code></a>:
|
href="#quote-meta-chars"><code>QUOTE-META-CHARS</code></a>:
|
||||||
<pre>
|
<pre>
|
||||||
* (let ((a "\\E*"))
|
* (let ((a "\\E*"))
|
||||||
@ -1983,7 +1983,7 @@ $a =~ /$a/;
|
|||||||
|
|
||||||
which should explain why it doesn't match.
|
which should explain why it doesn't match.
|
||||||
<p>
|
<p>
|
||||||
Still confused? You might want to try <a href="http://weitz.de/cl-interpol/">CL-INTERPOL</a>.
|
Still confused? You might want to try <a href="https://github.com/edicl/cl-interpol/">CL-INTERPOL</a>.
|
||||||
|
|
||||||
<br> <br><h3><a class=none name="allegro">AllegroCL compatibility mode</a></h3>
|
<br> <br><h3><a class=none name="allegro">AllegroCL compatibility mode</a></h3>
|
||||||
|
|
||||||
@ -2184,10 +2184,9 @@ as the output of Perl's <code>use re "debug"</code> pragma
|
|||||||
have been very helpful in optimizing the scanners created by CL-PPCRE.
|
have been very helpful in optimizing the scanners created by CL-PPCRE.
|
||||||
|
|
||||||
<p>The list of people who participated in this project in one way or
|
<p>The list of people who participated in this project in one way or
|
||||||
the other has grown too long to maintain it here. See
|
the other has grown too long to maintain it here. See the ChangeLog
|
||||||
the <a href="http://weitz.de/cl-ppcre/CHANGELOG">ChangeLog</a> for all
|
for all the people who helped with patches, bug reports, or in other
|
||||||
the people who helped with patches, bug reports, or in other ways.
|
ways. Thanks to all of them!
|
||||||
Thanks to all of them!
|
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Thanks to the guys at
|
Thanks to the guys at
|
||||||
@ -2200,7 +2199,7 @@ OpenMCL.
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
$Header: /usr/local/cvsrep/cl-ppcre/doc/index.html,v 1.200 2009/10/28 07:36:31 edi Exp $
|
$Header: /usr/local/cvsrep/cl-ppcre/doc/index.html,v 1.200 2009/10/28 07:36:31 edi Exp $
|
||||||
<p><a href="http://weitz.de/index.html">BACK TO MY HOMEPAGE</a>
|
<p><a href="https://edicl.github.io">BACK TO THE HOMEPAGE</a>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user