From: Daniel Gruno Date: Mon, 24 Sep 2012 10:42:27 +0000 (+0000) Subject: xforms X-Git-Tag: 2.4.4~561 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd9de96c584a2be712d0f98ce370014cd5485477;p=apache xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1389283 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/hooks.html.en b/docs/manual/developer/hooks.html.en index a5539dd364..7d46898ec5 100644 --- a/docs/manual/developer/hooks.html.en +++ b/docs/manual/developer/hooks.html.en @@ -64,10 +64,10 @@ This is declared as follows:

-        APR_HOOK_STRUCT(
-          APR_HOOK_LINK(do_something)
-          ...
-        )
+APR_HOOK_STRUCT(
+  APR_HOOK_LINK(do_something)
+  ...
+)
       
@@ -93,11 +93,11 @@ something like this:

-          void ap_run_do_something(request_rec *r, int n)
-          {
-            ...
-            do_something(r, n);
-          }
+void ap_run_do_something(request_rec *r, int n)
+{
+    ...
+    do_something(r, n);
+}
         
@@ -139,10 +139,10 @@ like so:

-        int n, ret;
-        request_rec *r;
+int n, ret;
+request_rec *r;
 
-        ret=ap_run_do_something(r, n);
+ret=ap_run_do_something(r, n);
       
@@ -157,11 +157,11 @@ of the correct type:

-        static int my_something_doer(request_rec *r, int n)
- { - ... - return OK; - } +static int my_something_doer(request_rec *r, int n)
+{ + ... + return OK; +}
@@ -172,16 +172,16 @@ structure:

-        static void my_register_hooks()
-        {
-          ap_hook_do_something(my_something_doer, NULL, NULL, APR_HOOK_MIDDLE);
-        }
-
-        mode MODULE_VAR_EXPORT my_module =
-        {
-          ...
-          my_register_hooks       /* register hooks */
-        };
+static void my_register_hooks()
+{
+    ap_hook_do_something(my_something_doer, NULL, NULL, APR_HOOK_MIDDLE);
+}
+
+mode MODULE_VAR_EXPORT my_module =
+{
+    ...
+    my_register_hooks       /* register hooks */
+};
       
@@ -216,12 +216,12 @@ before we do, then we'd hook as follows:

-        static void register_hooks()
-        {
-          static const char * const aszPre[] = { "mod_xyz.c", "mod_abc.c", NULL };
+static void register_hooks()
+{
+    static const char * const aszPre[] = { "mod_xyz.c", "mod_abc.c", NULL };
 
-          ap_hook_do_something(my_something_doer, aszPre, NULL, APR_HOOK_MIDDLE);
-        }
+    ap_hook_do_something(my_something_doer, aszPre, NULL, APR_HOOK_MIDDLE);
+}
       
diff --git a/docs/manual/developer/request.html.en b/docs/manual/developer/request.html.en index 7b18be2fa4..8ef88d90cc 100644 --- a/docs/manual/developer/request.html.en +++ b/docs/manual/developer/request.html.en @@ -151,17 +151,17 @@

Needs Documentation. Code is:

-        if ((access_status = ap_run_access_checker(r)) != 0) {
-            return decl_die(access_status, "check access", r);
-        }
+if ((access_status = ap_run_access_checker(r)) != 0) {
+    return decl_die(access_status, "check access", r);
+}
 
-        if ((access_status = ap_run_check_user_id(r)) != 0) {
-            return decl_die(access_status, "check user", r);
-        }
+if ((access_status = ap_run_check_user_id(r)) != 0) {
+    return decl_die(access_status, "check user", r);
+}
 
-        if ((access_status = ap_run_auth_checker(r)) != 0) {
-            return decl_die(access_status, "check authorization", r);
-        }
+if ((access_status = ap_run_auth_checker(r)) != 0) {
+    return decl_die(access_status, "check authorization", r);
+}
     
top
diff --git a/docs/manual/install.html.es b/docs/manual/install.html.es index eea48a927a..cf06fd269c 100644 --- a/docs/manual/install.html.es +++ b/docs/manual/install.html.es @@ -67,7 +67,7 @@ directorios
  • Comprobar que la instalación funciona
  • Actualizar una instalación -prrevia
  • +previa

    Consulte también

    top
    @@ -370,7 +370,7 @@ funciona
    top

    Actualizar una instalación -prrevia

    +previa

    El primer paso para actualizar una instalación anterior es leer las especificaciones de la versión y el fichero diff --git a/docs/manual/install.html.fr b/docs/manual/install.html.fr index 52f2e88b90..dcf5c173f2 100644 --- a/docs/manual/install.html.fr +++ b/docs/manual/install.html.fr @@ -29,8 +29,6 @@  ko  |  tr 

    -
    Cette traduction peut être périmée. Vérifiez la version - anglaise pour les changements récents.

    Ce document couvre l'installation et la compilation du serveur @@ -384,7 +382,7 @@ $ tar xvf httpd-NN.tar sortie de la nouvelle version et le fichier CHANGES dans la distribution des sources afin de déceler toutes les modifications qui pourraient affecter votre site. Lors d'un changement majeur de version - (par exemple de 2.0 à 2.2 ou de 2.2 à 2.3), + (par exemple de 2.0 à 2.2 ou de 2.2 à 2.4), il y aura certainement des différences importantes quant à la configuration de la compilation et de l'exécution qui nécessiteront des ajustements manuels. Tous les diff --git a/docs/manual/install.xml.meta b/docs/manual/install.xml.meta index de3fcaf615..6a8403bc30 100644 --- a/docs/manual/install.xml.meta +++ b/docs/manual/install.xml.meta @@ -10,7 +10,7 @@ de en es - fr + fr ja ko tr diff --git a/docs/manual/invoking.html.fr b/docs/manual/invoking.html.fr index b2723acb45..2d0c9a6568 100644 --- a/docs/manual/invoking.html.fr +++ b/docs/manual/invoking.html.fr @@ -29,14 +29,10 @@  ko  |  tr 

    -
    Cette traduction peut être périmée. Vérifiez la version - anglaise pour les changements récents.

    Apache est habituellement lancé en tant que service - sous Windows NT, 2000 et XP, ou comme application en mode console sous - Windows 9x et ME. Pour plus de détails, voir Démarrer Apache en tant que service - et Démarrer Apache comme - Application en mode console.

    + sous Windows NT, 2000, XP, Vista et Seven. Pour plus de détails, voir Démarrer Apache en tant + que service.

    Sous Unix, le programme httpd est lancé en mode démon et s'exécute de manière permanente en diff --git a/docs/manual/invoking.xml.meta b/docs/manual/invoking.xml.meta index 6919b9d87c..4c6a7a9766 100644 --- a/docs/manual/invoking.xml.meta +++ b/docs/manual/invoking.xml.meta @@ -10,7 +10,7 @@ de en es - fr + fr ja ko tr