diff options
author | eric <eric> | 2004-06-19 14:36:22 +0000 |
---|---|---|
committer | eric <eric> | 2004-06-19 14:36:22 +0000 |
commit | 22e8556691d134c4bf778837d4a0c24e4504b8cf (patch) | |
tree | 6cbeaebbcf2ea34ceff74539b48f2fb1d3fb5edc /web/html | |
parent | 74594e516d699a3a95a4e8112c914b9225853de7 (diff) |
finished tweaking language selection
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/account.php | 18 | ||||
-rw-r--r-- | web/html/index.php | 2 | ||||
-rw-r--r-- | web/html/logout.php | 18 | ||||
-rw-r--r-- | web/html/pkgmgmnt.php | 18 | ||||
-rw-r--r-- | web/html/pkgsearch.php | 18 | ||||
-rw-r--r-- | web/html/pkgsubmit.php | 17 | ||||
-rw-r--r-- | web/html/pkgvote.php | 18 | ||||
-rw-r--r-- | web/html/template.php | 3 |
8 files changed, 111 insertions, 1 deletions
diff --git a/web/html/account.php b/web/html/account.php new file mode 100644 index 0000000..6d402ca --- /dev/null +++ b/web/html/account.php @@ -0,0 +1,18 @@ +<? +include("aur.inc"); # access AUR common functions +include("account_po.inc"); # use some form of this for i18n support +set_lang(); # this sets up the visitor's language +html_header(); # print out the HTML header + + +# Any text you print out to the visitor, use the __() function +# for i18n support. See 'testpo.php' for more details. +# +print __("Under construction...")."<br/>\n"; + + +html_footer("\$Id$"); # Use the $Id$ keyword + # NOTE: when checking in a new file, use + # 'svn propset svn:keywords "Id" filename.php' + # to tell svn to expand the "Id" keyword. +?> diff --git a/web/html/index.php b/web/html/index.php index 24afdf0..8038992 100644 --- a/web/html/index.php +++ b/web/html/index.php @@ -1,11 +1,13 @@ <? include("index_po.inc"); include("aur.inc"); +set_lang(); html_header(); #$dbh = db_connect(); print "Connected...<br>\n"; +print "My LANG is: " . $LANG . "<br>\n"; html_footer("\$Id$"); diff --git a/web/html/logout.php b/web/html/logout.php new file mode 100644 index 0000000..6757784 --- /dev/null +++ b/web/html/logout.php @@ -0,0 +1,18 @@ +<? +include("aur.inc"); # access AUR common functions +include("logout_po.inc"); # use some form of this for i18n support +set_lang(); # this sets up the visitor's language +html_header(); # print out the HTML header + + +# Any text you print out to the visitor, use the __() function +# for i18n support. See 'testpo.php' for more details. +# +print __("Under construction...")."<br/>\n"; + + +html_footer("\$Id$"); # Use the $Id$ keyword + # NOTE: when checking in a new file, use + # 'svn propset svn:keywords "Id" filename.php' + # to tell svn to expand the "Id" keyword. +?> diff --git a/web/html/pkgmgmnt.php b/web/html/pkgmgmnt.php new file mode 100644 index 0000000..0988e51 --- /dev/null +++ b/web/html/pkgmgmnt.php @@ -0,0 +1,18 @@ +<? +include("aur.inc"); # access AUR common functions +include("mgmnt_po.inc"); # use some form of this for i18n support +set_lang(); # this sets up the visitor's language +html_header(); # print out the HTML header + + +# Any text you print out to the visitor, use the __() function +# for i18n support. See 'testpo.php' for more details. +# +print __("Under construction...")."<br/>\n"; + + +html_footer("\$Id$"); # Use the $Id$ keyword + # NOTE: when checking in a new file, use + # 'svn propset svn:keywords "Id" filename.php' + # to tell svn to expand the "Id" keyword. +?> diff --git a/web/html/pkgsearch.php b/web/html/pkgsearch.php new file mode 100644 index 0000000..d23a602 --- /dev/null +++ b/web/html/pkgsearch.php @@ -0,0 +1,18 @@ +<? +include("aur.inc"); # access AUR common functions +include("search_po.inc"); # use some form of this for i18n support +set_lang(); # this sets up the visitor's language +html_header(); # print out the HTML header + + +# Any text you print out to the visitor, use the __() function +# for i18n support. See 'testpo.php' for more details. +# +print __("Under construction...")."<br/>\n"; + + +html_footer("\$Id$"); # Use the $Id$ keyword + # NOTE: when checking in a new file, use + # 'svn propset svn:keywords "Id" filename.php' + # to tell svn to expand the "Id" keyword. +?> diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php new file mode 100644 index 0000000..fc36da5 --- /dev/null +++ b/web/html/pkgsubmit.php @@ -0,0 +1,17 @@ +<? +include("aur.inc"); # access AUR common functions +include("submit_po.inc"); # use some form of this for i18n support +html_header(); # print out the HTML header + + +# Any text you print out to the visitor, use the __() function +# for i18n support. See 'testpo.php' for more details. +# +print __("Under construction...")."<br/>\n"; + + +html_footer("\$Id$"); # Use the $Id$ keyword + # NOTE: when checking in a new file, use + # 'svn propset svn:keywords "Id" filename.php' + # to tell svn to expand the "Id" keyword. +?> diff --git a/web/html/pkgvote.php b/web/html/pkgvote.php new file mode 100644 index 0000000..e111937 --- /dev/null +++ b/web/html/pkgvote.php @@ -0,0 +1,18 @@ +<? +include("aur.inc"); # access AUR common functions +include("vote_po.inc"); # use some form of this for i18n support +set_lang(); # this sets up the visitor's language +html_header(); # print out the HTML header + + +# Any text you print out to the visitor, use the __() function +# for i18n support. See 'testpo.php' for more details. +# +print __("Under construction...")."<br/>\n"; + + +html_footer("\$Id$"); # Use the $Id$ keyword + # NOTE: when checking in a new file, use + # 'svn propset svn:keywords "Id" filename.php' + # to tell svn to expand the "Id" keyword. +?> diff --git a/web/html/template.php b/web/html/template.php index 8ada0f1..a61ba6f 100644 --- a/web/html/template.php +++ b/web/html/template.php @@ -1,6 +1,7 @@ <? include("aur.inc"); # access AUR common functions -include("index_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 html_header(); # print out the HTML header |