diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-23 00:06:30 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-23 00:06:30 -0500 |
commit | c8632462137bce27316ef8bdb61a1643db0bcf37 (patch) | |
tree | 8e8c12005e7be8d8bd2b80105d41e5463dca4019 /web | |
parent | 38b1bbe78df3a518f0688e50f1d6361221b95ea1 (diff) |
Re-brand to clarify that the software is aurweb, the instance is the AUR.
Diffstat (limited to 'web')
-rw-r--r-- | web/html/account.php | 2 | ||||
-rw-r--r-- | web/html/logout.php | 4 | ||||
-rw-r--r-- | web/html/packages.php | 2 | ||||
-rw-r--r-- | web/html/passreset.php | 2 | ||||
-rw-r--r-- | web/html/register.php | 2 | ||||
-rw-r--r-- | web/lib/acctfuncs.inc.php | 4 | ||||
-rw-r--r-- | web/lib/aur.inc.php | 14 | ||||
-rw-r--r-- | web/lib/aurjson.class.php | 2 | ||||
-rw-r--r-- | web/lib/stats.inc.php | 2 | ||||
-rw-r--r-- | web/template/template.phps | 2 |
10 files changed, 18 insertions, 18 deletions
diff --git a/web/html/account.php b/web/html/account.php index c447de3..f9925f9 100644 --- a/web/html/account.php +++ b/web/html/account.php @@ -2,7 +2,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include_once('aur.inc.php'); # access AUR common functions +include_once('aur.inc.php'); # access aurweb common functions include_once('acctfuncs.inc.php'); # access Account specific functions set_lang(); # this sets up the visitor's language diff --git a/web/html/logout.php b/web/html/logout.php index 5e8e8f4..d173773 100644 --- a/web/html/logout.php +++ b/web/html/logout.php @@ -2,8 +2,8 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include_once("aur.inc.php"); # access AUR common functions -include_once("acctfuncs.inc.php"); # access AUR common functions +include_once("aur.inc.php"); # access aurweb common functions +include_once("acctfuncs.inc.php"); # access aurweb common functions # if they've got a cookie, log them out - need to do this before diff --git a/web/html/packages.php b/web/html/packages.php index 75a574e..4d895c1 100644 --- a/web/html/packages.php +++ b/web/html/packages.php @@ -2,7 +2,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include_once("aur.inc.php"); # access AUR common functions +include_once("aur.inc.php"); # access aurweb common functions set_lang(); # this sets up the visitor's language include_once('pkgfuncs.inc.php'); # package specific functions check_sid(); # see if they're still logged in diff --git a/web/html/passreset.php b/web/html/passreset.php index 29f2c64..951266a 100644 --- a/web/html/passreset.php +++ b/web/html/passreset.php @@ -2,7 +2,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include_once("aur.inc.php"); # access AUR common functions +include_once("aur.inc.php"); # access aurweb common functions set_lang(); # this sets up the visitor's language check_sid(); # see if they're still logged in diff --git a/web/html/register.php b/web/html/register.php index 014d802..19f7c09 100644 --- a/web/html/register.php +++ b/web/html/register.php @@ -2,7 +2,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include_once('aur.inc.php'); # access AUR common functions +include_once('aur.inc.php'); # access aurweb common functions include_once('acctfuncs.inc.php'); # access Account specific functions set_lang(); # this sets up the visitor's language diff --git a/web/lib/acctfuncs.inc.php b/web/lib/acctfuncs.inc.php index edd38ee..81118e8 100644 --- a/web/lib/acctfuncs.inc.php +++ b/web/lib/acctfuncs.inc.php @@ -41,7 +41,7 @@ function html_format_pgp_fingerprint($fingerprint) { /** * Loads the account editing form, with any values that are already saved * - * @global array $SUPPORTED_LANGS Languages that are supported by the AUR + * @global array $SUPPORTED_LANGS Languages that are supported by the aurweb instance * @param string $A Form to use, either UpdateAccount or NewAccount * @param string $U The username to display * @param string $T The account type of the displayed user @@ -70,7 +70,7 @@ function display_account_form($A,$U="",$T="",$S="",$E="",$P="",$C="",$R="", /** * Process information given to new/edit account form * - * @global array $SUPPORTED_LANGS Languages that are supported by the AUR + * @global array $SUPPORTED_LANGS Languages that are supported by the aurweb instance * @param string $TYPE Either "edit" for editing or "new" for registering an account * @param string $A Form to use, either UpdateAccount or NewAccount * @param string $U The username for the account diff --git a/web/lib/aur.inc.php b/web/lib/aur.inc.php index b410db5..3504662 100644 --- a/web/lib/aur.inc.php +++ b/web/lib/aur.inc.php @@ -345,11 +345,11 @@ function uid_from_sid($sid="") { } /** - * Common AUR header displayed on all pages + * Common aurweb header displayed on all pages * * @global string $LANG Language selected by the visitor - * @global array $SUPPORTED_LANGS Languages that are supported by the AUR - * @param string $title Name of the AUR page to be displayed on browser + * @global array $SUPPORTED_LANGS Languages that are supported by the aurweb instance + * @param string $title Name of the aurweb page to be displayed on browser * * @return void */ @@ -362,9 +362,9 @@ function html_header($title="", $details=array()) { } /** - * Common AUR footer displayed on all pages + * Common aurweb footer displayed on all pages * - * @param string $ver The AUR version + * @param string $ver The aurweb version * * @return void */ @@ -668,9 +668,9 @@ function bound($n, $min, $max) { } /** - * Return the URL of the AUR root + * Return the URL of the aurweb root * - * @return string The URL of the AUR root + * @return string The URL of the aurweb root */ function aur_location() { $location = config_get('options', 'aur_location'); diff --git a/web/lib/aurjson.class.php b/web/lib/aurjson.class.php index debffc4..13b7427 100644 --- a/web/lib/aurjson.class.php +++ b/web/lib/aurjson.class.php @@ -3,7 +3,7 @@ include_once("aur.inc.php"); /* - * This class defines a remote interface for fetching data from the AUR using + * This class defines a remote interface for fetching data from aurweb using * JSON formatted elements. * * @package rpc diff --git a/web/lib/stats.inc.php b/web/lib/stats.inc.php index 203be0a..eaa3321 100644 --- a/web/lib/stats.inc.php +++ b/web/lib/stats.inc.php @@ -58,7 +58,7 @@ function user_table($userid) { * @return void */ function general_stats_table() { - # AUR statistics + # aurweb statistics $q = "SELECT COUNT(*) FROM PackageBases WHERE PackagerUID IS NOT NULL"; $unsupported_count = db_cache_value($q, 'unsupported_count'); diff --git a/web/template/template.phps b/web/template/template.phps index 4f8117c..c395c2a 100644 --- a/web/template/template.phps +++ b/web/template/template.phps @@ -4,7 +4,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include("aur.inc.php"); # access AUR common functions +include("aur.inc.php"); # access aurweb common functions set_lang(); # this sets up the visitor's language check_sid(); # see if they're still logged in html_header(); # print out the HTML header |