Skip to content
Snippets Groups Projects
Commit 888db089 authored by eliott's avatar eliott Committed by Lukas Fleischer
Browse files

rename *.inc files to *.inc.php and adjust imports and references


Lukas: Add note to "UPGRADING".

Signed-off-by: default avatarLukas Fleischer <archlinux@cryptocrack.de>
parent 023d2a25
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
robots.txt
*.swp
web/lib/config.inc
web/lib/config.inc.php
*.DS_Store
web/html/xml/*.xml
dummy-data.sql*
......
......@@ -38,7 +38,7 @@ $ msginit -l <locale> -o <locale>.po -i aur.pot
$ poedit <locale>.po
5. If you have a working AUR setup, add a line for the new translation in
"web/lib/config.inc.proto" and test if everything looks right.
"web/lib/config.inc.php.proto" and test if everything looks right.
6. Upload the newly created ".po" file to Transifex. If you don't like the web
interface, you can also use transifex-client to do that (see below).
......
......@@ -13,7 +13,9 @@ each AUR upgrade by running `make install` in the "po/" directory.
ALTER TABLE Users DROP COLUMN NewPkgNotify;
----
3. Merge "web/lib/config.inc.proto" with "web/lib/config.inc".
3. Rename "web/lib/config.inc" to "web/lib/config.inc.php".
4. Merge "web/lib/config.inc.php.proto" with "web/lib/config.inc.php".
From 1.8.1 to 1.8.2
-------------------
......
......@@ -97,9 +97,9 @@ Setup on Arch Linux:
can insert garbage addresses with:
mysql> UPDATE Users SET Email = RAND() * RAND();
7) Copy the config.inc.proto file to config.inc. Modify as needed.
7) Copy the config.inc.php.proto file to config.inc.php. Modify as needed.
# cd ~/aur/web/lib/
# cp config.inc.proto config.inc
# cp config.inc.php.proto config.inc.php
8) Point your browser to http://aur
......
......@@ -2,8 +2,8 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
include_once('aur.inc'); # access AUR common functions
include_once('acctfuncs.inc'); # access Account specific functions
include_once('aur.inc.php'); # access AUR common functions
include_once('acctfuncs.inc.php'); # access Account specific functions
set_lang(); # this sets up the visitor's language
check_sid(); # see if they're still logged in
......
......@@ -2,7 +2,7 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
include_once("aur.inc");
include_once("aur.inc.php");
set_lang();
check_sid();
html_header();
......
......@@ -2,11 +2,11 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
include_once("aur.inc");
include_once("aur.inc.php");
set_lang();
check_sid();
include_once('stats.inc');
include_once('stats.inc.php');
html_header( __("Home") );
......
......@@ -2,8 +2,8 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
include_once("aur.inc"); # access AUR common functions
include_once("acctfuncs.inc"); # access AUR common functions
include_once("aur.inc.php"); # access AUR common functions
include_once("acctfuncs.inc.php"); # access AUR common functions
# if they've got a cookie, log them out - need to do this before
......
......@@ -2,10 +2,10 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
include_once("aur.inc"); # access AUR common functions
set_lang(); # this sets up the visitor's language
include_once('pkgfuncs.inc'); # package specific functions
check_sid(); # see if they're still logged in
include_once("aur.inc.php"); # access AUR 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
# Set the title to the current query if required
if (isset($_GET['ID']) && ($pkgname = pkgname_from_id($_GET['ID']))) {
......
......@@ -2,7 +2,7 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
include_once("aur.inc"); # access AUR common functions
include_once("aur.inc.php"); # access AUR common functions
set_lang(); # this sets up the visitor's language
check_sid(); # see if they're still logged in
......
<?php
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
include_once("config.inc");
include_once("config.inc.php");
require_once('Archive/Tar.php');
include_once("aur.inc"); # access AUR common functions
include_once("pkgfuncs.inc"); # package functions
include_once("aur.inc.php"); # access AUR common functions
include_once("pkgfuncs.inc.php"); # package functions
set_lang(); # this sets up the visitor's language
check_sid(); # see if they're still logged in
......
<?php
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
include_once("aur.inc");
include_once("aur.inc.php");
include_once("feedcreator.class.php");
#detect prefix
......
......@@ -2,7 +2,7 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
include_once("aur.inc");
include_once("aur.inc.php");
set_lang();
check_sid();
html_header();
......
<?php
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
include('aur.inc');
include('pkgfuncs.inc');
include('aur.inc.php');
include('pkgfuncs.inc.php');
function getvotes($pkgid) {
$dbh = db_connect();
......
File moved
......@@ -7,12 +7,12 @@ header('Pragma: no-cache');
date_default_timezone_set('UTC');
include_once('translator.inc');
include_once('translator.inc.php');
set_lang();
include_once("config.inc");
include_once("version.inc");
include_once("acctfuncs.inc");
include_once("config.inc.php");
include_once("version.inc.php");
include_once("acctfuncs.inc.php");
# Check if APC extension is loaded, and set cache prefix if it is.
if (!defined('EXTENSION_LOADED_APC')) {
......
......@@ -4,7 +4,7 @@
*
* This file contains the AurRPC remote handling class
**/
include_once("aur.inc");
include_once("aur.inc.php");
/**
* This class defines a remote interface for fetching data
......
File moved
<?php
include_once("config.inc");
include_once("config.inc.php");
# Make sure this visitor can delete the requested package comment
# They can delete if they were the comment submitter, or if they are a TU/Dev
......
<?php
include_once('aur.inc');
include_once('aur.inc.php');
function updates_table($dbh)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment