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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=647576b5d72bd83e5d7a9cb91ffcaf7d81d1e5df;p=apache
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 ab28bb21e4..d0904897d5 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 c526416e3c..bdde70da3c 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.
+