You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(120) |
Jun
(74) |
Jul
(97) |
Aug
(35) |
Sep
(35) |
Oct
(34) |
Nov
|
Dec
(6) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(18) |
Feb
(8) |
Mar
(7) |
Apr
(23) |
May
(28) |
Jun
(31) |
Jul
(27) |
Aug
(34) |
Sep
(48) |
Oct
(511) |
Nov
(197) |
Dec
(333) |
| 2005 |
Jan
(212) |
Feb
(33) |
Mar
(94) |
Apr
(51) |
May
(16) |
Jun
|
Jul
(200) |
Aug
(43) |
Sep
(88) |
Oct
(60) |
Nov
(62) |
Dec
(41) |
| 2006 |
Jan
(94) |
Feb
(49) |
Mar
(54) |
Apr
|
May
(39) |
Jun
(39) |
Jul
(61) |
Aug
(36) |
Sep
(23) |
Oct
(76) |
Nov
(73) |
Dec
(32) |
| 2007 |
Jan
|
Feb
(87) |
Mar
|
Apr
(8) |
May
(36) |
Jun
(49) |
Jul
(54) |
Aug
(8) |
Sep
(50) |
Oct
(36) |
Nov
|
Dec
(3) |
| 2008 |
Jan
(133) |
Feb
(54) |
Mar
(39) |
Apr
(2) |
May
(6) |
Jun
(74) |
Jul
(97) |
Aug
(70) |
Sep
(12) |
Oct
(20) |
Nov
(64) |
Dec
(24) |
| 2009 |
Jan
(25) |
Feb
(49) |
Mar
(18) |
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
(10) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Verdon V. <ve...@us...> - 2008-11-24 04:12:13
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/class In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32073/class Modified Files: RDX_Forms.php Rolodex.php Log Message: fix captch Index: RDX_Forms.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/class/RDX_Forms.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** RDX_Forms.php 22 Nov 2008 20:54:11 -0000 1.27 --- RDX_Forms.php 24 Nov 2008 04:11:57 -0000 1.28 *************** *** 1297,1303 **** PHPWS_Error::log($result); } else { - $form->addTplTag('CONFIRM_INSTRUCTIONS', dgettext('rolodex', 'Please type the word seen in the image.')); - $form->addText('confirm_graphic'); - $form->setLabel('confirm_graphic', dgettext('rolodex', 'Confirm Graphic')); $form->addTplTag('GRAPHIC', $result); } --- 1297,1300 ---- Index: Rolodex.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/class/Rolodex.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** Rolodex.php 20 Nov 2008 22:49:33 -0000 1.22 --- Rolodex.php 24 Nov 2008 04:11:57 -0000 1.23 *************** *** 1357,1360 **** --- 1357,1364 ---- } + if (!Rolodex::confirm()) { + $errors['CONFIRM_ERROR'] = dgettext('rolodex', 'Confirmation phrase is not correct.'); + } + if (isset($errors)) { $this->message = implode('<br />', $errors); *************** *** 1366,1369 **** --- 1370,1385 ---- + function confirm() + { + if (!PHPWS_Settings::get('rolodex', 'use_captcha') || + !extension_loaded('gd')) { + return true; + } + + PHPWS_Core::initCoreClass('Captcha.php'); + return Captcha::verify(); + } + + public function sendMail() { |
|
From: Verdon V. <ve...@us...> - 2008-11-24 04:12:13
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/templates In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32073/templates Modified Files: message_member.tpl Log Message: fix captch Index: message_member.tpl =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/templates/message_member.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** message_member.tpl 24 Jun 2008 11:20:25 -0000 1.1 --- message_member.tpl 24 Nov 2008 04:11:57 -0000 1.2 *************** *** 8,14 **** {SUBJECT} {SUBJECT_LABEL}<br /> {MESSAGE} {MESSAGE_LABEL}<br /> - {CONFIRM_GRAPHIC_LABEL}<br /> {GRAPHIC}<br /> - {CONFIRM_GRAPHIC} {CONFIRM_INSTRUCTIONS} <!-- BEGIN graphic-error --> <div class="error">{CONFIRM_ERROR}</div> --- 8,12 ---- |
|
From: Verdon V. <ve...@us...> - 2008-11-24 04:12:08
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/docs In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32073/docs Modified Files: CHANGELOG Log Message: fix captch Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/docs/CHANGELOG,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** CHANGELOG 22 Nov 2008 20:54:11 -0000 1.16 --- CHANGELOG 24 Nov 2008 04:11:57 -0000 1.17 *************** *** 90,92 **** --- 90,93 ---- + Begin rewriting to php5 standards + Moved readme content to docs/readme + + Updated CAPTCHA support |
|
From: Greg M. <bli...@us...> - 2008-11-24 03:45:48
|
Update of /cvsroot/phpwebsite-comm/modules/wiki/templates In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27733/templates Modified Files: style.css Log Message: Tweaked to use main theme box style. Index: style.css =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/wiki/templates/style.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** style.css 23 Oct 2006 02:37:35 -0000 1.3 --- style.css 24 Nov 2008 03:45:39 -0000 1.4 *************** *** 34,41 **** } - div.wiki div.box { - border: 2px white solid; - } - div.wiki div.wiki-menu { border-top: 1px solid white; --- 34,37 ---- |
|
From: Eloi G. <ada...@us...> - 2008-11-23 06:08:31
|
Update of /cvsroot/phpwebsite-comm/modules/article/boost In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11754/boost Modified Files: dependency.xml Log Message: 4.20 Release Index: dependency.xml =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/boost/dependency.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** dependency.xml 21 Aug 2008 20:17:29 -0000 1.4 --- dependency.xml 23 Nov 2008 06:08:25 -0000 1.5 *************** *** 4,8 **** <title>core</title> <properName>phpWebSite Core</properName> ! <version>1.8.2</version> <url>http://phpwebsite.appstate.edu/downloads/modules/base/</url> </module> --- 4,8 ---- <title>core</title> <properName>phpWebSite Core</properName> ! <version>1.9.0</version> <url>http://phpwebsite.appstate.edu/downloads/modules/base/</url> </module> *************** *** 10,14 **** <title>categories</title> <properName>Categories</properName> ! <version>2.2.2</version> <url>http://phpwebsite.appstate.edu/downloads/modules/categories</url> </module> --- 10,14 ---- <title>categories</title> <properName>Categories</properName> ! <version>2.3.0</version> <url>http://phpwebsite.appstate.edu/downloads/modules/categories</url> </module> *************** *** 16,20 **** <title>controlpanel</title> <properName>Control Panel</properName> ! <version>2.1.6</version> <url>http://phpwebsite.appstate.edu/downloads/modules/controlpanel</url> </module> --- 16,20 ---- <title>controlpanel</title> <properName>Control Panel</properName> ! <version>2.2.0</version> <url>http://phpwebsite.appstate.edu/downloads/modules/controlpanel</url> </module> *************** *** 22,26 **** <title>filecabinet</title> <properName>File Cabinet</properName> ! <version>2.1.0</version> <url>http://phpwebsite.appstate.edu/downloads/modules/filecabinet</url> </module> --- 22,26 ---- <title>filecabinet</title> <properName>File Cabinet</properName> ! <version>2.2.0</version> <url>http://phpwebsite.appstate.edu/downloads/modules/filecabinet</url> </module> *************** *** 28,32 **** <title>users</title> <properName>Users</properName> ! <version>2.5.0</version> <url>http://phpwebsite.appstate.edu/downloads/modules/users</url> </module> --- 28,32 ---- <title>users</title> <properName>Users</properName> ! <version>2.6.0</version> <url>http://phpwebsite.appstate.edu/downloads/modules/users</url> </module> *************** *** 34,38 **** <title>version</title> <properName>Version</properName> ! <version>0.1.6</version> <url>http://phpwebsite.appstate.edu/downloads/modules/version</url> </module> --- 34,38 ---- <title>version</title> <properName>Version</properName> ! <version>0.2.0</version> <url>http://phpwebsite.appstate.edu/downloads/modules/version</url> </module> |
|
From: Eloi G. <ada...@us...> - 2008-11-23 06:08:04
|
Update of /cvsroot/phpwebsite-comm/modules/article/templates In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11690/templates Modified Files: edit_permissions.tpl Log Message: Group selector lists wil now not show if there aren't any groups Index: edit_permissions.tpl =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/templates/edit_permissions.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** edit_permissions.tpl 18 Nov 2008 05:00:16 -0000 1.1 --- edit_permissions.tpl 23 Nov 2008 06:07:51 -0000 1.2 *************** *** 46,55 **** --- 46,58 ---- {VIEW_PERMISSION_3} {VIEW_PERMISSION_3_LABEL} </td> + <!-- BEGIN viewgroupSelectorBox --> <td> <div id="view_groups" style="border:solid 1px;line-height:2em;padding:1em;white-space:nowrap">{VIEWGROUP_COL_0}</div> </td> + <!-- END viewgroupSelectorBox --> </tr> </table> </fieldset> + <!-- BEGIN editgroupSelectorBox --> <fieldset> <legend>{CHANGE_EDIT} {EDIT_SELECT_LABEL}</legend> *************** *** 65,68 **** --- 68,72 ---- </table> </fieldset> + <!-- END editgroupSelectorBox --> {SUBMIT} {CANCEL} *************** *** 71,120 **** <br /> ! <table width="100%" border="0" cellspacing="0" cellpadding="2" summary="{TBL_SUMMARY}"> ! <tr class="bg_dark" style="white-space:nowrap"> ! <th scope="col" style="text-align:center" colspan="2"> ! {TITLE_LABEL} ! </th> ! <th scope="col" width="60%"> ! {VIEW_LABEL} ! <br /> ! {EDIT_LABEL} ! </th> ! </tr> <!-- BEGIN message --> ! <tr> ! <td colspan="3"> ! {EMPTY_MESSAGE} ! </td> ! </tr> <!-- END message --> <!-- BEGIN listrows --> ! <tr class="toggle{TOGGLE}"> ! <td class="smaller"> ! {SELECTION} ! </td> ! <td class="smaller" width="40%"> ! {TITLE} ! </td> ! <td class="smaller"> ! {VIEWERS} ! <hr style="border-style:dotted" /> ! {EDITORS} <br /><br /> ! </td> ! </tr> <!-- END listrows --> ! <tr> ! <td colspan="3"> ! {BULK_ACTION} ! </td> ! </tr> ! </table> {SUBMIT} {CANCEL} --- 75,124 ---- <br /> ! <table width="100%" border="0" cellspacing="0" cellpadding="2" summary="{TBL_SUMMARY}"> ! <tr class="bg_dark" style="white-space:nowrap"> ! <th scope="col" style="text-align:center" colspan="2"> ! {TITLE_LABEL} ! </th> ! <th scope="col" width="60%"> ! {VIEW_LABEL} ! <br /> ! {EDIT_LABEL} ! </th> ! </tr> <!-- BEGIN message --> ! <tr> ! <td colspan="3"> ! {EMPTY_MESSAGE} ! </td> ! </tr> <!-- END message --> <!-- BEGIN listrows --> ! <tr class="toggle{TOGGLE}"> ! <td class="smaller"> ! {SELECTION} ! </td> ! <td class="smaller" width="40%"> ! {TITLE} ! </td> ! <td class="smaller"> ! {VIEWERS} ! <hr style="border-style:dotted" /> ! {EDITORS} <br /><br /> ! </td> ! </tr> <!-- END listrows --> ! <tr> ! <td colspan="3"> ! {BULK_ACTION} ! </td> ! </tr> ! </table> {SUBMIT} {CANCEL} |
|
From: Eloi G. <ada...@us...> - 2008-11-23 06:07:58
|
Update of /cvsroot/phpwebsite-comm/modules/article/class In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11690/class Modified Files: EditPermissions.php Log Message: Group selector lists wil now not show if there aren't any groups Index: EditPermissions.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/class/EditPermissions.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EditPermissions.php 18 Nov 2008 05:00:13 -0000 1.1 --- EditPermissions.php 23 Nov 2008 06:07:51 -0000 1.2 *************** *** 139,172 **** $tags['VIEW_LABEL'] = dgettext('article', 'Viewing Restrictions'); $tags['EDIT_LABEL'] = dgettext('article', 'Who Is Allowed To Edit'); - $tags['VIEW_SELECT_LABEL'] = dgettext('article', 'Change Viewing Restrictions'); - $tags['EDIT_SELECT_LABEL'] = dgettext('article', 'Change Who Is Allowed To Edit'); $form = new PHPWS_Form('choose_permissions'); $form->addHidden('module', 'article'); $form->addHidden('op', 'edit_permissions'); // View Permission option 3 --Group selection table ! $view_group_hash = array_count_values($view_group_matchlist); ! $form->mergeTemplate($this->create_form_columns($nonuser_groups, 'view', $view_group_hash, $article_count, 1)); // View Permission fieldset ! $form->addRadio('view_permission', array(0, 1, 2)); $form->setExtra('view_permission', 'onclick="hideSelect(this.value)"'); ! $form->setLabel('view_permission', array(dgettext('users', 'All visitors'), ! dgettext('users', 'Logged visitors'), ! dgettext('users', 'Specific group(s)'))); $form->setMatch('view_permission', $key->restricted); // Edit Permission table ! // Get list of all groups/users that have restricted edit permissions ! $edit_groups = $this->getRestrictedGrouplist($key->module, $key->edit_permission); ! if (PHPWS_Error::logIfError($edit_groups)) ! return 'An error has occured. Please ask an Administrator to check the error logs.'; ! // Create the group selection list ! $edit_group_hash = array_count_values($edit_group_matchlist); ! $form->mergeTemplate($this->create_form_columns($edit_groups, 'edit', $edit_group_hash, $article_count)); ! ! $form->addCheckBox('change_view', 1); ! $form->addCheckBox('change_edit', 1); ! $form->addSubmit('submit', dgettext('article', 'Save Changes')); $form->addSubmit('cancel', dgettext('article', 'Cancel')); --- 139,175 ---- $tags['VIEW_LABEL'] = dgettext('article', 'Viewing Restrictions'); $tags['EDIT_LABEL'] = dgettext('article', 'Who Is Allowed To Edit'); $form = new PHPWS_Form('choose_permissions'); $form->addHidden('module', 'article'); $form->addHidden('op', 'edit_permissions'); + $view_opts = array(dgettext('users', 'All visitors'), dgettext('users', 'Logged visitors')); // View Permission option 3 --Group selection table ! if (!empty($view_group_matchlist)) { ! $view_group_hash = array_count_values($view_group_matchlist); ! $form->mergeTemplate($this->create_form_columns($nonuser_groups, 'view', $view_group_hash, $article_count, 1)); ! $view_opts[] = dgettext('users', 'Specific group(s)'); ! } // View Permission fieldset ! $form->addRadio('view_permission', array_keys($view_opts)); $form->setExtra('view_permission', 'onclick="hideSelect(this.value)"'); ! $form->setLabel('view_permission', $view_opts); $form->setMatch('view_permission', $key->restricted); + $form->addCheckBox('change_view', 1); + $form->addTplTag('VIEW_SELECT_LABEL', dgettext('article', 'Change Viewing Restrictions')); // Edit Permission table ! if (!empty($edit_group_matchlist)) { ! // Get list of all groups/users that have restricted edit permissions ! $edit_groups = $this->getRestrictedGrouplist($key->module, $key->edit_permission); ! if (PHPWS_Error::logIfError($edit_groups)) ! return 'An error has occured. Please ask an Administrator to check the error logs.'; ! // Create the group selection list ! $edit_group_hash = array_count_values($edit_group_matchlist); ! $form->mergeTemplate($this->create_form_columns($edit_groups, 'edit', $edit_group_hash, $article_count)); ! $form->addCheckBox('change_edit', 1); ! $form->addTplTag('EDIT_SELECT_LABEL', dgettext('article', 'Change Who Is Allowed To Edit')); ! } ! $form->addSubmit('submit', dgettext('article', 'Save Changes')); $form->addSubmit('cancel', dgettext('article', 'Cancel')); |
|
From: Eloi G. <ada...@us...> - 2008-11-23 06:06:23
|
Update of /cvsroot/phpwebsite-comm/modules/article In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11604 Modified Files: index_admin.php Log Message: Moved status message creation to after the actual operation was performed Index: index_admin.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/index_admin.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** index_admin.php 22 Nov 2008 06:41:57 -0000 1.26 --- index_admin.php 23 Nov 2008 06:06:13 -0000 1.27 *************** *** 252,257 **** $article->approved = 0; $article->draft = 1; ! $message = sprintf(dgettext('article', 'Article %s ("%s") has been saved as an unapproved rough draft'), $article->id, $article->title); ! if (AMupdate($article, $message)==true) { AMexit($article, $panel, $title, $content); } --- 252,257 ---- $article->approved = 0; $article->draft = 1; ! if (AMupdate($article, $message)==true) { ! $message = sprintf(dgettext('article', 'Article %s ("%s") has been saved as an unapproved rough draft'), $article->id, $article->title); AMexit($article, $panel, $title, $content); } *************** *** 269,274 **** $article->approved = 1; $article->draft = 0; ! $message = sprintf(dgettext('article', 'Article %s ("%s") has been saved, approved and published'), $article->id, $article->title); ! if (AMupdate($article, $message)==true) { AMexit($article, $panel, $title, $content); } --- 269,274 ---- $article->approved = 1; $article->draft = 0; ! if (AMupdate($article, $message)==true) { ! $message = sprintf(dgettext('article', 'Article %s ("%s") has been saved, approved and published'), $article->id, $article->title); AMexit($article, $panel, $title, $content); } *************** *** 290,295 **** $article->approved = 0; $article->draft = 0; ! $message = sprintf(dgettext('article', 'Article %s ("%s") is being held for approval.<br />You however, will still be able to see and edit it.'), $article->id, $article->title); ! if (AMupdate($article, $message)==true) { AMexit($article, $panel, $title, $content); } --- 290,295 ---- $article->approved = 0; $article->draft = 0; ! if (AMupdate($article, $message)==true) { ! $message = sprintf(dgettext('article', 'Article %s ("%s") is being held for approval.<br />You however, will still be able to see and edit it.'), $article->id, $article->title); AMexit($article, $panel, $title, $content); } |
|
From: Verdon V. <ve...@us...> - 2008-11-22 21:01:07
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/locale/en_US/LC_MESSAGES In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21541/locale/en_US/LC_MESSAGES Modified Files: rolodex.po Log Message: more 1.3 tweaks Index: rolodex.po =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/locale/en_US/LC_MESSAGES/rolodex.po,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** rolodex.po 28 Jul 2008 19:20:44 -0000 1.4 --- rolodex.po 22 Nov 2008 21:01:00 -0000 1.5 *************** *** 25,29 **** "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2008-07-28 15:10-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" --- 25,29 ---- "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2008-11-22 15:57-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" *************** *** 69,76 **** msgstr "" ! msgid "About this module:" msgstr "" ! msgid "Activate" msgstr "" --- 69,77 ---- msgstr "" ! msgid "Activate" msgstr "" ! #, php-format ! msgid "Activate user %s (%s)" msgstr "" *************** *** 163,169 **** msgstr "" - msgid "Bugs:" - msgstr "" - msgid "Business" msgstr "" --- 164,167 ---- *************** *** 326,329 **** --- 324,331 ---- msgstr "" + #, php-format + msgid "Deactivate user %s (%s)" + msgstr "" + msgid "Default expiry interval (in days), if expiry is enabled" msgstr "" *************** *** 371,374 **** --- 373,380 ---- msgstr "" + #, php-format + msgid "Edit email and password for %s (%s)" + msgstr "" + msgid "Edit feature" msgstr "" *************** *** 678,687 **** msgstr "" - #, php-format - msgid "" - "Please report any bugs or observations of this module in %s this post at " - "phpwsforums.com %s" - msgstr "" - msgid "Please type the word seen in the image." msgstr "" --- 684,687 ---- *************** *** 748,758 **** msgstr "" - msgid "" - "Roldex brings many new features and is even more configurable than " - "phpwsbusinesses. Rolodex also takes full advantage of the new phpws core " - "Demographics module. That module allows the sharing of user demographic " - "information across all modules in a phpws." - msgstr "" - msgid "Rolodex" msgstr "" --- 748,751 ---- *************** *** 761,771 **** msgstr "" - msgid "" - "Rolodex is a new module for phpwebsite 1.5 or better. It is a complete " - "rewrite of my earlier module phpwsbusinesses, for the earlier series of " - "phpws. If you were familiar with that module, you will be familiar with many " - "of Rolodex's features." - msgstr "" - msgid "Rolodex member activated." msgstr "" --- 754,757 ---- *************** *** 871,874 **** --- 857,863 ---- msgstr "" + msgid "Sorry, the readme file does not exist." + msgstr "" + msgid "" "Sorry, there are no users available. You will have to create a user account " |
|
From: Verdon V. <ve...@us...> - 2008-11-22 21:01:07
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/boost In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21541/boost Modified Files: update.php Log Message: more 1.3 tweaks Index: update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/update.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** update.php 22 Nov 2008 20:54:06 -0000 1.17 --- update.php 22 Nov 2008 21:01:00 -0000 1.18 *************** *** 214,217 **** --- 214,218 ---- + Removed old mod_rewrite code + Begin rewriting to php5 standards + + Moved readme content to docs/readme </pre>'; |
|
From: Verdon V. <ve...@us...> - 2008-11-22 20:54:23
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/templates In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20584/templates Modified Files: info.tpl Log Message: more 1.3 tweaks Index: info.tpl =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/templates/info.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** info.tpl 31 Mar 2008 19:54:41 -0000 1.1 --- info.tpl 22 Nov 2008 20:54:11 -0000 1.2 *************** *** 1,9 **** <fieldset> <legend><strong>{TITLE}</strong></legend> ! <!-- BEGIN info_1 --><p><strong>{INFO_1_LABEL}</strong> {INFO_1}</p><!-- END info_1 --> ! <!-- BEGIN info_2 --><p><strong>{INFO_2_LABEL}</strong> {INFO_2}</p><!-- END info_2 --> ! <!-- BEGIN info_3 --><p><strong>{INFO_3_LABEL}</strong> {INFO_3}</p><!-- END info_3 --> ! <!-- BEGIN info_4 --><p><strong>{INFO_4_LABEL}</strong> {INFO_4}</p><!-- END info_4 --> ! <!-- BEGIN info_5 --><p><strong>{INFO_5_LABEL}</strong> {INFO_5}</p><!-- END info_5 --> ! <!-- BEGIN donate --><p>{DONATE}</p><!-- END donate --> </fieldset> --- 1,5 ---- <fieldset> <legend><strong>{TITLE}</strong></legend> ! <p>{INFO}</p> ! <p>{DONATE}</p> </fieldset> |
|
From: Verdon V. <ve...@us...> - 2008-11-22 20:54:23
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/docs In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20584/docs Modified Files: CHANGELOG Added Files: README Log Message: more 1.3 tweaks --- NEW FILE: README --- <p>Rolodex is a new module for phpwebsite 1.5 or better. It is a complete rewrite of my earlier module phpwsbusinesses, for the earlier series of phpws. If you were familiar with that module, you will be familiar with many of Rolodex's features.</p> <p>Roldex brings many new features and is even more configurable than phpwsbusinesses. Rolodex also takes full advantage of the new phpws core Demographics module. That module allows the sharing of user demographic information across all modules in a phpws.</p> <p>Please report any bugs or observations of this module in <a href="http://phpwsforums.com/showthread.php?t=5969" target="new">this post at phpwsforums.com</a></p> Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/docs/CHANGELOG,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** CHANGELOG 20 Nov 2008 22:49:33 -0000 1.15 --- CHANGELOG 22 Nov 2008 20:54:11 -0000 1.16 *************** *** 84,92 **** priveledges will be able to edit and/or activate the related user ! Version 1.3.0 -- Oct 2008 ------------------------------------------------------------------ + Converted to phpws 1.6 url rewriting method + Removed old mod_rewrite code + Begin rewriting to php5 standards ! --- 84,92 ---- priveledges will be able to edit and/or activate the related user ! Version 1.3.0 -- Oct-Nov 2008 ------------------------------------------------------------------ + Converted to phpws 1.6 url rewriting method + Removed old mod_rewrite code + Begin rewriting to php5 standards ! + Moved readme content to docs/readme |
|
From: Verdon V. <ve...@us...> - 2008-11-22 20:54:23
|
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')) { |
|
From: Verdon V. <ve...@us...> - 2008-11-22 20:54:23
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/class In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20584/class Modified Files: RDX_Forms.php Log Message: more 1.3 tweaks Index: RDX_Forms.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/class/RDX_Forms.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** RDX_Forms.php 20 Nov 2008 22:49:33 -0000 1.26 --- RDX_Forms.php 22 Nov 2008 20:54:11 -0000 1.27 *************** *** 1356,1370 **** { $tpl['TITLE'] = dgettext('rolodex', 'Important Information'); ! $tpl['INFO_1_LABEL'] = dgettext('rolodex', 'About this module:'); ! $tpl['INFO_1'] = dgettext('rolodex', 'Rolodex is a new module for phpwebsite 1.5 or better. It is a complete rewrite of my earlier module phpwsbusinesses, for the earlier series of phpws. If you were familiar with that module, you will be familiar with many of Rolodex\'s features.'); ! $tpl['INFO_2_LABEL'] = null; ! $tpl['INFO_2'] = dgettext('rolodex', 'Roldex brings many new features and is even more configurable than phpwsbusinesses. Rolodex also takes full advantage of the new phpws core Demographics module. That module allows the sharing of user demographic information across all modules in a phpws.'); ! $tpl['INFO_3_LABEL'] = dgettext('rolodex', 'Bugs:'); ! $tpl['INFO_3'] = sprintf(dgettext('rolodex', 'Please report any bugs or observations of this module in %s this post at phpwsforums.com %s'), '<a href="http://phpwsforums.com/showthread.php?t=5969" target="new">', '</a>'); ! $tpl['INFO_4_LABEL'] = null; ! $tpl['INFO_4'] = null; ! $tpl['INFO_5_LABEL'] = null; ! $tpl['INFO_5'] = null; $tpl['DONATE'] = sprintf(dgettext('rolodex', 'If you would like to help out with the ongoing development of Rolodex, or other modules by Verdon Vaillancourt, %s click here to donate %s (opens in new browser window).'), '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=donations%40verdon%2eca&item_name=Rolodex%20Module%20Development&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=CA&bn=PP%2dDonationsBF&charset=UTF%2d8" target="new">', '</a>'); --- 1356,1370 ---- { + $filename = 'mod/rolodex/docs/README'; + if (@fopen($filename, "rb")) { + $handle = fopen($filename, "rb"); + $readme = fread($handle, filesize($filename)); + fclose($handle); + } else { + $readme = dgettext('rolodex', 'Sorry, the readme file does not exist.'); + } + $tpl['TITLE'] = dgettext('rolodex', 'Important Information'); ! $tpl['INFO'] = $readme; $tpl['DONATE'] = sprintf(dgettext('rolodex', 'If you would like to help out with the ongoing development of Rolodex, or other modules by Verdon Vaillancourt, %s click here to donate %s (opens in new browser window).'), '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=donations%40verdon%2eca&item_name=Rolodex%20Module%20Development&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=CA&bn=PP%2dDonationsBF&charset=UTF%2d8" target="new">', '</a>'); |
|
From: Eloi G. <ada...@us...> - 2008-11-22 06:42:08
|
Update of /cvsroot/phpwebsite-comm/modules/article In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28391 Modified Files: index_admin.php Log Message: Setting changes weren't getting saved. Fixed. Index: index_admin.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/index_admin.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** index_admin.php 21 Nov 2008 06:13:15 -0000 1.25 --- index_admin.php 22 Nov 2008 06:41:57 -0000 1.26 *************** *** 598,602 **** case 'reset': PHPWS_Settings::reset('article'); ! break; } $title = dgettext('article', 'Article Manager Configuration'); --- 598,604 ---- case 'reset': PHPWS_Settings::reset('article'); ! break; ! ! default: } $title = dgettext('article', 'Article Manager Configuration'); *************** *** 729,738 **** if($status['isDraft']) { $title = dgettext('article', 'Editing Rough Draft'); ! $message = dgettext('article', 'This is a rough draft of changes to this article.'); } /* otherwise its waiting for approval */ else { $title = dgettext('article', 'Editing Unapproved Article Version'); ! $message = dgettext('article', 'This is a newer version of this article that is awaiting approval.'); } $message .= "<br />\n". dgettext('article', "If you want to see the changes between this one and the one being displayed, select 'Version History'."); --- 731,740 ---- if($status['isDraft']) { $title = dgettext('article', 'Editing Rough Draft'); ! $message = dgettext('article', 'You are editing a rough draft of changes to this article.'); } /* otherwise its waiting for approval */ else { $title = dgettext('article', 'Editing Unapproved Article Version'); ! $message = dgettext('article', 'You are editing a newer version of this article that is awaiting approval.'); } $message .= "<br />\n". dgettext('article', "If you want to see the changes between this one and the one being displayed, select 'Version History'."); *************** *** 751,755 **** else $username = _('Unknown user'); - $ip = $_SERVER['REMOTE_ADDR']; $event = sprintf('%s@%s -- %s', $username, $ip, $message); --- 753,756 ---- |
|
From: Eloi G. <ada...@us...> - 2008-11-22 06:42:03
|
Update of /cvsroot/phpwebsite-comm/modules/article/class In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28391/class Modified Files: AM_EditForms.php AM_Lists.php Removed Files: AM_ModSettings.php Log Message: Setting changes weren't getting saved. Fixed. --- AM_ModSettings.php DELETED --- Index: AM_EditForms.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/class/AM_EditForms.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** AM_EditForms.php 21 Nov 2008 06:13:14 -0000 1.10 --- AM_EditForms.php 22 Nov 2008 06:41:54 -0000 1.11 *************** *** 628,631 **** --- 628,632 ---- PHPWS_Settings::set('article', $settings); + PHPWS_Settings::save('article'); PHPWS_AM_Data::reset_cache(); } Index: AM_Lists.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/class/AM_Lists.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** AM_Lists.php 22 Nov 2008 00:43:57 -0000 1.25 --- AM_Lists.php 22 Nov 2008 06:41:54 -0000 1.26 *************** *** 228,233 **** elseif ($publication_date > $now) $status = dgettext('article', 'Upcoming Article'); ! elseif (!$approved) ! $status = dgettext('article', 'Unapproved'); elseif ($mainarticle) $status = dgettext('article', 'Featured Article'); --- 228,237 ---- elseif ($publication_date > $now) $status = dgettext('article', 'Upcoming Article'); ! elseif (!$approved) { ! if ($draft) ! $status = dgettext('article', 'Rough Draft'); ! else ! $status = dgettext('article', 'Unapproved'); ! } elseif ($mainarticle) $status = dgettext('article', 'Featured Article'); |
|
From: Eloi G. <ada...@us...> - 2008-11-22 00:44:06
|
Update of /cvsroot/phpwebsite-comm/modules/article/docs In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8789/docs Modified Files: Changes.txt Log Message: Made bulk operation selection text more understandable. Index: Changes.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/docs/Changes.txt,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** Changes.txt 21 Nov 2008 14:16:27 -0000 1.38 --- Changes.txt 22 Nov 2008 00:43:59 -0000 1.39 *************** *** 16,19 **** --- 16,20 ---- + RFE ["trf000"] - Image fields now handle multimedia filecabinet content (more than just pictures!) + mod-rewite URIs now look like the 1.6 spec to insure backwards compatibility + + Made bulk operation selection text more understandable. ======================== |
|
From: Eloi G. <ada...@us...> - 2008-11-22 00:44:06
|
Update of /cvsroot/phpwebsite-comm/modules/article/class In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8789/class Modified Files: AM_Lists.php Log Message: Made bulk operation selection text more understandable. Index: AM_Lists.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/class/AM_Lists.php,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** AM_Lists.php 21 Nov 2008 14:16:23 -0000 1.24 --- AM_Lists.php 22 Nov 2008 00:43:57 -0000 1.25 *************** *** 330,338 **** /* enable/disable this as a homepage article */ if(Current_User::allow('article', 'set_mainarticle')) ! $actions .= '<option value="set_main">'.dgettext('article', 'Set as Main Articles')."</option>\n" ! . '<option value="unset_main">'.dgettext('article', 'Remove from Main Articles')."</option>\n"; /* bulk restrictView & restrictEdit */ if(Current_User::isUnrestricted('article')) ! $actions .= '<option value="edit_permissions">'.dgettext('article', 'Edit Permissions')."</option>\n"; /* Set up Delete & Export buttons */ if(Current_User::allow('article', 'delete_articles')) { --- 330,338 ---- /* enable/disable this as a homepage article */ if(Current_User::allow('article', 'set_mainarticle')) ! $actions .= '<option value="set_main">'.dgettext('article', 'Publish full article(s) on Homepage')."</option>\n" ! . '<option value="unset_main">'.dgettext('article', 'Remove full article(s) from Homepage')."</option>\n"; /* bulk restrictView & restrictEdit */ if(Current_User::isUnrestricted('article')) ! $actions .= '<option value="edit_permissions">'.dgettext('article', 'Edit article access permissions')."</option>\n"; /* Set up Delete & Export buttons */ if(Current_User::allow('article', 'delete_articles')) { |
|
From: Eloi G. <ada...@us...> - 2008-11-22 00:44:06
|
Update of /cvsroot/phpwebsite-comm/modules/article/boost In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8789/boost Modified Files: update.php Log Message: Made bulk operation selection text more understandable. Index: update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/boost/update.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** update.php 21 Nov 2008 14:16:26 -0000 1.26 --- update.php 22 Nov 2008 00:43:59 -0000 1.27 *************** *** 252,255 **** --- 252,256 ---- + RFE ["trf000"] - Image fields now handle multimedia filecabinet content (more than just pictures!) + mod-rewite URIs now look like the 1.6 spec to insure backwards compatibility + + Made bulk operation selection text more understandable. </pre>'; |
|
From: Eloi G. <ada...@us...> - 2008-11-21 14:16:37
|
Update of /cvsroot/phpwebsite-comm/modules/article/inc In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19018/inc Modified Files: A_mail.php runtime_chronological.php runtime.php Log Message: mod-rewite URIs now look like the 1.6 spec to insure backwards compatibility Index: runtime_chronological.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/runtime_chronological.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** runtime_chronological.php 18 Nov 2008 05:08:55 -0000 1.14 --- runtime_chronological.php 21 Nov 2008 14:16:26 -0000 1.15 *************** *** 116,124 **** { if ($i>0) ! $content .= '<br />'; ! if (MOD_REWRITE_ENABLED && $result[$i]['id']) ! $link = PHPWS_Text::rewriteLink($result[$i]['title'], 'article', $result[$i]['id']); ! else ! $link = PHPWS_Text::moduleLink($result[$i]['title'], 'article',array('id'=>$result[$i]['id'])); $content .= date('F d', $result[$i]['updated_date']).' <br />'.$link.'
'; } --- 116,121 ---- { if ($i>0) ! $content .= '<br />'; ! $link = PHPWS_Text::rewriteLink($result[$i]['title'], 'article', array('id'=>$result[$i]['id'])); $content .= date('F d', $result[$i]['updated_date']).' <br />'.$link.'
'; } Index: runtime.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/runtime.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** runtime.php 21 Nov 2008 06:13:14 -0000 1.17 --- runtime.php 21 Nov 2008 14:16:26 -0000 1.18 *************** *** 68,75 **** $content = ''; foreach($result AS $summary) { ! if (MOD_REWRITE_ENABLED && $summary['id'] > 0) ! $link = PHPWS_Text::rewriteLink($summary['title'], 'article', $summary['id']); ! else ! $link = PHPWS_Text::moduleLink($summary['title'], 'article', array('id'=> $summary['id'])); $content .= '<li>'.$link.'</li><br />
'; } --- 68,72 ---- $content = ''; foreach($result AS $summary) { ! $link = PHPWS_Text::rewriteLink($summary['title'], 'article', array('id'=> $summary['id'])); $content .= '<li>'.$link.'</li><br />
'; } Index: A_mail.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/A_mail.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** A_mail.php 21 Aug 2008 20:17:19 -0000 1.13 --- A_mail.php 21 Nov 2008 14:16:26 -0000 1.14 *************** *** 101,108 **** if ($this->summary) $tags['SUMMARYTEXT'] = PHPWS_AM_Data::parseOutput($this->summary); ! if (MOD_REWRITE_ENABLED && $this->id > 0) ! $link = PHPWS_Text::rewriteLink(dgettext('article', 'Back to Article'), 'article', $this->id); ! else ! $link = PHPWS_Text::moduleLink(dgettext('article', 'Back to Article'), 'article', array('id' => $this->id)); $tags['BACKLINK'] = '["../"]'; $tags['R_MAIL_ERROR'] = dgettext('article', 'Friend\'s Email').':'; --- 101,105 ---- if ($this->summary) $tags['SUMMARYTEXT'] = PHPWS_AM_Data::parseOutput($this->summary); ! $link = PHPWS_Text::rewriteLink(dgettext('article', 'Back to Article'), 'article', array('id'=>$this->id)); $tags['BACKLINK'] = '["../"]'; $tags['R_MAIL_ERROR'] = dgettext('article', 'Friend\'s Email').':'; |
|
From: Eloi G. <ada...@us...> - 2008-11-21 14:16:32
|
Update of /cvsroot/phpwebsite-comm/modules/article/docs In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19018/docs Modified Files: Changes.txt Log Message: mod-rewite URIs now look like the 1.6 spec to insure backwards compatibility Index: Changes.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/docs/Changes.txt,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** Changes.txt 21 Nov 2008 06:15:30 -0000 1.37 --- Changes.txt 21 Nov 2008 14:16:27 -0000 1.38 *************** *** 1,5 **** + TODO--xxxxx--AM uses the core XML-RPC library now - ============================================= Changes in version 4.2.0 (The trf000 Edition) --- 1,4 ---- *************** *** 16,20 **** + Moved installation auto-import of demonstration article and manual to install.php + RFE ["trf000"] - Image fields now handle multimedia filecabinet content (more than just pictures!) ! xxxx--mod-rewite URIs now look more like the proposed spec to insure backwards compatibility ======================== --- 15,19 ---- + Moved installation auto-import of demonstration article and manual to install.php + RFE ["trf000"] - Image fields now handle multimedia filecabinet content (more than just pictures!) ! + mod-rewite URIs now look like the 1.6 spec to insure backwards compatibility ======================== |
|
From: Eloi G. <ada...@us...> - 2008-11-21 14:16:31
|
Update of /cvsroot/phpwebsite-comm/modules/article In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19018 Modified Files: index.php Log Message: mod-rewite URIs now look like the 1.6 spec to insure backwards compatibility Index: index.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/index.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** index.php 21 Nov 2008 06:13:15 -0000 1.25 --- index.php 21 Nov 2008 14:16:26 -0000 1.26 *************** *** 18,27 **** PHPWS_Core::initModClass('article', 'Image.php'); - /* Process any mod-rewrite submissions */ - if (isset($_GET['var1'])) { - $_REQUEST['id'] = (int)$_GET['var1']; - if (isset($_GET['var2'])) - $_REQUEST['page'] = (int)$_GET['var2']; - } /* Process any form button submissions */ /* Button format is ARTICLE_vars[tab:command<::key:value><::key:value>...] */ --- 18,21 ---- |
|
From: Eloi G. <ada...@us...> - 2008-11-21 14:16:31
|
Update of /cvsroot/phpwebsite-comm/modules/article/boost In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19018/boost Modified Files: update.php Log Message: mod-rewite URIs now look like the 1.6 spec to insure backwards compatibility Index: update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/boost/update.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** update.php 21 Nov 2008 06:13:11 -0000 1.25 --- update.php 21 Nov 2008 14:16:26 -0000 1.26 *************** *** 249,252 **** --- 249,255 ---- + Fixed caching of homepage summary display for visitors + Moved handling of configuration settings to the PHPWS_Settings class + + Moved installation auto-import of demonstration article and manual to install.php + + RFE ["trf000"] - Image fields now handle multimedia filecabinet content (more than just pictures!) + + mod-rewite URIs now look like the 1.6 spec to insure backwards compatibility </pre>'; |
|
From: Eloi G. <ada...@us...> - 2008-11-21 14:16:30
|
Update of /cvsroot/phpwebsite-comm/modules/article/class In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19018/class Modified Files: AM_Lists.php Article.php Log Message: mod-rewite URIs now look like the 1.6 spec to insure backwards compatibility Index: AM_Lists.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/class/AM_Lists.php,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** AM_Lists.php 21 Nov 2008 06:13:14 -0000 1.23 --- AM_Lists.php 21 Nov 2008 14:16:23 -0000 1.24 *************** *** 403,407 **** Key::restrictView($pager->db, 'article'); if (MOD_REWRITE_ENABLED) ! $link = 'article/news/?'.PHPWS_AM_Lists::http_build_query(PHPWS_AM_Data::get_changed_search_parameters()); else $link = 'index.php?module=article&id=news'.PHPWS_AM_Lists::http_build_query(PHPWS_AM_Data::get_changed_search_parameters()); --- 403,407 ---- Key::restrictView($pager->db, 'article'); if (MOD_REWRITE_ENABLED) ! $link = 'article/id/news/?'.PHPWS_AM_Lists::http_build_query(PHPWS_AM_Data::get_changed_search_parameters()); else $link = 'index.php?module=article&id=news'.PHPWS_AM_Lists::http_build_query(PHPWS_AM_Data::get_changed_search_parameters()); Index: Article.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/class/Article.php,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** Article.php 21 Nov 2008 06:13:14 -0000 1.57 --- Article.php 21 Nov 2008 14:16:23 -0000 1.58 *************** *** 210,214 **** function _get_tags () { ! $page_wanted = 1; if(!empty($_REQUEST['page'])) $page_wanted = (int) $_REQUEST['page']; --- 210,220 ---- function _get_tags () { ! if (isset($_REQUEST['op']) && $_REQUEST['op'] == 'view_version') { ! $vars['op'] = 'view_version'; ! $vars['version_id'] = (int) $_REQUEST['version_id']; ! } ! else ! $vars['id'] = $this->id; ! $page_wanted = 1; if(!empty($_REQUEST['page'])) $page_wanted = (int) $_REQUEST['page']; *************** *** 258,265 **** if($this->wordcount>0) { ! if (MOD_REWRITE_ENABLED && $this->id > 0) ! $article_tags['READMORE'] = sprintf('<a href="article/%d">%s</a>', $this->id, dgettext('article', 'Read More')); ! else ! $article_tags['READMORE'] = '[' . sprintf('<a href="index.php?module=article&id=%d">%s</a>', $this->id, dgettext('article', 'Read More')). ']'; $article_tags['MOREWORDS'] = $this->wordcount." ".dgettext('article', 'more words'); $article_tags['MOREPAGES'] = $this->pagecount . ' ' . (($this->pagecount==1) ?dgettext('article', 'page') :dgettext('article', 'pages')); --- 264,268 ---- if($this->wordcount>0) { ! $article_tags['READMORE'] = '[' . PHPWS_Text::rewriteLink(dgettext('article', 'Read More'), 'article', $vars). ']'; $article_tags['MOREWORDS'] = $this->wordcount." ".dgettext('article', 'more words'); $article_tags['MOREPAGES'] = $this->pagecount . ' ' . (($this->pagecount==1) ?dgettext('article', 'page') :dgettext('article', 'pages')); *************** *** 330,355 **** } */ - - /* If the Comments module is available, get comments information */ - if(PHPWS_Settings::get('article', 'use_comments') && $this->allow_comments - && PHPWS_Core::initModClass('comments', 'Comments.php') - && $article_tags['thread'] = Comments::getThread($this->key_id)) - { - $s = $article_tags['thread']->countComments(true); - if (MOD_REWRITE_ENABLED && $this->id > 0) - $article_tags['NUM_COMMENTS'] = sprintf('<a href="article/%d#comments">%s</a>', $this->id, $s); - else - $article_tags['NUM_COMMENTS'] = sprintf('<a href="index.php?module=article&id=%d#comments">%s</a>', $this->id, $s); - } /* Develop article content */ $navlist = $navbar = array(); $article_tags['BODYTEXT'] = ''; - if (isset($_REQUEST['op']) && $_REQUEST['op'] == 'view_version') { - $vars['op'] = 'view_version'; - $vars['version_id'] = (int) $_REQUEST['version_id']; - } - else - $vars['id'] = $this->id; if(is_string($this->pages)) --- 333,340 ---- *************** *** 376,389 **** $navbar[] = '['.$pagenum.']'; /* otherwise, create a article link */ ! } else { ! if (MOD_REWRITE_ENABLED && !isset($vars['op']) && $this->id > 0) { ! $navlist[] = sprintf('<a href="article/%d/%d">%s</a>', $this->id, $pagenum, $page_title); ! $navbar[] = sprintf('<a href="article/%d/%d">%s</a>', $this->id, $pagenum, $pagenum); ! } ! else { ! $vars['page'] = $pagenum; ! $navlist[] = PHPWS_Text::moduleLink($page_title, 'article', $vars); ! $navbar[] = PHPWS_Text::moduleLink($pagenum, 'article', $vars); ! } } } --- 361,368 ---- $navbar[] = '['.$pagenum.']'; /* otherwise, create a article link */ ! } else { ! $vars['page'] = $pagenum; ! $navlist[] = PHPWS_Text::rewriteLink($page_title, 'article', $vars); ! $navbar[] = PHPWS_Text::rewriteLink($pagenum, 'article', $vars); } } *************** *** 407,426 **** $article_tags['PREV'] = $article_tags['NEXT'] = ' '; if ($page_wanted > 1) { ! $vars['page'] = $page_wanted-1; ! if (MOD_REWRITE_ENABLED && !isset($vars['op']) && $this->id > 0) ! $article_tags['PREV'] = sprintf('<a href="article/%d/%d">%s</a>', $this->id, $vars['page'], dgettext('article', 'Previous Page')); ! else ! $article_tags['PREV'] = PHPWS_Text::moduleLink(dgettext('article', 'Previous Page'), 'article', $vars); } if ($page_wanted < $this->pagecount) { $vars['page'] = $page_wanted+1; ! if (MOD_REWRITE_ENABLED && !isset($vars['op']) && $this->id > 0) ! $article_tags['NEXT'] = sprintf('<a href="article/%d/%d">%s</a>', $this->id, $vars['page'], dgettext('article', 'Next Page')); ! else ! $article_tags['NEXT'] = PHPWS_Text::moduleLink(dgettext('article', 'Next Page'), 'article', $vars); ! } } ! unset($vars); return $article_tags; } --- 386,413 ---- $article_tags['PREV'] = $article_tags['NEXT'] = ' '; if ($page_wanted > 1) { ! $vars['page'] = $page_wanted-1; ! $article_tags['PREV'] = PHPWS_Text::rewriteLink(dgettext('article', 'Previous Page'), 'article', $vars); } if ($page_wanted < $this->pagecount) { $vars['page'] = $page_wanted+1; ! $article_tags['NEXT'] = PHPWS_Text::rewriteLink(dgettext('article', 'Next Page'), 'article', $vars); ! } ! unset($vars['page']); } ! ! /* If the Comments module is available, get comments information */ ! if($this->id != 0 && PHPWS_Settings::get('article', 'use_comments') && $this->allow_comments ! && PHPWS_Core::initModClass('comments', 'Comments.php') ! && $article_tags['thread'] = Comments::getThread($this->key_id)) ! { ! $s = $article_tags['thread']->countComments(true); ! $link = PHPWS_Text::quickLink($s, 'article', $vars); ! $link->rewrite = true; ! $link->setAnchor('comments'); ! $article_tags['NUM_COMMENTS'] = $link->get(); ! } ! ! unset($vars); return $article_tags; } *************** *** 654,667 **** function get_title_link ($id = null, $title = null) { ! if (!$id) ! $id = $this->id; ! if (!$title) ! $title = $this->title; ! if (MOD_REWRITE_ENABLED && $id > 0) ! $link = sprintf('<a href="article/%d">%s</a>', $id, $title); ! else ! $link = sprintf('<a href="index.php?module=article&id=%d">%s</a>', $id, $title); ! return $link; } /** * Finds a section by id. --- 641,649 ---- function get_title_link ($id = null, $title = null) { ! $vars['id'] = ($id)? $id : $this->id; ! $title = (!empty($title))? $title : $this->title; ! return PHPWS_Text::rewriteLink($title, 'article', $vars); } + /** * Finds a section by id. |
|
From: Eloi G. <ada...@us...> - 2008-11-21 06:15:41
|
Update of /cvsroot/phpwebsite-comm/modules/article/docs In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11734/docs Modified Files: Changes.txt Log Message: RFE ["trf000"] - Image fields now handle multimedia filecabinet content (more than just pictures!) Index: Changes.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/docs/Changes.txt,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** Changes.txt 21 Nov 2008 06:13:15 -0000 1.36 --- Changes.txt 21 Nov 2008 06:15:30 -0000 1.37 *************** *** 15,19 **** + Moved handling of configuration settings to the PHPWS_Settings class + Moved installation auto-import of demonstration article and manual to install.php ! xxxx--RFE ["trf000"] - Image fields now handle multimedia filecabinet content (more than just pictures!) xxxx--mod-rewite URIs now look more like the proposed spec to insure backwards compatibility --- 15,19 ---- + Moved handling of configuration settings to the PHPWS_Settings class + Moved installation auto-import of demonstration article and manual to install.php ! + RFE ["trf000"] - Image fields now handle multimedia filecabinet content (more than just pictures!) xxxx--mod-rewite URIs now look more like the proposed spec to insure backwards compatibility |