From f173c78cabd61d861cc9d1ae68f9d6ca0415ab18 Mon Sep 17 00:00:00 2001 From: Vityok Date: Fri, 22 Dec 2017 14:16:47 +0200 Subject: [PATCH] fixed links in the docs/index.html --- docs/index.html | 65 ++++++++++++++++++++++++------------------------- 1 file changed, 32 insertions(+), 33 deletions(-) diff --git a/docs/index.html b/docs/index.html index 6f095a2..973cdee 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,5 +1,4 @@ - - + @@ -9,19 +8,20 @@ h3, h4 { text-decoration: underline; } a { text-decoration: none; padding: 1px 2px 1px 2px; } a:visited { text-decoration: none; padding: 1px 2px 1px 2px; } - a:hover { text-decoration: none; padding: 1px 1px 1px 1px; border: 1px solid #000000; } + a:hover { text-decoration: none; padding: 1px 1px 1px 1px; border: 1px solid #000000; } a:focus { text-decoration: none; padding: 1px 2px 1px 2px; border: none; } a.none { text-decoration: none; padding: 0; } - a.none:visited { text-decoration: none; padding: 0; } - a.none:hover { text-decoration: none; border: none; padding: 0; } - a.none:focus { text-decoration: none; border: none; padding: 0; } - a.noborder { text-decoration: none; padding: 0; } - a.noborder:visited { text-decoration: none; padding: 0; } - a.noborder:hover { text-decoration: none; border: none; padding: 0; } - a.noborder:focus { text-decoration: none; border: none; padding: 0; } + a.none:visited { text-decoration: none; padding: 0; } + a.none:hover { text-decoration: none; border: none; padding: 0; } + a.none:focus { text-decoration: none; border: none; padding: 0; } + a.noborder { text-decoration: none; padding: 0; } + a.noborder:visited { text-decoration: none; padding: 0; } + a.noborder:hover { text-decoration: none; border: none; padding: 0; } + a.noborder:focus { text-decoration: none; border: none; padding: 0; } pre.none { padding:5px; background-color:#ffffff } + @@ -56,14 +56,14 @@ license so you can basically do with it whatever you want. CL-PPCRE has been used successfully in various applications like BioBike, +href="http://nostoc.stanford.edu/Docs/">BioBike, clutu, LoGS, CafeSpot, Eboy, or The Regex Coach.

-Download shortcut: http://weitz.de/files/cl-ppcre.tar.gz. +Download current version or visit the project on Github. @@ -150,14 +150,14 @@ href="http://weitz.de/regex-coach/">The Regex Coach.
 

Download and installation

CL-PPCRE together with this documentation can be downloaded from http://weitz.de/files/cl-ppcre.tar.gz. The +href="https://github.com/edicl/cl-ppcre/archive/master.zip">Github. The current version is 2.0.11.

CL-PPCRE comes with a system definition for ASDF and you compile and load it in the usual way. There are no dependencies (except that the test suite which is not needed for normal operation depends -on FLEXI-STREAMS). +on FLEXI-STREAMS).

The preferred way to install CL-PPCRE is through Quicklisp: @@ -170,7 +170,7 @@ through Quicklisp:

The current development version of CL-PPCRE can be found -at https://github.com/edicl/cl-ppcre. If you want to send patches, please fork the github repository and send pull requests. +at https://github.com/edicl/cl-ppcre. If you want to send patches, please fork the github repository and send pull requests.


 

Support

@@ -215,7 +215,7 @@ they obviously don't make sense in Lisp.
  • \N{name} (named characters), \x{263a} (wide hex characters), \l, \u, \L, and \U -because they're actually not part of Perl's regex syntax - but see CL-INTERPOL. +because they're actually not part of Perl's regex syntax - but see CL-INTERPOL.
  • \X (extended Unicode), and \C (single character). But you can of course use all characters @@ -728,10 +728,10 @@ match. If sharedp is true, the substrings may share structur * (do-register-groups (first second third fourth) ("((a)|(b)|(c))" "abababc" nil :start 2 :sharedp t) (print (list first second third fourth))) -("a" "a" NIL NIL) -("b" NIL "b" NIL) -("a" "a" NIL NIL) -("b" NIL "b" NIL) +("a" "a" NIL NIL) +("b" NIL "b" NIL) +("a" "a" NIL NIL) +("b" NIL "b" NIL) ("c" NIL NIL "c") NIL @@ -1628,7 +1628,7 @@ convert a parse tree).
     

    Unicode properties

    You can add support for Unicode properties to CL-PPCRE by loading -the CL-PPCRE-UNICODE system (which depends on CL-UNICODE): +the CL-PPCRE-UNICODE system (which depends on CL-UNICODE):
     (asdf:oos 'asdf:load-op :cl-ppcre-unicode)
     
    @@ -1636,7 +1636,7 @@ This will automatically install UNICODE-PROPERTY-RESOLVER as your property resolver.

    -See the CL-UNICODE +See the CL-UNICODE documentation for information about the supported Unicode properties and how they are named. @@ -1644,7 +1644,7 @@ and how they are named.


    A property resolver which understands Unicode properties using -CL-UNICODE's PROPERTY-TEST +CL-UNICODE's PROPERTY-TEST function. This resolver is automatically installed in *PROPERTY-RESOLVER* when the CL-PPCRE-UNICODE system is loaded. @@ -1881,10 +1881,10 @@ report it.

    Different names for Unicode properties

    The names of Unicode properties are derived -from CL-UNICODE and might +from CL-UNICODE and might differ slightly from the names in Perl. Most of them should be identical, though. -Also, CL-UNICODE is based on +Also, CL-UNICODE is based on Unicode 5.1 while your installed Perl version might be not.

    "\r" doesn't work with MCL

    @@ -1940,7 +1940,7 @@ Bummer!

    What gives? "\\Q...\\E" in CL-PPCRE should only be used in literal strings. If you want to quote arbitrary strings, -try CL-INTERPOL or use CL-INTERPOL or use QUOTE-META-CHARS:

     * (let ((a "\\E*"))
    @@ -1983,7 +1983,7 @@ $a =~ /$a/;
     
     which should explain why it doesn't match.
     

    -Still confused? You might want to try CL-INTERPOL. +Still confused? You might want to try CL-INTERPOL.
     

    AllegroCL compatibility mode

    @@ -2031,7 +2031,7 @@ To use the AllegroCL compatibility mode you have to
     

    Hints, comments, performance considerations

    -Here are, in no particular order, a couple of things about CL-PPCRE +Here are, in no particular order, a couple of things about CL-PPCRE and regular expressions in general that you might or might not want to read. @@ -2184,10 +2184,9 @@ as the output of Perl's use re "debug" pragma have been very helpful in optimizing the scanners created by CL-PPCRE.

    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 ChangeLog for all -the people who helped with patches, bug reports, or in other ways. -Thanks to all of them! +the other has grown too long to maintain it here. See the ChangeLog +for all the people who helped with patches, bug reports, or in other +ways. Thanks to all of them!

    Thanks to the guys at @@ -2200,7 +2199,7 @@ OpenMCL.

    $Header: /usr/local/cvsrep/cl-ppcre/doc/index.html,v 1.200 2009/10/28 07:36:31 edi Exp $ -

    BACK TO MY HOMEPAGE +

    BACK TO THE HOMEPAGE