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: <dts...@us...> - 2003-05-28 18:37:20
|
Update of /cvsroot/phpwebsite-comm/modules/contacts/conf In directory sc8-pr-cvs1:/tmp/cvs-serv17444/conf Modified Files: manager.php Log Message: Fleshing things out more Index: manager.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/contacts/conf/manager.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** manager.php 27 May 2003 21:51:21 -0000 1.2 --- manager.php 28 May 2003 18:37:16 -0000 1.3 *************** *** 47,56 **** "id"=>NULL ); ! $countriesActions = array( "view"=>"View", ! "edit"=>"Edit", "delete"=>"Delete"); ! $countriesPermissions = array( "view"=>NULL, ! "edit"=>"edit_countries", "delete"=>"delete_countries"); --- 47,54 ---- "id"=>NULL ); ! $countriesActions = array( "edit"=>"Edit", "delete"=>"Delete"); ! $countriesPermissions = array( "edit"=>"edit_countries", "delete"=>"delete_countries"); |
From: <dts...@us...> - 2003-05-28 18:36:07
|
Update of /cvsroot/phpwebsite-comm/modules/contacts/templates/countries In directory sc8-pr-cvs1:/tmp/cvs-serv16923/templates/countries Log Message: Directory /cvsroot/phpwebsite-comm/modules/contacts/templates/countries added to the repository |
From: <dts...@us...> - 2003-05-28 18:14:25
|
Update of /cvsroot/phpwebsite-comm/modules/contacts/class In directory sc8-pr-cvs1:/tmp/cvs-serv1343 Added Files: Address.php AddressType.php Contact.php Phone.php PhoneType.php Log Message: Checking in stub files for testing --- NEW FILE: Address.php --- <?php /** * @version $Id: Address.php,v 1.1 2003/05/28 18:01:11 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ class CONTACTS_Address extends PHPWS_Item { }// END CLASS CONTACTS_Address ?> --- NEW FILE: AddressType.php --- <?php /** * @version $Id: AddressType.php,v 1.1 2003/05/28 18:01:11 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ class CONTACTS_AddressType extends PHPWS_Item { }// END CLASS CONTACTS_AddressType ?> --- NEW FILE: Contact.php --- <?php /** * @version $Id: Contact.php,v 1.1 2003/05/28 18:01:11 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ class CONTACTS_Contact extends PHPWS_Item { }// END CLASS CONTACTS_Contact ?> --- NEW FILE: Phone.php --- <?php /** * @version $Id: Phone.php,v 1.1 2003/05/28 18:01:11 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ class CONTACTS_Phone extends PHPWS_Item { }// END CLASS CONTACTS_Phone ?> --- NEW FILE: PhoneType.php --- <?php /** * @version $Id: PhoneType.php,v 1.1 2003/05/28 18:01:11 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ class CONTACTS_PhoneType extends PHPWS_Item { }// END CLASS CONTACTS_PhoneType ?> |
From: <dts...@us...> - 2003-05-27 21:51:53
|
Update of /cvsroot/phpwebsite-comm/modules/contacts In directory sc8-pr-cvs1:/tmp/cvs-serv25617 Modified Files: index.php Log Message: Shaping things up. Starting with country Index: index.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/contacts/index.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.php 27 May 2003 14:40:14 -0000 1.1 --- index.php 27 May 2003 21:51:13 -0000 1.2 *************** *** 15,20 **** } ! if(isset($_REQUEST["CONTACTS_OP"]) && isset($_SESSION["CONTACTS_Manager"]->message)) ! $_SESSION["CONTACTS_Manager"]->message->action(); ?> --- 15,29 ---- } ! if(isset($_REQUEST["CONTACTS_Contact_OP"]) && isset($_SESSION["CONTACTS_Manager"]->contact)) ! $_SESSION["CONTACTS_Manager"]->contact->action(); ! ! if(isset($_REQUEST["CONTACTS_Country_OP"]) && isset($_SESSION["CONTACTS_Manager"]->country)) ! $_SESSION["CONTACTS_Manager"]->country->action(); ! ! if(isset($_REQUEST["CONTACTS_PhoneType_OP"]) && isset($_SESSION["CONTACTS_Manager"]->phonetype)) ! $_SESSION["CONTACTS_Manager"]->phonetype->action(); ! ! if(isset($_REQUEST["CONTACTS_AddressType_OP"]) && isset($_SESSION["CONTACTS_Manager"]->addresstype)) ! $_SESSION["CONTACTS_Manager"]->addresstype->action(); ?> |
From: <dts...@us...> - 2003-05-27 21:51:25
|
Update of /cvsroot/phpwebsite-comm/modules/contacts/conf In directory sc8-pr-cvs1:/tmp/cvs-serv25617/conf Modified Files: contacts.php manager.php Log Message: Shaping things up. Starting with country |
From: <dts...@us...> - 2003-05-27 21:51:24
|
Update of /cvsroot/phpwebsite-comm/modules/contacts/class In directory sc8-pr-cvs1:/tmp/cvs-serv25617/class Added Files: Country.php Manager.php Log Message: Shaping things up. Starting with country --- NEW FILE: Country.php --- --- NEW FILE: Manager.php --- |
Update of /cvsroot/phpwebsite-comm/modules/contacts/conf In directory sc8-pr-cvs1:/tmp/cvs-serv24899 Added Files: boost.php contacts.php controlpanel.php layout.php manager.php module_rights.txt users.php Log Message: Initial check-in --- NEW FILE: boost.php --- <?php /** * @version $Id: boost.php,v 1.1 2003/05/27 16:58:51 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ $mod_title = "contacts"; $mod_pname = "Contacts"; $mod_directory = "contacts"; $mod_filename = "index.php"; $allow_view = "all"; $mod_icon = "contacts.png"; $priority = 50; $admin_mod = 1; $active = "on"; $version = "0.1.0"; $admin_op = "&CONTACTS_MAN_OP=list"; $mod_class_files = array("AddressType.php", "PhoneType.php", "Country.php", "Contact.php", "Address.php", "Phone.php", "Manager.php"); $mod_sessions = array("CONTACTS_Manager"); $init_object = array("CONTACTS_Manager"=>"CONTACTS_Manager"); ?> --- NEW FILE: contacts.php --- <?php /** * @version $Id: contacts.php,v 1.1 2003/05/27 16:58:51 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ /* The version of this module */ define("PHPWSBB_VERSION", "0.1.0"); /* The title to be used throughout the module */ define("PHPWSBB_TITLE", "Bulletin Board v" . PHPWSBB_VERSION); ?> --- NEW FILE: controlpanel.php --- <?php /** * @version $Id: controlpanel.php,v 1.1 2003/05/27 16:58:51 dtseiler Exp $ */ $image["name"] = "contacts.png"; $image["alt"] = "Author: Don Seiler"; $link[] = array ("label"=>"Contacts", "module"=>"contacts", "url"=>"index.php?module=contacts&CONTACTS_MAN_OP=list", "image"=>$image, "description"=>"Blah blah blah", "tab"=>"content"); ?> --- NEW FILE: layout.php --- <?php /** * @version $Id: layout.php,v 1.1 2003/05/27 16:58:51 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ $layout_info[] = array( "content_var"=>"CNT_contacts", "transfer_var"=>"body"); ?> --- NEW FILE: manager.php --- <?php /** * @version $Id: manager.php,v 1.1 2003/05/27 16:58:51 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ /* The name of my lists and their corresponding database constraints */ $lists = array("contacts"=>"approved=1", "countries"=>"approved=1", "phonetypes"=>"approved=1", "addresstypes"=>"approved=1"); /* The directory where my templates are located */ $templates = array("contacts"=>"contacts", "countries"=>"countries", "phonetypes"=>"phonetypes", "addresstypes"=>"addresstypes"); /* * CONTACTS */ $contactsColumns = array( "label"=>$_SESSION["translate"]->it("Subject"), "owner"=>$_SESSION["translate"]->it("Poster"), "updated"=>$_SESSION["translate"]->it("Last Post"), "id"=>NULL, "locked"=>NULL, "sticky"=>NULL ); $contactsActions = array( "view"=>"View", "edit"=>"Edit", "delete"=>"Delete" ); $contactsPermissions = array( "view"=>NULL, "edit"=>"edit_contacts", "delete"=>"delete_contacts" ); $contactsPaging = array( "op"=>"CONTACTS_MAN_OP=list", "limit"=>50, "secion"=>1, "limits"=>array(5,10,25,50), "back"=>"<<", "forward"=>">>" ); ?> --- NEW FILE: module_rights.txt --- edit_contacts::Add/Edit Contacts delete_contacts::Delete Contacts --- NEW FILE: users.php --- <?php /** * @version $Id: users.php,v 1.1 2003/05/27 16:58:51 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ $default_user_menu = "personal"; $default_admin_menu = "content"; ?> |
From: <dts...@us...> - 2003-05-27 16:47:58
|
Update of /cvsroot/phpwebsite-comm/modules/contacts/boost In directory sc8-pr-cvs1:/tmp/cvs-serv19977 Added Files: install.php install.sql uninstall.php uninstall.sql Log Message: Initial check-in --- NEW FILE: install.php --- <?php /** * @version $Id: install.php,v 1.1 2003/05/27 16:47:49 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ if(!$_SESSION["OBJ_user"]->isDeity()) { header("location:index.php"); exit(); } if($status = $GLOBALS["core"]->sqlImport(PHPWS_SOURCE_DIR . "mod/contacts/boost/install.sql", TRUE)) { $content .= "All Contacts tables successfully written.<br />"; if(isset($_SESSION["OBJ_search"])) { $search["module"] = "contacts"; $search["search_class"] = "CONTACTS_Manager"; $search["search_function"] = "searchMessages"; $search["search_cols"] = "none"; $search["view_string"] = "none"; $search["show_block"] = 0; if(!$GLOBALS["core"]->sqlInsert($search, "mod_search_register")) $content .= "Database problem when attempting to register with Search module.<br />"; else $content .= "Successfully registered with Search module!<br />"; } } else { $content .= "There was a problem writing to the database!<br />"; } ?> --- NEW FILE: install.sql --- -- $Id: install.sql,v 1.1 2003/05/27 16:47:49 dtseiler Exp $ CREATE TABLE mod_contacts_contacts ( id int NOT NULL default '0', owner varchar(20) default '', editor varchar(20) default '', ip text, label text NOT NULL, groups text, created int NOT NULL default '0', updated int NOT NULL default '0', hidden smallint NOT NULL default '0', approved smallint NOT NULL default '1', givenname varchar(20) NOT NULL, middlename varchar(20) NOT NULL, familyname varchar(40) NOT NULL, prefix varchar(5), suffix varchar(5), email varchar(80), birthday int NOT NULL default '0', PRIMARY KEY (id) ); CREATE TABLE mod_contacts_countries ( id int NOT NULL default '0', owner varchar(20) default '', editor varchar(20) default '', ip text, label text NOT NULL, groups text, created int NOT NULL default '0', updated int NOT NULL default '0', hidden smallint NOT NULL default '0', approved smallint NOT NULL default '1', code varchar(5) NOT NULL, country varchar(80) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE mod_contacts_addresstypes ( id int NOT NULL default '0', owner varchar(20) default '', editor varchar(20) default '', ip text, label text NOT NULL, groups text, created int NOT NULL default '0', updated int NOT NULL default '0', hidden smallint NOT NULL default '0', approved smallint NOT NULL default '1', name varchar(20) NOT NULL, abbreviation varchar(10) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE mod_contacts_addresses ( id int NOT NULL default '0', owner varchar(20) default '', editor varchar(20) default '', ip text, label text NOT NULL, groups text, created int NOT NULL default '0', updated int NOT NULL default '0', hidden smallint NOT NULL default '0', approved smallint NOT NULL default '1', type_id int NOT NULL default '0', street1 varchar(30) NOT NULL default '', street2 varchar(30) default '', city varchar(50) NOT NULL default '', stateprov varchar(20) NOT NULL default '', postalcode varchar(10) default '', countrycode varchar(5) NOT NULL default '', PRIMARY KEY (id) ); CREATE TABLE mod_contacts_phonetypes ( id int NOT NULL default '0', owner varchar(20) default '', editor varchar(20) default '', ip text, label text NOT NULL, groups text, created int NOT NULL default '0', updated int NOT NULL default '0', hidden smallint NOT NULL default '0', approved smallint NOT NULL default '1', name varchar(20) NOT NULL, abbreviation varchar(10) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE mod_contacts_phones ( id int NOT NULL default '0', owner varchar(20) default '', editor varchar(20) default '', ip text, label text NOT NULL, groups text, created int NOT NULL default '0', updated int NOT NULL default '0', hidden smallint NOT NULL default '0', approved smallint NOT NULL default '1', type_id int NOT NULL default '0', phonenumber varchar(50) NOT NULL, PRIMARY KEY (id) ); --- NEW FILE: uninstall.php --- <?php /** * @version $Id: uninstall.php,v 1.1 2003/05/27 16:47:49 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ if(!$_SESSION["OBJ_user"]->isDeity()) { header("location:index.php"); exit(); } if($status = $GLOBALS["core"]->sqlImport(PHPWS_SOURCE_DIR . "mod/contacts/boost/uninstall.sql", 1, 1)) { $content .= "All Contacts tables successfully removed!<br />"; if(isset($_SESSION["OBJ_search"])) $status = $GLOBALS["core"]->sqlDelete("mod_search_register", "module", "contacts"); } else { $content .= "There was a problem writing to the database.<br />"; $status = 0; } ?> --- NEW FILE: uninstall.sql --- -- $Id: uninstall.sql,v 1.1 2003/05/27 16:47:49 dtseiler Exp $ DROP TABLE mod_contacts_contacts; DROP TABLE mod_contacts_countries; DROP TABLE mod_contacts_phonetypes; DROP TABLE mod_contacts_addresstypes; DROP TABLE mod_contacts_phones; DROP TABLE mod_contacts_addresses; |
From: <dts...@us...> - 2003-05-27 14:53:03
|
Update of /cvsroot/phpwebsite-comm/modules/contacts/templates In directory sc8-pr-cvs1:/tmp/cvs-serv29024/templates Log Message: Directory /cvsroot/phpwebsite-comm/modules/contacts/templates added to the repository |
From: <dts...@us...> - 2003-05-27 14:53:03
|
Update of /cvsroot/phpwebsite-comm/modules/contacts/docs In directory sc8-pr-cvs1:/tmp/cvs-serv29024/docs Log Message: Directory /cvsroot/phpwebsite-comm/modules/contacts/docs added to the repository |
From: <dts...@us...> - 2003-05-27 14:40:17
|
Update of /cvsroot/phpwebsite-comm/modules/contacts In directory sc8-pr-cvs1:/tmp/cvs-serv29728 Added Files: index.php Log Message: Initial checkin --- NEW FILE: index.php --- <?php /** * @version $Id: index.php,v 1.1 2003/05/27 14:40:14 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ include("conf/contacts.php"); if(!isset($_SESSION["CONTACTS_Manager"])) $_SESSION["CONTACTS_Manager"] = new CONTACTS_Manager; if(isset($_REQUEST["CONTACTS_MAN_OP"])) { $_SESSION["CONTACTS_Manager"]->managerAction(); $_SESSION["CONTACTS_Manager"]->action(); } if(isset($_REQUEST["CONTACTS_OP"]) && isset($_SESSION["CONTACTS_Manager"]->message)) $_SESSION["CONTACTS_Manager"]->message->action(); ?> |
From: <dts...@us...> - 2003-05-27 14:40:00
|
Update of /cvsroot/phpwebsite-comm/modules/contacts/conf In directory sc8-pr-cvs1:/tmp/cvs-serv29024/conf Log Message: Directory /cvsroot/phpwebsite-comm/modules/contacts/conf added to the repository |
From: <dts...@us...> - 2003-05-27 14:39:59
|
Update of /cvsroot/phpwebsite-comm/modules/contacts/class In directory sc8-pr-cvs1:/tmp/cvs-serv29024/class Log Message: Directory /cvsroot/phpwebsite-comm/modules/contacts/class added to the repository |
From: <dts...@us...> - 2003-05-27 14:39:59
|
Update of /cvsroot/phpwebsite-comm/modules/contacts/boost In directory sc8-pr-cvs1:/tmp/cvs-serv29024/boost Log Message: Directory /cvsroot/phpwebsite-comm/modules/contacts/boost added to the repository |
From: <mh...@us...> - 2003-05-27 14:32:00
|
Update of /cvsroot/phpwebsite-comm/CVSROOT In directory sc8-pr-cvs1:/tmp/cvs-serv25200 Modified Files: avail Log Message: gave write access to rizzo Index: avail =================================================================== RCS file: /cvsroot/phpwebsite-comm/CVSROOT/avail,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** avail 26 May 2003 13:53:27 -0000 1.4 --- avail 27 May 2003 14:31:56 -0000 1.5 *************** *** 3,6 **** --- 3,7 ---- # Selective access for teams, etc. avail|dtseiler|modules/phpwsbb + avail|dtseiler|modules/contacts avail|gbrackett|modules/jobman |
From: <mh...@us...> - 2003-05-27 04:10:36
|
Update of /cvsroot/phpwebsite-comm/CVSROOT In directory sc8-pr-cvs1:/tmp/cvs-serv15923 Modified Files: enforce_naming Log Message: fixed syntax Index: enforce_naming =================================================================== RCS file: /cvsroot/phpwebsite-comm/CVSROOT/enforce_naming,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** enforce_naming 26 May 2003 20:01:22 -0000 1.6 --- enforce_naming 27 May 2003 04:10:30 -0000 1.7 *************** *** 58,62 **** # Verify that binary graphic files aren't added. ! if ($_ =~ /\.png$\|\.gif$\|\.jpg$/i) { print "Adding binary graphics is prohibited. "; print "Please create your graphic in SVG format. "; --- 58,62 ---- # Verify that binary graphic files aren't added. ! if ($_ =~ /\.png$|\.gif$|\.jpg$/i) { print "Adding binary graphics is prohibited. "; print "Please create your graphic in SVG format. "; |
From: <mh...@us...> - 2003-05-26 20:01:28
|
Update of /cvsroot/phpwebsite-comm/CVSROOT In directory sc8-pr-cvs1:/tmp/cvs-serv23641 Modified Files: enforce_naming Log Message: changed to binding operator Index: enforce_naming =================================================================== RCS file: /cvsroot/phpwebsite-comm/CVSROOT/enforce_naming,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** enforce_naming 26 May 2003 18:56:40 -0000 1.5 --- enforce_naming 26 May 2003 20:01:22 -0000 1.6 *************** *** 58,62 **** # Verify that binary graphic files aren't added. ! if ($_ eq "/\.png$\|\.gif$\|\.jpg$/i") { print "Adding binary graphics is prohibited. "; print "Please create your graphic in SVG format. "; --- 58,62 ---- # Verify that binary graphic files aren't added. ! if ($_ =~ /\.png$\|\.gif$\|\.jpg$/i) { print "Adding binary graphics is prohibited. "; print "Please create your graphic in SVG format. "; |
From: <gbr...@us...> - 2003-05-26 19:08:10
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/img In directory sc8-pr-cvs1:/tmp/cvs-serv4921/img Removed Files: print.gif Log Message: removing gif file again --- print.gif DELETED --- |
From: <gbr...@us...> - 2003-05-26 18:59:06
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/img In directory sc8-pr-cvs1:/tmp/cvs-serv760/img Added Files: print.gif Log Message: another test.. |
From: <mh...@us...> - 2003-05-26 18:56:43
|
Update of /cvsroot/phpwebsite-comm/CVSROOT In directory sc8-pr-cvs1:/tmp/cvs-serv31929 Modified Files: enforce_naming Log Message: small syntax change Index: enforce_naming =================================================================== RCS file: /cvsroot/phpwebsite-comm/CVSROOT/enforce_naming,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** enforce_naming 26 May 2003 18:42:54 -0000 1.4 --- enforce_naming 26 May 2003 18:56:40 -0000 1.5 *************** *** 58,62 **** # Verify that binary graphic files aren't added. ! if ($_ eq /\.png$\|\.gif$\|\.jpg$/i) { print "Adding binary graphics is prohibited. "; print "Please create your graphic in SVG format. "; --- 58,62 ---- # Verify that binary graphic files aren't added. ! if ($_ eq "/\.png$\|\.gif$\|\.jpg$/i") { print "Adding binary graphics is prohibited. "; print "Please create your graphic in SVG format. "; |
From: <gbr...@us...> - 2003-05-26 18:56:01
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/img In directory sc8-pr-cvs1:/tmp/cvs-serv31438/img Removed Files: print.gif Log Message: removing test gif file --- print.gif DELETED --- |
From: <gbr...@us...> - 2003-05-26 18:52:49
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/img In directory sc8-pr-cvs1:/tmp/cvs-serv29743/img Added Files: print.gif Log Message: adding .gif file for test --- NEW FILE: print.gif --- (This appears to be a binary file; contents omitted.) |
From: <mh...@us...> - 2003-05-26 18:43:00
|
Update of /cvsroot/phpwebsite-comm/CVSROOT In directory sc8-pr-cvs1:/tmp/cvs-serv25719 Modified Files: enforce_naming Log Message: regex change to graphic check Index: enforce_naming =================================================================== RCS file: /cvsroot/phpwebsite-comm/CVSROOT/enforce_naming,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** enforce_naming 26 May 2003 14:55:34 -0000 1.3 --- enforce_naming 26 May 2003 18:42:54 -0000 1.4 *************** *** 58,62 **** # Verify that binary graphic files aren't added. ! if ($_ eq /\.png$/i or $_ eq /\.jpg$/i or $_ eq /\.gif$/i) { print "Adding binary graphics is prohibited. "; print "Please create your graphic in SVG format. "; --- 58,62 ---- # Verify that binary graphic files aren't added. ! if ($_ eq /\.png$\|\.gif$\|\.jpg$/i) { print "Adding binary graphics is prohibited. "; print "Please create your graphic in SVG format. "; |
From: <gbr...@us...> - 2003-05-26 18:19:56
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/templates In directory sc8-pr-cvs1:/tmp/cvs-serv16696/templates Modified Files: view.tpl Log Message: fixed category code, other minor fixes Index: view.tpl =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/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 21 May 2003 22:29:37 -0000 1.1.1.1 --- view.tpl 26 May 2003 18:19:53 -0000 1.2 *************** *** 36,39 **** --- 36,44 ---- </tr> <!-- END QUALIFICATIONS --> + <!-- BEGIN CATEGORY --> + <tr> + <td width="20%" align="right" valign="top">{CATEGORY_LABEL}:</td><td align="left" valign="top">{CATEGORY}</td> + </tr> + <!-- END CATEGORY --> <!-- BEGIN SUBMIT --> <tr> |
From: <gbr...@us...> - 2003-05-26 18:19:56
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/class In directory sc8-pr-cvs1:/tmp/cvs-serv16696/class Modified Files: Job.php Log Message: fixed category code, other minor fixes Index: Job.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/class/Job.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Job.php 24 May 2003 21:12:49 -0000 1.3 --- Job.php 26 May 2003 18:19:52 -0000 1.4 *************** *** 78,82 **** $this->init(); /* initialize variables */ } ! } /** --- 78,83 ---- $this->init(); /* initialize variables */ } ! } //END function Job ! /** *************** *** 141,145 **** // include category selection menu, with help ! $tags["CATEGORY"] = $_SESSION['OBJ_fatcat']->showSelect($this->id, "multiple", 3, "jobman"); $tags["CATEGORY_HELP"] = $_SESSION['OBJ_help']->show_link("jobman", "jmCategory"); $tags["CATEGORY_LABEL"] = $_SESSION['translate']->it("Category"); --- 142,146 ---- // include category selection menu, with help ! $tags["CATEGORY"] = $_SESSION['OBJ_fatcat']->showSelect($this->getId(), "multiple", 3, "jobman"); $tags["CATEGORY_HELP"] = $_SESSION['OBJ_help']->show_link("jobman", "jmCategory"); $tags["CATEGORY_LABEL"] = $_SESSION['translate']->it("Category"); *************** *** 234,237 **** --- 235,239 ---- } //END function delete + /** *************** *** 256,259 **** --- 258,262 ---- $tags["DESCRIPTION_LABEL"] = $_SESSION['translate']->it("Description"); $tags["QUALIFICATIONS_LABEL"] = $_SESSION['translate']->it("Qualifications"); + $tags["CATEGORY_LABEL"] = $_SESSION['translate']->it("Category"); $tags["POSITION"] = $this->getLabel(); *************** *** 264,267 **** --- 267,272 ---- $tags["DESCRIPTION"] = $this->_description; $tags["QUALIFICATIONS"] = $this->_qualifications; + // get a list of the categories for this position from FatCat + $tags["CATEGORY"] = $_SESSION['OBJ_fatcat']->fatcatLinks($this->getId(), "jobman"); $content = $GLOBALS["core"]->processTemplate($tags, "jobman", "view.tpl"); *************** *** 270,276 **** ! } //END function functionname - /** --- 275,280 ---- ! } //END function view /** *************** *** 344,348 **** return $content; ! } //END function functionname --- 348,352 ---- return $content; ! } //END function _continueContent |