You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ta...@apache.org on 2014/05/22 19:46:37 UTC

svn commit: r1596926 - in /httpd/httpd/trunk/docs/manual: ./ howto/ mod/ ssl/

Author: takashi
Date: Thu May 22 17:46:36 2014
New Revision: 1596926

URL: http://svn.apache.org/r1596926
Log:
update transformations

Modified:
    httpd/httpd/trunk/docs/manual/handler.html.ja.utf8
    httpd/httpd/trunk/docs/manual/handler.xml.meta
    httpd/httpd/trunk/docs/manual/howto/index.html.ja.utf8
    httpd/httpd/trunk/docs/manual/howto/index.xml.meta
    httpd/httpd/trunk/docs/manual/howto/public_html.html.ja.utf8
    httpd/httpd/trunk/docs/manual/howto/public_html.xml.meta
    httpd/httpd/trunk/docs/manual/index.html.ja.utf8
    httpd/httpd/trunk/docs/manual/index.xml.meta
    httpd/httpd/trunk/docs/manual/invoking.html.ja.utf8
    httpd/httpd/trunk/docs/manual/invoking.xml.meta
    httpd/httpd/trunk/docs/manual/mod/directive-dict.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/directive-dict.xml.meta
    httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.xml.meta
    httpd/httpd/trunk/docs/manual/mod/mod_authz_owner.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/mod_cgi.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/mod_cgi.xml.meta
    httpd/httpd/trunk/docs/manual/mod/mod_dav.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/mod_dav.xml.meta
    httpd/httpd/trunk/docs/manual/mod/mod_dav_fs.xml.ja
    httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.xml.meta
    httpd/httpd/trunk/docs/manual/mod/mod_echo.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/mod_echo.xml.meta
    httpd/httpd/trunk/docs/manual/mod/mod_ident.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/mod_ident.xml.meta
    httpd/httpd/trunk/docs/manual/mod/mod_version.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/mod_version.xml.meta
    httpd/httpd/trunk/docs/manual/mod/quickreference.html.ja.utf8
    httpd/httpd/trunk/docs/manual/mod/quickreference.xml.meta
    httpd/httpd/trunk/docs/manual/ssl/index.html.ja.utf8
    httpd/httpd/trunk/docs/manual/ssl/index.xml.meta
    httpd/httpd/trunk/docs/manual/stopping.html.ja.utf8
    httpd/httpd/trunk/docs/manual/stopping.xml.meta

Modified: httpd/httpd/trunk/docs/manual/handler.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/handler.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/handler.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/handler.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -29,10 +29,6 @@
 <a href="./tr/handler.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a> |
 <a href="./zh-cn/handler.html" hreflang="zh-cn" rel="alternate" title="Simplified Chinese">&nbsp;zh-cn&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 
     <p>Apache のハンドラの使用に関して記述しています。</p>
   </div>
@@ -105,10 +101,9 @@
       であるファイルは <code>footer.pl</code>
       CGI スクリプトを起動するようになります。</p>
 
-      <div class="example"><p><code>
-        Action add-footer /cgi-bin/footer.pl<br />
-        AddHandler add-footer .html
-      </code></p></div>
+      <pre class="prettyprint lang-config">Action add-footer /cgi-bin/footer.pl
+AddHandler add-footer .html</pre>
+
 
       <p>CGI スクリプトは希望の修正や追加を行なって、元々要求された文書
       (環境変数 <code>PATH_TRANSLATED</code>
@@ -125,11 +120,10 @@
       <code>/web/htdocs/asis</code> ディレクトリにある全てのファイルは
       <code>send-as-is</code> ハンドラによって扱われます。</p>
 
-      <div class="example"><p><code>
-        &lt;Directory /web/htdocs/asis&gt;<br />
-        SetHandler send-as-is<br />
-        &lt;/Directory&gt;
-      </code></p></div>
+      <pre class="prettyprint lang-config">&lt;Directory /web/htdocs/asis&gt;
+    SetHandler send-as-is
+&lt;/Directory&gt;</pre>
+
 
     
   </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
@@ -142,9 +136,8 @@
     に追加されました。詳しく言うと、<code>request_rec</code>
     構造体に新しいレコードが追加されたということです。</p>
 
-    <div class="example"><p><code>
-     char *handler
-    </code></p></div>
+    <pre class="prettyprint lang-c">char *handler</pre>
+
 
     <p>もしモジュールがハンドラに関わりたい場合、
     やらなければならないことは、リクエストが <code>invoke_handler</code>

Modified: httpd/httpd/trunk/docs/manual/handler.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/handler.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/handler.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/handler.xml.meta Thu May 22 17:46:36 2014
@@ -10,7 +10,7 @@
     <variant>en</variant>
     <variant outdated="yes">es</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
     <variant outdated="yes">zh-cn</variant>

Modified: httpd/httpd/trunk/docs/manual/howto/index.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/index.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/index.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/howto/index.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -27,10 +27,6 @@
 <a href="../ko/howto/" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../zh-cn/howto/" hreflang="zh-cn" rel="alternate" title="Simplified Chinese">&nbsp;zh-cn&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -67,7 +63,7 @@
         生成プログラムとどのように相互動作をするかを定義します。
         その外部プログラムは通常 CGI プログラムや CGI スクリプトと呼ばれます。
         CGI はウェブサイトに動的なコンテンツを追加するための、
-        一番単純でよく使われている方法です。この文書は Apache ウェブサーバに
+        単純な方法です。この文書は Apache ウェブサーバに
         CGI を設定し、CGI プログラムを書き始めるためのイントロダクションです。</p>
 
         <p>参照: <a href="cgi.html">CGI: 動的コンテンツ</a></p>

Modified: httpd/httpd/trunk/docs/manual/howto/index.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/index.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/index.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/howto/index.xml.meta Thu May 22 17:46:36 2014
@@ -9,7 +9,7 @@
   <variants>
     <variant>en</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">zh-cn</variant>
   </variants>

Modified: httpd/httpd/trunk/docs/manual/howto/public_html.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/public_html.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/public_html.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/howto/public_html.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -27,10 +27,6 @@
 <a href="../ko/howto/public_html.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/howto/public_html.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 
 <p>複数のユーザのいるシステムでは、<code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> ディレクティブを使って
     各ユーザがホームディレクトリにウェブサイトを構築できるように設定することが
@@ -77,9 +73,8 @@
     <p>スラッシュで始まらないパスが与えられたときは、ユーザのホームディレクトリ
     からの相対パスとみなされます。次の設定があったときに:</p>
 
-    <div class="example"><p><code>
-      UserDir public_html
-    </code></p></div>
+    <pre class="prettyprint lang-config">UserDir public_html</pre>
+
 
     <p>URL <code>http://example.com/~rbowen/file.html</code> は
     パス <code>/home/rbowen/public_html/file.html</code> へ
@@ -88,9 +83,8 @@
     <p>パスがスラッシュで始まるときは、ディレクトリパスはそのパスに
     ユーザ名を加えたものからなります。次の設定のとき:</p>
 
-    <div class="example"><p><code>
-      UserDir /var/html
-    </code></p></div>
+    <pre class="prettyprint lang-config">UserDir /var/html</pre>
+
 
     <p>URL <code>http://example.com/~rbowen/file.html</code> は
     パス <code>/var/html/rbowen/file.html</code> へ変換されます。</p>
@@ -98,18 +92,17 @@
     <p>アスタリスク (*) を含むパスが指定されたときは、アスタリスクを
     ユーザ名で置換したものが使用されます。このような設定だと:</p>
 
-    <div class="example"><p><code>
-      UserDir /var/www/*/docs
-    </code></p></div>
+    <pre class="prettyprint lang-config">UserDir /var/www/*/docs</pre>
+
 
     <p>URL <code>http://example.com/~rbowen/file.html</code> は
     パス <code>/var/www/rbowen/docs/file.html</code> へ変換されます。</p>
 
     <p>ディレクトリやディレクトリパスを複数設定することもできます。</p>
 
-    <div class="example"><p><code>
-      UserDir public_html /var/html
-    </code></p></div>
+    <pre class="prettyprint lang-config">UserDir public_html /var/html</pre>
+
+
 
     <p><code>http://example.com/~rbowen/file.html</code> という
     URL に対しては <code>~rbowen</code> を探します。見つからなければ、
@@ -123,10 +116,10 @@
     
     <p><code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code>
     ディレクティブを使って外部 URL にリダイレクトすることもできます。</p>
-    
-    <div class="example"><p><code>
-      UserDir http://example.org/users/*/
-    </code></p></div>
+
+    <pre class="prettyprint lang-config">UserDir http://example.org/users/*/</pre>
+
+
     
     <p>上記例では <code>http://example.com/~bob/abc.html</code>
     へのリクエストは <code>http://example.org/users/bob/abc.html</code>
@@ -148,10 +141,9 @@
     対して UserDir の機能を有効にします。同様にして、以下のように
     数名のユーザ以外に対してこの機能を無効にすることもできます:</p>
 
-    <div class="example"><p><code>
-      UserDir disabled<br />
-      UserDir enabled rbowen krietz
-    </code></p></div>
+    <pre class="prettyprint lang-config">      UserDir disabled<br />
+      UserDir enabled rbowen krietz</pre>
+
 
     <p>他の例は <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code>
     の説明を参照してください。</p>
@@ -166,12 +158,11 @@
     を使ってユーザのホームディレクトリの指定された領域に対して CGI を有効に
     することができます。</p>
 
-    <div class="example"><p><code>
-      &lt;Directory /home/*/public_html/cgi-bin/&gt;<br />
-       Options ExecCGI<br />
-       SetHandler cgi-script<br />
-       &lt;/Directory&gt;
-    </code></p></div>
+    <pre class="prettyprint lang-config">&lt;Directory /home/*/public_html/cgi-bin/&gt;
+    Options ExecCGI
+    SetHandler cgi-script
+&lt;/Directory&gt;</pre>
+
 
     <p>そして、<code>UserDir</code> が
     <code>public_html</code> に設定されていると仮定すると、

Modified: httpd/httpd/trunk/docs/manual/howto/public_html.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/public_html.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/public_html.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/howto/public_html.xml.meta Thu May 22 17:46:36 2014
@@ -9,7 +9,7 @@
   <variants>
     <variant>en</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
   </variants>

Modified: httpd/httpd/trunk/docs/manual/index.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/index.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/index.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/index.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -36,10 +36,6 @@
 <a href="./tr/" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a> |
 <a href="./zh-cn/" hreflang="zh-cn" rel="alternate" title="Simplified Chinese">&nbsp;zh-cn&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 <form method="get" action="http://www.google.com/search"><p><input name="as_q" value="" type="text" /> <input value="Google 検索" type="submit" /><input value="10" name="num" type="hidden" /><input value="ja" name="hl" type="hidden" /><input value="UTF-8" name="ie" type="hidden" /><input value="Google Search" name="btnG" type="hidden" /><input name="as_epq" value="バージョン 2.5" type="hidden" /><input name="as_oq" value="" type="hidden" /><input name="as_eq" value="&quot;List-Post&quot;" type="hidden" /><input value="" name="lr" type="hidden" /><input value="i" name="as_ft" type="hidden" /><input value="" name="as_filetype" type="hidden" /><input value="all" name="as_qdr" type="hidden" /><input value="any" name="as_occt" type="hidden" /><input value="i" name="as_dt" type="hidden" /><input value="httpd.apache.org" name="as_sitesearch" type="hidden" /><input value="off" name="safe" type="hidden" /></p></form>
 <table id="indextable"><tr><td class="col1"><div class="category"><h2><a name="release" id="release">リリースノート</a></h2>
 <ul><li><a href="new_features_2_4.html">Apache 2.3/2.4 の新機能</a></li>
@@ -52,17 +48,18 @@
 <ul><li><a href="install.html">コンパイルとインストール</a></li>
 <li><a href="invoking.html">起動</a></li>
 <li><a href="stopping.html">終了と再起動</a></li>
-<li><a href="mod/directives.html">実行の設定用ディレクティブ</a></li>
-<li><a href="mod/quickreference.html">ディレクティブ クイックリファレンス</a></li>
+<li><a href="mod/quickreference.html">実行の設定用ディレクティブ</a></li>
 <li><a href="mod/">モジュール</a></li>
 <li><a href="mpm.html">マルチプロセッシングモジュール (MPM)</a></li>
 <li><a href="filter.html">フィルタ</a></li>
 <li><a href="handler.html">ハンドラ</a></li>
+<li><a href="expr.html">Expression parser</a></li>
 <li><a href="programs/">サーバとサポートプログラム</a></li>
 <li><a href="glossary.html">用語集</a></li>
 </ul>
 </div></td><td><div class="category"><h2><a name="usersguide" id="usersguide">ユーザの手引</a></h2>
-<ul><li><a href="bind.html">アドレスとポートのバインド</a></li>
+<ul><li><a href="getting-started.html">Getting Started</a></li>
+<li><a href="bind.html">アドレスとポートのバインド</a></li>
 <li><a href="configuring.html">設定ファイル</a></li>
 <li><a href="sections.html">セクションの設定</a></li>
 <li><a href="caching.html">キャッシュ機能</a></li>
@@ -70,13 +67,14 @@
 <li><a href="dso.html">動的共有オブジェクト (DSO)</a></li>
 <li><a href="env.html">環境変数</a></li>
 <li><a href="logs.html">ログファイル</a></li>
+<li><a href="compliance.html">HTTPプロトコルへの準拠</a></li>
 <li><a href="urlmapping.html">URL をファイルシステムにマップする</a></li>
 <li><a href="misc/perf-tuning.html">性能に関する調整</a></li>
 <li><a href="misc/security_tips.html">セキュリティ情報</a></li>
 <li><a href="server-wide.html">サーバ全体の設定</a></li>
 <li><a href="ssl/">SSL/TLS による暗号化</a></li>
 <li><a href="suexec.html">CGI の Suexec 実行</a></li>
-<li><a href="rewrite/">URL Rewriting の手引き</a></li>
+<li><a href="rewrite/">mod_rewriteによる URL Rewriting</a></li>
 <li><a href="vhosts/">バーチャルホスト</a></li>
 </ul>
 </div></td><td class="col3"><div class="category"><h2><a name="howto" id="howto">How-To / チュートリアル</a></h2>
@@ -90,12 +88,14 @@
 </ul>
 </div><div class="category"><h2><a name="platform" id="platform">プラットフォーム固有の情報</a></h2>
 <ul><li><a href="platform/windows.html">Microsoft Windows</a></li>
+<li><a href="platform/rpm.html">RPMベースのシステム (Redhat / CentOS / Fedora)</a></li>
 <li><a href="platform/netware.html">Novell NetWare</a></li>
 </ul>
 </div><div class="category"><h2><a name="other" id="other">その他</a></h2>
-<ul><li><a href="faq/">よくある質問 (FAQ)</a></li>
+<ul><li><a href="http://wiki.apache.org/httpd/FAQ">よくある質問 (FAQ)</a></li>
 <li><a href="sitemap.html">サイトマップ</a></li>
 <li><a href="developer/">開発者のためのドキュメント</a></li>
+<li><a href="http://httpd.apache.org/docs-project/">ドキュメンテーションプロジェクトへの協力</a></li>
 <li><a href="misc/">その他</a></li>
 <li><a href="http://wiki.apache.org/httpd/">ウィキ</a></li>
 </ul>

Modified: httpd/httpd/trunk/docs/manual/index.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/index.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/index.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/index.xml.meta Thu May 22 17:46:36 2014
@@ -12,7 +12,7 @@
     <variant>en</variant>
     <variant outdated="yes">es</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">pt-br</variant>
     <variant outdated="yes">tr</variant>

Modified: httpd/httpd/trunk/docs/manual/invoking.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/invoking.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/invoking.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/invoking.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -29,17 +29,11 @@
 <a href="./ko/invoking.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="./tr/invoking.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 
     <p>Windows 上では、Apache は通常は
-    Windows NT, 2000, XP ではサービスとして、Windows 9x, ME 
-    ではコンソールアプリケーションとして実行されます。
+    Windows NT, 2000, XP ではサービスとして実行されます。
     詳細に関しては、「<a href="platform/windows.html#winsvc">
-    サービスとして実行する</a>」と「<a href="platform/windows.html#wincons">
-    コンソールアプリケーションとして実行する</a>」をご覧下さい。</p>
+    サービスとして実行する</a>」をご覧下さい。</p>
 
     <p>Unixでは、<code class="program"><a href="./programs/httpd.html">httpd</a></code> 
     プログラムが、バックグラウンドで常にリクエスト処理を行う

Modified: httpd/httpd/trunk/docs/manual/invoking.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/invoking.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/invoking.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/invoking.xml.meta Thu May 22 17:46:36 2014
@@ -11,7 +11,7 @@
     <variant>en</variant>
     <variant outdated="yes">es</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
   </variants>

Modified: httpd/httpd/trunk/docs/manual/mod/directive-dict.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/directive-dict.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/directive-dict.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/directive-dict.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -27,10 +27,6 @@
 <a href="../ko/mod/directive-dict.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/mod/directive-dict.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 
     <p>この文書は各 Apache <a href="directives.html">設定ディレクティブ</a>
     を説明するために使われている用語を説明します。</p>
@@ -186,6 +182,7 @@
       <code class="directive"><a href="../mod/core.html#directory">&lt;Directory&gt;</a></code>, 
       <code class="directive"><a href="../mod/core.html#location">&lt;Location&gt;</a></code>, 
       <code class="directive"><a href="../mod/core.html#files">&lt;Files&gt;</a></code>, 
+      <code class="directive"><a href="../mod/core.html#if">&lt;If&gt;</a></code>, 
       <code class="directive"><a href="../mod/mod_proxy.html#proxy">&lt;Proxy&gt;</a></code>
       コンテナの中で、 <a href="../sections.html">設定セクション</a>
       で説明されている制限の下で使用できることを示します。</dd>

Modified: httpd/httpd/trunk/docs/manual/mod/directive-dict.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/directive-dict.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/directive-dict.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/mod/directive-dict.xml.meta Thu May 22 17:46:36 2014
@@ -9,7 +9,7 @@
   <variants>
     <variant>en</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
   </variants>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -29,16 +29,11 @@
 <a href="../ja/mod/mod_authn_anon.html" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_authn_anon.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 <table class="module"><tr><th><a href="module-dict.html#Description">説明:</a></th><td>認証が必要な領域への "anonymous" ユーザのアクセスを許可する
 </td></tr>
 <tr><th><a href="module-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">モジュール識別子:</a></th><td>authn_anon_module</td></tr>
-<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_authn_anon.c</td></tr>
-<tr><th><a href="module-dict.html#Compatibility">互換性:</a></th><td>Apache 2.1 以降</td></tr></table>
+<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_authn_anon.c</td></tr></table>
 <h3>概要</h3>
 
     <p>このモジュールは <code class="module"><a href="../mod/mod_auth_basic.html">mod_auth_basic</a></code> のような
@@ -99,27 +94,21 @@
       (<code class="directive"><a href="#anonymous_logemail">Anonymous_LogEmail</a></code>)</li>
     </ul>
 
-    <div class="example"><h3>例</h3><p><code>
-      &lt;Directory /foo&gt;
-      <span class="indent">
-        AuthName "Use 'anonymous' &amp; Email address for guest entry"<br />
-        AuthType Basic<br />
-        AuthBasicProvider file anon<br />
-        AuthUserFile /path/to/your/.htpasswd<br />
-        <br />
-        Anonymous_NoUserID off<br />
-        Anonymous_MustGiveEmail on<br />
-        Anonymous_VerifyEmail on<br />
-        Anonymous_LogEmail on<br />
-        Anonymous anonymous guest www test welcome<br />
-        <br />
-        Order Deny,Allow<br />
-        Allow from all<br />
-        <br />
-        Require valid-user<br />
-      </span>
-      &lt;/Directory&gt;
-    </code></p></div>
+    <div class="example"><h3>例</h3><pre class="prettyprint lang-config">&lt;Directory /var/www/html/private&gt;
+    AuthName "Use 'anonymous' &amp; Email address for guest entry"
+    AuthType Basic
+    AuthBasicProvider file anon
+    AuthUserFile /path/to/your/.htpasswd
+    
+    Anonymous_NoUserID off
+    Anonymous_MustGiveEmail on
+    Anonymous_VerifyEmail on
+    Anonymous_LogEmail on
+    Anonymous anonymous guest www test welcome
+    
+    Require valid-user
+&lt;/Directory&gt;</pre>
+</div>
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="Anonymous" id="Anonymous">Anonymous</a> <a name="anonymous" id="anonymous">ディレクティブ</a></h2>
@@ -142,9 +131,8 @@
     魔法のユーザ名 '<code>anonymous</code>' が許可されている userID に
     含むようにすることは強く推奨されています。</p>
 
-    <div class="example"><h3>例:</h3><p><code>
-      Anonymous anonymous "Not Registered" "I don't know"
-    </code></p></div>
+    <div class="example"><h3>例:</h3><pre class="prettyprint lang-config">Anonymous anonymous "Not Registered" "I don't know"</pre>
+</div>
 
     <p>これは、userID "anonymous",
     "AnonyMous", "Not Registered", "I Don't Know" のどれかを使っても

Modified: httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.xml.meta Thu May 22 17:46:36 2014
@@ -9,7 +9,7 @@
   <variants>
     <variant>en</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
 </metafile>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_authz_owner.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authz_owner.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_authz_owner.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_authz_owner.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -36,8 +36,7 @@
 <table class="module"><tr><th><a href="module-dict.html#Description">説明:</a></th><td>ファイルの所有者に基づいた承認</td></tr>
 <tr><th><a href="module-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">モジュール識別子:</a></th><td>authz_owner_module</td></tr>
-<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_authz_owner.c</td></tr>
-<tr><th><a href="module-dict.html#Compatibility">互換性:</a></th><td>Apache 2.1 以降で使用可能</td></tr></table>
+<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_authz_owner.c</td></tr></table>
 <h3>概要</h3>
 
     <p>このモジュールはリクエストされたファイルのファイルシステムの
@@ -46,7 +45,7 @@
     <code class="module"><a href="../mod/mod_auth_basic.html">mod_auth_basic</a></code> や
     <code class="module"><a href="../mod/mod_auth_digest.html">mod_auth_digest</a></code> のような認証モジュールで既に
     適切に検証されている必要があります。<code class="module"><a href="../mod/mod_authz_owner.html">mod_authz_owner</a></code>
-    は以下のように、<code class="directive"><a href="../mod/core.html#require">Require</a></code> ディレクティブの <code>file-owner</code> と
+    は以下のように、<code class="directive"><a href="../mod/mod_authz_core.html#require">Require</a></code> ディレクティブの <code>file-owner</code> と
     <code>file-group</code> という二つの引数を認識します:</p>
 
     <dl>
@@ -104,17 +103,14 @@
       <code>smith</code> の代わりに <code>jones</code> になっていない限り、
       <code>jones</code> にはアクセスは許可されません。</p>
 
-      <div class="example"><p><code>
-        &lt;Directory /home/*/public_html/private&gt;<br />
-        <span class="indent">
-          AuthType Basic<br />
-          AuthName MyPrivateFiles<br />
-          AuthBasicProvider dbm<br />
-          AuthDBMUserFile /usr/local/apache2/etc/.htdbm-all<br />
-          Require file-owner<br />
-        </span>
-        &lt;/Directory&gt;
-      </code></p></div>
+      <pre class="prettyprint lang-config">&lt;Directory /home/*/public_html/private&gt;
+    AuthType Basic
+    AuthName MyPrivateFiles
+    AuthBasicProvider dbm
+    AuthDBMUserFile /usr/local/apache2/etc/.htdbm-all
+    Require file-owner
+&lt;/Directory&gt;</pre>
+
     
 
     <h3><a name="examples.file-group" id="examples.file-group">Require file-group</a></h3>
@@ -129,22 +125,19 @@
       <code>foo</code> のメンバである場合、どちらの人も両方の
       <code>project-foo</code> にアクセスが許可されます。</p>
 
-      <div class="example"><p><code>
-        &lt;Directory /home/*/public_html/project-foo&gt;<br />
-        <span class="indent">
-          AuthType Basic<br />
-          AuthName "Project Foo Files"<br />
-          AuthBasicProvider dbm<br />
-          <br />
-          # combined user/group database<br />
-          AuthDBMUserFile  /usr/local/apache2/etc/.htdbm-all<br />
-          AuthDBMGroupFile /usr/local/apache2/etc/.htdbm-all<br />
-          <br />
-          Satisfy All<br />
-          Require file-group<br />
-        </span>
-        &lt;/Directory&gt;
-      </code></p></div>
+      <pre class="prettyprint lang-config">&lt;Directory /home/*/public_html/project-foo&gt;
+    AuthType Basic
+    AuthName "Project Foo Files"
+    AuthBasicProvider dbm
+    
+    # combined user/group database
+    AuthDBMUserFile  /usr/local/apache2/etc/.htdbm-all
+    AuthDBMGroupFile /usr/local/apache2/etc/.htdbm-all
+    
+    Satisfy All
+    Require file-group
+&lt;/Directory&gt;</pre>
+
     
 </div>
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_cgi.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_cgi.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_cgi.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_cgi.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -29,18 +29,12 @@
 <a href="../ja/mod/mod_cgi.html" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_cgi.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 <table class="module"><tr><th><a href="module-dict.html#Description">説明:</a></th><td>CGI スクリプトの実行</td></tr>
 <tr><th><a href="module-dict.html#Status">ステータス:</a></th><td>Base</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">モジュール識別子:</a></th><td>cgi_module</td></tr>
 <tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_cgi.c</td></tr></table>
 <h3>概要</h3>
 
-    
-
     <p>ハンドラ <code>cgi-script</code>
     が指定されているファイルは CGI スクリプトとして扱われ、
     サーバにより実行され、その出力がクライアントに返されます。
@@ -74,16 +68,16 @@
 </ul><h3>参照</h3>
 <ul class="seealso">
 <li><code class="directive"><a href="../mod/core.html#acceptpathinfo">AcceptPathInfo</a></code></li>
-<li><code class="directive"><a href="../mod/core.html#options">Options</a></code></li>
+<li><code class="directive"><a href="../mod/core.html#options">Options</a></code> ExecCGI</li>
 <li><code class="directive"><a href="../mod/mod_alias.html#scriptalias">ScriptAlias</a></code></li>
 <li><code class="directive"><a href="../mod/mod_mime.html#addhandler">AddHandler</a></code></li>
 <li><a href="../suexec.html">CGI プログラムを別のユーザ ID で実行する</a></li>
-<li><a href="http://hoohoo.ncsa.uiuc.edu/cgi/">CGI 規格書</a></li>
+<li><a href="http://www.ietf.org/rfc/rfc3875">CGI 規格書</a></li>
 </ul><ul class="seealso"><li><a href="#comments_section">コメント</a></li></ul></div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="env" id="env">CGI 環境変数</a></h2>
-    <p>サーバは <a href="http://hoohoo.ncsa.uiuc.edu/cgi/">CGI
+    <p>サーバは <a href="http://www.ietf.org/rfc/rfc3875">CGI
     規格</a> で決められている CGI
     環境変数を設定します。以下のものは、条件付きで設定されます。</p>
 
@@ -111,7 +105,7 @@
 
       <dt>REMOTE_IDENT</dt>
 
-      <dd><code class="directive"><a href="../mod/core.html#identitycheck">IdentityCheck</a></code>
+      <dd><code class="directive"><a href="../mod/mod_ident.html#identitycheck">IdentityCheck</a></code>
       が <code>on</code> に設定されていて、アクセスしているホストが
       ident プロトコルをサポートしているときにのみ設定されます。
       これは簡単に偽ることができ、クライアントとサーバの間に
@@ -130,8 +124,7 @@
     <p>CGI スクリプトのデバッグは、正しく動作していないスクリプトの出力
     (標準出力とエラー)
     を調べることができないために、難しい状態が続いていました。
-    これらの Apache 1.2 以降にある
-    ディレクティブはより詳細なエラーのログ収集を提供します。</p>
+    これらのディレクティブはより詳細なエラーのログ収集を提供します。</p>
 
     <h3>CGI ログファイルの書式</h3>
 	<p>設定されているときには、CGI エラーログは適切に動作しないすべての
@@ -190,12 +183,11 @@
     <code class="directive"><a href="../mod/core.html#serverroot">ServerRoot</a></code>からの相対パスとして
     扱われます。</p>
 
-    <div class="example"><h3>例</h3><p><code>
-      ScriptLog logs/cgi_log
-    </code></p></div>
+    <div class="example"><h3>例</h3><pre class="prettyprint lang-config">ScriptLog logs/cgi_log</pre>
+</div>
 
     <p>このログは子プロセスが実行されているユーザとしてオープンされます。
-    <em>すなわち</em>、<code class="directive"><a href="../mod/mpm_commmon.html#user">User</a></code> ディレクティブで指定された
+    <em>すなわち</em>、<code class="directive"><a href="../mod/mod_unixd.html#user">User</a></code> ディレクティブで指定された
     ユーザです。これは、スクリプトログが書かれるディレクトリがそのユーザで
     書き込み可能か、スクリプトファイルが手動で作成され、そのユーザで
     書き込み可能になっている必要があるということです。スクリプトログを

Modified: httpd/httpd/trunk/docs/manual/mod/mod_cgi.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_cgi.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_cgi.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_cgi.xml.meta Thu May 22 17:46:36 2014
@@ -9,7 +9,7 @@
   <variants>
     <variant>en</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
 </metafile>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_dav.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_dav.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_dav.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_dav.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -29,10 +29,6 @@
 <a href="../ja/mod/mod_dav.html" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_dav.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 <table class="module"><tr><th><a href="module-dict.html#Description">説明:</a></th><td>分散オーサリングとバージョン管理
 (<a href="http://www.webdav.org/">WebDAV</a>) 機能</td></tr>
 <tr><th><a href="module-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
@@ -71,7 +67,8 @@
     <p>mod_dav を有効にするには、<code>httpd.conf</code>
     ファイル中のコンテナに次を加えます:</p>
 
-    <div class="example"><p><code>Dav On</code></p></div>
+    <pre class="prettyprint lang-config">Dav On</pre>
+
 
     <p>これは DAV ファイルシステムプロバイダを有効にします。DAV
     ファイルシステムプロバイダは <code class="module"><a href="../mod/mod_dav_fs.html">mod_dav_fs</a></code>
@@ -85,12 +82,11 @@
     <code>httd.conf</code> ファイルのグローバルセクションに指定されている
     必要があります。</p>
 
-    <div class="example"><p><code>
-      DavLockDB /usr/local/apache2/var/DavLock
-    </code></p></div>
+    <pre class="prettyprint lang-config">DavLockDB /usr/local/apache2/var/DavLock</pre>
+
 
     <p>ロックデータベースファイルのあるディレクトリは Apache が実行されている
-    <code class="directive"><a href="../mod/mpm_common.html#user">User</a></code> と <code class="directive"><a href="../mod/mpm_common.html#group">Group</a></code> に書き込み権限がある必要があります。</p>
+    <code class="directive"><a href="../mod/mod_unixd.html#user">User</a></code> と <code class="directive"><a href="../mod/mod_unixd.html#group">Group</a></code> に書き込み権限がある必要があります。</p>
 
     <p><code class="directive"><a href="../mod/core.html#limit">&lt;Limit&gt;</a></code>
     節を <code class="directive"><a href="../mod/core.html#location">&lt;Location&gt;</a></code>
@@ -102,27 +98,21 @@
     <code class="directive"><a href="../mod/core.html#limitrequestbody">LimitRequestBody</a></code>
     ディレクティブは DAV リクエストに対しては効力を持ちません。</p>
 
-    <div class="example"><h3>完全な例</h3><p><code>
-      DavLockDB /usr/local/apache2/var/DavLock<br />
-      <br />
-      &lt;Directory /usr/local/apache2/htdocs/foo&gt;<br />
-      <span class="indent">
-        Order Allow,Deny<br />
-        Allow from all<br />
-        Dav On<br />
-        <br />
-        AuthType Basic<br />
-        AuthName DAV<br />
-        AuthUserFile user.passwd<br />
-        <br />
-        &lt;LimitExcept GET POST OPTIONS&gt;<br />
-        <span class="indent">
-          Require user admin<br />
-        </span>
-        &lt;/LimitExcept&gt;<br />
-      </span>
-      &lt;/Directory&gt;<br />
-    </code></p></div>
+    <div class="example"><h3>完全な例</h3><pre class="prettyprint lang-config">DavLockDB /usr/local/apache2/var/DavLock
+
+&lt;Directory /usr/local/apache2/htdocs/foo&gt;
+    Require all granted
+    Dav On
+
+    AuthType Basic
+    AuthName DAV
+    AuthUserFile user.passwd
+
+    &lt;LimitExcept GET POST OPTIONS&gt;
+        Require user admin
+    &lt;/LimitExcept&gt;
+&lt;/Directory&gt;</pre>
+</div>
 
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -140,9 +130,9 @@
     有効なコネクションを通した基本認証を使うこともできます。</p>
 
     <p><code class="module"><a href="../mod/mod_dav.html">mod_dav</a></code> がファイルを操作できるようにするためには、
-    管理下のディレクトリとファイルとに Apache が実行されている <code class="directive"><a href="../mod/mpm_common.html#user">User</a></code> と <code class="directive"><a href="../mod/mpm_common.html#group">Group</a></code> で書き込み可能である必要があります。
-    新しく作成されるファイルもこの <code class="directive"><a href="../mod/mpm_common.html#user">User</a></code>
-    と <code class="directive"><a href="../mod/mpm_common.html#group">Group</a></code> に所有される
+    管理下のディレクトリとファイルとに Apache が実行されている <code class="directive"><a href="../mod/mod_unixd.html#user">User</a></code> と <code class="directive"><a href="../mod/mod_unixd.html#group">Group</a></code> で書き込み可能である必要があります。
+    新しく作成されるファイルもこの <code class="directive"><a href="../mod/mod_unixd.html#user">User</a></code>
+    と <code class="directive"><a href="../mod/mod_unixd.html#group">Group</a></code> に所有される
     ことになります。この理由から、そのアカウントへのアクセスを制御することは
     重要です。DAV リポジトリは Apache 専用のものだとみなされています。
     Apache 以外の方法でファイルを修正すること (例えば FTP やファイルシステム
@@ -169,16 +159,13 @@
     一つはスクリプトを実行させ、もう一つはダウンロードさせたり、DAV から
     操作されたりするように設定するというものがあります。</p>
 
-<div class="example"><p><code>
-Alias /phparea /home/gstein/php_files<br />
-Alias /php-source /home/gstein/php_files<br />
+<pre class="prettyprint lang-config">Alias /phparea /home/gstein/php_files
+Alias /php-source /home/gstein/php_files
 &lt;Location /php-source&gt;
-<span class="indent">
-    DAV On<br />
-    ForceType text/plain<br />
-</span>
-&lt;/Location&gt;
-</code></p></div>
+    DAV On
+    ForceType text/plain
+&lt;/Location&gt;</pre>
+
 
     <p>この設定により、<code>http://example.com/phparea</code> を PHP スクリプトの
     出力をアクセスするために使うことができ、
@@ -198,13 +185,10 @@ Alias /php-source /home/gstein/php_files
     <p>与えられたコンテナで WebDAV HTTP メソッドが使えるようにするには
     次のようにします。</p>
 
-    <div class="example"><p><code>
-      &lt;Location /foo&gt;<br />
-      <span class="indent">
-        Dav On<br />
-      </span>
-      &lt;/Location&gt;
-    </code></p></div>
+    <pre class="prettyprint lang-config">&lt;Location /foo&gt;
+    Dav On
+&lt;/Location&gt;</pre>
+
 
     <p><code>On</code> という指定は実際には <code class="module"><a href="../mod/mod_dav_fs.html">mod_dav_fs</a></code>
     で提供されているデフォルトのプロバイダ、<code>filesystem</code>
@@ -262,13 +246,10 @@ Alias /php-source /home/gstein/php_files
     <code class="directive">DavMinTimeout</code> を使って
     これをもっと大きな値 (例えば 600 秒) に上書きできます。</p>
 
-    <div class="example"><h3>例</h3><p><code>
-      &lt;Location /MSWord&gt;<br />
-      <span class="indent">
-        DavMinTimeout 600<br />
-      </span>
-      &lt;/Location&gt;
-    </code></p></div>
+    <div class="example"><h3>例</h3><pre class="prettyprint lang-config">&lt;Location /MSWord&gt;
+    DavMinTimeout 600
+&lt;/Location&gt;</pre>
+</div>
 
 </div>
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_dav.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_dav.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_dav.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_dav.xml.meta Thu May 22 17:46:36 2014
@@ -9,7 +9,7 @@
   <variants>
     <variant>en</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
 </metafile>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_dav_fs.xml.ja
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_dav_fs.xml.ja?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_dav_fs.xml.ja [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_dav_fs.xml.ja [utf-8] Thu May 22 17:46:36 2014
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 99485 -->
+<!-- English Revision: 99485:1437836 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more

Modified: httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -28,15 +28,10 @@
 <a href="../fr/mod/mod_dav_lock.html" hreflang="fr" rel="alternate" title="Français">&nbsp;fr&nbsp;</a> |
 <a href="../ja/mod/mod_dav_lock.html" title="Japanese">&nbsp;ja&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 <table class="module"><tr><th><a href="module-dict.html#Description">説明:</a></th><td><code class="module"><a href="../mod/mod_dav.html">mod_dav</a></code> 用の汎用ロックモジュール</td></tr>
 <tr><th><a href="module-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">モジュール識別子:</a></th><td>dav_lock_module</td></tr>
-<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_dav_lock.c</td></tr>
-<tr><th><a href="module-dict.html#Compatibility">互換性:</a></th><td>バージョン 2.1 以降</td></tr></table>
+<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_dav_lock.c</td></tr></table>
 <h3>概要</h3>
 
     <p>このモジュールは <code class="module"><a href="../mod/mod_dav.html">mod_dav</a></code> のどのバックエンド
@@ -46,7 +41,7 @@
     そのような場合はサーバに読み込むべきではありません。
     <code class="module"><a href="../mod/mod_dav_lock.html">mod_dav_lock</a></code>
     を実際に利用するバックエンドモジュールの例としては subversion
-    プロバイダモジュールの <a href="http://subversion.tigris.org/">mod_dav_svn</a> があります。</p>
+    プロバイダモジュールの <a href="http://subversion.apache.org/">mod_dav_svn</a> があります。</p>
 
     <p><code class="module"><a href="../mod/mod_dav_fs.html">mod_dav_fs</a></code> は特化された専用のバージョンを
     使うため、この汎用モジュールは<em>必要ない</em>ことに注意して
@@ -87,13 +82,12 @@
     扱われます。<code class="module"><a href="../mod/mod_dav_lock.html">mod_dav_lock</a></code> の実装ではユーザの
     ロックを追跡するのに SDBM データベースを使います。</p>
 
-    <div class="example"><h3>例</h3><p><code>
-      DavGenericLockDB var/DavLock
-    </code></p></div>
+    <div class="example"><h3>例</h3><pre class="prettyprint lang-config">DavGenericLockDB var/DavLock</pre>
+</div>
 
     <p>ロックデータベースファイルのあるディレクトリは
-    Apache が実行されている <code class="directive"><a href="../mod/mpm_common.html#user">User</a></code>
-    と <code class="directive"><a href="../mod/mpm_common.html#group">Group</a></code> によって
+    Apache が実行されている <code class="directive"><a href="../mod/mod_unixd.html#user">User</a></code>
+    と <code class="directive"><a href="../mod/mod_unixd.html#group">Group</a></code> によって
     書き込み可能でなければなりません。セキュリティ上の理由から、
     既存のディレクトリのパーミッションを変更するのではなく、
     専用のディレクトリを作るのが良いでしょう。上の例では、

Modified: httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_dav_lock.xml.meta Thu May 22 17:46:36 2014
@@ -9,6 +9,6 @@
   <variants>
     <variant>en</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
   </variants>
 </metafile>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_echo.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_echo.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_echo.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_echo.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -29,16 +29,11 @@
 <a href="../ja/mod/mod_echo.html" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_echo.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 <table class="module"><tr><th><a href="module-dict.html#Description">説明:</a></th><td>プロトコルモジュールの概要を示すための単純なエコーサーバ
 </td></tr>
 <tr><th><a href="module-dict.html#Status">ステータス:</a></th><td>Experimental</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">モジュール識別子:</a></th><td>echo_module</td></tr>
-<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_echo.c</td></tr>
-<tr><th><a href="module-dict.html#Compatibility">互換性:</a></th><td>Apache 2.0 以降</td></tr></table>
+<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_echo.c</td></tr></table>
 <h3>概要</h3>
 
     <p>本モジュールはコンセプトを伝えるためのプロトコルモジュールの
@@ -60,14 +55,12 @@
 <tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト</td></tr>
 <tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Experimental</td></tr>
 <tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_echo</td></tr>
-<tr><th><a href="directive-dict.html#Compatibility">互換性:</a></th><td>Apache 2.0 以降</td></tr>
 </table>
     <p><code class="directive">ProtocolEcho</code> ディレクティブで
     エコーサーバの有効無効を設定します。</p>
 
-    <div class="example"><h3>例</h3><p><code>
-      ProtocolEcho On
-    </code></p></div>
+    <div class="example"><h3>例</h3><pre class="prettyprint lang-config">ProtocolEcho On</pre>
+</div>
 
 </div>
 </div>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_echo.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_echo.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_echo.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_echo.xml.meta Thu May 22 17:46:36 2014
@@ -9,7 +9,7 @@
   <variants>
     <variant>en</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
 </metafile>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_ident.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_ident.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_ident.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_ident.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -29,15 +29,10 @@
 <a href="../ja/mod/mod_ident.html" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_ident.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 <table class="module"><tr><th><a href="module-dict.html#Description">説明:</a></th><td>RFC 1413 ident lookups</td></tr>
 <tr><th><a href="module-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">モジュール識別子:</a></th><td>ident_module</td></tr>
-<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_ident.c</td></tr>
-<tr><th><a href="module-dict.html#Compatibility">互換性:</a></th><td>Apache 2.1 で使用可能</td></tr></table>
+<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_ident.c</td></tr></table>
 <h3>概要</h3>
 
     <p>このモジュールはリモートホストの <a href="http://www.ietf.org/rfc/rfc1413.txt">RFC 1413</a> 互換デーモン
@@ -63,7 +58,6 @@
 <tr><th><a href="directive-dict.html#Context">コンテキスト:</a></th><td>サーバ設定ファイル, バーチャルホスト, ディレクトリ</td></tr>
 <tr><th><a href="directive-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
 <tr><th><a href="directive-dict.html#Module">モジュール:</a></th><td>mod_ident</td></tr>
-<tr><th><a href="directive-dict.html#Compatibility">互換性:</a></th><td>Apache 2.1 で core から移動</td></tr>
 </table>
     <p>このディレクティブは、クライアントマシン上で
     identd やそれに類似したデーモンが動作しているときに、

Modified: httpd/httpd/trunk/docs/manual/mod/mod_ident.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_ident.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_ident.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_ident.xml.meta Thu May 22 17:46:36 2014
@@ -9,7 +9,7 @@
   <variants>
     <variant>en</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
 </metafile>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_version.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_version.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_version.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_version.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -28,15 +28,10 @@
 <a href="../ja/mod/mod_version.html" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_version.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 <table class="module"><tr><th><a href="module-dict.html#Description">説明:</a></th><td>バージョン依存の設定</td></tr>
 <tr><th><a href="module-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">モジュール識別子:</a></th><td>version_module</td></tr>
-<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_version.c</td></tr>
-<tr><th><a href="module-dict.html#Compatibility">互換性:</a></th><td>バージョン 2.0.56 以降</td></tr></table>
+<tr><th><a href="module-dict.html#SourceFile">ソースファイル:</a></th><td>mod_version.c</td></tr></table>
 <h3>概要</h3>
 
     <p>様々なバージョンの httpd の異なる設定を扱うことになる、
@@ -45,19 +40,14 @@
     提供します。これを使うと、数字の比較や正規表現による柔軟な
     バージョンチェックができるようになります。</p>
 
-    <div class="example"><h3>例</h3><p><code>
-      &lt;IfVersion 2.1.0&gt;<br />
-      <span class="indent">
-        # current httpd version is exactly 2.1.0<br />
-      </span>
-      &lt;/IfVersion&gt;<br />
-      <br />
-      &lt;IfVersion &gt;= 2.2&gt;<br />
-      <span class="indent">
-        # use really new features :-)<br />
-      </span>
-      &lt;/IfVersion&gt;
-    </code></p></div>
+    <div class="example"><h3>例</h3><pre class="prettyprint lang-config">&lt;IfVersion 2.4.2&gt;
+    # current httpd version is exactly 2.4.2
+&lt;/IfVersion&gt;
+
+&lt;IfVersion &gt;= 2.5&gt;
+    # use really new features :-)
+&lt;/IfVersion&gt;</pre>
+</div>
 
     <p>詳細は以下を読んでください。</p>
 </div>
@@ -100,14 +90,11 @@
         <td>指定以下の httpd バージョン</td></tr>
 </table>
 
-    <div class="example"><h3>例</h3><p><code>
-      &lt;IfVersion &gt;= 2.1&gt;<br />
-      <span class="indent">
-        # this happens only in versions greater or<br />
-        # equal 2.1.0.<br />
-      </span>
-      &lt;/IfVersion&gt;
-    </code></p></div>
+    <div class="example"><h3>例</h3><pre class="prettyprint lang-config">&lt;IfVersion &gt;= 2.3&gt;
+    # this happens only in versions greater or
+    # equal 2.3.0.
+&lt;/IfVersion&gt;</pre>
+</div>
 
     <p>数値比較に加えて、http のバージョン番号に対して
     <a class="glossarylink" href="../glossary.html#regex" title="用語集を参照">正規表現</a>による
@@ -122,24 +109,18 @@
             <code><var>regex</var></code> 形式</td></tr>
 </table>
 
-    <div class="example"><h3>例</h3><p><code>
-      &lt;IfVersion = /^2.1.[01234]$/&gt;<br />
-      <span class="indent">
-        # e.g. workaround for buggy versions
-      </span>
-      &lt;/IfVersion&gt;
-    </code></p></div>
+    <div class="example"><h3>例</h3><pre class="prettyprint lang-config">&lt;IfVersion = /^2.4.[01234]$/&gt;
+    # e.g. workaround for buggy versions
+&lt;/IfVersion&gt;</pre>
+</div>
 
     <p>マッチングの否定を表現するために、すべてのオペレータは前に
     感嘆符 (<code>!</code>)を付けることができます:</p>
 
-    <div class="example"><p><code>
-      &lt;IfVersion !~ ^2.1.[01234]$&gt;<br />
-      <span class="indent">
-        # not for those versions<br />
-      </span>
-      &lt;/IfVersion&gt;
-    </code></p></div>
+    <pre class="prettyprint lang-config">&lt;IfVersion !~ ^2.4.[01234]$&gt;
+    # not for those versions
+&lt;/IfVersion&gt;</pre>
+
 
     <p><var>operator</var> が省略されたときは <code>=</code> と
     みなされます。</p>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_version.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_version.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_version.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_version.xml.meta Thu May 22 17:46:36 2014
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
 </metafile>

Modified: httpd/httpd/trunk/docs/manual/mod/quickreference.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/quickreference.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/quickreference.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/quickreference.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -31,10 +31,6 @@
 <a href="../tr/mod/quickreference.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a> |
 <a href="../zh-cn/mod/quickreference.html" hreflang="zh-cn" rel="alternate" title="Simplified Chinese">&nbsp;zh-cn&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 
     <p>ディレクティブ クイックリファレンスでは、各 Apache 設定ディレクティブの
     使用方法、デフォルト値、ステータスとコンテキストを示しています。
@@ -44,8 +40,8 @@
 
     <p>第 1 列目はディレクティブの名前と使用方法です。
     第 2 列目は (もしあれば) デフォルト値となっています。
-    デフォルト値が長すぎて表示しきれない場合は、最初の文字列の後ろに
-    「 + 」が続きます。</p>
+    デフォルト値が長すぎて表示しきれない場合は、途中まで表示した上で、、
+    「 + 」で続きがあることを示しています。</p>
 
     <p>第 3, 4 列は、下の表の注釈に従って、
     ディレクティブの使用できるコンテキストと、

Modified: httpd/httpd/trunk/docs/manual/mod/quickreference.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/quickreference.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/quickreference.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/mod/quickreference.xml.meta Thu May 22 17:46:36 2014
@@ -10,7 +10,7 @@
     <variant>de</variant>
     <variant>en</variant>
     <variant outdated="yes">es</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
     <variant>tr</variant>
     <variant outdated="yes">zh-cn</variant>

Modified: httpd/httpd/trunk/docs/manual/ssl/index.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/index.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/index.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/ssl/index.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -27,18 +27,12 @@
 <a href="../tr/ssl/" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a> |
 <a href="../zh-cn/ssl/" hreflang="zh-cn" rel="alternate" title="Simplified Chinese">&nbsp;zh-cn&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 
 <p>Apache HTTP サーバモジュール <code class="module"><a href="../mod/mod_ssl.html">mod_ssl</a></code> が
 <a href="http://www.openssl.org/">OpenSSL</a>
 ライブラリへのインターフェースを提供していますが、これは
 Secure Sockts Layer と Transport Layer Security
-プロトコルを用いた強力な暗号化を提供します。
-このモジュールやこの文書は Ralf S. Engelschall の mod_ssl
-プロジェクトに基づいています。</p>
+プロトコルを用いた強力な暗号化を提供します。</p>
 </div>
 <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#documentation">Documentation</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#mod-ssl">mod_ssl</a></li>
@@ -47,9 +41,9 @@ Secure Sockts Layer と Transport Layer 
 <div class="section">
 <h2><a name="documentation" id="documentation">Documentation</a></h2>
 <ul>
-<li><a href="ssl_intro.html">はじめに</a></li>
+<li><a href="ssl_howto.html">mod_ssl Configuration How-To</a></li>
+<li><a href="ssl_intro.html">Introduction To SSL</a></li>
 <li><a href="ssl_compat.html">互換性</a></li>
-<li><a href="ssl_howto.html">How-To</a></li>
 <li><a href="ssl_faq.html">よくある質問</a></li>
 <li><a href="../glossary.html">用語</a></li>
 </ul>

Modified: httpd/httpd/trunk/docs/manual/ssl/index.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/ssl/index.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/ssl/index.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/ssl/index.xml.meta Thu May 22 17:46:36 2014
@@ -9,7 +9,7 @@
   <variants>
     <variant>en</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">tr</variant>
     <variant outdated="yes">zh-cn</variant>
   </variants>

Modified: httpd/httpd/trunk/docs/manual/stopping.html.ja.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/stopping.html.ja.utf8?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/stopping.html.ja.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/stopping.html.ja.utf8 [utf-8] Thu May 22 17:46:36 2014
@@ -5,7 +5,7 @@
               This file is generated from xml source: DO NOT EDIT
         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
       -->
-<title>停止と再起動 - Apache HTTP サーバ バージョン 2.5</title>
+<title>Apache HTTP Server の停止と再起動 - Apache HTTP サーバ バージョン 2.5</title>
 <link href="./style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
 <link href="./style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
 <link href="./style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="./style/css/prettify.css" />
@@ -19,7 +19,7 @@
 <img alt="" src="./images/feather.gif" /></div>
 <div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="./images/left.gif" /></a></div>
 <div id="path">
-<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP サーバ</a> &gt; <a href="http://httpd.apache.org/docs/">ドキュメンテーション</a> &gt; <a href="./">バージョン 2.5</a></div><div id="page-content"><div id="preamble"><h1>停止と再起動</h1>
+<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP サーバ</a> &gt; <a href="http://httpd.apache.org/docs/">ドキュメンテーション</a> &gt; <a href="./">バージョン 2.5</a></div><div id="page-content"><div id="preamble"><h1>Apache HTTP Server の停止と再起動</h1>
 <div class="toplang">
 <p><span>翻訳済み言語: </span><a href="./de/stopping.html" hreflang="de" rel="alternate" title="Deutsch">&nbsp;de&nbsp;</a> |
 <a href="./en/stopping.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
@@ -29,16 +29,12 @@
 <a href="./ko/stopping.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="./tr/stopping.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
-<div class="outofdate">この日本語訳はすでに古くなっている
-            可能性があります。
-            最近更新された内容を見るには英語版をご覧下さい。
-        </div>
 
     <p>この文書では Unix に類似したシステムでの
-    Apache の停止と再起動について扱っています。
+    Apache HTTP Serverの停止と再起動について扱っています。
     Windows NT, 2000, XP ユーザは<a href="platform/windows.html#winsvc">サービスとして
-    Apache を実行する</a>で、Windows 9x, MEユーザは<a href="platform/windows.html#wincons">コンソールアプリケーションとして
-    Apache を実行する</a>で、
+    httpd を実行する</a>で、Windows 9x, MEユーザは<a href="platform/windows.html#wincons">コンソールアプリケーションとして
+    httpd を実行する</a>で、
     これらのプラットホームでの使用方法をご覧下さい。</p>
 </div>
 <div id="quickview"><ul id="toc"><li><img alt="" src="./images/down.gif" /> <a href="#introduction">イントロダクション</a></li>
@@ -51,7 +47,7 @@
 <div class="section">
 <h2><a name="introduction" id="introduction">イントロダクション</a></h2>
 
-    <p>Apache を停止したり再起動したりするためには、実行されている
+    <p>Apache HTTP Server を停止したり再起動したりするためには、実行されている
     <code class="program"><a href="./programs/httpd.html">httpd</a></code> プロセスにシグナルを送る必要があります。
     シグナルを送るには二つの方法があります。
     一つ目はプロセスに直接シグナルを送る unix の <code>kill</code>
@@ -225,14 +221,14 @@
 
     <div class="note"><p><code>graceful-stop</code> を使うとまったく同一に設定された
     複数の <code class="program"><a href="./programs/httpd.html">httpd</a></code> を同時に実行することができます。
-    Apache を緩やかにアップグレードするのにはとても便利ですが、
+    httpd を緩やかにアップグレードするのにはとても便利ですが、
     設定ファイルによってはデッドロックやレースコンディションを
     引き起こすこともあります。</p>
 
-    <p>ディスク上のファイルを使うもの、たとえば
-    <code class="directive"><a href="./mod/core.html#lockfile">Lockfile</a></code> や 
-    <code class="directive"><a href="./mod/mod_cgid.html#scriptsock">ScriptSock</a></code> 
-    のファイルなどはサーバの PID を含めて管理されていて、
+    <p>ディスク上のファイルを使うもの、たとえばロックファイル
+    (<code class="directive"><a href="./mod/core.html#mutex">Mutex</a></code>) や Unix ソケットファイル
+    (<code class="directive"><a href="./mod/mod_cgid.html#scriptsock">ScriptSock</a></code>) 
+    などはサーバの PID を含めて管理されていて、
     共存できるよう注意が払われています。
     しかしその他設定ディレクティブやサードパーティ製のモジュール、
     CGI ユーティリティのパーシステント層などで

Modified: httpd/httpd/trunk/docs/manual/stopping.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/stopping.xml.meta?rev=1596926&r1=1596925&r2=1596926&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/stopping.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/stopping.xml.meta Thu May 22 17:46:36 2014
@@ -11,7 +11,7 @@
     <variant>en</variant>
     <variant outdated="yes">es</variant>
     <variant>fr</variant>
-    <variant outdated="yes">ja</variant>
+    <variant>ja</variant>
     <variant outdated="yes">ko</variant>
     <variant>tr</variant>
   </variants>