]> git.ipfire.org Git - thirdparty/AWStats.git/commitdiff
Updated documentation
authoreldy <>
Tue, 9 Sep 2003 11:12:45 +0000 (11:12 +0000)
committereldy <>
Tue, 9 Sep 2003 11:12:45 +0000 (11:12 +0000)
wwwroot/cgi-bin/lang/awstats-es.txt
wwwroot/cgi-bin/lang/awstats-es_cat.txt
wwwroot/cgi-bin/plugins/example/example.pm
wwwroot/cgi-bin/plugins/hostinfo.pm
wwwroot/cgi-bin/plugins/urlalias.pm

index b952c68b2e464bafe3d15e7a46b4fb1e51d53b27..1ccb96eb5326ae6ba767ef7cd29c150f81f33ad2 100644 (file)
@@ -1,4 +1,4 @@
-# Spanish message file
+# Spanish message file (Temu-BCN temujinnn@hotmail.com)
 # $Revision$ - $Date$
 message0=Desconocido
 message1=de dirección IP desconocida
@@ -138,4 +138,19 @@ message134=Extra/Marketing
 message135=Tamaños de pantalla
 message136=Ataques de Gusano/Virus
 message137=Añadido a favoritos
-message138=Días del mes
\ No newline at end of file
+message138=Días del mes
+message139=Misceláneos
+message140=Buscadores con soporte Java
+message141=Buscadores con soporte Macromedia Director
+message142=Buscadores con soporte Flash
+message143=Buscadores con soporte de reproductor Real audio
+message144=Buscadores con soporte de reproductor Quicktime audio
+message145=Buscadores con soporte de reproductor Windows Media audio
+message146=Buscadores con soporte PDF
+message147=Códigos de error SMTP
+message148=Países
+message149=Correos
+message150=Tamaño
+message151=Primero
+message152=Ultimo
+message153=Excluir Filtro
\ No newline at end of file
index ef237b15a80cf810f7ad826fa902a722a07fb237..18438d694cac9110a9fd3d13e3156e448d50a78e 100644 (file)
@@ -1,4 +1,4 @@
-# Spanish (catalan) message file
+# Spanish (catalan) message file (Temu-BCN temujinnn@hotmail.com)
 # $Revision$ - $Date$
 message0=Desconegut
 message1=d'adreça IP desconeguda
@@ -106,7 +106,7 @@ message102=Total
 message103=diferents paraules clau
 message104=Pàgina d'entrada
 message105=Codi
-message106=Mida mitjà
+message106=Volum mitjà
 message107=Enllaços des d'un grup de notícies
 message108=KB
 message109=MB
@@ -138,4 +138,19 @@ message134=Extra/Marketing
 message135=Mides de pantalla
 message136=Atacs de Cucs/Virus
 message137=Inclosos a favorits
-message138=Dies del mes
\ No newline at end of file
+message138=Dies del mes
+message139=Miscel·lanis
+message140=Cercadors amb suport Java
+message141=Cercadors amb suport Macromedia Director
+message142=Cercadors amb suport Flash
+message143=Cercadors amb suport de reproducció Real audio
+message144=Cercadors amb suport de reproducció Quicktime audio
+message145=Cercadors amb suport de reproducció Windows Media audio
+message146=Cercadors amb suport PDF
+message147=Codis d'error SMTP
+message148=Països
+message149=Correus
+message150=Volum
+message151=Primer
+message152=Últim
+message153=Excloure filtre
\ No newline at end of file
index 12855d40eafcba49b48da27e40481d7f9c731bc3..461201a1e588fc139b275221feb628ebbaa2ebb4 100644 (file)
@@ -43,7 +43,7 @@ $PluginVariable1
 #-----------------------------------------------------------------------------
 # PLUGIN FUNCTION: Init_pluginname
 #-----------------------------------------------------------------------------
-sub Init_timezone {
+sub Init_example {
        my $InitParams=shift;
        my $checkversion=&Check_Plugin_Version($PluginNeedAWStatsVersion);
 
@@ -85,12 +85,27 @@ sub AddHTMLBodyHeader_example {
        # ----->
 }
 
+#-----------------------------------------------------------------------------
+# PLUGIN FUNCTION: ShowInfoHost_pluginname
+# UNIQUE: NO (Several plugins using this function can be loaded)
+# Function called to add additionnal columns to the Hosts report.
+# This function is called when building rows of the report (One call for each
+# row). So it allows you to add a column in report, for example with code :
+#   print "<TD>This is a new cell</TD>";
+# Parameters: Host name or ip
+#-----------------------------------------------------------------------------
+sub ShowInfoHost_hostinfo {
+       # <-----
+       # PERL CODE HERE
+       # ----->
+}
+
 #-----------------------------------------------------------------------------
 # PLUGIN FUNCTION: ShowPagesAddField_pluginname
 # UNIQUE: NO (Several plugins using this function can be loaded)
-# Function called when building the row of the output report
-# of TOP Pages-URL (One call for each row). So it allows you to add a column
-# in these report. For example with the code :
+# Function used to add additionnal columns to the Top Pages-URL report.
+# This function is called when building rows of the report (One call for each
+# row). So it allows you to add a column in report, for example with code :
 #   print "<TD>This is a new cell</TD>";
 #-----------------------------------------------------------------------------
 sub ShowPagesAddField_example {
@@ -103,6 +118,8 @@ sub ShowPagesAddField_example {
 # PLUGIN FUNCTION: ShowInfoURL_pluginname
 # UNIQUE: NO (Several plugins using this function can be loaded)
 # Function called to add additionnal information for URLs in URLs' report.
+# This function is called after writing the URL value in the URL cell of the
+# Top Pages-URL report.
 # Parameters: URL
 #-----------------------------------------------------------------------------
 sub ShowInfoURL_example {
@@ -114,7 +131,10 @@ sub ShowInfoURL_example {
 #-----------------------------------------------------------------------------
 # PLUGIN FUNCTION: ShowInfoUser_pluginname
 # UNIQUE: NO (Several plugins using this function can be loaded)
-# Function called to add additionnal information for Users in users' report.
+# Function called to add additionnal columns to Authenticated users report.
+# This function is called when building rows of the report (One call for each
+# row). So it allows you to add a column in report, for example with code :
+#   print "<TD>This is a new cell</TD>";
 # Parameters: User
 #-----------------------------------------------------------------------------
 sub ShowInfoUser_example {
index e90db25b6092041977e4ff2b1c9cc1818fd6324e..27ab644aa3d7d4672347e233976b0a825c23d0b6 100644 (file)
@@ -81,7 +81,10 @@ EOF
 #-----------------------------------------------------------------------------
 # PLUGIN FUNCTION: ShowInfoHost_pluginname
 # UNIQUE: NO (Several plugins using this function can be loaded)
-# Function called to add additionnal information for Users in users' report.
+# Function called to add additionnal columns to the Hosts report.
+# This function is called when building rows of the report (One call for each
+# row). So it allows you to add a column in report, for example with code :
+#   print "<TD>This is a new cell</TD>";
 # Parameters: Host name or ip
 #-----------------------------------------------------------------------------
 sub ShowInfoHost_hostinfo {
index 026005769d90a799fe3c4f1ca4e027371e029451..77830cfe4b151353729d6e401af47a82c600d008 100644 (file)
@@ -59,9 +59,11 @@ sub Init_urlalias {
 
 
 #-----------------------------------------------------------------------------
-# PLUGIN FUNCTION: ReplaceURL_pluginname
+# PLUGIN FUNCTION: ShowInfoURL_pluginname
 # UNIQUE: NO (Several plugins using this function can be loaded)
 # Function called to add additionnal information for URLs in URLs' report.
+# This function is called after writing the URL value in the URL cell of the
+# Top Pages-URL report.
 # Parameters: URL
 #-----------------------------------------------------------------------------
 sub ShowInfoURL_urlalias {