From: Tony Stevenson
Date: Fri, 8 Feb 2008 02:06:04 +0000 (+0000)
Subject: As per PR 33892 - Added comment re escaping slashes.
X-Git-Tag: 2.3.0~1000
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=647576b5d72bd83e5d7a9cb91ffcaf7d81d1e5df;p=thirdparty%2Fapache%2Fhttpd.git
As per PR 33892 - Added comment re escaping slashes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@619736 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_include.html.en b/docs/manual/mod/mod_include.html.en
index ab28bb21e40..d0904897d53 100644
--- a/docs/manual/mod/mod_include.html.en
+++ b/docs/manual/mod/mod_include.html.en
@@ -643,6 +643,11 @@
parsed expression tokenizer information, the parse tree and how it is
evaluated into the output sent to the client.
+
+ Escaping slashes in regex strings
+
All slashes which are not intended to act as delimiters in your regex must
+ be escaped. This is regardless of their meaning to the regex engine.
+
diff --git a/docs/manual/mod/mod_include.xml b/docs/manual/mod/mod_include.xml
index c526416e3cd..bdde70da3c3 100644
--- a/docs/manual/mod/mod_include.xml
+++ b/docs/manual/mod/mod_include.xml
@@ -636,6 +636,11 @@
parsed expression tokenizer information, the parse tree and how it is
evaluated into the output sent to the client.
+
+
Escaping slashes in regex strings
+ All slashes which are not intended to act as delimiters in your regex must
+ be escaped. This is regardless of their meaning to the regex engine.
+