diff options
Diffstat (limited to 'epan/wslua/lrexlib/README.rst')
-rw-r--r-- | epan/wslua/lrexlib/README.rst | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/epan/wslua/lrexlib/README.rst b/epan/wslua/lrexlib/README.rst index b9679d35..660e8475 100644 --- a/epan/wslua/lrexlib/README.rst +++ b/epan/wslua/lrexlib/README.rst @@ -5,7 +5,7 @@ Lrexlib | and Shmuel Zeigerman (shmuz@013net.net) **Lrexlib** provides bindings of five regular expression library APIs -(POSIX_, PCRE_, PCRE2_, GNU_, TRE_ and Oniguruma_) to Lua_ >= 5.1. +(POSIX_, PCRE_, GNU_, TRE_ and Oniguruma_) to Lua_ >= 5.1. The bindings for TRE and Oniguruma are not currently complete. **Lrexlib** is copyright Reuben Thomas 2000-2020 and copyright Shmuel @@ -13,17 +13,17 @@ Zeigerman 2004-2020, and is released under the same license as Lua, the MIT_ license (otherwise known as the revised BSD license). There is no warranty. -.. _POSIX: http://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html -.. _PCRE: http://www.pcre.org/pcre.txt -.. _PCRE2: http://www.pcre.org/pcre2.txt -.. _GNU: ftp://ftp.gnu.org/old-gnu/regex/ +.. _POSIX: https://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html +.. _PCRE: https://www.pcre.org/current/doc/html/ +.. _GNU: https://ftp.gnu.org/old-gnu/regex/ .. _Oniguruma: https://github.com/kkos/oniguruma -.. _TRE: http://laurikari.net/tre/documentation/ -.. _Lua: http://www.lua.org -.. _MIT: http://www.opensource.org/licenses/mit-license.php +.. _TRE: https://laurikari.net/tre/documentation/ +.. _Lua: https://www.lua.org +.. _MIT: https://www.opensource.org/licenses/mit-license.php -Please report bugs and make suggestions to the maintainer, or use the -LuaForge trackers and mailing lists. +Please report bugs and make suggestions on GitHub_. + +.. _GitHub: https://github.com/rrthomas/lrexlib/issues Thanks to Thatcher Ulrich for bug and warning fixes, and to Nick Gammon for adding support for PCRE named subpatterns. @@ -37,20 +37,22 @@ Lrexlib is installed with LuaRocks_, using the command:: luarocks install lrexlib-FLAVOUR -where **FLAVOUR** is one of PCRE, PCRE2, POSIX, oniguruma, TRE, GNU +where **FLAVOUR** is one of PCRE2, POSIX, oniguruma, TRE, GNU + +Note that the obsolete PCRE version 1 is also supported, as flavour PCRE. -.. _LuaRocks: http://www.luarocks.org +.. _LuaRocks: https://luarocks.org Links ----- +- `GitHub project page`_ - License_ - `Reference Manual`_ -- `LuaForge Project Page`_ -- Download_ +- Downloads_ -.. _License: http://rrthomas.github.com/lrexlib/license.html -.. _Reference Manual: http://rrthomas.github.com/lrexlib/manual.html -.. _LuaForge Project Page: http://luaforge.net/projects/lrexlib/ -.. _Download: https://github.com/rrthomas/lrexlib/downloads +.. _GitHub project page: https://github.com/rrthomas/lrexlib +.. _License: https://rrthomas.github.io/lrexlib/license.html +.. _Reference Manual: https://rrthomas.github.io/lrexlib/manual.html +.. _Downloads: https://github.com/rrthomas/lrexlib/downloads |