From: eldy <> Date: Tue, 9 Sep 2003 11:12:45 +0000 (+0000) Subject: Updated documentation X-Git-Tag: AWSTATS_WEBMIN_1_0_RELEASE~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86707dfa793d96479716bb79f894629fdc2e8cf6;p=thirdparty%2FAWStats.git Updated documentation --- diff --git a/wwwroot/cgi-bin/lang/awstats-es.txt b/wwwroot/cgi-bin/lang/awstats-es.txt index b952c68b..1ccb96eb 100644 --- a/wwwroot/cgi-bin/lang/awstats-es.txt +++ b/wwwroot/cgi-bin/lang/awstats-es.txt @@ -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 diff --git a/wwwroot/cgi-bin/lang/awstats-es_cat.txt b/wwwroot/cgi-bin/lang/awstats-es_cat.txt index ef237b15..18438d69 100644 --- a/wwwroot/cgi-bin/lang/awstats-es_cat.txt +++ b/wwwroot/cgi-bin/lang/awstats-es_cat.txt @@ -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 diff --git a/wwwroot/cgi-bin/plugins/example/example.pm b/wwwroot/cgi-bin/plugins/example/example.pm index 12855d40..461201a1 100644 --- a/wwwroot/cgi-bin/plugins/example/example.pm +++ b/wwwroot/cgi-bin/plugins/example/example.pm @@ -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 "This is a new cell"; +# 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 "This is a new cell"; #----------------------------------------------------------------------------- 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 "This is a new cell"; # Parameters: User #----------------------------------------------------------------------------- sub ShowInfoUser_example { diff --git a/wwwroot/cgi-bin/plugins/hostinfo.pm b/wwwroot/cgi-bin/plugins/hostinfo.pm index e90db25b..27ab644a 100644 --- a/wwwroot/cgi-bin/plugins/hostinfo.pm +++ b/wwwroot/cgi-bin/plugins/hostinfo.pm @@ -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 "This is a new cell"; # Parameters: Host name or ip #----------------------------------------------------------------------------- sub ShowInfoHost_hostinfo { diff --git a/wwwroot/cgi-bin/plugins/urlalias.pm b/wwwroot/cgi-bin/plugins/urlalias.pm index 02600576..77830cfe 100644 --- a/wwwroot/cgi-bin/plugins/urlalias.pm +++ b/wwwroot/cgi-bin/plugins/urlalias.pm @@ -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 {