diff options
author | Eric Covener <covener@apache.org> | 2024-07-23 14:56:13 +0200 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2024-07-23 14:56:13 +0200 |
commit | 18d5c79993703380a7bcafb15aab4c4be63a4e33 (patch) | |
tree | fa02f399f95ff170996da313d824bd3df590b986 /docs | |
parent | use UNCList in UNC examples (diff) | |
download | apache2-18d5c79993703380a7bcafb15aab4c4be63a4e33.tar.xz apache2-18d5c79993703380a7bcafb15aab4c4be63a4e33.zip |
xforms
[skip ci]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919469 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/platform/windows.html.en.utf8 | 15 | ||||
-rw-r--r-- | docs/manual/platform/windows.xml.fr | 2 | ||||
-rw-r--r-- | docs/manual/platform/windows.xml.ko | 2 | ||||
-rw-r--r-- | docs/manual/platform/windows.xml.meta | 2 |
4 files changed, 14 insertions, 7 deletions
diff --git a/docs/manual/platform/windows.html.en.utf8 b/docs/manual/platform/windows.html.en.utf8 index 98c956f42d..5d7eda8986 100644 --- a/docs/manual/platform/windows.html.en.utf8 +++ b/docs/manual/platform/windows.html.en.utf8 @@ -613,16 +613,23 @@ RewriteRule "(.*)" "${lowercase:$1}" [R,L]</pre> (Arcane and error prone procedures may work around the restriction on mapped drive letters, but this is not recommended.)</p> - <div class="example"><h3>Example DocumentRoot with UNC path</h3><pre class="prettyprint lang-config">DocumentRoot "//dochost/www/html/"</pre> + <div class="example"><h3>Example DocumentRoot with UNC path</h3><pre class="prettyprint lang-config"> UNCList dochost + DocumentRoot "//dochost/www/html/"</pre> </div> - <div class="example"><h3>Example DocumentRoot with IP address in UNC path</h3><pre class="prettyprint lang-config">DocumentRoot "//192.168.1.50/docs/"</pre> + <div class="example"><h3>Example DocumentRoot with IP address in UNC path</h3><pre class="prettyprint lang-config"> UNCList 192.168.1.50 + DocumentRoot "//192.168.1.50/docs/"</pre> </div> - <div class="example"><h3>Example Alias and corresponding Directory with UNC path</h3><pre class="prettyprint lang-config">Alias "/images/" "//imagehost/www/images/" + <div class="example"><h3>Example Alias and corresponding Directory with UNC path</h3><pre class="prettyprint lang-config">UNCList imagehost1 imagehost2 +Alias "/images/" "//imagehost/www/images/" +Alias "/images2/" "//imagehost2/www/images/" <Directory "//imagehost/www/images/"> #... +</Directory> +<Directory "//imagehost2/www/images/"> +#... </Directory></pre> </div> @@ -661,7 +668,7 @@ var comments_identifier = 'http://httpd.apache.org/docs/trunk/platform/windows.h } })(window, document); //--><!]]></script></div><div id="footer"> -<p class="apache">Copyright 2023 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p> +<p class="apache">Copyright 2024 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p> <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/quickreference.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!-- if (typeof(prettyPrint) !== 'undefined') { prettyPrint(); diff --git a/docs/manual/platform/windows.xml.fr b/docs/manual/platform/windows.xml.fr index 826ae715e6..ef3d452e00 100644 --- a/docs/manual/platform/windows.xml.fr +++ b/docs/manual/platform/windows.xml.fr @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?> -<!-- English Revision: 1914040 --> +<!-- English Revision: 1914040:1919468 (outdated) --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> diff --git a/docs/manual/platform/windows.xml.ko b/docs/manual/platform/windows.xml.ko index 2f10ec629a..7c4dc17126 100644 --- a/docs/manual/platform/windows.xml.ko +++ b/docs/manual/platform/windows.xml.ko @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="EUC-KR" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?> -<!-- English Revision: 105989:1914040 (outdated) --> +<!-- English Revision: 105989:1919468 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more diff --git a/docs/manual/platform/windows.xml.meta b/docs/manual/platform/windows.xml.meta index df994e4ed6..166e6d7d31 100644 --- a/docs/manual/platform/windows.xml.meta +++ b/docs/manual/platform/windows.xml.meta @@ -8,7 +8,7 @@ <variants> <variant>en</variant> - <variant>fr</variant> + <variant outdated="yes">fr</variant> <variant outdated="yes">ko</variant> </variants> </metafile> |