Update of /cvsroot/phpwebsite-comm/modules/rolodex/boost
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20584/boost
Modified Files:
about.html uninstall.php update.php
Log Message:
more 1.3 tweaks
Index: uninstall.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/uninstall.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** uninstall.php 20 Nov 2008 22:49:33 -0000 1.3
--- uninstall.php 22 Nov 2008 20:54:06 -0000 1.4
***************
*** 23,27 ****
*/
! public function rolodex_uninstall(&$content) {
$dir = PHPWS_HOME_DIR . 'images/rolodex/';
--- 23,27 ----
*/
! function rolodex_uninstall(&$content) {
$dir = PHPWS_HOME_DIR . 'images/rolodex/';
Index: about.html
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/about.html,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** about.html 4 Feb 2008 03:09:14 -0000 1.1.1.1
--- about.html 22 Nov 2008 20:54:06 -0000 1.2
***************
*** 10,13 ****
--- 10,15 ----
<p>Rolodex provides a multi-purpose directory, suitable for businesses, clubs and organizations of all sorts.</p>
+ <p>Rolodex ties into several core mods, including users and demographics. This allows user/member data to be shared by any module also using these core services.</p>
+ <p>Rolodex can be configured in many different ways, from simple to complex. User-definable fields are also available.</p>
<p class="align-center padded"><input type="button" onclick="window.close()" value="Close" /></p>
</body>
Index: update.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/update.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** update.php 20 Nov 2008 22:49:33 -0000 1.16
--- update.php 22 Nov 2008 20:54:06 -0000 1.17
***************
*** 23,27 ****
*/
! public function rolodex_update(&$content, $currentVersion)
{
$home_dir = PHPWS_Boost::getHomeDir();
--- 23,27 ----
*/
! function rolodex_update(&$content, $currentVersion)
{
$home_dir = PHPWS_Boost::getHomeDir();
***************
*** 182,194 ****
$content[] = '<pre>';
- /*
- $files = array('templates/edit_member.tpl',
- 'templates/edit_settings.tpl',
- 'templates/adv_search_form.tpl',
- 'templates/view_member.tpl',
- 'templates/list_member.tpl'
- );
- rolodexUpdateFiles($files, $content);
- */
$content[] = '1.2.0 changes
----------------
--- 182,185 ----
***************
*** 202,205 ****
--- 193,221 ----
+ case version_compare($currentVersion, '1.3.0', '<'):
+ $content[] = '<pre>';
+
+ $file = PHPWS_SOURCE_DIR . 'mod/rolodex/inc/init.php';
+ if (is_file($file)) {
+ if (!@unlink($file)) {
+ $content[] = 'FAILED TO DELETE mod/rolodex/inc/init.php
+ YOU MUST REMOVE THIS FILE YOURSELF
+ ';
+ } else {
+ $content[] = '- Removed mod/rolodex/inc/init.php
+ It has been replaced with mod/rolodex/inc/runtime.php
+ ';
+ }
+ }
+
+ $content[] = '1.3.0 changes
+ ----------------
+ + Converted to phpws 1.6 url rewriting method
+ + Removed old mod_rewrite code
+ + Begin rewriting to php5 standards
+
+ </pre>';
+
+
***************
*** 209,213 ****
}
! public function rolodexUpdateFiles($files, &$content)
{
if (PHPWS_Boost::updateFiles($files, 'rolodex')) {
--- 225,229 ----
}
! function rolodexUpdateFiles($files, &$content)
{
if (PHPWS_Boost::updateFiles($files, 'rolodex')) {
|