wxWidgets/src/regex
2004-02-19 17:28:56 +00:00
..
.cvsignore Patch from "Viktor Voroshylo" <viktor@voroshylo.com> 2004-01-27 17:47:37 +00:00
COPYRIGHT applied patch 890642: wxRE_ADVANCED flag and docs 2004-02-19 16:57:15 +00:00
engine.ih
Makefile
makefile.sc update to make digitalmars compile/link image sample 2003-04-24 21:02:07 +00:00
makefile.vc
makefile.wat changes to watcom makefiles for OpenWatcom 2003-04-05 10:14:07 +00:00
mkh
re_syntax.n
README applied patch 890642: wxRE_ADVANCED flag and docs 2004-02-19 16:57:15 +00:00
reg.test Removed old tests file and replaced with tcl version.... 2004-01-10 10:38:46 +00:00
regc_color.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regc_cvec.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regc_lex.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regc_locale.c applied patch 890642: wxRE_ADVANCED flag and docs 2004-02-19 16:57:15 +00:00
regc_nfa.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regcomp.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regcomp.ih
regcustom.h applied patch 890642: wxRE_ADVANCED flag and docs 2004-02-19 16:57:15 +00:00
rege_dfa.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regerror.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regerror.ih
regerrs.h reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regex.3
regex.dsp Fixed relative paths to lib/. 2004-02-08 21:39:56 +00:00
regex.dsw Fixed corrupt files 2003-01-10 11:38:51 +00:00
regex.h applied patch 890642: wxRE_ADVANCED flag and docs 2004-02-19 16:57:15 +00:00
regexCE.vcp Patch from "Viktor Voroshylo" <viktor@voroshylo.com> 2004-01-27 17:47:37 +00:00
regexec.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regexM8.xml Added ../../include/wx/ to path. 2004-01-20 18:01:49 +00:00
regfree.c reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
regfronts.c
regguts.h reverted to TCL version of regex library 2004-02-19 16:47:02 +00:00
splice.sh applied patch 890642: wxRE_ADVANCED flag and docs 2004-02-19 17:28:56 +00:00
tclUniData.c
WHATSNEW

wxWindows regex
---------------
This is a version of Henry Spencer's regex, which was taken from the
source of TCL (Toolkit Command Language).  It implements POSIX regular
expressions and also supports Unicode and some Perl5 extensions.

The modifications made by the wxWindows team are as follows:

regcustom.h
-----------
Types and constants appropriate for our use of the library are defined
here.

regex.h
-------
This is unmodified. Note though, that a portion of it (clearly marked)
is copied from regcustom.h as part of the build process.

regc_locale.c
-------------
This module provides character classifications.

The current version from Tcl supports only a Unicode build. The
original code from Henry Spencer, on the other hand, was ASCII only.
Therefore, in order to support both, code from the ASCII version has been
incorporated into the Unicode version, conditionally compiled depending
on wxUSE_UNICODE.

The only non-trivial dependencies were: Tcl_UniCharToUpper,
Tcl_UniCharToLower and Tcl_UniCharToTitle. The implementations of these
have also been incorporated (from Tcl). These in turn depend only the data
tables in tclUniData.c (which is unmodified). At some point wxWindows
may have it's own Unicode character classification code, at which point
these should be used instead.

Other dependencies (on Tcl_DString) have been eliminated using wxWindows
wxChar functions.

The ASCII version has also been extended to support character
classifications based on the current locale rather than ASCII only.