[Paulscriptsmods-checkin] ajax_shout install.xml, 1.19.2.20, 1.19.2.21
Status: Beta
Brought to you by:
paulsohier
From: Paul S. <pau...@us...> - 2007-08-04 14:16:33
|
Update of /cvsroot/paulscriptsmods/ajax_shout In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21985 Modified Files: Tag: phpbb3_ver install.xml Log Message: Prep release. Index: install.xml =================================================================== RCS file: /cvsroot/paulscriptsmods/ajax_shout/install.xml,v retrieving revision 1.19.2.20 retrieving revision 1.19.2.21 diff -C2 -d -r1.19.2.20 -r1.19.2.21 *** install.xml 20 Jul 2007 12:09:20 -0000 1.19.2.20 --- install.xml 4 Aug 2007 14:16:07 -0000 1.19.2.21 *************** *** 6,12 **** <header> <license>http://opensource.org/licenses/gpl-license.php GNU General Public License v2</license> ! <title lang="en-gb">Ajax ShoutBox</title> ! <description lang="en-gb">This mod add a shoutbox to your forum index.</description> ! <author-notes lang="en-gb">This mod requires for the user visiting the forum that he has eneblad JavaScript. Without JavaScript, the shoutbox isn't displayed. You can place this shoutbox eveywhere on the forum, the only thing you has to do is editing the correct html file, with the changes that are normally done for index_body.html.</author-notes> --- 6,12 ---- <header> <license>http://opensource.org/licenses/gpl-license.php GNU General Public License v2</license> ! <title lang="en">Ajax ShoutBox</title> ! <description lang="en">This mod add a shoutbox to your forum index.</description> ! <author-notes lang="en">This mod requires for the user visiting the forum that he has eneblad JavaScript. Without JavaScript, the shoutbox isn't displayed. You can place this shoutbox eveywhere on the forum, the only thing you has to do is editing the correct html file, with the changes that are normally done for index_body.html.</author-notes> *************** *** 23,27 **** <major>0</major> <minor>0</minor> ! <revision>3</revision> </mod-version> <installation> --- 23,27 ---- <major>0</major> <minor>0</minor> ! <revision>4</revision> </mod-version> <installation> *************** *** 29,33 **** <time>424</time> <target-version> ! <target-primary>3.0.RC3</target-primary> <target-major allow="exact">3</target-major> <target-minor allow="exact">0</target-minor> --- 29,33 ---- <time>424</time> <target-version> ! <target-primary>3.0.RC4</target-primary> <target-major allow="exact">3</target-major> <target-minor allow="exact">0</target-minor> *************** *** 42,46 **** <revision>1</revision> </rev-version> ! <changelog lang="en-GB"> <change>First release for phpBB3.</change> </changelog> --- 42,46 ---- <revision>1</revision> </rev-version> ! <changelog lang="en"> <change>First release for phpBB3.</change> </changelog> *************** *** 86,105 **** <change>Changed way the subsilver version is displayed. Looks lot beter now</change> </changelog> ! </entry> </history> <meta name="generator" content="Phpbb.ModTeam.Tools (c#)" /> </header> <action-group> ! <sql>CREATE TABLE phpbb_shoutbox ( ! shout_id INT(11) UNSIGNED NOT NULL auto_increment, ! shout_user_id MEDIUMINT(8) NOT NULL, ! shout_time INT(11) NOT NULL, ! shout_ip VARCHAR(32) NOT NULL, ! shout_text TEXT NOT NULL, ! shout_bbcode_bitfield varchar(255) NOT NULL, ! shout_bbcode_uid varchar(5) NOT NULL, ! shout_bbcode_flags int(11) unsigned NOT NULL default '7', ! PRIMARY KEY (shout_id) ! ); </sql> <copy> --- 86,119 ---- <change>Changed way the subsilver version is displayed. Looks lot beter now</change> </changelog> ! </entry> ! ! <entry> ! <date>2007-08-04</date> ! <rev-version> ! <major>0</major> ! <minor>0</minor> ! <revision>4</revision> ! </rev-version> ! <changelog lang="en"> ! <change>Fixed UTF8 issues.</change> ! <change>Fixed error handling again</change> ! <change>MOD submitted to MODDB, but without subsilver version.</change> ! </changelog> ! </entry> </history> <meta name="generator" content="Phpbb.ModTeam.Tools (c#)" /> </header> <action-group> ! <sql>CREATE TABLE ajax_shout3_shoutbox ( ! shout_id int(11) unsigned NOT NULL auto_increment, ! shout_user_id mediumint(8) NOT NULL, ! shout_time int(11) NOT NULL, ! shout_ip varchar(32) character set latin1 NOT NULL, ! shout_text text collate utf8_bin NOT NULL, ! shout_bbcode_bitfield varchar(255) character set latin1 NOT NULL, ! shout_bbcode_uid varchar(5) character set latin1 NOT NULL, ! shout_bbcode_flags int(11) unsigned NOT NULL default '7', ! PRIMARY KEY (shout_id) ! ) DEFAULT CHARSET=utf8 COLLATE=utf8_bin; </sql> <copy> |