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: <gbr...@us...> - 2003-09-24 23:39:34
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/conf In directory sc8-pr-cvs1:/tmp/cvs-serv27040/conf Modified Files: boost.php help.php Log Message: multiple modifications to version 1.3 Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/conf/boost.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** boost.php 2 Aug 2003 00:03:31 -0000 1.7 --- boost.php 24 Sep 2003 23:38:53 -0000 1.8 *************** *** 40,44 **** $active = "on"; /* This package's version number */ ! $version = "1.2"; /* not sure, but likely the location on the web of the current version number */ /* other modules on which this module depends */ --- 40,44 ---- $active = "on"; /* This package's version number */ ! $version = "1.3"; /* not sure, but likely the location on the web of the current version number */ /* other modules on which this module depends */ Index: help.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/conf/help.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** help.php 25 Jun 2003 22:13:10 -0000 1.3 --- help.php 24 Sep 2003 23:38:53 -0000 1.4 *************** *** 33,36 **** --- 33,38 ---- $jmCategory = $_SESSION['translate']->it("Category"); $jmCategory_content = "Choose one or more categories that best fit this position."; + $smViewAll = $_SESSION['translate']->it("View All"); + $smViewAll_content = "Click this button to view all positions available at once."; ?> |
From: <gbr...@us...> - 2003-09-24 23:39:34
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/class In directory sc8-pr-cvs1:/tmp/cvs-serv27040/class Modified Files: JobManager.php Log Message: multiple modifications to version 1.3 Index: JobManager.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/class/JobManager.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JobManager.php 1 Aug 2003 00:53:58 -0000 1.3 --- JobManager.php 24 Sep 2003 23:38:52 -0000 1.4 *************** *** 59,64 **** $tags["CREATE_MENU_LINK_LABEL"] = $_SESSION["translate"]->it("Create Menu Link"); $tags["CREATE_MENU_LINK_HELP"] = $_SESSION["OBJ_help"]->show_link("jobman", "jmAddMenuLink"); /* and process the template templates/menu.tpl to produce the menu */ ! $content = $GLOBALS["core"]->processTemplate($tags, "jobman", "menu.tpl"); /* add admin form of list */ $content .= $this->getList("admin", $_SESSION['translate']->it("Listing Positions")); --- 59,66 ---- $tags["CREATE_MENU_LINK_LABEL"] = $_SESSION["translate"]->it("Create Menu Link"); $tags["CREATE_MENU_LINK_HELP"] = $_SESSION["OBJ_help"]->show_link("jobman", "jmAddMenuLink"); + $tags["VIEW_ALL_LABEL"] = $_SESSION['translate']->it("View All"); + $tags["VIEW_ALL_HELP"] = $_SESSION['OBJ_help']->show_link("jobman", "smViewAll"); /* and process the template templates/menu.tpl to produce the menu */ ! $content = $GLOBALS["core"]->processTemplate($tags, "jobman", "amenu.tpl"); /* add admin form of list */ $content .= $this->getList("admin", $_SESSION['translate']->it("Listing Positions")); *************** *** 66,69 **** --- 68,74 ---- } else { /* otherwise, display user format list */ + $tags["VIEW_ALL_LABEL"] = $_SESSION['translate']->it("View All"); + $tags["VIEW_ALL_HELP"] = $_SESSION['OBJ_help']->show_link("jobman", "smViewAll"); + $content = $GLOBALS["core"]->processTemplate($tags, "jobman", "umenu.tpl"); $content = $this->getList("user", $_SESSION['translate']->it("Listing Positions")); } *************** *** 168,171 **** --- 173,183 ---- $GLOBALS["CNT_jobman"]["content"] = $content; $GLOBALS["CNT_jobman"]["title"] = $_SESSION['translate']->it("Positions Available"); + break; + + case "aView": /* view all items in the list */ + $this->listName = "user"; // use sort from current user list + $this->setOrder("label"); // order by job title + $_REQUEST["PHPWS_MAN_ITEMS"] = $this->_getIds(); //get array of all item ids + $this->_view(); // and display the corresponding items break; |
From: <gbr...@us...> - 2003-09-24 23:39:05
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/templates In directory sc8-pr-cvs1:/tmp/cvs-serv27040/templates Removed Files: menu.tpl Log Message: multiple modifications to version 1.3 --- menu.tpl DELETED --- |
From: <gbr...@us...> - 2003-09-24 23:39:05
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/lang In directory sc8-pr-cvs1:/tmp/cvs-serv27040/lang Modified Files: jobman.en.lng Log Message: multiple modifications to version 1.3 Index: jobman.en.lng =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/lang/jobman.en.lng,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** jobman.en.lng 31 Jul 2003 23:56:15 -0000 1.3 --- jobman.en.lng 24 Sep 2003 23:38:55 -0000 1.4 *************** *** 35,36 **** --- 35,37 ---- a:|:You may only delete one job listing at a time.:|:You may only delete one job listing at a time. a:|:You may only edit one job listing at a time.:|:You may only edit one job listing at a time. + a:|:View All:|:View All |
From: <gbr...@us...> - 2003-09-24 23:39:04
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/docs In directory sc8-pr-cvs1:/tmp/cvs-serv27040/docs Modified Files: README.txt Log Message: multiple modifications to version 1.3 Index: README.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/docs/README.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README.txt 25 Jun 2003 22:13:10 -0000 1.2 --- README.txt 24 Sep 2003 23:38:54 -0000 1.3 *************** *** 9,13 **** REQUIREMENTS: ------------------------------- ! phpWebSite v0.9.1 or above ------------------------------- --- 9,13 ---- REQUIREMENTS: ------------------------------- ! phpWebSite v0.9.2 or above ------------------------------- *************** *** 21,25 **** create a menu item in any phpWS menu linking to the list display. Everyone can search through the listing for terms in the position title, status, description or ! qualifications. ------------------------------ --- 21,26 ---- create a menu item in any phpWS menu linking to the list display. Everyone can search through the listing for terms in the position title, status, description or ! qualifications. In addition, listings provide category support which links to other items in ! the same category. ------------------------------ *************** *** 30,34 **** select the Boost Module Upgrader. The jobman module will be listed as "Positions Available." Click Install. After successful installation, the module will appear along with other ! installed modules in the Content column of the Modules display. ------------------------------ --- 31,43 ---- select the Boost Module Upgrader. The jobman module will be listed as "Positions Available." Click Install. After successful installation, the module will appear along with other ! installed modules in the Content tab of the Modules display. ! ! ------------------------------ ! UPDATING ! ------------------------------ ! This module is designed to be self-updating. Simply drop the jobman directory into ! the mod/ directory of your site, replacing the existing jobman directory. Log in to ! your site as Deity, select Control Panel, Administration, and Boost. Click the Update ! button next to Job Manager to complete the update. ------------------------------ *************** *** 44,48 **** To uninstall this module, log in to your site as Deity, select Modules and then Boost Module Upgrader. Locate 'Positions Available' in the list of modules, and click ! Uninstall. ------------------------------ --- 53,58 ---- To uninstall this module, log in to your site as Deity, select Modules and then Boost Module Upgrader. Locate 'Positions Available' in the list of modules, and click ! Uninstall. NOTE THAT UN-INSTALLATION DESTROYS DATA in the form of information stored in ! the database. ------------------------------ *************** *** 63,78 **** classes to manage multiple lists of more complex data. An example of the latter type is the photoalbum module -- management of multiple albums containing lists of items ! that include both uploaded graphics and text. ! I have also included two other useful features in this module which may prove useful to other developers. First, I have included an interface to add a menu item to display the list, freeing administrators from having to know the operation value required. Second, I have used the help module to provide help for key items in ! the interface. I hope you will find jobman a useful example. If you find errors, or wish to ! suggest improvements, please contact me directly. I hope to write some additional ! notes on how best to go about writing such modules, and welcome any suggestions ! you might have. George Brackett --- 73,101 ---- classes to manage multiple lists of more complex data. An example of the latter type is the photoalbum module -- management of multiple albums containing lists of items ! that include both uploaded graphics and text. Indeed, I am indebted to the photoalbum ! module for many hints and examples. ! I have also included other useful features in this module which may prove useful to other developers. First, I have included an interface to add a menu item to display the list, freeing administrators from having to know the operation value required. Second, I have used the help module to provide help for key items in ! the interface. Third, I have registered the module with the Search facility. ! Finally, I have included category (fatcat) support. I hope you will find jobman a useful example. If you find errors, or wish to ! suggest improvements, please contact me directly. George Brackett + + ------------------------------ + VERSION HISTORY + ------------------------------ + 1.3 + Added update scripting to re-load the help file, which changed with this version. + When uninstalling, jobman now removes any corresponding menu item or + fatcat (category) entries. + Added capability to view all positions available with a button on the main list + page or by accessing the url + index.php?module=jobman&JOB_MAN_op=aView + Automatically display the list of all positions sorted alphabetically by + position title. |
From: <ada...@us...> - 2003-09-23 21:55:15
|
Update of /cvsroot/phpwebsite-comm/modules/article/templates/edit In directory sc8-pr-cvs1:/tmp/cvs-serv22723/templates/edit Removed Files: article.tpl Log Message: Obsolete file --- article.tpl DELETED --- |
From: <ada...@us...> - 2003-09-20 22:19:41
|
Update of /cvsroot/phpwebsite-comm/modules/article/boost In directory sc8-pr-cvs1:/tmp/cvs-serv28874/boost Modified Files: install.php Log Message: Version 1.5.1 Release Index: install.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/boost/install.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** install.php 6 Aug 2003 02:35:02 -0000 1.2 --- install.php 20 Sep 2003 22:19:06 -0000 1.3 *************** *** 81,84 **** --- 81,85 ---- $search['view_string'] = '&view='; $search['show_block'] = 1; + $search['block_title'] = 'Articles'; if(!$GLOBALS['core']->sqlInsert($search, 'mod_search_register')) |
From: <ada...@us...> - 2003-09-20 22:19:13
|
Update of /cvsroot/phpwebsite-comm/modules/article/docs In directory sc8-pr-cvs1:/tmp/cvs-serv28874/docs Modified Files: Changes.txt Log Message: Version 1.5.1 Release Index: Changes.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/docs/Changes.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Changes.txt 6 Sep 2003 22:40:17 -0000 1.3 --- Changes.txt 20 Sep 2003 22:19:09 -0000 1.4 *************** *** 1,3 **** --- 1,9 ---- ======================== + Changes in version 1.5.2 + ======================== + -Fixed problem with image library maximum file sizes not changing. + + + ======================== Changes in version 1.5.1 ======================== |
From: <ada...@us...> - 2003-09-20 22:19:12
|
Update of /cvsroot/phpwebsite-comm/modules/article/conf In directory sc8-pr-cvs1:/tmp/cvs-serv28874/conf Modified Files: boost.php Log Message: Version 1.5.1 Release Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/conf/boost.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** boost.php 6 Sep 2003 22:38:27 -0000 1.6 --- boost.php 20 Sep 2003 22:19:08 -0000 1.7 *************** *** 17,22 **** $priority = 50; $admin_mod = 1; ! $active = "on"; ! $version = 1.5.1; $mod_class_files = array("ArticleManager.php", --- 17,22 ---- $priority = 50; $admin_mod = 1; ! $active = 'on'; ! $version = '1.5.2'; $mod_class_files = array("ArticleManager.php", |
From: <ada...@us...> - 2003-09-20 22:19:12
|
Update of /cvsroot/phpwebsite-comm/modules/article/class In directory sc8-pr-cvs1:/tmp/cvs-serv28874/class Modified Files: ArticleManager.php Log Message: Version 1.5.1 Release Index: ArticleManager.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/class/ArticleManager.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ArticleManager.php 31 Aug 2003 22:55:32 -0000 1.8 --- ArticleManager.php 20 Sep 2003 22:19:08 -0000 1.9 *************** *** 752,759 **** /* File upload section */ ! $myelements[0] = $GLOBALS['core']->formHidden('MAX_FILE_SIZE', '26000') ! . $GLOBALS['core']->formFile('LIB_loaded_image', 33, 255, $_SESSION['translate']->it('File to Upload').': ') ! . "\n " . $GLOBALS['core']->formSubmit($_SESSION['translate']->it("Save"), 'ARTICLE_vars[config:save_library_item]') ! . $_SESSION['OBJ_help']->show_link('article', "section_lib_image") . $GLOBALS['core']->formHidden('module', 'article'); --- 752,758 ---- /* File upload section */ ! $myelements[0] = $GLOBALS['core']->formFile('LIB_loaded_image', 33, 255, $_SESSION['translate']->it('File to Upload').': ') ! . "\n " . $GLOBALS['core']->formSubmit($_SESSION['translate']->it('Save'), 'ARTICLE_vars[config:save_library_item]') ! . $_SESSION['OBJ_help']->show_link('article', 'section_lib_image') . $GLOBALS['core']->formHidden('module', 'article'); |
From: <ada...@us...> - 2003-09-20 22:14:23
|
Update of /cvsroot/phpwebsite-comm/modules/article/class In directory sc8-pr-cvs1:/tmp/cvs-serv27822/class Modified Files: Section.php Log Message: Fixed problem with image uploading - Thanks GBrackett! Index: Section.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/class/Section.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Section.php 31 Aug 2003 22:47:32 -0000 1.6 --- Section.php 20 Sep 2003 22:14:17 -0000 1.7 *************** *** 217,226 **** . $_SESSION['OBJ_help']->show_link('article', 'section_title').'<br />' . $GLOBALS['core']->js_insert('wysiwyg', 'SECT_edit', 'SECT_title'); ! $myelements[0] .= $GLOBALS['core']->formTextField('SECT_title', htmlspecialchars($this->title), 55, 79) . '<br />'; $myelements[0] .= $_SESSION['translate']->it('Section Text').':' . $_SESSION['OBJ_help']->show_link('article', 'section_text') .'<br />' . $GLOBALS['core']->js_insert('wysiwyg', 'SECT_edit', 'SECT_text'); ! $myelements[0] .= $GLOBALS['core']->formTextArea('SECT_text', stripslashes($this->text), 20, 79) . '<br />'; /* If there is a current image, show it */ --- 217,226 ---- . $_SESSION['OBJ_help']->show_link('article', 'section_title').'<br />' . $GLOBALS['core']->js_insert('wysiwyg', 'SECT_edit', 'SECT_title'); ! $myelements[0] .= $GLOBALS['core']->formTextField('SECT_title', htmlspecialchars($this->title), 55, 70) . '<br />'; $myelements[0] .= $_SESSION['translate']->it('Section Text').':' . $_SESSION['OBJ_help']->show_link('article', 'section_text') .'<br />' . $GLOBALS['core']->js_insert('wysiwyg', 'SECT_edit', 'SECT_text'); ! $myelements[0] .= $GLOBALS['core']->formTextArea('SECT_text', stripslashes($this->text), 20, 60) . '<br />'; /* If there is a current image, show it */ *************** *** 232,236 **** $myelements[0] .= '<img src="' .$_SESSION['SES_ART_master']->image_directory . $this->image['directory'] . $this->image['name'] . '" /><br />'; /* If user is allowed to play around with the images... */ ! if ($_SESSION['OBJ_user']->allow_access('article', 'images_in_articles') || ($_SESSION['SES_ART_master']->val['user_images_in_article'] && $_SESSION['OBJ_user']->isUser())) { --- 232,236 ---- $myelements[0] .= '<img src="' .$_SESSION['SES_ART_master']->image_directory . $this->image['directory'] . $this->image['name'] . '" /><br />'; /* If user is allowed to play around with the images... */ ! if ($_SESSION['OBJ_user']->allow_access('article', 'images_in_article') || ($_SESSION['SES_ART_master']->val['user_images_in_article'] && $_SESSION['OBJ_user']->isUser())) { *************** *** 274,286 **** . $_SESSION['translate']->it('Short Image Description') .': ' . $_SESSION['OBJ_help']->show_link('article', 'section_image_desc') ! . $GLOBALS['core']->formTextField('SECT_alt', htmlspecialchars($this->image['alt']), 79, 255) . '<br />'; $myelements[0] .= $_SESSION['translate']->it('This Image Links To') . '...: ' . $_SESSION['OBJ_help']->show_link('article', 'section_image_link') ! . $GLOBALS['core']->formTextField('SECT_link', htmlspecialchars($this->image['link']), 79, 255) . '<br />'; $myelements[0] .= $_SESSION['translate']->it('Link caption').': ' . $_SESSION['OBJ_help']->show_link('article', 'section_image_caption') ! . $GLOBALS['core']->formTextField('SECT_image_caption', htmlspecialchars($this->image['caption']), 79, 255) . '<br />'; } --- 274,286 ---- . $_SESSION['translate']->it('Short Image Description') .': ' . $_SESSION['OBJ_help']->show_link('article', 'section_image_desc') ! . $GLOBALS['core']->formTextField('SECT_alt', htmlspecialchars($this->image['alt']), 60, 255) . '<br />'; $myelements[0] .= $_SESSION['translate']->it('This Image Links To') . '...: ' . $_SESSION['OBJ_help']->show_link('article', 'section_image_link') ! . $GLOBALS['core']->formTextField('SECT_link', htmlspecialchars($this->image['link']), 60, 255) . '<br />'; $myelements[0] .= $_SESSION['translate']->it('Link caption').': ' . $_SESSION['OBJ_help']->show_link('article', 'section_image_caption') ! . $GLOBALS['core']->formTextField('SECT_image_caption', htmlspecialchars($this->image['caption']), 60, 255) . '<br />'; } |
From: <ada...@us...> - 2003-09-20 22:11:50
|
Update of /cvsroot/phpwebsite-comm/modules/article/class In directory sc8-pr-cvs1:/tmp/cvs-serv27099/class Modified Files: Article.php Log Message: Fixed problem with Print Icon links Index: Article.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/class/Article.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Article.php 6 Sep 2003 22:37:01 -0000 1.12 --- Article.php 20 Sep 2003 22:11:42 -0000 1.13 *************** *** 207,211 **** $copyright = '<a href="'.$rights[rand(0,2)].'"><img src="http://'.PHPWS_SOURCE_HTTP . 'mod/article/img/mark.gif" border="0" title="Article Manager module by by George! Software." alt="Article Manager module by by George! Software."></a>'; ! // $article_link = 'index.php?module=article&view='.$this->id; $article_tags = array(); --- 207,211 ---- $copyright = '<a href="'.$rights[rand(0,2)].'"><img src="http://'.PHPWS_SOURCE_HTTP . 'mod/article/img/mark.gif" border="0" title="Article Manager module by by George! Software." alt="Article Manager module by by George! Software."></a>'; ! $article_link = 'index.php?module=article&view='.$this->id; $article_tags = array(); *************** *** 434,438 **** // Get Article Title $article_tags['TITLE_LABEL'] = $_SESSION['translate']->it('Title').':'; ! $article_tags['TITLE'] = PHPWS_Core::formTextField('ARTICLE_title', htmlspecialchars($this->title), 55, 79) . $_SESSION['OBJ_help']->show_link('article', 'article_title'); --- 434,438 ---- // Get Article Title $article_tags['TITLE_LABEL'] = $_SESSION['translate']->it('Title').':'; ! $article_tags['TITLE'] = PHPWS_Core::formTextField('ARTICLE_title', htmlspecialchars($this->title), 55, 70) . $_SESSION['OBJ_help']->show_link('article', 'article_title'); |
From: <gbr...@us...> - 2003-09-20 20:41:02
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/class In directory sc8-pr-cvs1:/tmp/cvs-serv13420/class Modified Files: staffmanager.php Log Message: Sort all-view display by last name Index: staffmanager.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/class/staffmanager.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** staffmanager.php 5 Sep 2003 14:08:21 -0000 1.4 --- staffmanager.php 20 Sep 2003 20:40:49 -0000 1.5 *************** *** 177,180 **** --- 177,182 ---- case "aView": /* view all items in the list */ + $this->listName = "user"; // use sort from current user list + $this->setOrder("label"); // order by last name $_REQUEST["PHPWS_MAN_ITEMS"] = $this->_getIds(); //get array of all item ids $this->_view(); // and display the corresponding items |
From: <gbr...@us...> - 2003-09-10 20:36:48
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/docs In directory sc8-pr-cvs1:/tmp/cvs-serv25525/docs Modified Files: README.txt Log Message: Add update.php file to reload new help data for View All Index: README.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/docs/README.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** README.txt 5 Sep 2003 14:22:58 -0000 1.4 --- README.txt 10 Sep 2003 20:36:12 -0000 1.5 *************** *** 35,38 **** --- 35,46 ---- ------------------------------ + UPDATING + ------------------------------ + This module is designed to be self-updating. Simply drop the staffman directory into + the mod/ directory of your site, replacing the existing staffman directory. Log in to + your site as Deity, select Control Panel, Administration, and Boost. Click the Update + button next to Staff Listing to complete the update. + + ------------------------------ CUSTOMIZATION ------------------------------ *************** *** 82,85 **** --- 90,98 ---- VERSION HISTORY ------------------------------ + 1.2 + Fixed missing help information in earlier upgrade (1.1 and 1.1.1) by adding update + scripting to re-load the help file. + 1.1.1 + Corrected minor display problems when viewing multiple staff member listings. 1.1 Added capability to view all staffmembers with a button on the main list |
From: <gbr...@us...> - 2003-09-10 20:36:48
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/conf In directory sc8-pr-cvs1:/tmp/cvs-serv25525/conf Modified Files: boost.php Log Message: Add update.php file to reload new help data for View All Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/conf/boost.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** boost.php 5 Sep 2003 14:08:26 -0000 1.5 --- boost.php 10 Sep 2003 20:36:11 -0000 1.6 *************** *** 40,44 **** $active = "on"; /* This package's version number */ ! $version = "1.1"; /* not sure, but likely the location on the web of the current version number */ /* $update_link = "phpwebsite.appstate.edu/fallout/updates/linkman/VERSION"; */ --- 40,44 ---- $active = "on"; /* This package's version number */ ! $version = "1.2"; /* not sure, but likely the location on the web of the current version number */ /* $update_link = "phpwebsite.appstate.edu/fallout/updates/linkman/VERSION"; */ |
From: <gbr...@us...> - 2003-09-10 20:36:45
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/boost In directory sc8-pr-cvs1:/tmp/cvs-serv25525/boost Added Files: update.php Log Message: Add update.php file to reload new help data for View All --- NEW FILE: update.php --- <?php /** * Update file for staffman * * Creates mod_staffman_staffmember table, an image directory, and registers the module * with the help and search systems. * * @version $Id: update.php,v 1.1 2003/09/10 20:36:08 gbrackett Exp $ * @author George Brackett <gbr...@NO...> */ /* return to home page if the user is not the Deity */ if (!$_SESSION["OBJ_user"]->isDeity()){ header("location:index.php"); exit(); } $status = 1; if ($currentVersion < 1.2) { $content = "Updating Staff Listing to version 1.2 .<br />"; /* reload the help information if help system is loaded */ if(isset($_SESSION["OBJ_help"])) { CLS_help::uninstall_help("staffman"); CLS_help::setup_help("staffman"); $content .= "New Staff Listing help successfully loaded.<br />"; } else { $content .= "Unable to update Staff Listing help data.<br />"; } $content .= "Update to version 1.2 finished.<br />"; } ?> |
From: <ada...@us...> - 2003-09-06 22:42:00
|
Update of /cvsroot/phpwebsite-comm/modules/article/docs In directory sc8-pr-cvs1:/tmp/cvs-serv10005/docs Modified Files: Changes.txt Log Message: Version 1.5.1 Release Index: Changes.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/docs/Changes.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Changes.txt 31 Aug 2003 22:53:22 -0000 1.2 --- Changes.txt 6 Sep 2003 22:40:17 -0000 1.3 *************** *** 1,2 **** --- 1,8 ---- + ======================== + Changes in version 1.5.1 + ======================== + -Fixed problem with pages needing approval not saving. + + ====================== Changes in version 1.5 |
From: <ada...@us...> - 2003-09-06 22:38:59
|
Update of /cvsroot/phpwebsite-comm/modules/article/conf In directory sc8-pr-cvs1:/tmp/cvs-serv9334/conf Modified Files: boost.php Log Message: Version 1.5.1 Release Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/conf/boost.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** boost.php 31 Aug 2003 22:53:21 -0000 1.5 --- boost.php 6 Sep 2003 22:38:27 -0000 1.6 *************** *** 18,22 **** $admin_mod = 1; $active = "on"; ! $version = 1.5; $mod_class_files = array("ArticleManager.php", --- 18,22 ---- $admin_mod = 1; $active = "on"; ! $version = 1.5.1; $mod_class_files = array("ArticleManager.php", |
From: <ada...@us...> - 2003-09-06 22:38:08
|
Update of /cvsroot/phpwebsite-comm/modules/article/conf In directory sc8-pr-cvs1:/tmp/cvs-serv8358/conf Modified Files: approval.php Log Message: -Fixed problem with pages needing approval not saving. Index: approval.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/conf/approval.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** approval.php 9 Jul 2003 20:24:25 -0000 1.1 --- approval.php 6 Sep 2003 22:37:04 -0000 1.2 *************** *** 10,14 **** { $article = new PHPWS_Article($id); ! echo $article->view_article(); } } --- 10,14 ---- { $article = new PHPWS_Article($id); ! $article->view(); } } |
From: <ada...@us...> - 2003-09-06 22:38:07
|
Update of /cvsroot/phpwebsite-comm/modules/article/class In directory sc8-pr-cvs1:/tmp/cvs-serv8358/class Modified Files: Article.php Log Message: -Fixed problem with pages needing approval not saving. Index: Article.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/class/Article.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Article.php 31 Aug 2003 22:59:02 -0000 1.11 --- Article.php 6 Sep 2003 22:37:01 -0000 1.12 *************** *** 89,93 **** . $GLOBALS['core']->moduleLink($_SESSION['translate']->it('Main Menu'), 'article' ,array('disp'=>'main_menu')).'</center>'; - // '<center><a href="index.php?module=article&disp=main_menu">'.$_SESSION['translate']->it('Main Menu').'</a></center>'; $this->sectionID = 'a'; $this->editmode = FALSE; --- 89,92 ---- *************** *** 163,169 **** $this->pages = 1; $this->template = $_SESSION['SES_ART_master']->val['default_article_template']; ! $this->approved = $_SESSION['OBJ_user']->allow_access('article', "create_articles") ! || !$_SESSION['SES_ART_master']->val['need_approval']; ! $this->version = -1; $this->announce = 1; } --- 162,168 ---- $this->pages = 1; $this->template = $_SESSION['SES_ART_master']->val['default_article_template']; ! $this->approved = ($_SESSION['OBJ_user']->allow_access('article', 'create_articles') ! || !$_SESSION['SES_ART_master']->val['need_approval']) ?1:0; ! $this->version = -1; $this->announce = 1; } *************** *** 193,207 **** $now = date('Y-m-d H:i:s'); if (!($this->mainarticle ! || ($this->approved && $this->publication_date <= $now && ($this->expiration_date > $now || $this->expiration_date==NULL)) || $_SESSION['SES_ART_master']->can('edit',$this->created_username))) { ! if ($Fullpage) ! { ! $_SESSION['SES_ART_master']->error['article'][] = ! $_SESSION['translate']->it('The article you requested has expired.'); ! $_SESSION['SES_ART_master']->get_error('article'); ! } PHPWS_Fatcat::deactivate($this->id, 'article'); return; --- 192,202 ---- $now = date('Y-m-d H:i:s'); if (!($this->mainarticle ! || (($this->approved || $GLOBALS['module']=='approval') && $this->publication_date <= $now && ($this->expiration_date > $now || $this->expiration_date==NULL)) || $_SESSION['SES_ART_master']->can('edit',$this->created_username))) { ! $GLOBALS['CNT_article']['content'] = ! $_SESSION['translate']->it('The article you requested has expired.'); PHPWS_Fatcat::deactivate($this->id, 'article'); return; |
From: <gbr...@us...> - 2003-09-05 16:53:41
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/templates In directory sc8-pr-cvs1:/tmp/cvs-serv12116/templates Modified Files: view.tpl viewphoto.tpl Log Message: Corrected minor display problem in view templates Index: view.tpl =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/templates/view.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** view.tpl 5 Sep 2003 14:49:33 -0000 1.2 --- view.tpl 5 Sep 2003 16:53:34 -0000 1.3 *************** *** 10,16 **** <!-- BEGIN NOTES -->{NOTES}<!-- END NOTES --> <!-- BEGIN CATEGORY -->{CATEGORY}<!-- END CATEGORY --> - <hr> </td> </tr> <!-- BEGIN SUBMIT --> <tr> --- 10,16 ---- <!-- BEGIN NOTES -->{NOTES}<!-- END NOTES --> <!-- BEGIN CATEGORY -->{CATEGORY}<!-- END CATEGORY --> </td> </tr> + <tr><td colspan="2"><hr></td></tr> <!-- BEGIN SUBMIT --> <tr> Index: viewphoto.tpl =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/templates/viewphoto.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** viewphoto.tpl 2 Jul 2003 23:45:10 -0000 1.1.1.1 --- viewphoto.tpl 5 Sep 2003 16:53:34 -0000 1.2 *************** *** 16,19 **** --- 16,20 ---- </td> </tr> + <tr ><td colspan="2"><hr></td></tr> <!-- BEGIN SUBMIT --> <tr> |
From: <gbr...@us...> - 2003-09-05 14:49:44
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/templates In directory sc8-pr-cvs1:/tmp/cvs-serv17482/templates Modified Files: view.tpl Log Message: Added hr to view template Index: view.tpl =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/templates/view.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** view.tpl 2 Jul 2003 23:45:10 -0000 1.1.1.1 --- view.tpl 5 Sep 2003 14:49:33 -0000 1.2 *************** *** 10,13 **** --- 10,14 ---- <!-- BEGIN NOTES -->{NOTES}<!-- END NOTES --> <!-- BEGIN CATEGORY -->{CATEGORY}<!-- END CATEGORY --> + <hr> </td> </tr> |
From: <gbr...@us...> - 2003-09-05 14:23:01
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/docs In directory sc8-pr-cvs1:/tmp/cvs-serv11183/docs Modified Files: README.txt Log Message: On uninstall, remove corresponding menu item or fatcat entries. Index: README.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/docs/README.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** README.txt 5 Sep 2003 14:08:26 -0000 1.3 --- README.txt 5 Sep 2003 14:22:58 -0000 1.4 *************** *** 82,86 **** VERSION HISTORY ------------------------------ ! 1.1 Added capability to view all staffmembers with a button on the main list page or by accessing the url index.php?module=staffman&STAFF_MAN_op=aView --- 82,89 ---- VERSION HISTORY ------------------------------ ! 1.1 ! Added capability to view all staffmembers with a button on the main list page or by accessing the url index.php?module=staffman&STAFF_MAN_op=aView + When uninstalling, staffman now removes any corresponding menu item or + fatcat (category) entries. |
From: <gbr...@us...> - 2003-09-05 14:23:01
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/boost In directory sc8-pr-cvs1:/tmp/cvs-serv11183/boost Modified Files: uninstall.php Log Message: On uninstall, remove corresponding menu item or fatcat entries. Index: uninstall.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/boost/uninstall.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** uninstall.php 31 Jul 2003 00:45:43 -0000 1.2 --- uninstall.php 5 Sep 2003 14:22:56 -0000 1.3 *************** *** 22,30 **** /* uninstall help */ ! if(isset($_SESSION["OBJ_help"])) { CLS_help::uninstall_help("staffman"); $content .= "Staff Listing removed from Help system.<br />"; } /* uninstall search */ $GLOBALS['core']->sqlDelete("mod_search_register", "module", "staffman"); --- 22,42 ---- /* uninstall help */ ! if (isset($_SESSION["OBJ_help"])) { CLS_help::uninstall_help("staffman"); $content .= "Staff Listing removed from Help system.<br />"; } + /* remove any staffmember fatcat items */ + if(isset($_SESSION["OBJ_fatcat"])) { + if(PHPWS_Fatcat::purge(NULL, "faq")) + $content .= "Removed any staffmembers in fatcat categories.<br />"; + } + + /* uninstall menu item, if any */ + if (isset($_SESSION["OBJ_menuman"])) { + if($GLOBALS["core"]->sqlDelete("mod_menuman_items", "menu_item_url", "%module=staffman%", "LIKE")) + $content .= "Removed link to Staffmember Listing from menu.<br />"; + } + /* uninstall search */ $GLOBALS['core']->sqlDelete("mod_search_register", "module", "staffman"); |
From: <gbr...@us...> - 2003-09-05 14:10:41
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/templates In directory sc8-pr-cvs1:/tmp/cvs-serv8099/templates Added Files: amenu.tpl umenu.tpl Removed Files: menu.tpl Log Message: Updating included files --- NEW FILE: amenu.tpl --- <table width="100%" border="0" spacing="0" padding="0"> <tr> <td align="left"> <form action="index.php" method="POST" name="Add"> <input type="hidden" name="module" value="staffman"> <input type="hidden" name="STAFF_MAN_op" value="Add"> <input type="Submit" name="Submit" value="{ADD_STAFF_LABEL}"> {ADD_STAFF_HELP} </form> </td> <td align="left"> <form action="index.php" method="POST" name="Viewall"> <input type="hidden" name="module" value="staffman"> <input type="hidden" name="STAFF_MAN_op" value="aView"> <input type="Submit" name="Submit" value="{VIEW_ALL_LABEL}"> {VIEW_ALL_HELP} </form> </td> <td align="left"> <form action="index.php" method="POST" name="Menu"> <input type="hidden" name="module" value="staffman"> <input type="hidden" name="STAFF_MAN_op" value="Menu"> <input type="Submit" name="Submit" value="{CREATE_MENU_LINK_LABEL}"> {CREATE_MENU_LINK_HELP} </form> </td> </tr> </table> --- NEW FILE: umenu.tpl --- <table width="100%" border="0" spacing="0" padding="0"> <tr> <td align="left"> <form action="index.php" method="POST" name="Viewall"> <input type="hidden" name="module" value="staffman"> <input type="hidden" name="STAFF_MAN_op" value="aView"> <input type="Submit" name="Submit" value="{VIEW_ALL_LABEL}"> {VIEW_ALL_HELP} </form> </td> </tr> </table> --- menu.tpl DELETED --- |