[Phpbbkb-checkins] SF.net SVN: phpbbkb: [39] install.xml
Status: Alpha
Brought to you by:
markthedaemon
From: <mar...@us...> - 2007-01-24 18:24:37
|
Revision: 39 http://svn.sourceforge.net/phpbbkb/?rev=39&view=rev Author: markthedaemon Date: 2007-01-24 10:24:34 -0800 (Wed, 24 Jan 2007) Log Message: ----------- Rather than having a seperate constants.php file they would be better suited in includes/constants.php. The constant numbers need changing, as they are already taken by other things. Modified Paths: -------------- install.xml Modified: install.xml =================================================================== --- install.xml 2007-01-09 06:31:38 UTC (rev 38) +++ install.xml 2007-01-24 18:24:34 UTC (rev 39) @@ -4,9 +4,9 @@ <mod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.phpbb.com/mods/xml/modx-1.0.xsd"> <header> <license>http://opensource.org/licenses/gpl-license.php GNU General Public License v2</license> - <title lang="en-gb">phpbb Knowledge Base</title> + <title lang="en-gb">phpBB Knowledge Base</title> <description lang="en-gb">This MOD aims to provide a Knowledge Base for phpBB2</description> - <author-notes lang="en-gb">TODO: Write author(s) notes</author-notes> + <author-notes lang="en-gb">The lines that are provided for the edits are from a default phpBB 2.0.22 installation and may vary depending on how modified your board is.</author-notes> <author-group> <author> <realname>Mark Barnes</realname> @@ -21,27 +21,14 @@ <contributions /> </author> <author> - <username>drathbun</username> - <homepage>http://www.phpbbdoctor.com/</homepage> - <contributions /> - </author> - <author> - <username>Peter VDD</username> - <contributions /> - </author> - <author> <username>Prince of phpBB</username> <contributions /> </author> <author> - <username>Sphenn</username> + <username>ToonArmy</username> <contributions /> </author> <author> - <username>ToonArmy</username> - <contributions /> - </author> - <author> <realname>Andreas Nielsen</realname> <email>Lor...@ho...</email> <username>Imladris</username> @@ -56,7 +43,7 @@ </mod-version> <installation> <level>intermediate</level> - <time>126</time> + <time>270</time> <target-version> <target-primary>2.0</target-primary> <target-major allow="exact">2</target-major> @@ -66,16 +53,35 @@ <meta name="generator" content="Phpbb.ModTeam.Tools (c#)" /> </header> <action-group> - <open src="language/lang_english/lang_admin.php"> - <edit> - <find>// + <open src="language/lang_english/lang_admin.php"> + <edit> + <find><![CDATA[// // That's all Folks! // ------------------------------------------------- -?></find> - <action type="before-add">$lang['KB'] = "Knowledge Base"; +?>]]></find> + <action type="before-add">$lang['KB'] = "Knowledge Base"; $lang['Categories'] = "Category Management";</action> - </edit> - </open> + </edit> + </open> + <open src="includes/constants.php"> + <edit> + <find>define('AUTH_ATTACH', 11);</find> + <action type="after-add">define('KB_STATUS_NOT_ASSIGNED', 0); +define('KB_STATUS_ASSIGNED', 1); +define('KB_STATUS_REVIEW_IN_PROGRESS', 3); +define('KB_STATUS_ACCEPTED', 4); +define('KB_STATUS_REJECTED', 5);</action> + <comment lang="en-gb">Line 147</comment> + </edit> + <edit> + <find>define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');</find> + <action type="after-add">define('KB_CATEGORIES_TABLE', $table_prefix . "kb_categories"); +define('KB_ARTICLES_TABLE', $table_prefix . "kb_articles"); +define('KB_ARTICLECATS_TABLE', $table_prefix . "kb_articlecats"); +define('KB_AUTH_ACCESS', $table_prefix . "kb_auth_access");</action> + <comment lang="en-gb">Line 181</comment> + </edit> + </open> </action-group> </mod> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |