mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 09:43:03 +00:00
added dsa's header include patch
This commit is contained in:
parent
f2b54f9acc
commit
c3a90420e2
11 changed files with 33 additions and 0 deletions
|
@ -1,4 +1,7 @@
|
||||||
<?
|
<?
|
||||||
|
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
|
||||||
|
|
||||||
include("aur.inc"); # access AUR common functions
|
include("aur.inc"); # access AUR common functions
|
||||||
include("acctfuncs.inc"); # access Account specific functions
|
include("acctfuncs.inc"); # access Account specific functions
|
||||||
include("pkgfuncs_po.inc"); # Add to handle the i18n of My Packages
|
include("pkgfuncs_po.inc"); # Add to handle the i18n of My Packages
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
<?
|
<?
|
||||||
|
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
|
||||||
|
|
||||||
include("hacker_po.inc");
|
include("hacker_po.inc");
|
||||||
include("aur.inc");
|
include("aur.inc");
|
||||||
set_lang();
|
set_lang();
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
<?
|
<?
|
||||||
|
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
|
||||||
|
|
||||||
include("index_po.inc");
|
include("index_po.inc");
|
||||||
include("pkgfuncs_po.inc"); # Add to handle the i18n of My Packages
|
include("pkgfuncs_po.inc"); # Add to handle the i18n of My Packages
|
||||||
include("aur.inc");
|
include("aur.inc");
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
<?
|
<?
|
||||||
|
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
|
||||||
|
|
||||||
include("aur.inc"); # access AUR common functions
|
include("aur.inc"); # access AUR common functions
|
||||||
include("pkgfuncs_po.inc"); # Add to handle the i18n of My Packages
|
include("pkgfuncs_po.inc"); # Add to handle the i18n of My Packages
|
||||||
include("logout_po.inc"); # use some form of this for i18n support
|
include("logout_po.inc"); # use some form of this for i18n support
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
<?
|
<?
|
||||||
|
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
|
||||||
|
|
||||||
include("aur.inc"); # access AUR common functions
|
include("aur.inc"); # access AUR common functions
|
||||||
include("pkgfuncs.inc"); # package specific functions
|
include("pkgfuncs.inc"); # package specific functions
|
||||||
include("search_po.inc"); # use some form of this for i18n support
|
include("search_po.inc"); # use some form of this for i18n support
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
<?
|
<?
|
||||||
|
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
|
||||||
|
|
||||||
include("aur.inc"); # access AUR common functions
|
include("aur.inc"); # access AUR common functions
|
||||||
include("pkgfuncs.inc"); # use some form of this for i18n support
|
include("pkgfuncs.inc"); # use some form of this for i18n support
|
||||||
include("pkgedit_po.inc"); # i18n translations for this script
|
include("pkgedit_po.inc"); # i18n translations for this script
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
<?
|
<?
|
||||||
|
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
|
||||||
|
|
||||||
include("aur.inc"); # access AUR common functions
|
include("aur.inc"); # access AUR common functions
|
||||||
include("submit_po.inc"); # use some form of this for i18n support
|
include("submit_po.inc"); # use some form of this for i18n support
|
||||||
include("pkgfuncs.inc"); # package functions
|
include("pkgfuncs.inc"); # package functions
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
<?
|
<?
|
||||||
|
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
|
||||||
|
|
||||||
include("aur.inc");
|
include("aur.inc");
|
||||||
include("feedcreator.class.php");
|
include("feedcreator.class.php");
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
<?
|
<?
|
||||||
|
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
|
||||||
|
|
||||||
include("aur.inc"); # access AUR common functions
|
include("aur.inc"); # access AUR common functions
|
||||||
include("template_po.inc"); # use some form of this for i18n support
|
include("template_po.inc"); # use some form of this for i18n support
|
||||||
set_lang(); # this sets up the visitor's language
|
set_lang(); # this sets up the visitor's language
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
<?
|
<?
|
||||||
|
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
|
||||||
|
|
||||||
# This is a sample script to demonstrate how the AUR will
|
# This is a sample script to demonstrate how the AUR will
|
||||||
# handle i18n. Note: When the PHP script is finished, and
|
# handle i18n. Note: When the PHP script is finished, and
|
||||||
# has the proper include file (see below), and the __()
|
# has the proper include file (see below), and the __()
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
<?
|
<?
|
||||||
|
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
|
||||||
|
|
||||||
include("timeout_po.inc");
|
include("timeout_po.inc");
|
||||||
include("aur.inc");
|
include("aur.inc");
|
||||||
set_lang();
|
set_lang();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue