diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2008-08-05 19:33:16 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2008-08-05 19:33:16 +0000 |
commit | ca600e1e5594540d88060af4a4ac3eaa1307fed8 (patch) | |
tree | 1e11216dbd43207db7eb28b60ad873f4dee98e8b /www/webalizer/files | |
parent | 9c5be3a61f0b61c1d050ba2ca1c90060e83a8f3d (diff) | |
download | ports-ca600e1e5594540d88060af4a4ac3eaa1307fed8.tar.gz ports-ca600e1e5594540d88060af4a4ac3eaa1307fed8.zip |
Notes
Diffstat (limited to 'www/webalizer/files')
-rw-r--r-- | www/webalizer/files/uk-lang.h | 11 | ||||
-rw-r--r-- | www/webalizer/files/uk-output.c | 20 |
2 files changed, 31 insertions, 0 deletions
diff --git a/www/webalizer/files/uk-lang.h b/www/webalizer/files/uk-lang.h new file mode 100644 index 000000000000..d1ae12c7a316 --- /dev/null +++ b/www/webalizer/files/uk-lang.h @@ -0,0 +1,11 @@ +--- lang.h.orig Thu May 17 19:47:24 2001 ++++ lang.h Thu May 17 16:42:11 2001 +@@ -124,6 +124,8 @@ + extern char *msg_mtot_ms ; + extern char *msg_mtot_th ; + extern char *msg_mtot_tf ; ++extern char *msg_mtot_tp ; ++extern char *msg_mtot_tv ; + extern char *msg_mtot_tx ; + extern char *msg_mtot_us ; + extern char *msg_mtot_ur ; diff --git a/www/webalizer/files/uk-output.c b/www/webalizer/files/uk-output.c new file mode 100644 index 000000000000..40edb2d4e7f7 --- /dev/null +++ b/www/webalizer/files/uk-output.c @@ -0,0 +1,20 @@ +--- output.c.orig 2008-07-01 00:04:39.000000000 +0200 ++++ output.c 2008-08-05 21:30:12.000000000 +0200 +@@ -534,13 +534,13 @@ + "<TD ALIGN=right COLSPAN=2><FONT SIZE=\"-1\"><B>%llu</B>" \ + "</FONT></TD></TR>\n",msg_mtot_tf,t_file); + /* Total Pages */ +- fprintf(out_fp,"<TR><TD WIDTH=380><FONT SIZE=\"-1\">%s %s</FONT></TD>\n" \ ++ fprintf(out_fp,"<TR><TD WIDTH=380><FONT SIZE=\"-1\">%s</FONT></TD>\n" \ + "<TD ALIGN=right COLSPAN=2><FONT SIZE=\"-1\"><B>%llu</B>" \ +- "</FONT></TD></TR>\n",msg_h_total, msg_h_pages, t_page); ++ "</FONT></TD></TR>\n",msg_mtot_tp, t_page); + /* Total Visits */ +- fprintf(out_fp,"<TR><TD WIDTH=380><FONT SIZE=\"-1\">%s %s</FONT></TD>\n" \ ++ fprintf(out_fp,"<TR><TD WIDTH=380><FONT SIZE=\"-1\">%s</FONT></TD>\n" \ + "<TD ALIGN=right COLSPAN=2><FONT SIZE=\"-1\"><B>%llu</B>" \ +- "</FONT></TD></TR>\n",msg_h_total, msg_h_visits, t_visit); ++ "</FONT></TD></TR>\n",msg_mtot_tv, t_visit); + /* Total XFer */ + fprintf(out_fp,"<TR><TD WIDTH=380><FONT SIZE=\"-1\">%s</FONT></TD>\n" \ + "<TD ALIGN=right COLSPAN=2><FONT SIZE=\"-1\"><B>%.0f</B>" \ |