/[pcre]/code/trunk/doc/pcrepartial.3
ViewVC logotype

Contents of /code/trunk/doc/pcrepartial.3

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1335 - (hide annotations) (download)
Tue May 28 09:13:59 2013 UTC (3 weeks ago) by ph10
File size: 21017 byte(s)
Final source file tidies for 8.33 release.

1 ph10 1251 .TH PCREPARTIAL 3 "20 February 2013" "PCRE 8.33"
2 nigel 75 .SH NAME
3     PCRE - Perl-compatible regular expressions
4     .SH "PARTIAL MATCHING IN PCRE"
5     .rs
6     .sp
7 ph10 858 In normal use of PCRE, if the subject string that is passed to a matching
8     function matches as far as it goes, but is too short to match the entire
9     pattern, PCRE_ERROR_NOMATCH is returned. There are circumstances where it might
10     be helpful to distinguish this case from other cases in which there is no
11     match.
12 nigel 75 .P
13     Consider, for example, an application where a human is required to type in data
14     for a field with specific formatting requirements. An example might be a date
15     in the form \fIddmmmyy\fP, defined by this pattern:
16     .sp
17     ^\ed?\ed(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\ed\ed$
18     .sp
19     If the application sees the user's keystrokes one by one, and can check that
20     what has been typed so far is potentially valid, it is able to raise an error
21 ph10 428 as soon as a mistake is made, by beeping and not reflecting the character that
22     has been typed, for example. This immediate feedback is likely to be a better
23 nigel 75 user interface than a check that is delayed until the entire string has been
24 ph10 553 entered. Partial matching can also be useful when the subject string is very
25     long and is not all available at once.
26 nigel 75 .P
27 ph10 428 PCRE supports partial matching by means of the PCRE_PARTIAL_SOFT and
28 ph10 903 PCRE_PARTIAL_HARD options, which can be set when calling any of the matching
29 ph10 858 functions. For backwards compatibility, PCRE_PARTIAL is a synonym for
30     PCRE_PARTIAL_SOFT. The essential difference between the two options is whether
31     or not a partial match is preferred to an alternative complete match, though
32     the details differ between the two types of matching function. If both options
33 ph10 428 are set, PCRE_PARTIAL_HARD takes precedence.
34 nigel 75 .P
35 ph10 975 If you want to use partial matching with just-in-time optimized code, you must
36 chpe 1055 call \fBpcre_study()\fP, \fBpcre16_study()\fP or \fBpcre32_study()\fP with one
37     or both of these options:
38 ph10 921 .sp
39     PCRE_STUDY_JIT_PARTIAL_SOFT_COMPILE
40     PCRE_STUDY_JIT_PARTIAL_HARD_COMPILE
41     .sp
42 ph10 975 PCRE_STUDY_JIT_COMPILE should also be set if you are going to run non-partial
43 ph10 921 matches on the same pattern. If the appropriate JIT study mode has not been set
44     for a match, the interpretive matching code is used.
45     .P
46     Setting a partial matching option disables two of PCRE's standard
47 ph10 858 optimizations. PCRE remembers the last literal data unit in a pattern, and
48     abandons matching immediately if it is not present in the subject string. This
49 ph10 678 optimization cannot be used for a subject string that might match only
50     partially. If the pattern was studied, PCRE knows the minimum length of a
51     matching string, and does not bother to run the matching function on shorter
52     strings. This optimization is also disabled for partial matching.
53 ph10 428 .
54     .
55 chpe 1055 .SH "PARTIAL MATCHING USING pcre_exec() OR pcre[16|32]_exec()"
56 ph10 428 .rs
57 ph10 426 .sp
58 ph10 903 A partial match occurs during a call to \fBpcre_exec()\fP or
59 ph10 1251 \fBpcre[16|32]_exec()\fP when the end of the subject string is reached
60     successfully, but matching cannot continue because more characters are needed.
61     However, at least one character in the subject must have been inspected. This
62     character need not form part of the final matched string; lookbehind assertions
63     and the \eK escape sequence provide ways of inspecting characters before the
64     start of a matched substring. The requirement for inspecting at least one
65     character exists because an empty string can always be matched; without such a
66     restriction there would always be a partial match of an empty string at the end
67     of the subject.
68 ph10 428 .P
69 ph10 858 If there are at least two slots in the offsets vector when a partial match is
70     returned, the first slot is set to the offset of the earliest character that
71     was inspected. For convenience, the second offset points to the end of the
72 ph10 1335 subject so that a substring can easily be identified. If there are at least
73     three slots in the offsets vector, the third slot is set to the offset of the
74 ph10 1251 character where matching started.
75 ph10 435 .P
76 ph10 1251 For the majority of patterns, the contents of the first and third slots will be
77     the same. However, for patterns that contain lookbehind assertions, or begin
78     with \eb or \eB, characters before the one where matching started may have been
79     inspected while carrying out the match. For example, consider this pattern:
80 ph10 428 .sp
81 ph10 435 /(?<=abc)123/
82     .sp
83     This pattern matches "123", but only if it is preceded by "abc". If the subject
84 ph10 1251 string is "xyzabc12", the first two offsets after a partial match are for the
85     substring "abc12", because all these characters were inspected. However, the
86 ph10 1335 third offset is set to 6, because that is the offset where matching began.
87 ph10 435 .P
88 ph10 553 What happens when a partial match is identified depends on which of the two
89 ph10 579 partial matching options are set.
90 ph10 553 .
91     .
92 chpe 1055 .SS "PCRE_PARTIAL_SOFT WITH pcre_exec() OR pcre[16|32]_exec()"
93 ph10 553 .rs
94     .sp
95 chpe 1055 If PCRE_PARTIAL_SOFT is set when \fBpcre_exec()\fP or \fBpcre[16|32]_exec()\fP
96 ph10 858 identifies a partial match, the partial match is remembered, but matching
97     continues as normal, and other alternatives in the pattern are tried. If no
98     complete match can be found, PCRE_ERROR_PARTIAL is returned instead of
99     PCRE_ERROR_NOMATCH.
100 ph10 553 .P
101 ph10 579 This option is "soft" because it prefers a complete match over a partial match.
102     All the various matching items in a pattern behave as if the subject string is
103 ph10 553 potentially complete. For example, \ez, \eZ, and $ match at the end of the
104 ph10 579 subject, as normal, and for \eb and \eB the end of the subject is treated as a
105 ph10 553 non-alphanumeric.
106     .P
107 ph10 435 If there is more than one partial match, the first one that was found provides
108     the data that is returned. Consider this pattern:
109     .sp
110 ph10 426 /123\ew+X|dogY/
111     .sp
112     If this is matched against the subject string "abc123dog", both
113 ph10 435 alternatives fail to match, but the end of the subject is reached during
114 ph10 553 matching, so PCRE_ERROR_PARTIAL is returned. The offsets are set to 3 and 9,
115     identifying "123dog" as the first partial match that was found. (In this
116     example, there are two partial matches, because "dog" on its own partially
117     matches the second alternative.)
118     .
119     .
120 chpe 1055 .SS "PCRE_PARTIAL_HARD WITH pcre_exec() OR pcre[16|32]_exec()"
121 ph10 553 .rs
122     .sp
123 chpe 1055 If PCRE_PARTIAL_HARD is set for \fBpcre_exec()\fP or \fBpcre[16|32]_exec()\fP,
124 ph10 858 PCRE_ERROR_PARTIAL is returned as soon as a partial match is found, without
125     continuing to search for possible complete matches. This option is "hard"
126     because it prefers an earlier partial match over a later complete match. For
127     this reason, the assumption is made that the end of the supplied subject string
128     may not be the true end of the available data, and so, if \ez, \eZ, \eb, \eB,
129     or $ are encountered at the end of the subject, the result is
130 ph10 903 PCRE_ERROR_PARTIAL, provided that at least one character in the subject has
131 ph10 902 been inspected.
132 ph10 569 .P
133 ph10 858 Setting PCRE_PARTIAL_HARD also affects the way UTF-8 and UTF-16
134     subject strings are checked for validity. Normally, an invalid sequence
135     causes the error PCRE_ERROR_BADUTF8 or PCRE_ERROR_BADUTF16. However, in the
136     special case of a truncated character at the end of the subject,
137     PCRE_ERROR_SHORTUTF8 or PCRE_ERROR_SHORTUTF16 is returned when
138 ph10 569 PCRE_PARTIAL_HARD is set.
139 ph10 553 .
140     .
141     .SS "Comparing hard and soft partial matching"
142     .rs
143 ph10 428 .sp
144 ph10 553 The difference between the two partial matching options can be illustrated by a
145     pattern such as:
146     .sp
147 ph10 428 /dog(sbody)?/
148     .sp
149 ph10 435 This matches either "dog" or "dogsbody", greedily (that is, it prefers the
150 ph10 428 longer string if possible). If it is matched against the string "dog" with
151 ph10 435 PCRE_PARTIAL_SOFT, it yields a complete match for "dog". However, if
152     PCRE_PARTIAL_HARD is set, the result is PCRE_ERROR_PARTIAL. On the other hand,
153 ph10 428 if the pattern is made ungreedy the result is different:
154     .sp
155     /dog(sbody)??/
156     .sp
157 ph10 858 In this case the result is always a complete match because that is found first,
158     and matching never continues after finding a complete match. It might be easier
159     to follow this explanation by thinking of the two patterns like this:
160 ph10 428 .sp
161     /dog(sbody)?/ is the same as /dogsbody|dog/
162     /dog(sbody)??/ is the same as /dog|dogsbody/
163     .sp
164 ph10 858 The second pattern will never match "dogsbody", because it will always find the
165     shorter match first.
166 ph10 428 .
167     .
168 chpe 1055 .SH "PARTIAL MATCHING USING pcre_dfa_exec() OR pcre[16|32]_dfa_exec()"
169 ph10 428 .rs
170     .sp
171 ph10 858 The DFA functions move along the subject string character by character, without
172     backtracking, searching for all possible matches simultaneously. If the end of
173     the subject is reached before the end of the pattern, there is the possibility
174     of a partial match, again provided that at least one character has been
175     inspected.
176 nigel 77 .P
177 ph10 428 When PCRE_PARTIAL_SOFT is set, PCRE_ERROR_PARTIAL is returned only if there
178     have been no complete matches. Otherwise, the complete matches are returned.
179     However, if PCRE_PARTIAL_HARD is set, a partial match takes precedence over any
180 ph10 435 complete matches. The portion of the string that was inspected when the longest
181     partial match was found is set as the first matching string, provided there are
182     at least two slots in the offsets vector.
183 ph10 428 .P
184 ph10 858 Because the DFA functions always search for all possible matches, and there is
185     no difference between greedy and ungreedy repetition, their behaviour is
186     different from the standard functions when PCRE_PARTIAL_HARD is set. Consider
187     the string "dog" matched against the ungreedy pattern shown above:
188 ph10 428 .sp
189     /dog(sbody)??/
190     .sp
191 ph10 858 Whereas the standard functions stop as soon as they find the complete match for
192     "dog", the DFA functions also find the partial match for "dogsbody", and so
193     return that when PCRE_PARTIAL_HARD is set.
194 nigel 75 .
195     .
196 ph10 428 .SH "PARTIAL MATCHING AND WORD BOUNDARIES"
197 nigel 75 .rs
198     .sp
199 ph10 468 If a pattern ends with one of sequences \eb or \eB, which test for word
200 ph10 435 boundaries, partial matching with PCRE_PARTIAL_SOFT can give counter-intuitive
201 ph10 428 results. Consider this pattern:
202     .sp
203     /\ebcat\eb/
204     .sp
205     This matches "cat", provided there is a word boundary at either end. If the
206     subject string is "the cat", the comparison of the final "t" with a following
207 ph10 858 character cannot take place, so a partial match is found. However, normal
208     matching carries on, and \eb matches at the end of the subject when the last
209     character is a letter, so a complete match is found. The result, therefore, is
210     \fInot\fP PCRE_ERROR_PARTIAL. Using PCRE_PARTIAL_HARD in this case does yield
211     PCRE_ERROR_PARTIAL, because then the partial match takes precedence.
212 ph10 428 .
213     .
214     .SH "FORMERLY RESTRICTED PATTERNS"
215     .rs
216     .sp
217 ph10 426 For releases of PCRE prior to 8.00, because of the way certain internal
218     optimizations were implemented in the \fBpcre_exec()\fP function, the
219 ph10 428 PCRE_PARTIAL option (predecessor of PCRE_PARTIAL_SOFT) could not be used with
220     all patterns. From release 8.00 onwards, the restrictions no longer apply, and
221 ph10 858 partial matching with can be requested for any pattern.
222 nigel 75 .P
223 ph10 426 Items that were formerly restricted were repeated single characters and
224     repeated metasequences. If PCRE_PARTIAL was set for a pattern that did not
225     conform to the restrictions, \fBpcre_exec()\fP returned the error code
226     PCRE_ERROR_BADPARTIAL (-13). This error code is no longer in use. The
227     PCRE_INFO_OKPARTIAL call to \fBpcre_fullinfo()\fP to find out if a compiled
228     pattern can be used for partial matching now always returns 1.
229 nigel 75 .
230     .
231     .SH "EXAMPLE OF PARTIAL MATCHING USING PCRETEST"
232     .rs
233     .sp
234     If the escape sequence \eP is present in a \fBpcretest\fP data line, the
235 ph10 428 PCRE_PARTIAL_SOFT option is used for the match. Here is a run of \fBpcretest\fP
236     that uses the date example quoted above:
237 nigel 75 .sp
238     re> /^\ed?\ed(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\ed\ed$/
239 nigel 87 data> 25jun04\eP
240 nigel 75 0: 25jun04
241     1: jun
242 nigel 87 data> 25dec3\eP
243 ph10 426 Partial match: 23dec3
244 nigel 87 data> 3ju\eP
245 ph10 426 Partial match: 3ju
246 nigel 87 data> 3juj\eP
247 nigel 75 No match
248 nigel 87 data> j\eP
249 nigel 75 No match
250     .sp
251     The first data string is matched completely, so \fBpcretest\fP shows the
252     matched substrings. The remaining four strings do not match the complete
253 ph10 426 pattern, but the first two are partial matches. Similar output is obtained
254 ph10 858 if DFA matching is used.
255 ph10 428 .P
256     If the escape sequence \eP is present more than once in a \fBpcretest\fP data
257     line, the PCRE_PARTIAL_HARD option is set for the match.
258 ph10 426 .
259 ph10 435 .
260 chpe 1055 .SH "MULTI-SEGMENT MATCHING WITH pcre_dfa_exec() OR pcre[16|32]_dfa_exec()"
261 nigel 77 .rs
262     .sp
263 ph10 858 When a partial match has been found using a DFA matching function, it is
264     possible to continue the match by providing additional subject data and calling
265     the function again with the same compiled regular expression, this time setting
266     the PCRE_DFA_RESTART option. You must pass the same working space as before,
267     because this is where details of the previous partial match are stored. Here is
268     an example using \fBpcretest\fP, using the \eR escape sequence to set the
269     PCRE_DFA_RESTART option (\eD specifies the use of the DFA matching function):
270 nigel 77 .sp
271 ph10 155 re> /^\ed?\ed(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\ed\ed$/
272 nigel 77 data> 23ja\eP\eD
273     Partial match: 23ja
274     data> n05\eR\eD
275     0: n05
276     .sp
277     The first call has "23ja" as the subject, and requests partial matching; the
278     second call has "n05" as the subject for the continued (restarted) match.
279     Notice that when the match is complete, only the last part is shown; PCRE does
280     not retain the previously partially-matched string. It is up to the calling
281     program to do that if it needs to.
282 nigel 75 .P
283 ph10 428 You can set the PCRE_PARTIAL_SOFT or PCRE_PARTIAL_HARD options with
284     PCRE_DFA_RESTART to continue partial matching over multiple segments. This
285 ph10 903 facility can be used to pass very long subject strings to the DFA matching
286 ph10 858 functions.
287 ph10 426 .
288     .
289 chpe 1055 .SH "MULTI-SEGMENT MATCHING WITH pcre_exec() OR pcre[16|32]_exec()"
290 ph10 426 .rs
291     .sp
292 ph10 858 From release 8.00, the standard matching functions can also be used to do
293     multi-segment matching. Unlike the DFA functions, it is not possible to
294     restart the previous match with a new segment of data. Instead, new data must
295     be added to the previous subject string, and the entire match re-run, starting
296     from the point where the partial match occurred. Earlier data can be discarded.
297     .P
298     It is best to use PCRE_PARTIAL_HARD in this situation, because it does not
299     treat the end of a segment as the end of the subject when matching \ez, \eZ,
300     \eb, \eB, and $. Consider an unanchored pattern that matches dates:
301 ph10 426 .sp
302     re> /\ed?\ed(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\ed\ed/
303 ph10 553 data> The date is 23ja\eP\eP
304 ph10 426 Partial match: 23ja
305     .sp
306 ph10 468 At this stage, an application could discard the text preceding "23ja", add on
307 ph10 858 text from the next segment, and call the matching function again. Unlike the
308 ph10 932 DFA matching functions, the entire matching string must always be available,
309     and the complete matching process occurs for each call, so more memory and more
310 ph10 426 processing time is needed.
311 ph10 435 .P
312     \fBNote:\fP If the pattern contains lookbehind assertions, or \eK, or starts
313 ph10 858 with \eb or \eB, the string that is returned for a partial match includes
314 ph10 1335 characters that precede the start of what would be returned for a complete
315     match, because it contains all the characters that were inspected during the
316 ph10 1251 partial match.
317 ph10 426 .
318 ph10 435 .
319 ph10 426 .SH "ISSUES WITH MULTI-SEGMENT MATCHING"
320     .rs
321     .sp
322 ph10 435 Certain types of pattern may give problems with multi-segment matching,
323 ph10 426 whichever matching function is used.
324 nigel 77 .P
325 ph10 553 1. If the pattern contains a test for the beginning of a line, you need to pass
326     the PCRE_NOTBOL option when the subject string for any call does start at the
327 ph10 579 beginning of a line. There is also a PCRE_NOTEOL option, but in practice when
328     doing multi-segment matching you should be using PCRE_PARTIAL_HARD, which
329 ph10 553 includes the effect of PCRE_NOTEOL.
330 nigel 77 .P
331 ph10 932 2. Lookbehind assertions that have already been obeyed are catered for in the
332     offsets that are returned for a partial match. However a lookbehind assertion
333 ph10 975 later in the pattern could require even earlier characters to be inspected. You
334     can handle this case by using the PCRE_INFO_MAXLOOKBEHIND option of the
335 ph10 1251 \fBpcre_fullinfo()\fP or \fBpcre[16|32]_fullinfo()\fP functions to obtain the
336     length of the longest lookbehind in the pattern. This length is given in
337     characters, not bytes. If you always retain at least that many characters
338     before the partially matched string, all should be well. (Of course, near the
339     start of the subject, fewer characters may be present; in that case all
340     characters should be retained.)
341 nigel 77 .P
342 ph10 1251 From release 8.33, there is a more accurate way of deciding which characters to
343     retain. Instead of subtracting the length of the longest lookbehind from the
344     earliest inspected character (\fIoffsets[0]\fP), the match start position
345 ph10 1335 (\fIoffsets[2]\fP) should be used, and the next match attempt started at the
346     \fIoffsets[2]\fP character by setting the \fIstartoffset\fP argument of
347 ph10 1251 \fBpcre_exec()\fP or \fBpcre_dfa_exec()\fP.
348     .P
349     For example, if the pattern "(?<=123)abc" is partially
350     matched against the string "xx123a", the three offset values returned are 2, 6,
351     and 5. This indicates that the matching process that gave a partial match
352     started at offset 5, but the characters "123a" were all inspected. The maximum
353     lookbehind for that pattern is 3, so taking that away from 5 shows that we need
354     only keep "123a", and the next match attempt can be started at offset 3 (that
355 ph10 1335 is, at "a") when further characters have been added. When the match start is
356 ph10 1251 not the earliest inspected character, \fBpcretest\fP shows it explicitly:
357     .sp
358     re> "(?<=123)abc"
359     data> xx123a\eP\eP
360     Partial match at offset 5: 123a
361     .P
362 ph10 932 3. Because a partial match must always contain at least one character, what
363     might be considered a partial match of an empty string actually gives a "no
364     match" result. For example:
365     .sp
366     re> /c(?<=abc)x/
367     data> ab\eP
368     No match
369     .sp
370 ph10 975 If the next segment begins "cx", a match should be found, but this will only
371 ph10 932 happen if characters from the previous segment are retained. For this reason, a
372     "no match" result should be interpreted as "partial match of an empty string"
373     when the pattern contains lookbehinds.
374     .P
375     4. Matching a subject string that is split into multiple segments may not
376 ph10 428 always produce exactly the same result as matching over one single long string,
377 ph10 435 especially when PCRE_PARTIAL_SOFT is used. The section "Partial Matching and
378     Word Boundaries" above describes an issue that arises if the pattern ends with
379 ph10 428 \eb or \eB. Another kind of difference may occur when there are multiple
380 ph10 553 matching possibilities, because (for PCRE_PARTIAL_SOFT) a partial match result
381     is given only when there are no completed matches. This means that as soon as
382     the shortest match has been found, continuation to a new subject segment is no
383     longer possible. Consider again this \fBpcretest\fP example:
384 nigel 77 .sp
385     re> /dog(sbody)?/
386 ph10 426 data> dogsb\eP
387 ph10 435 0: dog
388 nigel 77 data> do\eP\eD
389     Partial match: do
390     data> gsb\eR\eP\eD
391     0: g
392     data> dogsbody\eD
393     0: dogsbody
394     1: dog
395     .sp
396 ph10 858 The first data line passes the string "dogsb" to a standard matching function,
397     setting the PCRE_PARTIAL_SOFT option. Although the string is a partial match
398     for "dogsbody", the result is not PCRE_ERROR_PARTIAL, because the shorter
399     string "dog" is a complete match. Similarly, when the subject is presented to
400     a DFA matching function in several parts ("do" and "gsb" being the first two)
401     the match stops when "dog" has been found, and it is not possible to continue.
402     On the other hand, if "dogsbody" is presented as a single string, a DFA
403     matching function finds both matches.
404 nigel 77 .P
405 ph10 553 Because of these problems, it is best to use PCRE_PARTIAL_HARD when matching
406     multi-segment data. The example above then behaves differently:
407 ph10 428 .sp
408     re> /dog(sbody)?/
409     data> dogsb\eP\eP
410 ph10 435 Partial match: dogsb
411 ph10 428 data> do\eP\eD
412     Partial match: do
413     data> gsb\eR\eP\eP\eD
414 ph10 435 Partial match: gsb
415 ph10 428 .sp
416 ph10 932 5. Patterns that contain alternatives at the top level which do not all start
417 ph10 858 with the same pattern item may not work as expected when PCRE_DFA_RESTART is
418     used. For example, consider this pattern:
419 nigel 87 .sp
420     1234|3789
421     .sp
422     If the first part of the subject is "ABC123", a partial match of the first
423     alternative is found at offset 3. There is no partial match for the second
424     alternative, because such a match does not start at the same point in the
425 ph10 426 subject string. Attempting to continue with the string "7890" does not yield a
426 nigel 87 match because only those alternatives that match at one point in the subject
427     are remembered. The problem arises because the start of the second alternative
428     matches within the first alternative. There is no problem with anchored
429     patterns or patterns such as:
430     .sp
431     1234|ABCD
432     .sp
433 ph10 426 where no string can be a partial match for both alternatives. This is not a
434 ph10 858 problem if a standard matching function is used, because the entire match has
435     to be rerun each time:
436 ph10 426 .sp
437     re> /1234|3789/
438 ph10 553 data> ABC123\eP\eP
439 ph10 426 Partial match: 123
440     data> 1237890
441     0: 3789
442 ph10 435 .sp
443 ph10 553 Of course, instead of using PCRE_DFA_RESTART, the same technique of re-running
444 ph10 858 the entire match can also be used with the DFA matching functions. Another
445 ph10 469 possibility is to work with two buffers. If a partial match at offset \fIn\fP
446     in the first buffer is followed by "no match" when PCRE_DFA_RESTART is used on
447     the second buffer, you can then try a new match starting at offset \fIn+1\fP in
448 ph10 468 the first buffer.
449 nigel 77 .
450     .
451 ph10 99 .SH AUTHOR
452     .rs
453     .sp
454     .nf
455     Philip Hazel
456     University Computing Service
457     Cambridge CB2 3QH, England.
458     .fi
459     .
460     .
461     .SH REVISION
462     .rs
463     .sp
464     .nf
465 ph10 1251 Last updated: 20 February 2013
466     Copyright (c) 1997-2013 University of Cambridge.
467 ph10 99 .fi

Properties

Name Value
svn:eol-style native
svn:keywords "Author Date Id Revision Url"

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12