
humbedooh at apache
Apr 28, 2012, 12:54 AM
Post #1 of 1
(30 views)
Permalink
|
|
svn commit: r1331701 - in /httpd/httpd/trunk/docs/manual/mod: core.html.en core.xml
|
|
Author: humbedooh Date: Sat Apr 28 07:54:58 2012 New Revision: 1331701 URL: http://svn.apache.org/viewvc?rev=1331701&view=rev Log: Missed a FilesMatch section, meh. Modified: httpd/httpd/trunk/docs/manual/mod/core.html.en httpd/httpd/trunk/docs/manual/mod/core.xml Modified: httpd/httpd/trunk/docs/manual/mod/core.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/core.html.en?rev=1331701&r1=1331700&r2=1331701&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/core.html.en (original) +++ httpd/httpd/trunk/docs/manual/mod/core.html.en Sat Apr 28 07:54:58 2012 @@ -1769,7 +1769,11 @@ filenames</td></tr> does. However, it accepts a <a class="glossarylink" href="../glossary.html#regex" title="see glossary">regular expression</a>. For example:</p> - <pre class="prettyprint lang-config"><FilesMatch "\.(gif|jpe?g|png)$"></pre> +<pre class="prettyprint lang-config"> +<FilesMatch "\.(gif|jpe?g|png)$"> + # ... +</FilesMatch> +</pre> <p>would match most common Internet graphics formats.</p> Modified: httpd/httpd/trunk/docs/manual/mod/core.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/core.xml?rev=1331701&r1=1331700&r2=1331701&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/core.xml (original) +++ httpd/httpd/trunk/docs/manual/mod/core.xml Sat Apr 28 07:54:58 2012 @@ -1701,7 +1701,11 @@ filenames</description> does. However, it accepts a <glossary ref="regex">regular expression</glossary>. For example:</p> - <highlight language="config"><FilesMatch "\.(gif|jpe?g|png)$"></highlight> +<highlight language="config"> +<FilesMatch "\.(gif|jpe?g|png)$"> + # ... +</FilesMatch> +</highlight> <p>would match most common Internet graphics formats.</p> </usage>
|