diff --git a/lists/subscribe.php b/list_subscribe.php similarity index 87% rename from lists/subscribe.php rename to list_subscribe.php index dd1b55a..54a4feb 100644 --- a/lists/subscribe.php +++ b/list_subscribe.php @@ -2,19 +2,19 @@ $pageName = "Mailing Lists"; $focused = "none"; // Dock icon name to get a border $currPage = "none"; - require "../parts/preamble.php"; // Load most of document + require "parts/preamble.php"; // Load most of document - if (!$list || !(preg_match("/^quake-(announce|bugs|cvs|devel|user)$/i", $list))) { + if (!$list) { echo "Bad Beavis! Go away.\n"; - require "../parts/postamble.php"; - exit(); + require "parts/postamble.php"; + exit (); } else { $list = strToLower ($list); } ?> -
+ diff --git a/lists.php b/lists.php new file mode 100644 index 0000000..95da8a3 --- /dev/null +++ b/lists.php @@ -0,0 +1,72 @@ +subscribe'; + echo ' | '; + echo 'archives'; + echo ' ]'; + } +?> + + +The QuakeForge Project has several email lists, which we use to keep in touch +with each other and the community. This page is a list of them. + +

QuakeForge Announcements

+ +

From time to time, the QuakeForge team make announcements. This, along with +the development list, is where they are sent. If you want to know about them, +subscribe here. + +

QuakeForge Bugs

+

Newtree Bugs

+

QFCC Bugs

+

Forge Bugs

+ +

We hate to admit it, but even our code sometimes has bugs in it. These +mailing lists is for discussing those bugs. Also, the QuakeForge bug-tracking +system sends mail to this list whenever the bug database for each package is +updated. + +

QuakeForge CVS Updates

+

Newtree CVS Updates

+

QFCC CVS Updates

+

Forge CVS Updates

+ +

If you would like to get an email every time something happens in the +QuakeForge CVS, subscribe to one or more of these mailing lists. Because a mail +is sent out every time any file is changed, they tend to be pretty high-traffic. +Each email contains a list of files changed, and what was changed. + +

QuakeForge Development

+ +

This is where the main development work is discussed. Tempers run high +occasionally, and technical discussion is the order of the day. If you are +interested in helping, have a patch, or are concerned with the direction the +development is taking, this is the place you want to be. + +

QuakeForge Project discussion

+ +

This is where the overall direction of the project is, or isn't, discussed. +Development is off-topic, this list is mainly for non-technical discussion. If +you like watching C-SPAN, this might be a good place for you to be. + +

QuakeForge User Discussion

+ +

If you are more interested in playing the game than talking about development +stuff, you want to be here. Many of the QuakeForge developers are here, and +aside from our IRC channel, this is the closest thing to a tech support hotline +that we have. There may also be discussion between players here. + + diff --git a/lists/index.php b/lists/index.php deleted file mode 100644 index 3b6431d..0000000 --- a/lists/index.php +++ /dev/null @@ -1,59 +0,0 @@ -subscribe'; - echo ' | '; - echo 'archives'; - echo ' ]'; - } -?> - - -The QuakeForge Project has several email lists, which we use to keep in touch -with each other and the community. This page is a list of them. - -

QuakeForge Announcements

- -

From time to time, the QuakeForge team make announcements. This, along with -the development list, is where they are sent. If you want to know about them, -subscribe here. - -

QuakeForge Bugs

- -

We hate to admit it, but even our code sometimes has bugs in it. This mailing -list is for discussing those bugs. Also, the QuakeForge bug-tracking system -sends mail to this list whenever the bug database is updated. - -

QuakeForge CVS Updates

- -

If you would like to get an email every time something happens in the -QuakeForge CVS, subscribe to this mailing list. Because a mail is sent out -every time any file is changed, this list tends to be pretty high-traffic. Each -email contains a list of files changed, and what was changed. - -

QuakeForge Development

- -

This is where the main development work is discussed. Tempers run high -occasionally, and technical discussion is the order of the day. If you are -interested in helping, have a patch, or are concerned with the direction the -development is taking, this is the place you want to be. - -

QuakeForge User Discussion

- -

If you are more interested in playing the game than talking about development -stuff, you want to be here. Many of the QuakeForge developers are here, and -aside from our IRC channel, this is the closest thing to a tech support hotline -that we have. There may also be discussion between players here. - - diff --git a/parts/menu.php b/parts/menu.php index 390435d..3694611 100644 --- a/parts/menu.php +++ b/parts/menu.php @@ -41,8 +41,8 @@ menuItemLink ("docs", "/documentation.php", "Documentation"); menuItemLink ("shots", "/screenshots.php", "Screenshots"); menuItemLink ("files", "/files.php", "Downloads"); - menuItemLink ("bugs", "/bugs/", "Bug Reports"); - menuItemLink ("lists", "/lists/", "Mailing Lists"); + menuItemLink ("bugs", "/bugs/", "Bug Tracker"); + menuItemLink ("lists", "/lists.php", "Mailing Lists"); // menuItemLink ("board", "/board/", "Web Forum"); menuSectionFooter (); } @@ -58,7 +58,7 @@ // menuItemLink ("research", "/research/", "Research Center"); // menuItemLink ("patches", "http://sourceforge.net/patch/?group_id=882", "Patch Manager"); // menuItemLink ("support", "http://sourceforge.net/support/?group_id=882", "Support Manager"); - menuItemLink ("tasks", "http://sourceforge.net/pm/?group_id=882", "Task Manager"); +// menuItemLink ("tasks", "http://sourceforge.net/pm/?group_id=882", "Task Manager"); menuSectionFooter (); }