You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2005/07/19 11:49:22 UTC

svn commit: r219636 - in /httpd/httpd/trunk/docs/manual: ./ howto/ programs/

Author: nd
Date: Tue Jul 19 02:49:16 2005
New Revision: 219636

URL: http://svn.apache.org/viewcvs?rev=219636&view=rev
Log:
* fix properties
* `build all`

Modified:
    httpd/httpd/trunk/docs/manual/configuring.html.ja.euc-jp
    httpd/httpd/trunk/docs/manual/howto/auth.html.en
    httpd/httpd/trunk/docs/manual/howto/auth.html.ja.euc-jp
    httpd/httpd/trunk/docs/manual/howto/auth.xml.ja
    httpd/httpd/trunk/docs/manual/howto/auth.xml.ko
    httpd/httpd/trunk/docs/manual/howto/auth.xml.meta
    httpd/httpd/trunk/docs/manual/programs/httxt2dbm.html   (props changed)
    httpd/httpd/trunk/docs/manual/programs/httxt2dbm.html.en   (props changed)
    httpd/httpd/trunk/docs/manual/programs/httxt2dbm.xml   (contents, props changed)
    httpd/httpd/trunk/docs/manual/programs/httxt2dbm.xml.meta   (props changed)
    httpd/httpd/trunk/docs/manual/programs/index.xml.es
    httpd/httpd/trunk/docs/manual/programs/index.xml.ko

Modified: httpd/httpd/trunk/docs/manual/configuring.html.ja.euc-jp
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/configuring.html.ja.euc-jp?rev=219636&r1=219635&r2=219636&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/configuring.html.ja.euc-jp [euc-jp] (original)
+++ httpd/httpd/trunk/docs/manual/configuring.html.ja.euc-jp [euc-jp] Tue Jul 19 02:49:16 2005
@@ -86,7 +86,7 @@
     <p>Apache はモジュール化されたサーバです。
     コアサーバには最も基本的な機能だけが含まれています。拡張機能は
     Apache にロードされる<a href="mod/">モジュール</a>として利用可能です。デフォルトでは、コンパイル時にモジュールの
-    <a href="mod/module-dict.html#status">Base</a> セット (基本セット) が
+    <a href="mod/module-dict.html#Status">Base</a> セット (基本セット) が
     サーバに含まれます。サーバが<a href="dso.html">動的ロード</a>モジュールを使うようにコンパイルされている場合は、
     モジュールを別にコンパイルして、いつでも
     <code class="directive"><a href="./mod/mod_so.html#loadmodule">LoadModule</a></code>
@@ -125,7 +125,7 @@
     例えば、プロセスの作成を制御しているディレクティブはメインサーバの
     コンテキストにのみ書くことができます。
     どのディレクティブをどのセクションに書くことができるかを知るためには
-    ディレクティブの <a href="mod/directive-dict.html#context">コンテキスト</a> を調べてください。詳しい情報は、
+    ディレクティブの <a href="mod/directive-dict.html#Context">コンテキスト</a> を調べてください。詳しい情報は、
     <a href="sections.html">Directory, Location, Files
     セクションの動作法</a>にあります。</p>
   </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
@@ -143,12 +143,14 @@
     <code>.htaccess</code>
     ファイルに書かれたディレクティブはファイルを置いた
     ディレクトリとその全てのサブディレクトリに適用されます。
+    <code>.htaccess</code> ファイルは、メインの設定ファイルと同じ
+    構文を使います。
     <code>.htaccess</code>
     ファイルはすべてのリクエストで読み込まれるため、
     変更はすぐに反映されます。</p>
 
     <p>どのディレクティブが <code>.htaccess</code>
-    ファイルに書けるかを調べるには、ディレクティブの<a href="mod/directive-dict.html#context">コンテキスト</a>
+    ファイルに書けるかを調べるには、ディレクティブの<a href="mod/directive-dict.html#Context">コンテキスト</a>
     を調べてください。サーバ管理者はさらにメイン設定ファイルの
     <code class="directive"><a href="./mod/core.html#allowoverride">AllowOverride</a></code>
     を設定することでどのディレクティブを <code>.htaccess</code>

Modified: httpd/httpd/trunk/docs/manual/howto/auth.html.en
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/howto/auth.html.en?rev=219636&r1=219635&r2=219636&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/auth.html.en (original)
+++ httpd/httpd/trunk/docs/manual/howto/auth.html.en Tue Jul 19 02:49:16 2005
@@ -143,7 +143,7 @@
     common method is <code>Basic</code>, and this is the method
     implemented by <code class="module"><a href="../mod/mod_auth_basic.html">mod_auth_basic</a></code>. It is important to be aware,
     however, that Basic authentication sends the password from the client to
-    the browser unencrypted. This method should therefore not be used for
+    the server unencrypted. This method should therefore not be used for
     highly sensitive data. Apache supports one other authentication method:
     <code>AuthType Digest</code>. This method is implemented by <code class="module"><a href="../mod/mod_auth_digest.html">mod_auth_digest</a></code> and is much more secure. Only the most recent
     versions of clients are known to support Digest authentication.</p>

Modified: httpd/httpd/trunk/docs/manual/howto/auth.html.ja.euc-jp
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/howto/auth.html.ja.euc-jp?rev=219636&r1=219635&r2=219636&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/auth.html.ja.euc-jp [euc-jp] (original)
+++ httpd/httpd/trunk/docs/manual/howto/auth.html.ja.euc-jp [euc-jp] Tue Jul 19 02:49:16 2005
@@ -22,6 +22,8 @@
 <a href="../ja/howto/auth.html" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/howto/auth.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">This translation may be out of date. Check the
+            English version for recent changes.</div>
 
     <p>「認証」とは、誰かが自分は誰であるかを主張した場合に、
     それを確認するための全過程を指します。「承認」とは、

Modified: httpd/httpd/trunk/docs/manual/howto/auth.xml.ja
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/howto/auth.xml.ja?rev=219636&r1=219635&r2=219636&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/auth.xml.ja [iso-2022-jp] (original)
+++ httpd/httpd/trunk/docs/manual/howto/auth.xml.ja [iso-2022-jp] Tue Jul 19 02:49:16 2005
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='iso-2022-jp' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 151408 -->
+<!-- English Revision: 151408:219484 (outdated) -->
 
 <!--
  Copyright 2003-2005 The Apache Software Foundation or its licensors,

Modified: httpd/httpd/trunk/docs/manual/howto/auth.xml.ko
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/howto/auth.xml.ko?rev=219636&r1=219635&r2=219636&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/auth.xml.ko [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/howto/auth.xml.ko [euc-kr] Tue Jul 19 02:49:16 2005
@@ -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:151408 (outdated) -->
+<!-- English Revision: 105989:219484 (outdated) -->
 
 <!--
  Copyright 2004-2005 The Apache Software Foundation or its licensors,

Modified: httpd/httpd/trunk/docs/manual/howto/auth.xml.meta
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/howto/auth.xml.meta?rev=219636&r1=219635&r2=219636&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/auth.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/howto/auth.xml.meta Tue Jul 19 02:49:16 2005
@@ -7,7 +7,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>ja</variant>
+    <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
 </metafile>

Propchange: httpd/httpd/trunk/docs/manual/programs/httxt2dbm.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/trunk/docs/manual/programs/httxt2dbm.html.en
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: httpd/httpd/trunk/docs/manual/programs/httxt2dbm.xml
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/programs/httxt2dbm.xml?rev=219636&r1=219635&r2=219636&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/programs/httxt2dbm.xml (original)
+++ httpd/httpd/trunk/docs/manual/programs/httxt2dbm.xml Tue Jul 19 02:49:16 2005
@@ -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.en.xsl"?>
-<!-- $LastChangedRevision: 159139 $ -->
+<!-- $LastChangedRevision$ -->
 
 <!--
  Copyright 2003-2005 The Apache Software Foundation or its licensors, as

Propchange: httpd/httpd/trunk/docs/manual/programs/httxt2dbm.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/trunk/docs/manual/programs/httxt2dbm.xml
------------------------------------------------------------------------------
    svn:keywords = LastChangedRevision

Propchange: httpd/httpd/trunk/docs/manual/programs/httxt2dbm.xml.meta
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: httpd/httpd/trunk/docs/manual/programs/index.xml.es
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/programs/index.xml.es?rev=219636&r1=219635&r2=219636&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/programs/index.xml.es (original)
+++ httpd/httpd/trunk/docs/manual/programs/index.xml.es Tue Jul 19 02:49:16 2005
@@ -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.es.xsl"?>
-<!-- English Revision: 103425:159095 (outdated) -->
+<!-- English Revision: 103425:219429 (outdated) -->
 
 <!--
  Copyright 2004-2005 The Apache Software Foundation or its licensors,

Modified: httpd/httpd/trunk/docs/manual/programs/index.xml.ko
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/programs/index.xml.ko?rev=219636&r1=219635&r2=219636&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/programs/index.xml.ko [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/programs/index.xml.ko [euc-kr] Tue Jul 19 02:49:16 2005
@@ -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:159095 (outdated) -->
+<!-- English Revision: 105989:219429 (outdated) -->
 
 <!--
  Copyright 2004-2005 The Apache Software Foundation or its licensors,