From: Eloi G. <ada...@us...> - 2011-06-28 18:29:40
|
Update of /cvsroot/phpwebsite-comm/modules/article/boost In directory vz-cvs-2.sog:/tmp/cvs-serv7851/boost Modified Files: update.php Log Message: + Adjusted copyright tag & Comment block header + Article integrates with the RSS module again Index: update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/boost/update.php,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** update.php 26 Jan 2009 03:13:18 -0000 1.31 --- update.php 28 Jun 2011 18:29:35 -0000 1.32 *************** *** 255,290 **** </pre>'; ! ! case version_compare($currentVersion, '4.2.1', '<'): ! $files = array('templates/popular_links.tpl', 'templates/runtime_categorized.tpl', 'templates/runtime_chronological.tpl', ! 'templates/edit_permissions.tpl', 'templates/edit.tpl', 'templates/history.tpl', ! 'templates/list_articles.tpl', 'templates/list_category_summaries.tpl', 'templates/list_summaries.tpl'); ! if (PHPWS_Boost::updateFiles($files, 'article')) { ! $content[] = '+ Updated the following files: ' . implode("\n ", $files); ! } ! else { ! $content[] = '+ Unable to update the following files: ' . implode("\n ", $files); ! return false; ! } ! ! $content[] = '<pre> ! ======================== ! Changes in version 4.2.1 ! ======================== ! + Fixed a minor categorized summary display bug ! + Article title links now show the summary in the tooltip ! + Customized category display added ! + Deleted reference to obsolete file (AM_Modsettings.php) ! + If the specified XML file isn`t found in the branch directory, XML_import will look in the hub directory as well. ! + The conversion script now uses PHPWS_Text::breaker to convert newlines to br tags ! + A `post-upgrade conversion` script is included to convert newlines to br tags in an existing AM installation ! + `Also on this Site` and `Popular Articles` templates now use their own box definitions, not the standard layout one. ! + Chronological Homepage summary views now use their own boxes, not Layout`s ! + Added rel=nofollow to print and email links ! + AM uses breakpost now ! + Changed old bg_dark/medium/light references to bgcolor# ! + PHPWS_AM_EditForms::edit_article was passing a keyid to Categories::getSimpleLinks, not the key object ! </pre>'; ! } // end of switch --- 255,309 ---- </pre>'; ! ! case version_compare($currentVersion, '4.2.1', '<'): ! $files = array('templates/popular_links.tpl', 'templates/runtime_categorized.tpl', 'templates/runtime_chronological.tpl', ! 'templates/edit_permissions.tpl', 'templates/edit.tpl', 'templates/history.tpl', ! 'templates/list_articles.tpl', 'templates/list_category_summaries.tpl', 'templates/list_summaries.tpl'); ! if (PHPWS_Boost::updateFiles($files, 'article')) { ! $content[] = '+ Updated the following files: ' . implode("\n ", $files); ! } ! else { ! $content[] = '+ Unable to update the following files: ' . implode("\n ", $files); ! return false; ! } ! ! $content[] = '<pre> ! ======================== ! Changes in version 4.2.1 ! ======================== ! + Fixed a minor categorized summary display bug ! + Article title links now show the summary in the tooltip ! + Customized category display added ! + Deleted reference to obsolete file (AM_Modsettings.php) ! + If the specified XML file isn`t found in the branch directory, XML_import will look in the hub directory as well. ! + The conversion script now uses PHPWS_Text::breaker to convert newlines to br tags ! + A `post-upgrade conversion` script is included to convert newlines to br tags in an existing AM installation ! + `Also on this Site` and `Popular Articles` templates now use their own box definitions, not the standard layout one. ! + Chronological Homepage summary views now use their own boxes, not Layout`s ! + Added rel=nofollow to print and email links ! + AM uses breakpost now ! + Changed old bg_dark/medium/light references to bgcolor# ! + PHPWS_AM_EditForms::edit_article was passing a keyid to Categories::getSimpleLinks, not the key object ! </pre>'; ! ! ! ! case version_compare($currentVersion, '4.2.2', '<'): ! PHPWS_Core::initModClass('rss', 'RSS.php'); ! RSS::registerModule('article', $content); ! ! $content[] = '<pre> ! ======================== ! Changes in version 4.2.2 ! ======================== ! + Adjusted copyright tag & Comment block header ! + Article integrates with the RSS module again ! + Demo articles now display properly when USE_BREAKER is off ! + All tags are now stripped out of the summary text in the title link alt property. ! + Fixed Bug Report [ 2631456 ] - AM 4.21 permission bug ! + Assigning the return value of new by reference is deprecated in PHP 5. ! + Times viewed is now stored in the associated Key for an article ! </pre>'; ! } // end of switch |