[Paulscriptsmods-checkin] ajax_shout install.xml, 1.19.2.31, 1.19.2.32
Status: Beta
Brought to you by:
paulsohier
From: Paul S. <pau...@us...> - 2007-10-03 20:56:02
|
Update of /cvsroot/paulscriptsmods/ajax_shout In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13106 Modified Files: Tag: phpbb3_ver install.xml Log Message: Commiting the last things. Need be tested before release. Index: install.xml =================================================================== RCS file: /cvsroot/paulscriptsmods/ajax_shout/install.xml,v retrieving revision 1.19.2.31 retrieving revision 1.19.2.32 diff -C2 -d -r1.19.2.31 -r1.19.2.32 *** install.xml 23 Sep 2007 21:07:19 -0000 1.19.2.31 --- install.xml 3 Oct 2007 20:56:05 -0000 1.19.2.32 *************** *** 10,14 **** <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> <author-group> <author> --- 10,15 ---- <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. ! If you place it somewhere else as index_body.html you need also to move the call to $user->add_lang in index.php to the correct page.</author-notes> <author-group> <author> *************** *** 23,31 **** <major>0</major> <minor>0</minor> ! <revision>6</revision> </mod-version> <installation> <level>easy</level> ! <time>424</time> <target-version> <target-primary>3.0.RC5</target-primary> --- 24,32 ---- <major>0</major> <minor>0</minor> ! <revision>7</revision> </mod-version> <installation> <level>easy</level> ! <time>500</time> <target-version> <target-primary>3.0.RC5</target-primary> *************** *** 128,135 **** --- 129,151 ---- </rev-version> <changelog lang="en"> + <change>NOTE: This version isnt publicly released!</change> <change>Fixed a mistake with the new cdata function.</change> <change>A lot of updates for submissions. Mostly code guideline thingies</change> </changelog> </entry> + <entry> + <date>xxxx-xx-xx</date> + <rev-version> + <major>0</major> + <minor>0</minor> + <revision>7</revision> + </rev-version> + <changelog lang="en"> + <change>Fixed a problem with UTF8 data.</change> + <change>Moved static javascript to static.js</change> + <change>Moved dynamic javascript to js.php. This both change means that you need to edit 2 files when upgrading, see contrib dir for more info!</change> + <change>Moved loading of language to index.php instead including it everywhere.</change> + </changelog> + </entry> </history> <meta name="generator" content="Phpbb.ModTeam.Tools (c#)" /> *************** *** 150,158 **** <copy> <file from="root/ajax.php" to="ajax.php" /> - <file from="root/language/en/mods/shout.php" to="language/en/mods/shout.php" /> <file from="root/bbcode.js" to="bbcode.js" /> ! ! </copy> <open src="includes/constants.php"> <edit> --- 166,180 ---- <copy> <file from="root/ajax.php" to="ajax.php" /> <file from="root/bbcode.js" to="bbcode.js" /> ! <file from="root/js.php" to="js.php" /> ! <file from="root/static.js" to="static.js" /> ! <file from="root/language/en/mods/shout.php" to="language/en/mods/shout.php" /> </copy> + <open src="index.php"> + <edit> + <find>$user->setup('viewforum');</find> + <action type="after-add">$user->add_lang('mods/shout');</action> + </edit> + </open> <open src="includes/constants.php"> <edit> *************** *** 165,171 **** <find><![CDATA[ // The following assigns all _common_ variables that may be used at any point in a template. $template->assign_vars(array(]]></find> ! <action type="before-add"><![CDATA[ $user->add_lang('mods/shout');]]></action> ! <action type="after-add"><![CDATA[ 'U_SHOUT' => append_sid("{$phpbb_root_path}ajax.$phpEx", 'm=js'), ! 'U_SHOUT_BBCODE' => append_sid("{$phpbb_root_path}bbcode.js"),]]></action> </edit> </open> --- 187,193 ---- <find><![CDATA[ // The following assigns all _common_ variables that may be used at any point in a template. $template->assign_vars(array(]]></find> ! <action type="after-add"><![CDATA[ 'U_SHOUT' => append_sid("{$phpbb_root_path}js.$phpEx"), ! 'U_SHOUT_BBCODE' => append_sid("{$phpbb_root_path}bbcode.js"), ! 'U_SHOUT_STATIC' => append_sid("{$phpbb_root_path}static.js"),]]></action> </edit> </open> |