Added version 0.6.3 to the repository

This commit is contained in:
Josh Sherman 2010-02-14 11:40:14 -05:00
commit 80b07ae41e
42 changed files with 7550 additions and 0 deletions

25
language/faq.php Normal file
View file

@ -0,0 +1,25 @@
<?
/******************************************************************************\
* Copyright (C) 2002 B Squared (b^2) by Josh Sherman <josh@cleancode.org> *
* *
* Blah blah blah blah *
* *
* Last modified : September 24th, 2002 (JJS) *
\******************************************************************************/
/* FAQ Name / Title */
$FAQ_title = "Frequently Asked Questions";
/* Frequently Asked Questions */
$FAQ = "This is where you'd put in your custom FAQ for visitors to access. If "
. "you are an administrator for this board, you can edit this message by "
. "editting the 'faq.php' file, located in the languages directory.";
/*************** FYI, you shouldn't need to edit below here ... ***************/
/* Define all the stuff as constants, so I can work with it */
define("FAQ_TITLE", $FAQ_title);
define("FREQUENTLY_ASKED_QUESTIONS", $FAQ);
?>

59
language/installer.php Normal file
View file

@ -0,0 +1,59 @@
<?
/******************************************************************************\
* Copyright (C) 2002 B Squared (b^2) by Josh Sherman <josh@cleancode.org> *
* *
* Blah blah blah blah *
* *
* Last modified : September 17th, 2002 (JJS) *
\******************************************************************************/
/* Installation page title */
$title = "b^2 " . VERSION . " Installer";
/* Section headings */
$general = "General Properties";
$mysql = "MySQL Properties";
$admin = "Admin Account";
$forum = "Initial Forum";
/* Section field names */
$board_name = "Board Name";
$title_image = "Title Image";
$username = "Username";
$password = "Password";
$database = "Database";
$hostname = "Hostname";
$table_prefix = "Table Prefix";
$confirm_pass = "Confirm Password";
$email = "Email";
$name = "Name";
$description = "Description";
$forum_name = "General Discussion";
$forum_desc = "This forum is for general discussion";
$install_button = "Install b^2 " . VERSION;
/*************** FYI, you shouldn't need to edit below here ... ***************/
/* Define all the stuff as constants, so I can work with it */
define("INSTALL_TITLE", $title);
define("GENERAL", $general);
define("MYSQL", $mysql);
define("ADMIN", $admin);
define("FORUM", $forum);
define("BOARD_NAME", $board_name);
define("TITLE_IMAGE", $title_image);
define("USERNAME", $username);
define("PASSWORD", $password);
define("DATABASE", $database);
define("HOSTNAME", $hostname);
define("TABLE_PREFIX", $table_prefix);
define("CONFIRM_PASSWORD", $confirm_pass);
define("EMAIL", $email);
define("NAME", $name);
define("DESC", $description);
define("FORUM_NAME", $forum_name);
define("FORUM_DESC", $forum_desc);
define("INSTALL_BUTTON", $install_button);
?>

70
language/tos.php Normal file
View file

@ -0,0 +1,70 @@
<?
/******************************************************************************\
* Copyright (C) 2002 B Squared (b^2) by Josh Sherman <josh@cleancode.org> *
* *
* Blah blah blah blah *
* *
* Last modified : September 24th, 2002 (JJS) *
\******************************************************************************/
/* Terms of Service */
$TOS = "Considering the real-time nature of this bulletin board, it is "
. "impossible for us to review all of the messages or confirm the "
. "validity of information posted. Please remember that we do not "
. "actively monitor the contents of this bulletin board and are not "
. "responsible for any messages posted. We do not vouch for or warrant "
. "the accuracy, completeness or usefulness of any message, and are not "
. "responsible for the contents of any message. The messages express the "
. "views of the author of the message, not necessarily the views of this "
. "bulletin board. Any user who feels that a posted message is "
. "objectionable is encouraged to contact us immediately by email. We "
. "have the ability to remove objectionable messages andConsidering the "
. "real-time nature of this bulletin board, it is impossible for us to "
. "review all of the messages or confirm the validity of information "
. "posted. Please remember that we do not actively monitor the contents "
. "of this bulletin board and are not responsible for any messages "
. "posted. We do not vouch for or warrant the accuracy, completeness "
. "or usefulness of any message, and are not responsible for the contents "
. "of any message. The messages express the views of the author of the "
. "message, not necessarily the views of this bulletin board. Any user "
. "who feels that a posted message is objectionable is encouraged to "
. "contact us immediately by email. We have the ability to remove "
. "objectionable messages and we will make every effort to do so, within "
. "a reasonable time frame, if we determine that removal is necessary. "
. "This is a manual process, however, so please realize that we may not "
. "be able to remove or edit particular messages immediately."
. "<BR><BR>"
. "You agree, through your use of this service, that you will not use "
. "this bulletin board to post any material which is knowingly false "
. "and/or defamatory, inaccurate, abusive, vulgar, hateful, harassing, "
. "obscene, profane, sexually oriented, threatening, invasive of a "
. "person's privacy, or otherwise violative of any law. You agree not to "
. "post any copyrighted material unless the copyright is owned by you or "
. "by this bulletin board."
. "<BR><BR>"
. "Although we do not and cannot review the messages posted and are not "
. "responsible for the content of any of these messages, we reserve the "
. "right to delete any message for any or no reason whatsoever. You "
. "remain solely responsible for the content of your messages, and you "
. "agree to indemnify and hold harmless this bulletin board (and any "
. "owners of this bulletin board) and their agents with respect to any "
. "claim based upon transmission of your message(s)."
. "<BR><BR>"
. "We also reserve the right to reveal your identity (or whatever "
. "information we know about you) in the event of a complaint or legal "
. "action arising from any message posted by you."
. "<BR><BR>"
. "Please note that advertisements, chain letters, pyramid schemes, and "
. "solicitations are inappropriate on this bulletin board. We will make "
. "every effort to remove such posts, within a reasonable time frame, if "
. "we determine that removal is necessary. This is a manual process, "
. "however, so please realize that we may not be able to remove or edit "
. "such messages immediately.";
/*************** FYI, you shouldn't need to edit below here ... ***************/
/* Define all the stuff as constants, so I can work with it */
define("TERMS_OF_SERVICE", $TOS);
?>