]> granicus.if.org Git - apache/commitdiff
xforms
authorStefan Fritsch <sf@apache.org>
Sat, 6 Jul 2013 21:51:24 +0000 (21:51 +0000)
committerStefan Fritsch <sf@apache.org>
Sat, 6 Jul 2013 21:51:24 +0000 (21:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1500328 13f79535-47bb-0310-9956-ffa450edef68

25 files changed:
docs/man/htpasswd.1
docs/manual/developer/new_api_2_4.html.en
docs/manual/mod/mod_lua.html.fr
docs/manual/mod/mod_lua.xml.meta
docs/manual/mod/mod_ssl.html.fr
docs/manual/programs/htpasswd.html.en
docs/manual/programs/htpasswd.html.fr
docs/manual/programs/htpasswd.xml.fr
docs/manual/programs/htpasswd.xml.ko
docs/manual/programs/htpasswd.xml.meta
docs/manual/programs/htpasswd.xml.tr
docs/manual/programs/suexec.html.tr.utf8
docs/manual/programs/suexec.xml.ko
docs/manual/programs/suexec.xml.meta
docs/manual/programs/suexec.xml.tr
docs/manual/upgrading.html.fr
docs/manual/upgrading.xml.meta
docs/manual/vhosts/name-based.html.fr
docs/manual/vhosts/name-based.html.tr.utf8
docs/manual/vhosts/name-based.xml.de
docs/manual/vhosts/name-based.xml.fr
docs/manual/vhosts/name-based.xml.ja
docs/manual/vhosts/name-based.xml.ko
docs/manual/vhosts/name-based.xml.meta
docs/manual/vhosts/name-based.xml.tr

index 9ff3a6f464daf4df543181827f9453fc9cfdc1d7..db54c116cf6c636d3d37840229a665e514547e33 100644 (file)
@@ -19,7 +19,7 @@
 .el .ne 3
 .IP "\\$1" \\$2
 ..
-.TH "HTPASSWD" 1 "2013-04-30" "Apache HTTP Server" "htpasswd"
+.TH "HTPASSWD" 1 "2013-07-06" "Apache HTTP Server" "htpasswd"
 
 .SH NAME
 htpasswd \- Manage user files for basic authentication
@@ -71,7 +71,7 @@ Create the \fIpasswdfile\fR\&. If \fIpasswdfile\fR already exists, it is rewritt
 Display the results on standard output rather than updating a file\&. This is useful for generating password records acceptable to Apache for inclusion in non-text data stores\&. This option changes the syntax of the command line, since the \fIpasswdfile\fR argument (usually the first one) is omitted\&. It cannot be combined with the -c option\&.  
 .TP
 -m
-Use MD5 encryption for passwords\&. This is the default\&.  
+Use MD5 encryption for passwords\&. This is the default (since version 2\&.2\&.18)\&.  
 .TP
 -B
 Use bcrypt encryption for passwords\&. This is currently considered to be very secure\&.  
@@ -80,7 +80,7 @@ Use bcrypt encryption for passwords\&. This is currently considered to be very s
 This flag is only allowed in combination with -B (bcrypt encryption)\&. It sets the computing time used for the bcrypt algorithm (higher is more secure but slower, default: 5, valid: 4 to 31)\&.  
 .TP
 -d
-Use crypt() encryption for passwords\&. This is not supported by the httpd server on Windows and Netware\&. This algorithm limits the password length to 8 characters\&. This algorithm is \fBinsecure\fR by today's standards\&.  
+Use crypt() encryption for passwords\&. This is not supported by the httpd server on Windows and Netware\&. This algorithm limits the password length to 8 characters\&. This algorithm is \fBinsecure\fR by today's standards\&. It used to be the default algorithm until version 2\&.2\&.17\&.  
 .TP
 -s
 Use SHA encryption for passwords\&. Facilitates migration from/to Netscape servers using the LDAP Directory Interchange Format (ldif)\&. This algorithm is \fBinsecure\fR by today's standards\&.  
index 137bdbd5b3a1fa25120401b215db59edb04df33b..ba10c06ec1c46df169373522c1460a249b23f548 100644 (file)
       <dt><code>unixd_config</code></dt>
       <dd>This has been renamed to ap_unixd_config.</dd>
 
+      <dt><code>unixd_setup_child()</code></dt>
+      <dd>This has been renamed to ap_unixd_setup_child(), but most callers
+          should call the added ap_run_drop_privileges() hook.</dd>
+
       <dt><code>conn_rec-&gt;remote_ip</code> and 
           <code>conn_rec-&gt;remote_addr</code></dt>
       <dd>These fields have been renamed in order to distinguish between 
index 2ceb2f164dc1513e0d897b60af953906fc63186e..ed9b608e7fc330ab5eacd849d50e82213bc37c1e 100644 (file)
@@ -722,7 +722,7 @@ r:flush()   -- vide le tampon de sortie
 while nous_avons_des_données_à_envoyer do
     r:puts("Bla bla bla\n") -- envoi des données à envoyer vers le tampon
     r:flush() -- vidage du tampon (envoi au client)
-    r:sleep(0.5) -- mise en attente et bouclage
+    r.usleep(500000) -- mise en attente pendant 0.5 secondes et bouclage
 end
 </pre>
 
@@ -839,7 +839,7 @@ local url = r:construct_url(r.uri)
 
 
 <pre class="prettyprint lang-lua">
-r:mpm_query(number) -- Interroge le serveur à propos de son
+r.mpm_query(number) -- Interroge le serveur à propos de son
 module MPM via la requête ap_mpm_query.
 
 local mpm = r.mpm_query(14)
@@ -1057,8 +1057,7 @@ local matches = r:regex("FOO bar BAz", [[(foo) bar]], 1)
 
 
 <pre class="prettyprint lang-lua">
-r:sleep(secondes) -- Interrompt l'exécution du script pendant le       nombre de secondes spécifié.
-                  -- La valeur peut être spécifiée sous la forme d'un nombre décimal comme 1.25 pour plus de précision.
+r.usleep(microsecondes) -- Interrompt l'exécution du script pendant le nombre de microsecondes spécifié.
 </pre>
 
 
@@ -1109,27 +1108,33 @@ r:mkdir(dir [,mode]) -- Cr
 </pre>
 
 
+<pre class="prettyprint lang-lua">
+r:mkrdir(dir [,mode]) -- Crée des répertoires de manière récursive et définit leur mode via le paramètre optionnel mode.
+</pre>
+
+
 <pre class="prettyprint lang-lua">
 r:rmdir(dir) -- Supprime un répertoire.
 </pre>
 
 
+<pre class="prettyprint lang-lua">
+r:touch([mtime]) -- Définit la date de modification d'un fichier à la date courante ou à la valeur optionnelle mtime en msec.
+</pre>
+
+
 <pre class="prettyprint lang-lua">
 r:get_direntries(dir) -- Renvoie une table contenant toutes les entrées de répertoires.
 
 -- Renvoie un chemin sous forme éclatée en chemin, fichier, extension
-function split_path(path)
-  return path:match("(.-)([^\\/]-%.?([^%.\\/]*))$")
-end
-
 function handle(r)
-  local cwd, _, _ = split_path(r.filename)
-  for _, f in ipairs(r:get_direntries(cwd)) do
-    local info = r:stat(cwd .. f)
+  local dir = r.context_document_root
+  for _, f in ipairs(r:get_direntries(dir)) do
+    local info = r:stat(dir .. "/" .. f)
     if info then
       local mtime = os.date(fmt, info.mtime / 1000000)
       local ftype = (info.filetype == 2) and "[dir] " or "[file]"
-      r:puts( ("%s  %s %10i  %s\n"):format(ftype, mtime, info.size, f) )
+      r:puts( ("%s %s %10i %s\n"):format(ftype, mtime, info.size, f) )
     end
   end
 end
index 8fc1a0efdf34e8b8870065a1ce5d7c523d3f652c..b55c7710e95c9f695fe435d176007bdf28716825 100644 (file)
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant outdated="yes">fr</variant>
+    <variant>fr</variant>
   </variants>
 </metafile>
index 79cbafb66ea1493d46aa5118049e3a701b0c7f44..34da8b32fcd570a7a0ba818e7770dbb67189270a 100644 (file)
@@ -1624,7 +1624,7 @@ requ
 code d'état 502 (Bad Gateway) est envoyé.
 </p>
 <p>
-SSLProxyCheckPeerCN a été remplacé par <code class="directive"><a href="#sslproxycheckpeername">SSLProxyCheckPeerName</a></code>, et sa définition
+A partir de la version 2.4.5, SSLProxyCheckPeerCN a été remplacé par <code class="directive"><a href="#sslproxycheckpeername">SSLProxyCheckPeerName</a></code>, et sa définition
 n'est prise en compte que si <code>SSLProxyCheckPeerName off</code> a
 été spécifié.
 </p>
@@ -1668,6 +1668,8 @@ certificats serveur distants
 <tr><th><a href="directive-dict.html#Context">Contexte:</a></th><td>configuration du serveur, serveur virtuel</td></tr>
 <tr><th><a href="directive-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_ssl</td></tr>
+<tr><th><a href="directive-dict.html#Compatibility">Compatibilité:</a></th><td>Disponible à partir de la version 2.4.5 du serveur HTTP
+Apache</td></tr>
 </table>
 <p>
 Cette directive permet de configurer la vérification du nom d'hôte dans
index e6bf6ecf97d10a282fadcfa1ea75d61dba99c3c3..dc15499b669af82769ab3e6838107bd03db1614f 100644 (file)
@@ -131,7 +131,8 @@ distribution.</li></ul><ul class="seealso"><li><a href="#comments_section">Comme
     one) is omitted. It cannot be combined with the <code>-c</code> option.</dd>
 
     <dt><code>-m</code></dt>
-    <dd>Use MD5 encryption for passwords. This is the default.</dd>
+    <dd>Use MD5 encryption for passwords. This is the default (since version
+    2.2.18).</dd>
 
     <dt><code>-B</code></dt>
     <dd>Use bcrypt encryption for passwords. This is currently considered to
@@ -146,7 +147,8 @@ distribution.</li></ul><ul class="seealso"><li><a href="#comments_section">Comme
     <dd>Use <code>crypt()</code> encryption for passwords. This is not
     supported by the <code class="program"><a href="../programs/httpd.html">httpd</a></code> server on Windows and
     Netware. This algorithm limits the password length to 8 characters.
-    This algorithm is <strong>insecure</strong> by today's standards.</dd>
+    This algorithm is <strong>insecure</strong> by today's standards.
+    It used to be the default algorithm until version 2.2.17.</dd>
 
     <dt><code>-s</code></dt>
     <dd>Use SHA encryption for passwords. Facilitates migration from/to Netscape
index 3a9671e08f517ef3aea26e69e459ba0fc793a18a..b8553f84f77397b29fe83e208a3d40510a1d8f2b 100644 (file)
@@ -28,6 +28,8 @@ l'authentification de base</h1>
 <a href="../ko/programs/htpasswd.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/programs/htpasswd.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 
     <p><code>htpasswd</code> permet de créer et de maintenir les
     fichiers textes où sont stockés les noms d'utilisateurs et mots de
index c3eb1251604e9bee4a4b793329f7d93c36ef5114..baaec3d9f3daf3a428f06d85f21d4563f777c248 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1477651 -->
+<!-- English Revision: 1477651:1500327 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 9558d299e8119935b2d00caa137009634231095c..50a2a8ca1140495ec244d9cda9e8cc07a9571791 100644 (file)
@@ -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:1477651 (outdated) -->
+<!-- English Revision: 105989:1500327 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 92871292ad6005a864193f152443ccf080deb01d..33c9a1508ae49f263d3374215273b9405191907c 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
   </variants>
index cffe64a7e11168175c9b6da5aa5b0b5c1b79b0a4..4383803c00a9bec793d5ccc48cf318283ec23570 100644 (file)
@@ -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.tr.xsl"?>
-<!-- English Revision: 1420732:1477651 (outdated) -->
+<!-- English Revision: 1420732:1500327 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.gen.tr>
    Reviewed by: Orhan Berent <berent belgeler.gen.tr>
index d20b548f787799f9359a717fec0353d79e4ed035..70ca352c8b9fffad632e39c0c6b97bed46d04c50 100644 (file)
@@ -25,6 +25,7 @@
 <a href="../ko/programs/suexec.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/programs/suexec.html" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
+<div class="outofdate">Bu çeviri güncel olmayabilir. Son değişiklikler için İngilizce sürüm geçerlidir.</div>
 
     <p><code><strong>suexec</strong></code>, CGI programlarını çalıştırmadan
     önce Apache HTTP Sunucusu tarafından kullanıcı değiştirmek için kullanılır.
index c621960a622e6b0d0cbed85dc0ea19b230ff8405..eb7583af8a49467de71b8215251cfd71d329de4c 100644 (file)
@@ -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: 151408:420993 (outdated) -->
+<!-- English Revision: 151408:1498321 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index a3e41fe279269a4f73366e9af3a35a6e0a6dff69..1e99356f1e8452517b4dc9efdfc0a0d064171670 100644 (file)
@@ -9,6 +9,6 @@
   <variants>
     <variant>en</variant>
     <variant outdated="yes">ko</variant>
-    <variant>tr</variant>
+    <variant outdated="yes">tr</variant>
   </variants>
 </metafile>
index b7434c457236ed91858f6877c718a9295ed6f9f0..96e06492724da55a5095c63d2a4d836ed3e9d208 100644 (file)
@@ -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.tr.xsl"?>
-<!-- English Revision: 420993  -->
+<!-- English Revision: 420993:1498321 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>
index 815d0be8ea9aa6b13474bc1e4f47ae581eceea78..ac88b113909d7114f4ba1091ea53819e7c375e90 100644 (file)
@@ -24,8 +24,6 @@
 <p><span>Langues Disponibles: </span><a href="./en/upgrading.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="./fr/upgrading.html" title="Français">&nbsp;fr&nbsp;</a></p>
 </div>
-<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
-            anglaise pour les changements récents.</div>
 
   <p>Afin d'assister les utilisateurs lors de leurs opérations de mise à
   jour, nous maintenons un document
@@ -386,24 +384,14 @@ Allow from example.org
       module not included in the server configuration</code> - chargez
       le module <code class="module"><a href="./mod/mod_access_compat.html">mod_access_compat</a></code>, ou mettez à jour
       vers la version 2.4 les directives d'autorisation.</li>
-      <li><code>mixing * ports and non-* ports with a NameVirtualHost address is not supported</code>, <code>Either NameVirtualHost w.x.y.z:n has no VirtualHosts, or there is more than one identical NameVirtualHost line, or your VirtualHost declarations do not match the NameVirtualHost line</code> - ces messages ne sont pas nouveaux, mais ils bloquent désormais le démarrage en générant une erreur</li>
-
-      <li><code>_default_ is not allowed in NameVirtualHost directive</code> - ceci a toujours été le cas, mais à présent cette erreur bloque le démarrage du serveur.</li>
-
       <li><code>Ignoring deprecated use of DefaultType in line NN of
       /path/to/httpd.conf</code> - supprimez la directive <code class="directive"><a href="./mod/core.html#defaulttype">DefaultType</a></code> et remplacez-la par les
       directives de configuration appropriées.</li>
-      <li><code>mixing * ports and non-* ports with a NameVirtualHost
-      address is not supported</code>, <code>Either NameVirtualHost
-      w.x.y.z:n has no VirtualHosts, or there is more than one identical
-      NameVirtualHost line, or your VirtualHost declarations do not
-      match the NameVirtualHost line</code> -
-      ce ne sont pas des nouveaux messages, mais ils empêchent
-      maintenant le serveur de démarrer</li>
-      <li><code>_default_ is not allowed in NameVirtualHost
-      directive</code> - l'explication est dans le message ; cette
-      définition n'a jamais été valide, mais elle empêche maintenant le
-      serveur de démarrer.</li>
+      <li><code>Invalid command 'AddOutputFilterByType', perhaps misspelled 
+      or defined by a module not included in the server configuration
+      </code> - la directive <code class="directive"><a href="./mod/mod_filter.html#addoutputfilterbytype">AddOutputFilterByType</a></code> qui était
+      jusqu'alors implémentée par le module core, l'est maintenant par
+      le module mod_filter, qui doit donc être chargé.</li>
     </ul></li>
     <li>Erreurs de traitement des requêtes :
     <ul>
index 1d2a68a225aa2d153bd52b089461d6b5ec809b09..aba29996bbd699aa0af1827543fc41d3c2d9af24 100644 (file)
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant outdated="yes">fr</variant>
+    <variant>fr</variant>
   </variants>
 </metafile>
index d4f33d2761434ba87435b59ae9f92604adf7c3ad..a056f32af22722669d518bf09f22ea7092d50b5f 100644 (file)
@@ -28,6 +28,8 @@
 <a href="../ko/vhosts/name-based.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/vhosts/name-based.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 
     <p>Ce document décrit quand et comment utiliser des serveurs
     virtuels par nom.</p>
@@ -135,6 +137,20 @@ virtuel bas
        spécifiques (et non par défaut).</p>
     </div>
 
+    <div class="note"><h3>Hérirage du nom de serveur</h3>
+       <p>Il est toujours préférable de définir une directive <code class="directive"><a href="../mod/core.html#servername">ServerName</a></code> au niveau de chaque serveur
+       virtuel à base de nom. Si un serveur virtuel ne définit pas
+       de directive  <code class="directive"><a href="../mod/core.html#servername">ServerName</a></code>, le
+       nom de ce serveur virtuel sera hérité du serveur principal. Si
+       aucun nom de serveur n'a été explicitement défini au niveau du
+       serveur principal, le serveur tentera de déterminer son nom via
+       une résolution de nom DNS inverse sur la première adresse
+       d'écoute. Dans tous les cas, ce nom de serveur hérité influencera
+       la sélection du serveur virtuel à base de nom, c'est pourquoi il
+       est toujours préférable de définir une directive <code class="directive"><a href="../mod/core.html#servername">ServerName</a></code> pour chaque serveur virtuel
+       à base de nom.</p>
+    </div>
+
     <p>Par exemple, supposez que vous hébergez le domaine
     <code>www.example.com</code> et que vous souhaitez ajouter le
     serveur virtuel <code>other.example.com</code> qui pointe sur
index d7350eb506a270f00f06e472c836fbc7760d0534..5ab2f58eea413bc07f5d8db7bd58630c74cf70e5 100644 (file)
@@ -28,6 +28,7 @@
 <a href="../ko/vhosts/name-based.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/vhosts/name-based.html" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
+<div class="outofdate">Bu çeviri güncel olmayabilir. Son değişiklikler için İngilizce sürüm geçerlidir.</div>
 
     <p>Bu belgede isme dayalı sanal konakların ne zaman, nasıl kullanılacakları
       açıklanmıştır.</p>
index e1893b2950c9f0e54876852a98bcee386b112bdf..96401127542bb1f9cda92d75c44c39ea3ff51deb 100644 (file)
@@ -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.de.xsl"?>
-<!-- English Revision: 420990:1344676 (outdated) -->
+<!-- English Revision: 420990:1500043 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index c49335d07a2044f4b67337f18d9253e26172f641..b4fa5b20eea269146186706e068fb524455d9467 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='ISO-8859-1' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1344676 -->
+<!-- English Revision: 1344676:1500043 (outdated) -->
 <!-- French translation by alain B, review by Vincent Deffontaines
        updated by Lucien GENTIS -->
 
index 6190ec089d139ded3ee69018c9ec2297ca0d4511..724f0f951ab53e016ef22283362f56943e6bd5c3 100644 (file)
@@ -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.ja.xsl"?>
-<!-- English Revision: 420990:1344676 (outdated) -->
+<!-- English Revision: 420990:1500043 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index a3b3117dec7c250da053f84b851531e35e1b6a3c..ce80c6859322910b3a356965715457887ece99bd 100644 (file)
@@ -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: 420990:1344676 (outdated) -->
+<!-- English Revision: 420990:1500043 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 02dd49e4b06471d854e2449ac1bd38d8d10be7c1..fdb7b6bac85b5f5bab476420482d272c7ee5dcf8 100644 (file)
@@ -9,9 +9,9 @@
   <variants>
     <variant outdated="yes">de</variant>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
-    <variant>tr</variant>
+    <variant outdated="yes">tr</variant>
   </variants>
 </metafile>
index 62f6edad6aff7135fa9f73f2d5ae5b07ac336bb8..c45a782cc4f65e79fdb5a13a461ae96678c2d044 100644 (file)
@@ -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.tr.xsl"?>
-<!-- English Revision: 1344676 -->
+<!-- English Revision: 1344676:1500043 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.gen.tr>
    Reviewed by: Orhan Berent <berent belgeler.gen.tr>