diff options
author | Daniel Gruno <humbedooh@apache.org> | 2012-05-27 22:44:37 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2012-05-27 22:44:37 +0200 |
commit | 2e5342935254424d5398f86a0322a75d6052a347 (patch) | |
tree | 3e86a86a6d2898f7651ab7ec1da5571105b562dd /docs/manual | |
parent | Make apxs use LDFLAGS from config_vars.mk in addition to CFLAGS and CPPFLAGS (diff) | |
download | apache2-2e5342935254424d5398f86a0322a75d6052a347.tar.xz apache2-2e5342935254424d5398f86a0322a75d6052a347.zip |
xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1343095 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r-- | docs/manual/developer/modguide.html.en | 13 | ||||
-rw-r--r-- | docs/manual/howto/auth.html.fr | 10 | ||||
-rw-r--r-- | docs/manual/howto/auth.xml.meta | 2 | ||||
-rw-r--r-- | docs/manual/howto/cgi.html.fr | 7 | ||||
-rw-r--r-- | docs/manual/howto/cgi.xml.meta | 2 | ||||
-rw-r--r-- | docs/manual/howto/htaccess.html.fr | 8 | ||||
-rw-r--r-- | docs/manual/howto/htaccess.xml.meta | 2 | ||||
-rw-r--r-- | docs/manual/mod/core.html.fr | 13 | ||||
-rw-r--r-- | docs/manual/mod/core.xml.meta | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_authn_core.html.fr | 4 | ||||
-rw-r--r-- | docs/manual/mod/mod_authn_core.xml.meta | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_authn_file.html.fr | 10 | ||||
-rw-r--r-- | docs/manual/mod/mod_authn_file.xml.meta | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_authnz_ldap.html.fr | 10 | ||||
-rw-r--r-- | docs/manual/mod/mod_authnz_ldap.xml.meta | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_lua.html.fr | 4 | ||||
-rw-r--r-- | docs/manual/mod/mod_lua.xml.meta | 2 | ||||
-rw-r--r-- | docs/manual/suexec.html.fr | 31 | ||||
-rw-r--r-- | docs/manual/suexec.xml.ja | 2 | ||||
-rw-r--r-- | docs/manual/suexec.xml.ko | 2 | ||||
-rw-r--r-- | docs/manual/suexec.xml.tr | 2 |
21 files changed, 80 insertions, 52 deletions
diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en index 5a5e449df7..dc1b0f402a 100644 --- a/docs/manual/developer/modguide.html.en +++ b/docs/manual/developer/modguide.html.en @@ -565,11 +565,14 @@ POST data is four simple lines: <pre class="prettyprint lang-c"> -<a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__apr__tables.html#gad7ea82d6608a4a633fc3775694ab71e4">apr_table_t</a> *GET; -<a href="http://ci.apache.org/projects/httpd/trunk/doxygen/structapr__array__header__t.html">apr_array_header_t</a> *POST; - -<a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__SCRIPT.html#gaed25877b529623a4d8f99f819ba1b7bd">ap_args_to_table</a>(r, &GET); -<a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__DAEMON.html#ga9d426b6382b49754d4f87c55f65af202">ap_parse_form_data</a>(r, NULL, &POST, -1, 8192); +<a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__apr__tables.html#gad7ea82d6608a4a633fc3775694ab71e4">apr_table_t</a> *GET; <em> +</em><a href="http://ci.apache.org/projects/httpd/trunk/doxygen/structapr__array__header__t.html">apr_array_header_t</a>*POST; +<em> +</em> +<a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__SCRIPT.html#gaed25877b529623a4d8f99f819ba1b7bd"> +ap_args_to_table</a>(r, &GET); <em> +</em><a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__DAEMON.html#ga9d426b6382b49754d4f87c55f65af202"> +ap_parse_form_data</a>(r, NULL, &POST, -1, 8192); </pre> diff --git a/docs/manual/howto/auth.html.fr b/docs/manual/howto/auth.html.fr index 7fec4394b5..b4696e66ec 100644 --- a/docs/manual/howto/auth.html.fr +++ b/docs/manual/howto/auth.html.fr @@ -27,8 +27,6 @@ <a href="../ko/howto/auth.html" hreflang="ko" rel="alternate" title="Korean"> ko </a> | <a href="../tr/howto/auth.html" hreflang="tr" rel="alternate" title="Türkçe"> tr </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>L'authentification est un processus qui vous permet de vérifier qu'une personne est bien celle qu'elle prétend être. L'autorisation @@ -593,11 +591,9 @@ autorisation</a></h2> <pre class="prettyprint lang-config"> <RequireAll> Require all granted - <RequireNone> - Require ip 192.168.205 - Require host phishers.example.com moreidiots.example - Require host ke - </RequireNone> + Require not ip 192.168.205 + Require not host phishers.example.com moreidiots.example + Require not host ke </RequireAll> </pre> diff --git a/docs/manual/howto/auth.xml.meta b/docs/manual/howto/auth.xml.meta index 641334dcd6..b0b2e95d63 100644 --- a/docs/manual/howto/auth.xml.meta +++ b/docs/manual/howto/auth.xml.meta @@ -8,7 +8,7 @@ <variants> <variant>en</variant> - <variant outdated="yes">fr</variant> + <variant>fr</variant> <variant outdated="yes">ja</variant> <variant outdated="yes">ko</variant> <variant outdated="yes">tr</variant> diff --git a/docs/manual/howto/cgi.html.fr b/docs/manual/howto/cgi.html.fr index a05380d398..73208aee35 100644 --- a/docs/manual/howto/cgi.html.fr +++ b/docs/manual/howto/cgi.html.fr @@ -26,8 +26,6 @@ <a href="../ja/howto/cgi.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> | <a href="../ko/howto/cgi.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p> </div> -<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version - anglaise pour les changements récents.</div> </div> <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#intro">Introduction</a></li> <li><img alt="" src="../images/down.gif" /> <a href="#configuring">Configurer Apache pour autoriser CGI</a></li> @@ -522,8 +520,11 @@ print "Hello, World."; <pre class="prettyprint lang-perl"> #!/usr/bin/perl +use strict; +use warnings; + print "Content-type: text/html\n\n"; -foreach $key (keys %ENV) { +foreach my $key (keys %ENV) { print "$key --> $ENV{$key}<br>"; } </pre> diff --git a/docs/manual/howto/cgi.xml.meta b/docs/manual/howto/cgi.xml.meta index 73144f6d4d..3070905d45 100644 --- a/docs/manual/howto/cgi.xml.meta +++ b/docs/manual/howto/cgi.xml.meta @@ -8,7 +8,7 @@ <variants> <variant>en</variant> - <variant outdated="yes">fr</variant> + <variant>fr</variant> <variant outdated="yes">ja</variant> <variant outdated="yes">ko</variant> </variants> diff --git a/docs/manual/howto/htaccess.html.fr b/docs/manual/howto/htaccess.html.fr index 7474530de9..75382fdec7 100644 --- a/docs/manual/howto/htaccess.html.fr +++ b/docs/manual/howto/htaccess.html.fr @@ -27,8 +27,6 @@ <a href="../ko/howto/htaccess.html" hreflang="ko" rel="alternate" title="Korean"> ko </a> | <a href="../pt-br/howto/htaccess.html" hreflang="pt-br" rel="alternate" title="Português (Brasil)"> pt-br </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>Les fichiers <code>.htaccess</code> fournissent une méthode pour modifier la configuration du serveur au niveau de chaque répertoire.</p> @@ -225,8 +223,8 @@ Includes - SSI)</a></li> <div class="example"><h3>Section de votre fichier <code>httpd.conf</code></h3><pre class="prettyprint lang-config"> -<Directory /www/htdocs/example><br /> - AddType text/example .exm<br /> +<Directory /www/htdocs/example> + AddType text/example .exm </Directory> </pre> </div> @@ -304,7 +302,7 @@ Includes - SSI)</a></li> <pre class="prettyprint lang-config"> <Directory /www/htdocs> - Allowoverride All + AllowOverride All </Directory> <Location /> diff --git a/docs/manual/howto/htaccess.xml.meta b/docs/manual/howto/htaccess.xml.meta index aba40c04ac..a962e7243c 100644 --- a/docs/manual/howto/htaccess.xml.meta +++ b/docs/manual/howto/htaccess.xml.meta @@ -8,7 +8,7 @@ <variants> <variant>en</variant> - <variant outdated="yes">fr</variant> + <variant>fr</variant> <variant outdated="yes">ja</variant> <variant outdated="yes">ko</variant> <variant outdated="yes">pt-br</variant> diff --git a/docs/manual/mod/core.html.fr b/docs/manual/mod/core.html.fr index e0480cc20e..aecb495906 100644 --- a/docs/manual/mod/core.html.fr +++ b/docs/manual/mod/core.html.fr @@ -31,8 +31,6 @@ <a href="../ja/mod/core.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> | <a href="../tr/mod/core.html" hreflang="tr" rel="alternate" title="Türkçe"> tr </a></p> </div> -<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version - anglaise pour les changements récents.</div> <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Fonctionnalités de base du serveur HTTP Apache toujours disponibles</td></tr> <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Core</td></tr></table> @@ -4362,6 +4360,17 @@ gestionnaire particulier</td></tr> </pre> + <p>Vous pouvez aussi utiliser cette directive pour associer un + gestionnaire à des fichiers possèdant une extension de nom de + fichier particulière. Par exemple :</p> + + <pre class="prettyprint lang-config"> +<FilesMatch \.php$> + SetHandler application/x-httpd-php +</FilesMatch> + </pre> + + <p>Vous pouvez écraser la définition antérieure d'une directive <code class="directive">SetHandler</code> en utilisant la valeur <code>None</code>.</p> diff --git a/docs/manual/mod/core.xml.meta b/docs/manual/mod/core.xml.meta index b9d96ee4c5..e78755527a 100644 --- a/docs/manual/mod/core.xml.meta +++ b/docs/manual/mod/core.xml.meta @@ -10,7 +10,7 @@ <variant outdated="yes">de</variant> <variant>en</variant> <variant outdated="yes">es</variant> - <variant outdated="yes">fr</variant> + <variant>fr</variant> <variant outdated="yes">ja</variant> <variant outdated="yes">tr</variant> </variants> diff --git a/docs/manual/mod/mod_authn_core.html.fr b/docs/manual/mod/mod_authn_core.html.fr index a04a79fc56..be1fcdcd9f 100644 --- a/docs/manual/mod/mod_authn_core.html.fr +++ b/docs/manual/mod/mod_authn_core.html.fr @@ -27,8 +27,6 @@ <p><span>Langues Disponibles: </span><a href="../en/mod/mod_authn_core.html" hreflang="en" rel="alternate" title="English"> en </a> | <a href="../fr/mod/mod_authn_core.html" title="Français"> fr </a></p> </div> -<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version - anglaise pour les changements récents.</div> <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Le noyau de l'authentification</td></tr> <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Base</td></tr> <tr><th><a href="module-dict.html#ModuleIdentifier">Identificateur de Module:</a></th><td>authn_core_module</td></tr> @@ -123,7 +121,7 @@ Alias /secure /webpages/secure AuthBasicProvider ldap-other-alias ldap-alias1 AuthType Basic - AuthName LDAP_Protected_Place + AuthName LDAP_Protected Place Require valid-user </Directory> </pre> diff --git a/docs/manual/mod/mod_authn_core.xml.meta b/docs/manual/mod/mod_authn_core.xml.meta index e7f54a0c05..de98254375 100644 --- a/docs/manual/mod/mod_authn_core.xml.meta +++ b/docs/manual/mod/mod_authn_core.xml.meta @@ -8,6 +8,6 @@ <variants> <variant>en</variant> - <variant outdated="yes">fr</variant> + <variant>fr</variant> </variants> </metafile> diff --git a/docs/manual/mod/mod_authn_file.html.fr b/docs/manual/mod/mod_authn_file.html.fr index af56a6a44e..994bc67b6d 100644 --- a/docs/manual/mod/mod_authn_file.html.fr +++ b/docs/manual/mod/mod_authn_file.html.fr @@ -29,8 +29,6 @@ <a href="../ja/mod/mod_authn_file.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> | <a href="../ko/mod/mod_authn_file.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p> </div> -<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version - anglaise pour les changements récents.</div> <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Authentification utilisateur à l'aide de fichiers texte</td></tr> <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Base</td></tr> @@ -95,12 +93,12 @@ passe</td></tr> <p>Le format du mot de passe chiffré dépend du frontal d'authentification utilisé (par exemple - <code class="module"><a href="../mod/mod_authn_basic.html">mod_authn_basic</a></code> ou - <code class="module"><a href="../mod/mod_authn_digest.html">mod_authn_digest</a></code>). Voir la documentation sur les + <code class="module"><a href="../mod/mod_auth_basic.html">mod_auth_basic</a></code> ou + <code class="module"><a href="../mod/mod_auth_digest.html">mod_auth_digest</a></code>). Voir la documentation sur les <a href="../misc/password_encryptions.html">Formats de mots de passe</a> pour plus de détails.</p> - <p>Pour <code class="module"><a href="../mod/mod_authn_basic.html">mod_authn_basic</a></code>, utilisez le programme + <p>Pour <code class="module"><a href="../mod/mod_auth_basic.html">mod_auth_basic</a></code>, utilisez le programme <code class="program"><a href="../programs/htpasswd.html">htpasswd</a></code> fourni avec la distribution binaire, mais que vous trouverez aussi dans le répertoire <code>src/support</code> de l'arborescence des sources. Voir sa <a href="../programs/htpasswd.html">page de manuel</a> pour plus de @@ -125,7 +123,7 @@ passe</td></tr> très longue ; dans ce cas, il vaut mieux utiliser les fichiers DBM avec la directive <code class="directive"><a href="../mod/mod_authn_dbm.html#authdbmuserfile">AuthDBMUserFile</a></code>.</p> - <p>Pour <code class="module"><a href="../mod/mod_authn_digest.html">mod_authn_digest</a></code>, vous devez utiliser + <p>Pour <code class="module"><a href="../mod/mod_auth_digest.html">mod_auth_digest</a></code>, vous devez utiliser le programme <code class="program"><a href="../programs/htdigest.html">htdigest</a></code>. Notez que vous ne pouvez pas mélanger des données utilisateur pour l'Authentification HTTP à base de condensé et des données pour diff --git a/docs/manual/mod/mod_authn_file.xml.meta b/docs/manual/mod/mod_authn_file.xml.meta index c6d32df082..636d190ee0 100644 --- a/docs/manual/mod/mod_authn_file.xml.meta +++ b/docs/manual/mod/mod_authn_file.xml.meta @@ -8,7 +8,7 @@ <variants> <variant>en</variant> - <variant outdated="yes">fr</variant> + <variant>fr</variant> <variant outdated="yes">ja</variant> <variant outdated="yes">ko</variant> </variants> diff --git a/docs/manual/mod/mod_authnz_ldap.html.fr b/docs/manual/mod/mod_authnz_ldap.html.fr index 113c70b5e6..f44e8bb9fd 100644 --- a/docs/manual/mod/mod_authnz_ldap.html.fr +++ b/docs/manual/mod/mod_authnz_ldap.html.fr @@ -27,8 +27,6 @@ <p><span>Langues Disponibles: </span><a href="../en/mod/mod_authnz_ldap.html" hreflang="en" rel="alternate" title="English"> en </a> | <a href="../fr/mod/mod_authnz_ldap.html" title="Français"> fr </a></p> </div> -<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version - anglaise pour les changements récents.</div> <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Permet d'utiliser un annuaire LDAP pour l'authentification HTTP de base.</td></tr> <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr> @@ -484,7 +482,7 @@ uniqueMember: cn=Elliot Rhodes, o=Example :</p> <pre class="prettyprint lang-config"> Require ldap-group cn=Employees, o-Example -AuthLDAPSubGroupDepth 1 +AuthLDAPMaxSubGroupDepth 1 </pre> @@ -789,9 +787,9 @@ AuthLDAPURL ldap://10.0.0.1:3268/?userPrincipalName?sub à <em>chaque</em> fichier <code>.htaccess</code> qui sera créé dans le site web :</p> <pre class="prettyprint lang-config"> -AuthLDAPURL "l'url" -AuthGroupFile <em>mon-fichier-de-groupes</em> -Require group <em>mon-fichier-de-groupes</em> +AuthLDAPURL "the url" +AuthGroupFile mygroupfile +Require group mygroupfile </pre> diff --git a/docs/manual/mod/mod_authnz_ldap.xml.meta b/docs/manual/mod/mod_authnz_ldap.xml.meta index 7a6a237d9a..4ec661a32d 100644 --- a/docs/manual/mod/mod_authnz_ldap.xml.meta +++ b/docs/manual/mod/mod_authnz_ldap.xml.meta @@ -8,6 +8,6 @@ <variants> <variant>en</variant> - <variant outdated="yes">fr</variant> + <variant>fr</variant> </variants> </metafile> diff --git a/docs/manual/mod/mod_lua.html.fr b/docs/manual/mod/mod_lua.html.fr index 64f826323b..68483ea241 100644 --- a/docs/manual/mod/mod_lua.html.fr +++ b/docs/manual/mod/mod_lua.html.fr @@ -144,11 +144,11 @@ function handle(r) if r.method == 'GET' then for k, v in pairs( r:parseargs() ) do - r:puts( string.format("%s: %s", k, v) ) + r:puts( string.format("%s: %s\n", k, v) ) end elseif r.method == 'POST' then for k, v in pairs( r:parsebody() ) do - r:puts( string.format("%s: %s", k, v) ) + r:puts( string.format("%s: %s\n", k, v) ) end else r:puts("unknown HTTP method " .. r.method) diff --git a/docs/manual/mod/mod_lua.xml.meta b/docs/manual/mod/mod_lua.xml.meta index 8fc1a0efdf..b55c7710e9 100644 --- a/docs/manual/mod/mod_lua.xml.meta +++ b/docs/manual/mod/mod_lua.xml.meta @@ -8,6 +8,6 @@ <variants> <variant>en</variant> - <variant outdated="yes">fr</variant> + <variant>fr</variant> </variants> </metafile> diff --git a/docs/manual/suexec.html.fr b/docs/manual/suexec.html.fr index 4e47aa25bc..43efd4eeb6 100644 --- a/docs/manual/suexec.html.fr +++ b/docs/manual/suexec.html.fr @@ -389,6 +389,21 @@ de suEXEC</a></li> configuration de la compilation d'Apache) accepte votre demande d'utilisation de la fonctionnalité suEXEC.</dd> + <dt><code>--enable-suexec-capabilities</code></dt> + + <dd><strong>Spécifique à Linux :</strong> Normalement, le binaire + <code>suexec</code> est installé en mode "setuid/setgid root", ce + qui lui permet de s'exécuter avec la totalité des privilèges de + l'utilisateur root. Avec cette option, le binaire + <code>suexec</code> sera installé avec seulement les bits + setuid/setgid "capability" définis, ce qui constitue un + sous-ensemble des provilèges de root pour les opérations de + suexec. Notez que dans ce mode, le binaire <code>suexec</code> ne + sera pas en mesure d'écrire dans un fichier journal ; il est donc + recommandé dans ce mode d'utiliser les options + <code>--with-suexec-syslog --without-suexec-logfile</code>, afin + d'utiliser la jounalisation syslog.</dd> + <dt><code>--with-suexec-bin=<em>PATH</em></code></dt> <dd>Le chemin du binaire <code>suexec</code> doit être codé en @@ -463,6 +478,13 @@ de suEXEC</a></li> répertoire standard des fichiers journaux défini par <code>--logfiledir</code></dd> + <dt><code>--with-suexec-syslog</code></dt> + + <dd>Avec cette option, suexec enregistrera les messages d'erreurs + et d'informations dans le journal syslog. Cette option doit être + utilisée conjointement avec l'option + <code>--without-suexec-logfile</code>.</dd> + <dt><code>--with-suexec-safepath=<em>PATH</em></code></dt> <dd>Cette option permet de définir une variable d'environnement @@ -592,10 +614,15 @@ de suEXEC</a></h2> <p>Le conteneur suEXEC va écrire ses informations de journalisation dans le fichier défini par l'option de compilation - <code>--with-suexec-logfile</code> comme indiqué plus haut. Si vous + <code>--with-suexec-logfile</code> comme indiqué plus haut, + ou vers syslog si l'option <code>--with-suexec-syslog</code> est + utilisée. Si vous pensez avoir configuré et installé correctement le conteneur, consultez ce journal, ainsi que le journal des erreurs du serveur - afin de déterminer l'endroit où vous avez fait fausse route.</p> + afin de déterminer l'endroit où vous avez fait fausse + route. Si vous utilisez une distribution binaire, la commande + <code>"suexec -V"</code> vous permet de déterminer quelles options + ont été utilisées pour compiler suexec.</p> </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div> <div class="section"> diff --git a/docs/manual/suexec.xml.ja b/docs/manual/suexec.xml.ja index 48c926a387..03fdc53388 100644 --- a/docs/manual/suexec.xml.ja +++ b/docs/manual/suexec.xml.ja @@ -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: 655869:1330883 (outdated) --> +<!-- English Revision: 655869:1342078 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more diff --git a/docs/manual/suexec.xml.ko b/docs/manual/suexec.xml.ko index c2f2d54b4b..ebbe583292 100644 --- a/docs/manual/suexec.xml.ko +++ b/docs/manual/suexec.xml.ko @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="EUC-KR" ?> <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="./style/manual.ko.xsl"?> -<!-- English Revision: 105989:1330883 (outdated) --> +<!-- English Revision: 105989:1342078 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more diff --git a/docs/manual/suexec.xml.tr b/docs/manual/suexec.xml.tr index 9e0d524b95..f198111db8 100644 --- a/docs/manual/suexec.xml.tr +++ b/docs/manual/suexec.xml.tr @@ -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: 1038591:1330883 (outdated) --> +<!-- English Revision: 1038591:1342078 (outdated) --> <!-- ===================================================== Translated by: Nilgün Belma Bugüner <nilgun belgeler.org> Reviewed by: Orhan Berent <berent belgeler.org> |