Fixed version strings.

Added AUR_VERSION to config file, so now we should only need to
change one location. KISS ftw.

Signed-off-by: tardo <tardo@nagi-fanboi.net>
This commit is contained in:
tardo 2007-09-29 22:45:30 -04:00 committed by Paul Mattal
parent 6e49512b4e
commit 881b921eb3
10 changed files with 15 additions and 14 deletions

View file

@ -155,6 +155,6 @@ if (isset($_COOKIE["AURSID"])) {
echo " </div>"; echo " </div>";
echo "</div>"; echo "</div>";
html_footer("\$Id$"); html_footer(AUR_VERSION);
# vim: ts=2 sw=2 noet ft=php # vim: ts=2 sw=2 noet ft=php
?> ?>

View file

@ -12,6 +12,6 @@ print "<p>\n";
print __("If this problem persists, please contact the site administrator."); print __("If this problem persists, please contact the site administrator.");
print "</p>\n"; print "</p>\n";
html_footer("\$Id$"); html_footer(AUR_VERSION);
# vim: ts=2 sw=2 noet ft=php # vim: ts=2 sw=2 noet ft=php
?> ?>

View file

@ -358,6 +358,6 @@ echo "</div>\n";
# End Table 1 # End Table 1
echo " </div>"; echo " </div>";
echo "</div>"; echo "</div>";
html_footer("<b>Version 1.4.0</b>"); html_footer(AUR_VERSION);
# vim: ts=2 sw=2 noet ft=php # vim: ts=2 sw=2 noet ft=php
?> ?>

View file

@ -22,6 +22,6 @@ if (isset($_COOKIE["AURSID"])) {
header('Location: index.php'); header('Location: index.php');
exit; exit;
html_footer("\$Id$"); html_footer(AUR_VERSION);
# vim: ts=2 sw=2 noet ft=php # vim: ts=2 sw=2 noet ft=php
?> ?>

View file

@ -600,6 +600,6 @@ if (isset($_REQUEST["do_Flag"])) {
} }
html_footer("\$Id$"); html_footer(AUR_VERSION);
# vim: ts=2 sw=2 noet ft=php # vim: ts=2 sw=2 noet ft=php
?> ?>

View file

@ -27,7 +27,7 @@ if (isset($_COOKIE["AURSID"])) {
if (!$atype) { if (!$atype) {
print __("You must be logged in before you can edit package information."); print __("You must be logged in before you can edit package information.");
print "<br />\n"; print "<br />\n";
html_footer($svn_idstr); html_footer(AUR_VERSION);
exit(); exit();
} }
@ -36,7 +36,7 @@ if (!$atype) {
if (!$_REQUEST["ID"]) { if (!$_REQUEST["ID"]) {
print __("Missing package ID."); print __("Missing package ID.");
print "<br />\n"; print "<br />\n";
html_footer($svn_idstr); html_footer(AUR_VERSION);
} }
@ -59,7 +59,7 @@ if ($_REQUEST["del_Comment"]) {
print __("Missing comment ID.")."<br />\n"; print __("Missing comment ID.")."<br />\n";
} }
pkgdetails_link($_REQUEST["ID"]); pkgdetails_link($_REQUEST["ID"]);
html_footer($svn_idstr); html_footer(AUR_VERSION);
exit(); exit();
} }
@ -120,7 +120,7 @@ if ($_REQUEST["add_Comment"]) {
print "<input type='reset' value=\"".__("Reset")."\">\n"; print "<input type='reset' value=\"".__("Reset")."\">\n";
print "</form>\n"; print "</form>\n";
} }
html_footer($svn_idstr); html_footer(AUR_VERSION);
exit(); exit();
} }
@ -171,13 +171,13 @@ if ($_REQUEST["change_Category"]) {
print "</form>\n"; print "</form>\n";
} }
html_footer($svn_idstr); html_footer(AUR_VERSION);
exit(); exit();
} }
print __("You've found a bug if you see this....")."<br />\n"; print __("You've found a bug if you see this....")."<br />\n";
html_footer($svn_idstr); # Use the $Id$ keyword html_footer(AUR_VERSION); # Use the $Id$ keyword
# NOTE: when checking in a new file, use # NOTE: when checking in a new file, use
# 'svn propset svn:keywords "Id" filename.php' # 'svn propset svn:keywords "Id" filename.php'
# to tell svn to expand the "Id" keyword. # to tell svn to expand the "Id" keyword.

View file

@ -669,6 +669,6 @@ if ($_COOKIE["AURSID"]) {
} }
echo " </div>\n"; echo " </div>\n";
echo "</div>\n"; echo "</div>\n";
html_footer("\$Id$"); html_footer(AUR_VERSION);
# vim: ts=2 sw=2 noet ft=php # vim: ts=2 sw=2 noet ft=php
?> ?>

View file

@ -15,7 +15,7 @@ html_header(); # print out the HTML header
print __("Hi, this is worth reading!")."<br />\n"; print __("Hi, this is worth reading!")."<br />\n";
html_footer("\$Id$"); # Use the $Id$ keyword html_footer(AUR_VERSION); # Use the $Id$ keyword
# NOTE: when checking in a new file, use # NOTE: when checking in a new file, use
# 'svn propset svn:keywords "Id" filename.php' # 'svn propset svn:keywords "Id" filename.php'
# to tell svn to expand the "Id" keyword. # to tell svn to expand the "Id" keyword.

View file

@ -12,6 +12,6 @@ print "<p>\n";
print __("Click on the Home link above to log in."); print __("Click on the Home link above to log in.");
print "</p>\n"; print "</p>\n";
html_footer("\$Id$"); html_footer(AUR_VERSION);
# vim: ts=2 sw=2 noet ft=php # vim: ts=2 sw=2 noet ft=php
?> ?>

View file

@ -19,6 +19,7 @@ define( "USERNAME_MAX_LEN", 16 );
define( "PASSWD_MIN_LEN", 4 ); define( "PASSWD_MIN_LEN", 4 );
define( "PASSWD_MAX_LEN", 128 ); define( "PASSWD_MAX_LEN", 128 );
define( "AUR_VERSION", "<b>Version 1.4.0</b>" );
$LOGIN_TIMEOUT = 7200; # number of idle seconds before timeout $LOGIN_TIMEOUT = 7200; # number of idle seconds before timeout