⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 changelog

📁 以便Apache与其他服务进行整合 Mod_JK安装
💻
📖 第 1 页 / 共 5 页
字号:
5. Added Paul Sokolovsky's minor changes to make it easy to compile a Win32 DLLin GnuWin32 environments.Version 2.07 29-Jul-99----------------------1. The documentation is now supplied in plain text form and HTML as well as inthe form of man page sources.2. C++ compilers don't like assigning (void *) values to other pointer types.In particular this affects malloc(). Although there is no problem in StandardC, I've put in casts to keep C++ compilers happy.3. Typo on pcretest.c; a cast of (unsigned char *) in the POSIX regexec() callshould be (const char *).4. If NOPOSIX is defined, pcretest.c compiles without POSIX support. This maybe useful for non-Unix systems who don't want to bother with the POSIX stuff.However, I haven't made this a standard facility. The documentation doesn'tmention it, and the Makefile doesn't support it.5. The Makefile now contains an "install" target, with editable destinations atthe top of the file. The pcretest program is not installed.6. pgrep -V now gives the PCRE version number and date.7. Fixed bug: a zero repetition after a literal string (e.g. /abcde{0}/) wascausing the entire string to be ignored, instead of just the last character.8. If a pattern like /"([^\\"]+|\\.)*"/ is applied in the normal way to anon-matching string, it can take a very, very long time, even for strings ofquite modest length, because of the nested recursion. PCRE now does better insome of these cases. It does this by remembering the last required literalcharacter in the pattern, and pre-searching the subject to ensure it is presentbefore running the real match. In other words, it applies a heuristic to detectsome types of certain failure quickly, and in the above example, if presentedwith a string that has no trailing " it gives "no match" very quickly.9. A new runtime option PCRE_NOTEMPTY causes null string matches to be ignored;other alternatives are tried instead.Version 2.06 09-Jun-99----------------------1. Change pcretest's output for amount of store used to show just the codespace, because the remainder (the data block) varies in size between 32-bit and64-bit systems.2. Added an extra argument to pcre_exec() to supply an offset in the subject tostart matching at. This allows lookbehinds to work when searching for multipleoccurrences in a string.3. Added additional options to pcretest for testing multiple occurrences:   /+   outputs the rest of the string that follows a match   /g   loops for multiple occurrences, using the new startoffset argument   /G   loops for multiple occurrences by passing an incremented pointer4. PCRE wasn't doing the "first character" optimization for patterns startingwith \b or \B, though it was doing it for other lookbehind assertions. That is,it wasn't noticing that a match for a pattern such as /\bxyz/ has to start withthe letter 'x'. On long subject strings, this gives a significant speed-up.Version 2.05 21-Apr-99----------------------1. Changed the type of magic_number from int to long int so that it worksproperly on 16-bit systems.2. Fixed a bug which caused patterns starting with .* not to work correctlywhen the subject string contained newline characters. PCRE was assuminganchoring for such patterns in all cases, which is not correct because .* willnot pass a newline unless PCRE_DOTALL is set. It now assumes anchoring only ifDOTALL is set at top level; otherwise it knows that patterns starting with .*must be retried after every newline in the subject.Version 2.04 18-Feb-99----------------------1. For parenthesized subpatterns with repeats whose minimum was zero, thecomputation of the store needed to hold the pattern was incorrect (too large).If such patterns were nested a few deep, this could multiply and become a realproblem.2. Added /M option to pcretest to show the memory requirement of a specificpattern. Made -m a synonym of -s (which does this globally) for compatibility.3. Subpatterns of the form (regex){n,m} (i.e. limited maximum) were beingcompiled in such a way that the backtracking after subsequent failure waspessimal. Something like (a){0,3} was compiled as (a)?(a)?(a)? instead of((a)((a)(a)?)?)? with disastrous performance if the maximum was of any size.Version 2.03 02-Feb-99----------------------1. Fixed typo and small mistake in man page.2. Added 4th condition (GPL supersedes if conflict) and created separateLICENCE file containing the conditions.3. Updated pcretest so that patterns such as /abc\/def/ work like they do inPerl, that is the internal \ allows the delimiter to be included in thepattern. Locked out the use of \ as a delimiter. If \ immediately followsthe final delimiter, add \ to the end of the pattern (to test the error).4. Added the convenience functions for extracting substrings after a successfulmatch. Updated pcretest to make it able to test these functions.Version 2.02 14-Jan-99----------------------1. Initialized the working variables associated with each extraction so thattheir saving and restoring doesn't refer to uninitialized store.2. Put dummy code into study.c in order to trick the optimizer of the IBM Ccompiler for OS/2 into generating correct code. Apparently IBM isn't going tofix the problem.3. Pcretest: the timing code wasn't using LOOPREPEAT for timing executioncalls, and wasn't printing the correct value for compiling calls. Increased thedefault value of LOOPREPEAT, and the number of significant figures in thetimes.4. Changed "/bin/rm" in the Makefile to "-rm" so it works on Windows NT.5. Renamed "deftables" as "dftables" to get it down to 8 characters, to avoida building problem on Windows NT with a FAT file system.Version 2.01 21-Oct-98----------------------1. Changed the API for pcre_compile() to allow for the provision of a pointerto character tables built by pcre_maketables() in the current locale. If NULLis passed, the default tables are used.Version 2.00 24-Sep-98----------------------1. Since the (>?) facility is in Perl 5.005, don't require PCRE_EXTRA to enableit any more.2. Allow quantification of (?>) groups, and make it work correctly.3. The first character computation wasn't working for (?>) groups.4. Correct the implementation of \Z (it is permitted to match on the \n at theend of the subject) and add 5.005's \z, which really does match only at thevery end of the subject.5. Remove the \X "cut" facility; Perl doesn't have it, and (?> is neater.6. Remove the ability to specify CASELESS, MULTILINE, DOTALL, andDOLLAR_END_ONLY at runtime, to make it possible to implement the Perl 5.005localized options. All options to pcre_study() were also removed.7. Add other new features from 5.005:   $(?<=           positive lookbehind   $(?<!           negative lookbehind   (?imsx-imsx)    added the unsetting capability                   such a setting is global if at outer level; local otherwise   (?imsx-imsx:)   non-capturing groups with option setting   (?(cond)re|re)  conditional pattern matching   A backreference to itself in a repeated group matches the previous   captured string.8. General tidying up of studying (both automatic and via "study")consequential on the addition of new assertions.9. As in 5.005, unlimited repeated groups that could match an empty substringare no longer faulted at compile time. Instead, the loop is forcibly broken atruntime if any iteration does actually match an empty substring.10. Include the RunTest script in the distribution.11. Added tests from the Perl 5.005_02 distribution. This showed up a fewdiscrepancies, some of which were old and were also with respect to 5.004. Theyhave now been fixed.Version 1.09 28-Apr-98----------------------1. A negated single character class followed by a quantifier with a minimumvalue of one (e.g.  [^x]{1,6}  ) was not compiled correctly. This could lead toprogram crashes, or just wrong answers. This did not apply to negated classescontaining more than one character, or to minima other than one.Version 1.08 27-Mar-98----------------------1. Add PCRE_UNGREEDY to invert the greediness of quantifiers.2. Add (?U) and (?X) to set PCRE_UNGREEDY and PCRE_EXTRA respectively. Thelatter must appear before anything that relies on it in the pattern.Version 1.07 16-Feb-98----------------------1. A pattern such as /((a)*)*/ was not being diagnosed as in error (unlimitedrepeat of a potentially empty string).Version 1.06 23-Jan-98----------------------1. Added Markus Oberhumer's little patches for C++.2. Literal strings longer than 255 characters were broken.Version 1.05 23-Dec-97----------------------1. Negated character classes containing more than one character were failing ifPCRE_CASELESS was set at run time.Version 1.04 19-Dec-97----------------------1. Corrected the man page, where some "const" qualifiers had been omitted.2. Made debugging output print "{0,xxx}" instead of just "{,xxx}" to agree withinput syntax.3. Fixed memory leak which occurred when a regex with back references wasmatched with an offsets vector that wasn't big enough. The temporary memorythat is used in this case wasn't being freed if the match failed.4. Tidied pcretest to ensure it frees memory that it gets.5. Temporary memory was being obtained in the case where the passed offsetsvector was exactly big enough.6. Corrected definition of offsetof() from change 5 below.7. I had screwed up change 6 below and broken the rules for the use ofsetjmp(). Now fixed.Version 1.03 18-Dec-97----------------------1. A erroneous regex with a missing opening parenthesis was correctlydiagnosed, but PCRE attempted to access brastack[-1], which could cause crasheson some systems.2. Replaced offsetof(real_pcre, code) by offsetof(real_pcre, code[0]) becauseit was reported that one broken compiler failed on the former because "code" isalso an independent variable.3. The erroneous regex a[]b caused an array overrun reference.4. A regex ending with a one-character negative class (e.g. /[^k]$/) did notfail on data ending with that character. (It was going on too far, and checkingthe next character, typically a binary zero.) This was specific to theoptimized code for single-character negative classes.5. Added a contributed patch from the TIN world which does the following:  + Add an undef for memmove, in case the the system defines a macro for it.  + Add a definition of offsetof(), in case there isn't one. (I don't know    the reason behind this - offsetof() is part of the ANSI standard - but    it does no harm).  + Reduce the ifdef's in pcre.c using macro DPRINTF, thereby eliminating    most of the places where whitespace preceded '#'. I have given up and    allowed the remaining 2 cases to be at the margin.  + Rename some variables in pcre to eliminate shadowing. This seems very    pedantic

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -