cs-project-svn_notify Mailing List for CS-Project (Page 15)
Brought to you by:
crazedsanity
You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(65) |
Dec
(47) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(34) |
Feb
(82) |
Mar
(21) |
Apr
(12) |
May
(16) |
Jun
|
Jul
(6) |
Aug
(8) |
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(1) |
Feb
(52) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(9) |
Aug
(5) |
Sep
(12) |
Oct
(11) |
Nov
(4) |
Dec
(15) |
2010 |
Jan
|
Feb
|
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(9) |
2012 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: <cra...@us...> - 2007-12-14 01:06:08
|
Revision: 691 http://cs-project.svn.sourceforge.net/cs-project/?rev=691&view=rev Author: crazedsanity Date: 2007-12-13 17:05:59 -0800 (Thu, 13 Dec 2007) Log Message: ----------- SQL & class changes. /docs/sql/upgrades/upgradeTo1.1.0-BETA16.sql: * added "description" to invoice status records * insert available status records. * set default for invoice_status_id on invoice_table. /lib/invoice.class.php: * MAIN::: -- updated comments at top to explain what the class is for. -- created some private members. -- created constants (table & sequence names). * create_invoice() [NEW]: -- public method to create an invoice * get_inserted_invoice_id() [NEW,PRIVATE]: -- private method for getting value of the invoice_id sequence. /lib/invoiceItem.class.php: * MAIN::: -- extends invoice instead of dbAbstract. /lib/invoiceTransaction.class.php: * MAIN::: -- extends invoice instead of dbAbstract. Modified Paths: -------------- trunk/docs/sql/upgrades/upgradeTo1.1.0-BETA16.sql trunk/lib/invoice.class.php trunk/lib/invoiceItem.class.php trunk/lib/invoiceTransaction.class.php Modified: trunk/docs/sql/upgrades/upgradeTo1.1.0-BETA16.sql =================================================================== --- trunk/docs/sql/upgrades/upgradeTo1.1.0-BETA16.sql 2007-12-13 23:42:23 UTC (rev 690) +++ trunk/docs/sql/upgrades/upgradeTo1.1.0-BETA16.sql 2007-12-14 01:05:59 UTC (rev 691) @@ -10,9 +10,15 @@ CREATE TABLE invoice_status_table ( invoice_status_id integer NOT NULL PRIMARY KEY, name text NOT NULL UNIQUE, + description text NOT NULL UNIQUE, is_updateable boolean NOT NULL DEFAULT FALSE ); +-- NOTE: by setting the invoice_status_id, we ensure they always get set properly, and new ones can't be readily inserted without specifying that too. +INSERT INTO invoice_status_table (invoice_status_id, name, description, is_updateable) VALUES (-1, 'W/0', 'Write Off', FALSE); +INSERT INTO invoice_status_table (invoice_status_id, name, description, is_updateable) VALUES (0, 'New', 'Open, pending changes', TRUE); +INSERT INTO invoice_status_table (invoice_status_id, name, description, is_updateable) VALUES (1, 'OK', 'Completed', FALSE); + CREATE TABLE invoice_table ( invoice_id integer NOT NULL PRIMARY KEY, poc text, @@ -24,7 +30,7 @@ city text, state text, zip text, - invoice_status_id integer NOT NULL REFERENCES invoice_status_table(invoice_status_id), + invoice_status_id integer NOT NULL DEFAULT 0 REFERENCES invoice_status_table(invoice_status_id), creator_contact_id integer NOT NULL REFERENCES contact_table(contact_id), billing_contact_id integer NOT NULL REFERENCES contact_table(contact_id), is_proforma boolean NOT NULL DEFAULT FALSE, Modified: trunk/lib/invoice.class.php =================================================================== --- trunk/lib/invoice.class.php 2007-12-13 23:42:23 UTC (rev 690) +++ trunk/lib/invoice.class.php 2007-12-14 01:05:59 UTC (rev 691) @@ -1,5 +1,8 @@ <?php /* + * This class was built to handle creation, searching, and updates of invoices. + * For searches involving items on the invoice, use invoiceItem{}. + * invoices is handled by * * SVN INFORMATION::: * ------------------ @@ -18,6 +21,20 @@ protected $gfObj; protected $logsObj; + private $invoiceId = NULL; + private $creatorContactId = NULL; + private $billingContactId = NULL; + + //set some internal things that should NEVER be changed after initialization. + const mainTable = 'invoice_table'; + const mainTableSeq = 'invoice_table_invoice_id_seq'; + + const itemTable = 'invoice_item_table'; + const itemTableSeq = 'invoice_item_table_invoice_item_id_seq'; + + const transTable = 'invoice_transaction_table'; + const transTableSeq = 'invoice_transaction_table_invoice_transaction_id_seq'; + //========================================================================= public function __construct(cs_phpDB $db) { $this->db = $db; @@ -30,8 +47,69 @@ //========================================================================= + /** + * Method to handle creating the main invoice record. + */ + public function create_invoice(array $invoiceData, $isProforma=FALSE) { + $cleanFields = array( + 'poc','company', 'address1', 'address2', 'phone', 'fax', 'city', + 'state', 'zip' + ); + + $insertArr = array(); + foreach($invoiceData as $name=>$value) { + $insertArr[$name] = $this->gfObj->cleanString($value, 'sql'); + } + + if($isProforma === TRUE) { + $insertArr['is_proforma'] = 't'; + } + + $insertString = $this->gfObj->string_from_array($insertArr, 'insert', NULL, 'sql'); + + $sql = "INSERT INTO ". $this->mainTable .' '. $insertString; + + if($this->run_sql($sql)) { + //pull the new invoice id. + $retval = $this->get_inserted_invoice_id(); + } + else { + throw new exception(__METHOD__ .': failed to insert new invoice: '. $this->lastError ."<BR>\nSQL::: ". $sql); + } + + return($retval); + + }//end create_invoice() + //========================================================================= + + + + //========================================================================= + /** + * Add a line item to the invoice; should be an instance of invoiceItem{}. + */ public function add_item(invoiceItem $item) { }//end add_item() //========================================================================= + + + + //========================================================================= + /** + * Retrieve the invoice_id that was last inserted. + */ + private function get_inserted_invoice_id() { + $sql = "SELECT currval('". $this->mainTableSeq ."'::text)"; + if($this->run_sql($sql)) { + $data = $this->db->farray(); + $retval = $data[0]; + } + else { + throw new exception(__METHOD__ .": failed to retrieve last invoice_id: ". $this->lastError); + } + + return($retval); + }//end get_inserted_invoice_id() + //========================================================================= } ?> Modified: trunk/lib/invoiceItem.class.php =================================================================== --- trunk/lib/invoiceItem.class.php 2007-12-13 23:42:23 UTC (rev 690) +++ trunk/lib/invoiceItem.class.php 2007-12-14 01:05:59 UTC (rev 691) @@ -14,7 +14,7 @@ //TODO: log everything! -class invoiceItem extends dbAbstract { +class invoiceItem extends invoice { protected $gfObj; protected $logsObj; Modified: trunk/lib/invoiceTransaction.class.php =================================================================== --- trunk/lib/invoiceTransaction.class.php 2007-12-13 23:42:23 UTC (rev 690) +++ trunk/lib/invoiceTransaction.class.php 2007-12-14 01:05:59 UTC (rev 691) @@ -13,7 +13,7 @@ //TODO: log everything! -class invoiceTransaction extends dbAbstract { +class invoiceTransaction extends invoice { protected $gfObj; protected $logsObj; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-12-13 23:42:29
|
Revision: 690 http://cs-project.svn.sourceforge.net/cs-project/?rev=690&view=rev Author: crazedsanity Date: 2007-12-13 15:42:23 -0800 (Thu, 13 Dec 2007) Log Message: ----------- Fix logging name, add class for handling invoice transactions. Modified Paths: -------------- trunk/lib/invoice.class.php trunk/lib/invoiceItem.class.php Added Paths: ----------- trunk/lib/invoiceTransaction.class.php Modified: trunk/lib/invoice.class.php =================================================================== --- trunk/lib/invoice.class.php 2007-12-13 23:41:02 UTC (rev 689) +++ trunk/lib/invoice.class.php 2007-12-13 23:42:23 UTC (rev 690) @@ -23,7 +23,7 @@ $this->db = $db; $this->gfObj = new cs_globalFunctions; $this->gfObj->debugPrintOpt = DEBUGPRINTOPT; - $this->logsObj = new logsClass($this->db, 'Authentication Token'); + $this->logsObj = new logsClass($this->db, 'Invoice'); }//end __construct() //========================================================================= Modified: trunk/lib/invoiceItem.class.php =================================================================== --- trunk/lib/invoiceItem.class.php 2007-12-13 23:41:02 UTC (rev 689) +++ trunk/lib/invoiceItem.class.php 2007-12-13 23:42:23 UTC (rev 690) @@ -24,7 +24,7 @@ $this->db = $db; $this->gfObj = new cs_globalFunctions; $this->gfObj->debugPrintOpt = DEBUGPRINTOPT; - $this->logsObj = new logsClass($this->db, 'Authentication Token'); + $this->logsObj = new logsClass($this->db, 'Invoice Item'); }//end __construct() //========================================================================= Copied: trunk/lib/invoiceTransaction.class.php (from rev 687, trunk/lib/invoice.class.php) =================================================================== --- trunk/lib/invoiceTransaction.class.php (rev 0) +++ trunk/lib/invoiceTransaction.class.php 2007-12-13 23:42:23 UTC (rev 690) @@ -0,0 +1,30 @@ +<?php +/* + * + * SVN INFORMATION::: + * ------------------ + * SVN Signature::::::: $Id$ + * Last Author::::::::: $Author$ + * Current Revision:::: $Revision$ + * Repository Location: $HeadURL$ + * Last Updated:::::::: $Date$ + * + */ + +//TODO: log everything! + +class invoiceTransaction extends dbAbstract { + + protected $gfObj; + protected $logsObj; + + //========================================================================= + public function __construct(cs_phpDB $db) { + $this->db = $db; + $this->gfObj = new cs_globalFunctions; + $this->gfObj->debugPrintOpt = DEBUGPRINTOPT; + $this->logsObj = new logsClass($this->db, 'Invoice Transaction'); + }//end __construct() + //========================================================================= +} +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-12-13 23:41:08
|
Revision: 689 http://cs-project.svn.sourceforge.net/cs-project/?rev=689&view=rev Author: crazedsanity Date: 2007-12-13 15:41:02 -0800 (Thu, 13 Dec 2007) Log Message: ----------- Script to implement invoice stuff in next version... Added Paths: ----------- trunk/docs/sql/upgrades/upgradeTo1.1.0-BETA16.sql Added: trunk/docs/sql/upgrades/upgradeTo1.1.0-BETA16.sql =================================================================== --- trunk/docs/sql/upgrades/upgradeTo1.1.0-BETA16.sql (rev 0) +++ trunk/docs/sql/upgrades/upgradeTo1.1.0-BETA16.sql 2007-12-13 23:41:02 UTC (rev 689) @@ -0,0 +1,53 @@ +-- +-- SVN INFORMATION::: +-- +-- SVN Signature::::::::: $Id$ +-- Last Committted Date:: $Date$ +-- Last Committed Path::: $HeadURL$ +-- + + +CREATE TABLE invoice_status_table ( + invoice_status_id integer NOT NULL PRIMARY KEY, + name text NOT NULL UNIQUE, + is_updateable boolean NOT NULL DEFAULT FALSE +); + +CREATE TABLE invoice_table ( + invoice_id integer NOT NULL PRIMARY KEY, + poc text, + company text, + address1 text, + address2 text, + phone text, + fax text, + city text, + state text, + zip text, + invoice_status_id integer NOT NULL REFERENCES invoice_status_table(invoice_status_id), + creator_contact_id integer NOT NULL REFERENCES contact_table(contact_id), + billing_contact_id integer NOT NULL REFERENCES contact_table(contact_id), + is_proforma boolean NOT NULL DEFAULT FALSE, + date_created date NOT NULL DEFAULT CURRENT_DATE +); + + +CREATE TABLE invoice_item_table ( + invoice_item_id integer NOT NULL PRIMARY KEY, + invoice_id integer NOT NULL REFERENCES invoice_table(invoice_id), + description text NOT NULL, + unit_price decimal(10,2), + quantity integer NOT NULL DEFAULT 1 +); + + + +CREATE TABLE invoice_transaction_table ( + invoice_transaction_id integer NOT NULL PRIMARY KEY, + invoice_id integer NOT NULL REFERENCES invoice_table(invoice_id), + auth_string text NOT NULL, + number text NOT NULL, + date_created date NOT NULL DEFAULT CURRENT_DATE +); + + Property changes on: trunk/docs/sql/upgrades/upgradeTo1.1.0-BETA16.sql ___________________________________________________________________ Name: svn:keywords + Id HeadURL Date Revision Author Name: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-12-13 23:38:28
|
Revision: 688 http://cs-project.svn.sourceforge.net/cs-project/?rev=688&view=rev Author: crazedsanity Date: 2007-12-13 15:38:24 -0800 (Thu, 13 Dec 2007) Log Message: ----------- Fix header to have proper SVN keywords & such. Modified Paths: -------------- trunk/docs/sql/setup/00__connectSettings.sql trunk/docs/sql/setup/01__storedprocs.sql trunk/docs/sql/setup/02__tables.sql trunk/docs/sql/setup/03__indexes_etc.sql trunk/docs/sql/setup/plpgsql.sql trunk/docs/sql/setup/test_plpgsql.sql Modified: trunk/docs/sql/setup/00__connectSettings.sql =================================================================== --- trunk/docs/sql/setup/00__connectSettings.sql 2007-12-12 23:03:52 UTC (rev 687) +++ trunk/docs/sql/setup/00__connectSettings.sql 2007-12-13 23:38:24 UTC (rev 688) @@ -1,6 +1,6 @@ -- -- SVN INFORMATION::: --- SVN Signature: $Id:::: 00__connectSettings.sql 185 2007-09-15 23:42:34Z crazedsanity $ +-- SVN Signature::::::::: $Id$ -- Last Committted Date:: $Date$ -- Last Committed Path::: $HeadURL$ -- Modified: trunk/docs/sql/setup/01__storedprocs.sql =================================================================== --- trunk/docs/sql/setup/01__storedprocs.sql 2007-12-12 23:03:52 UTC (rev 687) +++ trunk/docs/sql/setup/01__storedprocs.sql 2007-12-13 23:38:24 UTC (rev 688) @@ -1,6 +1,6 @@ -- -- SVN INFORMATION::: --- SVN Signature: $Id:::: 01__storedprocs.sql 186 2007-09-15 23:43:10Z crazedsanity $ +-- SVN Signature::::::::: $Id$ -- Last Committted Date:: $Date$ -- Last Committed Path::: $HeadURL$ -- Modified: trunk/docs/sql/setup/02__tables.sql =================================================================== --- trunk/docs/sql/setup/02__tables.sql 2007-12-12 23:03:52 UTC (rev 687) +++ trunk/docs/sql/setup/02__tables.sql 2007-12-13 23:38:24 UTC (rev 688) @@ -1,6 +1,6 @@ -- -- SVN INFORMATION::: --- SVN Signature: $Id:::: 02__tables.sql 253 2007-09-29 19:48:37Z crazedsanity $ +-- SVN Signature::::::::: $Id$ -- Last Committted Date:: $Date$ -- Last Committed Path::: $HeadURL$ -- Modified: trunk/docs/sql/setup/03__indexes_etc.sql =================================================================== --- trunk/docs/sql/setup/03__indexes_etc.sql 2007-12-12 23:03:52 UTC (rev 687) +++ trunk/docs/sql/setup/03__indexes_etc.sql 2007-12-13 23:38:24 UTC (rev 688) @@ -1,8 +1,8 @@ -- -- SVN INFORMATION::: --- SVN Signature: $Id:::: 03__indexes_etc.sql 253 2007-09-29 19:48:37Z crazedsanity $ --- Last Committted Date:: $Date:2007-11-20 11:02:38 -0600 (Tue, 20 Nov 2007) $ --- Last Committed Path::: $HeadURL:https://cs-project.svn.sourceforge.net/svnroot/cs-project/trunk/docs/sql/setup/03__indexes_etc.sql $ +-- SVN Signature: $Id:::: 01__storedprocs.sql 186 2007-09-15 23:43:10Z crazedsanity $ +-- Last Committted Date:: $Date$ +-- Last Committed Path::: $HeadURL$ -- -- Modified: trunk/docs/sql/setup/plpgsql.sql =================================================================== --- trunk/docs/sql/setup/plpgsql.sql 2007-12-12 23:03:52 UTC (rev 687) +++ trunk/docs/sql/setup/plpgsql.sql 2007-12-13 23:38:24 UTC (rev 688) @@ -1,7 +1,7 @@ -- -- SVN INFORMATION::: --- SVN Signature: $Id:::: plpgsql.sql 183 2007-09-14 23:17:47Z crazedsanity $ --- Last Committted Date:: $Date$ +-- SVN Signature: $Id:::: 03__indexes_etc.sql 253 2007-09-29 19:48:37Z crazedsanity $ +-- Last Committted Date:: $Date:2007-11-20 11:02:38 -0600 (Tue, 20 Nov 2007) $ -- Last Committed Path::: $HeadURL$ -- Modified: trunk/docs/sql/setup/test_plpgsql.sql =================================================================== --- trunk/docs/sql/setup/test_plpgsql.sql 2007-12-12 23:03:52 UTC (rev 687) +++ trunk/docs/sql/setup/test_plpgsql.sql 2007-12-13 23:38:24 UTC (rev 688) @@ -1,7 +1,7 @@ -- -- SVN INFORMATION::: --- SVN Signature::::::::: $Id$ --- Last Committted Date:: $Date$ +-- SVN Signature: $Id:::: 03__indexes_etc.sql 253 2007-09-29 19:48:37Z crazedsanity $ +-- Last Committted Date:: $Date:2007-11-20 11:02:38 -0600 (Tue, 20 Nov 2007) $ -- Last Committed Path::: $HeadURL$ -- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-12-12 23:03:58
|
Revision: 687 http://cs-project.svn.sourceforge.net/cs-project/?rev=687&view=rev Author: crazedsanity Date: 2007-12-12 15:03:52 -0800 (Wed, 12 Dec 2007) Log Message: ----------- New invoice classes, for creating invoices. Yay! Added Paths: ----------- trunk/lib/invoice.class.php trunk/lib/invoiceItem.class.php Copied: trunk/lib/invoice.class.php (from rev 686, trunk/lib/authToken.class.php) =================================================================== --- trunk/lib/invoice.class.php (rev 0) +++ trunk/lib/invoice.class.php 2007-12-12 23:03:52 UTC (rev 687) @@ -0,0 +1,37 @@ +<?php +/* + * + * SVN INFORMATION::: + * ------------------ + * SVN Signature::::::: $Id$ + * Last Author::::::::: $Author$ + * Current Revision:::: $Revision$ + * Repository Location: $HeadURL$ + * Last Updated:::::::: $Date$ + * + */ + +//TODO: log everything! + +class invoice extends dbAbstract { + + protected $gfObj; + protected $logsObj; + + //========================================================================= + public function __construct(cs_phpDB $db) { + $this->db = $db; + $this->gfObj = new cs_globalFunctions; + $this->gfObj->debugPrintOpt = DEBUGPRINTOPT; + $this->logsObj = new logsClass($this->db, 'Authentication Token'); + }//end __construct() + //========================================================================= + + + + //========================================================================= + public function add_item(invoiceItem $item) { + }//end add_item() + //========================================================================= +} +?> Copied: trunk/lib/invoiceItem.class.php (from rev 686, trunk/lib/authToken.class.php) =================================================================== --- trunk/lib/invoiceItem.class.php (rev 0) +++ trunk/lib/invoiceItem.class.php 2007-12-12 23:03:52 UTC (rev 687) @@ -0,0 +1,38 @@ +<?php +/* + * + * SVN INFORMATION::: + * ------------------ + * SVN Signature::::::: $Id$ + * Last Author::::::::: $Author$ + * Current Revision:::: $Revision$ + * Repository Location: $HeadURL$ + * Last Updated:::::::: $Date$ + * + * TODO: test methods to make sure they work! + */ + +//TODO: log everything! + +class invoiceItem extends dbAbstract { + + protected $gfObj; + protected $logsObj; + + //========================================================================= + public function __construct(cs_phpDB $db) { + $this->db = $db; + $this->gfObj = new cs_globalFunctions; + $this->gfObj->debugPrintOpt = DEBUGPRINTOPT; + $this->logsObj = new logsClass($this->db, 'Authentication Token'); + }//end __construct() + //========================================================================= + + + + //========================================================================= + public function create_item(array $data) { + }//end create_item() + //========================================================================= +} +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 21:34:50
|
Revision: 686 http://cs-project.svn.sourceforge.net/cs-project/?rev=686&view=rev Author: crazedsanity Date: 2007-11-23 13:34:48 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Fix note display to be unified (hopefully). Modified Paths: -------------- trunk/includes/content/helpdesk.inc trunk/includes/extern/helpdesk.inc trunk/templates/content/project/view/related_note.content.tmpl Modified: trunk/includes/content/helpdesk.inc =================================================================== --- trunk/includes/content/helpdesk.inc 2007-11-23 21:26:18 UTC (rev 685) +++ trunk/includes/content/helpdesk.inc 2007-11-23 21:34:48 UTC (rev 686) @@ -370,8 +370,6 @@ $baseRow = $page->templateRows['issueNotes']; foreach($myNotes as $repArr) { $repArr['body'] = $bbCodeParser->parseString($repArr['body']); - $repArr['body'] = preg_replace('/\s\s/', ' ', $repArr['body']); - $repArr['body'] = preg_replace('/\S\s\s/', ' ', $repArr['body']); $repArr['subject'] = cleanString($repArr['subject'], "htmlentity_plus_brackets"); Modified: trunk/includes/extern/helpdesk.inc =================================================================== --- trunk/includes/extern/helpdesk.inc 2007-11-23 21:26:18 UTC (rev 685) +++ trunk/includes/extern/helpdesk.inc 2007-11-23 21:34:48 UTC (rev 686) @@ -149,7 +149,6 @@ #$helpdeskData['subject'] = wordwrap($helpdeskData['subject'], FORMAT_WORDWRAP); $helpdeskData['subject'] = cleanString($helpdeskData['subject'], "htmlentity_plus_brackets"); $helpdeskData['subject'] = $bbCodeParser->parseString($helpdeskData['subject'], TRUE); - $helpdeskData['subject'] = preg_replace('/\s\s/', ' ', $helpdeskData['subject']); $helpdeskData['subject'] = preg_replace('/\S\s\s/', ' ', $helpdeskData['subject']); //add everything to the page as a template var... Modified: trunk/templates/content/project/view/related_note.content.tmpl =================================================================== --- trunk/templates/content/project/view/related_note.content.tmpl 2007-11-23 21:26:18 UTC (rev 685) +++ trunk/templates/content/project/view/related_note.content.tmpl 2007-11-23 21:34:48 UTC (rev 686) @@ -9,7 +9,7 @@ <td width="100%"><a href="/content/notes/view?ID=%%id%%"><img src="/images/pixel_blue.gif" alt="" border="0" width="7"></a> <a name="note_%%id%%"></a> <a href="/content/notes/view?ID=%%id%%" target="_top"> <u>[%%updated%%: <b>%%fname%% %%lname%%</b>]</u> %%subject%%</a><BR> - <pre style="text-decoration:normal;font-size:10pt;">%%body%%</pre></td> + <code style="text-decoration:normal;font-size:10pt;">%%body%%</code></td> </tr> <!-- END related_note_row --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 21:26:20
|
Revision: 685 http://cs-project.svn.sourceforge.net/cs-project/?rev=685&view=rev Author: crazedsanity Date: 2007-11-23 13:26:18 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Force noteClass to format note data for uniform display. /lib/noteClass.php: * get_notes(): -- ARG CHANGE: NEW ARG: #3 ($formatIt=TRUE) -- optionally format the note content & subject -- format note content to use for multiple spaces, and replace newlines ("\n") with HTML line breaks ("<BR>") Modified Paths: -------------- trunk/lib/noteClass.php Modified: trunk/lib/noteClass.php =================================================================== --- trunk/lib/noteClass.php 2007-11-23 21:06:10 UTC (rev 684) +++ trunk/lib/noteClass.php 2007-11-23 21:26:18 UTC (rev 685) @@ -52,7 +52,7 @@ * @return 0 FAIL: unable to retrieve notes. * @return <array> PASS: array contains records, indexed by id. */ - function get_notes($critArr=NULL, $primaryOrder=NULL) { + function get_notes($critArr=NULL, $primaryOrder=NULL, $formatIt=TRUE) { if(is_array($primaryOrder)) { $arrayKeysArr = array_keys($primaryOrder); @@ -102,10 +102,20 @@ $retval = $this->db->farray_fieldnames("note_id",NULL,0); foreach($retval as $id=>$arr) { - //add some wrapping & cleaning (so the data appears properly) - $retval[$id]['subject'] = cleanString($retval[$id]['subject'], "htmlentity_plus_brackets"); - $retval[$id]['body'] = cleanString($retval[$id]['body'], "htmlentity_plus_brackets"); + if($formatIt === TRUE) { + //add some wrapping & cleaning (so the data appears properly) + $retval[$id]['subject'] = cleanString($retval[$id]['subject'], "htmlentity_plus_brackets"); + + $body = $retval[$id]['body']; + $body = cleanString($body, "htmlentity_plus_brackets"); + $body = preg_replace("/\n/", "<BR>", $body); + $body = preg_replace('/\s\s/', ' ', $body); + $body = preg_replace('/\S\s\s/', ' ', $body); + + $retval[$id]['body'] = $body; + } + //make the created & updated fields nicer. $cleanDatesArr = array('created', 'updated'); foreach($cleanDatesArr as $dateField) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 21:06:16
|
Revision: 684 http://cs-project.svn.sourceforge.net/cs-project/?rev=684&view=rev Author: crazedsanity Date: 2007-11-23 13:06:10 -0800 (Fri, 23 Nov 2007) Log Message: ----------- After re-linking an issue, the message now shows a link back to the previous project. Modified Paths: -------------- trunk/includes/content/project.inc Modified: trunk/includes/content/project.inc =================================================================== --- trunk/includes/content/project.inc 2007-11-23 20:51:27 UTC (rev 683) +++ trunk/includes/content/project.inc 2007-11-23 21:06:10 UTC (rev 684) @@ -183,9 +183,16 @@ $helpdeskObj->remark($linkIssue, $remarkDetails); if($linkRes) { + $oldIsHelpdesk = $proj->helpdeskObj->isHelpdeskIssue; + $proj->helpdeskObj->isHelpdeskIssue=FALSE; + $oldProjData = $proj->helpdeskObj->get_parent_record($issueData['ancestry']); + $proj->helpdeskObj->isHelpdeskIssue=$oldIsHelpdesk; + $oldProjLinkList = $proj->get_ancestry_link_list($oldProjData['public_id'], TRUE, TRUE, TRUE); + $page->set_message_wrapper(array( 'title' => "Issue Linked Successfully", - 'message' => "Issue #". $linkIssue ." was successfully linked to this project.", + 'message' => "Issue #". $linkIssue ." was successfully linked to this project.<BR><BR>" . + "<b>Back to old project:</b> [". $oldProjLinkList ."]", 'type' => "status" )); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 20:51:30
|
Revision: 683 http://cs-project.svn.sourceforge.net/cs-project/?rev=683&view=rev Author: crazedsanity Date: 2007-11-23 12:51:27 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Show icon in title for prettiness. :) Modified Paths: -------------- trunk/templates/system/message_box.tmpl Modified: trunk/templates/system/message_box.tmpl =================================================================== --- trunk/templates/system/message_box.tmpl 2007-11-23 20:50:42 UTC (rev 682) +++ trunk/templates/system/message_box.tmpl 2007-11-23 20:51:27 UTC (rev 683) @@ -10,7 +10,9 @@ <table class="{messageType}" width="100%" border="0" cellspacing="0" cellpadding="5"> <tr> <td valign="top"> - <p style="border-style: solid; border-width: 0px 0px 2px 0px" class="title1">{title}</p> + <p style="border-style: solid; border-width: 0px 0px 2px 0px" class="title1"> + <img src="/images/message_icons/{messageType}.png" border="0"> {title} + </p> <p style="margin: 5px 0px 5px 0px">{message}</p> {redirect} </td> </tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 20:50:44
|
Revision: 682 http://cs-project.svn.sourceforge.net/cs-project/?rev=682&view=rev Author: crazedsanity Date: 2007-11-23 12:50:42 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Images to display in the title of messages. Added Paths: ----------- trunk/public_html/images/message_icons/ trunk/public_html/images/message_icons/error.png trunk/public_html/images/message_icons/fatal.png trunk/public_html/images/message_icons/info.png trunk/public_html/images/message_icons/notice.png trunk/public_html/images/message_icons/status.png Copied: trunk/public_html/images/message_icons/error.png (from rev 681, trunk/public_html/images/icons/24-message-warn.png) =================================================================== (Binary files differ) Copied: trunk/public_html/images/message_icons/fatal.png (from rev 681, trunk/public_html/images/icons/24-em-cross.png) =================================================================== (Binary files differ) Copied: trunk/public_html/images/message_icons/info.png (from rev 681, trunk/public_html/images/icons/24-message-info.png) =================================================================== (Binary files differ) Copied: trunk/public_html/images/message_icons/notice.png (from rev 681, trunk/public_html/images/icons/24-message-info.png) =================================================================== (Binary files differ) Copied: trunk/public_html/images/message_icons/status.png (from rev 681, trunk/public_html/images/icons/24-em-check.png) =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 19:37:59
|
Revision: 681 http://cs-project.svn.sourceforge.net/cs-project/?rev=681&view=rev Author: crazedsanity Date: 2007-11-23 11:33:11 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Better spot for help button, no more text display of current modifier. Modified Paths: -------------- trunk/templates/content/tags/index.content.tmpl Modified: trunk/templates/content/tags/index.content.tmpl =================================================================== --- trunk/templates/content/tags/index.content.tmpl 2007-11-23 19:16:48 UTC (rev 680) +++ trunk/templates/content/tags/index.content.tmpl 2007-11-23 19:33:11 UTC (rev 681) @@ -51,12 +51,12 @@ <td>{tagRecordCount}</td> </tr> <tr> - <td><b>Modifier:</b></td> + <td><b>Modifier:</b> + <a href="/help/tags/modifier" target="_blank"><img src="/images/icon-help.png" border="0"></a></td> <td> <select name="modifier" onChange="this.form.submit();"> {modifier_option_list} - </select> [{tagModifier}] - <a href="/help/tags/modifier" target="_blank"><img src="/images/icon-help.png" border="0"></a> + </select> </td> </tr> </table> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 19:18:21
|
Revision: 680 http://cs-project.svn.sourceforge.net/cs-project/?rev=680&view=rev Author: crazedsanity Date: 2007-11-23 11:16:48 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Help image, supposed to be included in previous commit. Added Paths: ----------- trunk/public_html/images/icon-help.png Added: trunk/public_html/images/icon-help.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icon-help.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 19:04:38
|
Revision: 679 http://cs-project.svn.sourceforge.net/cs-project/?rev=679&view=rev Author: crazedsanity Date: 2007-11-23 11:01:03 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Link to help from tags page plus help icon. Modified Paths: -------------- trunk/templates/content/tags/index.content.tmpl Modified: trunk/templates/content/tags/index.content.tmpl =================================================================== --- trunk/templates/content/tags/index.content.tmpl 2007-11-23 18:58:23 UTC (rev 678) +++ trunk/templates/content/tags/index.content.tmpl 2007-11-23 19:01:03 UTC (rev 679) @@ -52,7 +52,12 @@ </tr> <tr> <td><b>Modifier:</b></td> - <td><select name="modifier" onChange="this.form.submit();">{modifier_option_list}</select> [{tagModifier}]</td> + <td> + <select name="modifier" onChange="this.form.submit();"> + {modifier_option_list} + </select> [{tagModifier}] + <a href="/help/tags/modifier" target="_blank"><img src="/images/icon-help.png" border="0"></a> + </td> </tr> </table> </td> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 18:59:39
|
Revision: 678 http://cs-project.svn.sourceforge.net/cs-project/?rev=678&view=rev Author: crazedsanity Date: 2007-11-23 10:58:23 -0800 (Fri, 23 Nov 2007) Log Message: ----------- help for tag modifiers. Added Paths: ----------- trunk/templates/help/tags/ trunk/templates/help/tags/modifier.content.tmpl Added: trunk/templates/help/tags/modifier.content.tmpl =================================================================== --- trunk/templates/help/tags/modifier.content.tmpl (rev 0) +++ trunk/templates/help/tags/modifier.content.tmpl 2007-11-23 18:58:23 UTC (rev 678) @@ -0,0 +1,25 @@ + + +<h2>What is a tag modifier?</h2> + +This value comes into play only when an issue is initially created. The modifier is combined from all the selected tags and added to 9 (base priority) to determine what +the initial priority is. For instance, if the "critical" tag is the only tag added to a new issue, the new issue's beginning priority will be set to 4, assuming the +modifier for "critical" is set to -5. + +<hr> + +<h2>Why use negative values?</h2> + +This is done for logical simplicity. The most critical issue has a priority of 0, while unimportant issues are at 9. To increase the importance, subtraction must take +place. + +<hr> + +<h2>Why are some tag modifiers negative, some positive, and some zero?</h2> + +A tag with a negative value means adding this tag to an issue makes it more important. A tag with a positive value has the opposite effect; adding a positive tag means +it lessens the importance. <br><br> + +<b>Example:</b> <i>Suppose a user submits a critical bug that causes massive data corruption, but the user can't recreate the problem. The issue is created with the tags +"critical" (-5) and "cannot reproduce" (+5).</i> + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 18:21:29
|
Revision: 677 http://cs-project.svn.sourceforge.net/cs-project/?rev=677&view=rev Author: crazedsanity Date: 2007-11-23 10:21:21 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Folder for icons from "Sweetie-BasePack-v3" (http://sweetie.sublink.ca/preview/icons/Sweetie-BasePack-v3) Added Paths: ----------- trunk/public_html/images/icons/ trunk/public_html/images/icons/12-em-check.png trunk/public_html/images/icons/12-em-cross.png trunk/public_html/images/icons/12-em-down.png trunk/public_html/images/icons/12-em-pencil.png trunk/public_html/images/icons/12-em-plus.png trunk/public_html/images/icons/12-em-up.png trunk/public_html/images/icons/16-arrow-down.png trunk/public_html/images/icons/16-arrow-left.png trunk/public_html/images/icons/16-arrow-right.png trunk/public_html/images/icons/16-arrow-up.png trunk/public_html/images/icons/16-circle-blue-add.png trunk/public_html/images/icons/16-circle-blue-check.png trunk/public_html/images/icons/16-circle-blue-delete.png trunk/public_html/images/icons/16-circle-blue-remove.png trunk/public_html/images/icons/16-circle-blue.png trunk/public_html/images/icons/16-circle-green-add.png trunk/public_html/images/icons/16-circle-green-check.png trunk/public_html/images/icons/16-circle-green-delete.png trunk/public_html/images/icons/16-circle-green-remove.png trunk/public_html/images/icons/16-circle-green.png trunk/public_html/images/icons/16-circle-red-add.png trunk/public_html/images/icons/16-circle-red-check.png trunk/public_html/images/icons/16-circle-red-delete.png trunk/public_html/images/icons/16-circle-red-remove.png trunk/public_html/images/icons/16-circle-red.png trunk/public_html/images/icons/16-clock.png trunk/public_html/images/icons/16-cube-blue.png trunk/public_html/images/icons/16-cube-green.png trunk/public_html/images/icons/16-cube-red.png trunk/public_html/images/icons/16-em-check.png trunk/public_html/images/icons/16-em-cross.png trunk/public_html/images/icons/16-em-down.png trunk/public_html/images/icons/16-em-open.png trunk/public_html/images/icons/16-em-pencil.png trunk/public_html/images/icons/16-em-plus.png trunk/public_html/images/icons/16-file-archive.png trunk/public_html/images/icons/16-file-page.png trunk/public_html/images/icons/16-heart-gold-l.png trunk/public_html/images/icons/16-heart-gold-m.png trunk/public_html/images/icons/16-heart-gold-s.png trunk/public_html/images/icons/16-heart-gold-xs.png trunk/public_html/images/icons/16-heart-gold-xxs.png trunk/public_html/images/icons/16-heart-red-l.png trunk/public_html/images/icons/16-heart-red-m.png trunk/public_html/images/icons/16-heart-red-s.png trunk/public_html/images/icons/16-heart-red-xs.png trunk/public_html/images/icons/16-heart-red-xxs.png trunk/public_html/images/icons/16-heart-silver-l.png trunk/public_html/images/icons/16-heart-silver-m.png trunk/public_html/images/icons/16-heart-silver-s.png trunk/public_html/images/icons/16-heart-silver-xs.png trunk/public_html/images/icons/16-heart-silver-xxs.png trunk/public_html/images/icons/16-image-add.png trunk/public_html/images/icons/16-image-check.png trunk/public_html/images/icons/16-image-remove.png trunk/public_html/images/icons/16-image.png trunk/public_html/images/icons/16-member-add.png trunk/public_html/images/icons/16-member-heart.png trunk/public_html/images/icons/16-member-profile.png trunk/public_html/images/icons/16-member-remove.png trunk/public_html/images/icons/16-member.png trunk/public_html/images/icons/16-message-info.png trunk/public_html/images/icons/16-message-warn.png trunk/public_html/images/icons/16-security-key.png trunk/public_html/images/icons/16-security-lock-open.png trunk/public_html/images/icons/16-security-lock.png trunk/public_html/images/icons/16-square-blue-add.png trunk/public_html/images/icons/16-square-blue-check.png trunk/public_html/images/icons/16-square-blue-delete.png trunk/public_html/images/icons/16-square-blue-remove.png trunk/public_html/images/icons/16-square-blue.png trunk/public_html/images/icons/16-square-green-add.png trunk/public_html/images/icons/16-square-green-check.png trunk/public_html/images/icons/16-square-green-delete.png trunk/public_html/images/icons/16-square-green-remove.png trunk/public_html/images/icons/16-square-green.png trunk/public_html/images/icons/16-square-red-add.png trunk/public_html/images/icons/16-square-red-check.png trunk/public_html/images/icons/16-square-red-delete.png trunk/public_html/images/icons/16-square-red-remove.png trunk/public_html/images/icons/16-square-red.png trunk/public_html/images/icons/16-star-cold.png trunk/public_html/images/icons/16-star-hot.png trunk/public_html/images/icons/16-tag-add.png trunk/public_html/images/icons/16-tag-check.png trunk/public_html/images/icons/16-tag-cold.png trunk/public_html/images/icons/16-tag-cross.png trunk/public_html/images/icons/16-tag-hot.png trunk/public_html/images/icons/16-tag-pencil.png trunk/public_html/images/icons/16-tool-a.png trunk/public_html/images/icons/16-tool-b.png trunk/public_html/images/icons/16-tool-c.png trunk/public_html/images/icons/16-tool-d.png trunk/public_html/images/icons/16-zoom.png trunk/public_html/images/icons/24-arrow-back.png trunk/public_html/images/icons/24-arrow-first.png trunk/public_html/images/icons/24-arrow-forward.png trunk/public_html/images/icons/24-arrow-last.png trunk/public_html/images/icons/24-arrow-next.png trunk/public_html/images/icons/24-arrow-previous.png trunk/public_html/images/icons/24-book-blue-add.png trunk/public_html/images/icons/24-book-blue-check.png trunk/public_html/images/icons/24-book-blue-mark.png trunk/public_html/images/icons/24-book-blue-open.png trunk/public_html/images/icons/24-book-blue-remove.png trunk/public_html/images/icons/24-book-blue.png trunk/public_html/images/icons/24-book-green-add.png trunk/public_html/images/icons/24-book-green-check.png trunk/public_html/images/icons/24-book-green-mark.png trunk/public_html/images/icons/24-book-green-open.png trunk/public_html/images/icons/24-book-green-remove.png trunk/public_html/images/icons/24-book-green.png trunk/public_html/images/icons/24-book-red-add.png trunk/public_html/images/icons/24-book-red-check.png trunk/public_html/images/icons/24-book-red-mark.png trunk/public_html/images/icons/24-book-red-open.png trunk/public_html/images/icons/24-book-red-remove.png trunk/public_html/images/icons/24-book-red.png trunk/public_html/images/icons/24-columns.png trunk/public_html/images/icons/24-control-pause.png trunk/public_html/images/icons/24-control-stop.png trunk/public_html/images/icons/24-em-check.png trunk/public_html/images/icons/24-em-cross.png trunk/public_html/images/icons/24-em-down.png trunk/public_html/images/icons/24-em-plus.png trunk/public_html/images/icons/24-em-up.png trunk/public_html/images/icons/24-frame-add.png trunk/public_html/images/icons/24-frame-close.png trunk/public_html/images/icons/24-frame-open.png trunk/public_html/images/icons/24-frame.png trunk/public_html/images/icons/24-heart-gold.png trunk/public_html/images/icons/24-heart-red.png trunk/public_html/images/icons/24-heart-silver.png trunk/public_html/images/icons/24-image-add.png trunk/public_html/images/icons/24-image-check.png trunk/public_html/images/icons/24-image-open.png trunk/public_html/images/icons/24-image-remove.png trunk/public_html/images/icons/24-image.png trunk/public_html/images/icons/24-imageset-add.png trunk/public_html/images/icons/24-imageset-check.png trunk/public_html/images/icons/24-imageset-open.png trunk/public_html/images/icons/24-imageset-remove.png trunk/public_html/images/icons/24-imageset.png trunk/public_html/images/icons/24-member-add.png trunk/public_html/images/icons/24-member-heart.png trunk/public_html/images/icons/24-member-remove.png trunk/public_html/images/icons/24-member.png trunk/public_html/images/icons/24-message-info.png trunk/public_html/images/icons/24-message-warn.png trunk/public_html/images/icons/24-security-key.png trunk/public_html/images/icons/24-security-lock-open.png trunk/public_html/images/icons/24-security-lock.png trunk/public_html/images/icons/24-settings-blue.png trunk/public_html/images/icons/24-settings-orange.png trunk/public_html/images/icons/24-settings-silver.png trunk/public_html/images/icons/24-settings.png trunk/public_html/images/icons/24-sidebar.png trunk/public_html/images/icons/24-tab-add.png trunk/public_html/images/icons/24-tab-close.png trunk/public_html/images/icons/24-tab-open.png trunk/public_html/images/icons/24-tab.png trunk/public_html/images/icons/24-tag-add.png trunk/public_html/images/icons/24-tag-check.png trunk/public_html/images/icons/24-tag-cold.png trunk/public_html/images/icons/24-tag-hot.png trunk/public_html/images/icons/24-tag-manager.png trunk/public_html/images/icons/24-tag-pencil.png trunk/public_html/images/icons/24-tag-remove.png trunk/public_html/images/icons/24-tool-a.png trunk/public_html/images/icons/24-tool-b.png trunk/public_html/images/icons/24-tool-c.png trunk/public_html/images/icons/24-tools.png trunk/public_html/images/icons/24-zoom-actual.png trunk/public_html/images/icons/24-zoom-fill.png trunk/public_html/images/icons/24-zoom-in.png trunk/public_html/images/icons/24-zoom-out.png trunk/public_html/images/icons/24-zoom.png trunk/public_html/images/icons/8-em-check.png trunk/public_html/images/icons/8-em-cross.png trunk/public_html/images/icons/8-em-heart.png trunk/public_html/images/icons/8-em-pencil.png trunk/public_html/images/icons/8-em-plus.png Added: trunk/public_html/images/icons/12-em-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/12-em-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/12-em-cross.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/12-em-cross.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/12-em-down.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/12-em-down.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/12-em-pencil.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/12-em-pencil.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/12-em-plus.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/12-em-plus.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/12-em-up.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/12-em-up.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-arrow-down.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-arrow-down.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-arrow-left.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-arrow-left.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-arrow-right.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-arrow-right.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-arrow-up.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-arrow-up.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-blue-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-blue-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-blue-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-blue-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-blue-delete.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-blue-delete.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-blue-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-blue-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-blue.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-blue.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-green-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-green-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-green-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-green-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-green-delete.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-green-delete.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-green-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-green-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-green.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-green.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-red-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-red-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-red-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-red-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-red-delete.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-red-delete.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-red-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-red-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-circle-red.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-circle-red.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-clock.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-clock.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-cube-blue.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-cube-blue.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-cube-green.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-cube-green.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-cube-red.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-cube-red.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-em-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-em-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-em-cross.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-em-cross.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-em-down.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-em-down.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-em-open.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-em-open.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-em-pencil.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-em-pencil.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-em-plus.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-em-plus.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-file-archive.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-file-archive.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-file-page.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-file-page.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-gold-l.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-gold-l.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-gold-m.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-gold-m.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-gold-s.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-gold-s.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-gold-xs.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-gold-xs.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-gold-xxs.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-gold-xxs.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-red-l.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-red-l.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-red-m.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-red-m.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-red-s.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-red-s.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-red-xs.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-red-xs.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-red-xxs.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-red-xxs.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-silver-l.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-silver-l.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-silver-m.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-silver-m.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-silver-s.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-silver-s.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-silver-xs.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-silver-xs.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-heart-silver-xxs.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-heart-silver-xxs.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-image-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-image-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-image-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-image-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-image-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-image-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-image.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-image.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-member-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-member-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-member-heart.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-member-heart.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-member-profile.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-member-profile.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-member-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-member-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-member.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-member.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-message-info.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-message-info.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-message-warn.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-message-warn.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-security-key.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-security-key.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-security-lock-open.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-security-lock-open.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-security-lock.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-security-lock.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-blue-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-blue-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-blue-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-blue-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-blue-delete.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-blue-delete.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-blue-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-blue-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-blue.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-blue.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-green-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-green-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-green-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-green-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-green-delete.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-green-delete.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-green-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-green-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-green.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-green.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-red-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-red-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-red-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-red-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-red-delete.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-red-delete.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-red-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-red-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-square-red.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-square-red.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-star-cold.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-star-cold.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-star-hot.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-star-hot.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-tag-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-tag-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-tag-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-tag-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-tag-cold.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-tag-cold.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-tag-cross.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-tag-cross.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-tag-hot.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-tag-hot.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-tag-pencil.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-tag-pencil.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-tool-a.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-tool-a.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-tool-b.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-tool-b.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-tool-c.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-tool-c.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-tool-d.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-tool-d.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/16-zoom.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/16-zoom.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-arrow-back.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-arrow-back.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-arrow-first.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-arrow-first.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-arrow-forward.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-arrow-forward.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-arrow-last.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-arrow-last.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-arrow-next.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-arrow-next.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-arrow-previous.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-arrow-previous.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-blue-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-blue-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-blue-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-blue-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-blue-mark.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-blue-mark.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-blue-open.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-blue-open.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-blue-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-blue-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-blue.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-blue.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-green-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-green-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-green-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-green-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-green-mark.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-green-mark.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-green-open.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-green-open.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-green-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-green-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-green.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-green.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-red-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-red-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-red-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-red-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-red-mark.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-red-mark.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-red-open.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-red-open.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-red-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-red-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-book-red.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-book-red.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-columns.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-columns.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-control-pause.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-control-pause.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-control-stop.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-control-stop.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-em-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-em-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-em-cross.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-em-cross.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-em-down.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-em-down.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-em-plus.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-em-plus.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-em-up.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-em-up.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-frame-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-frame-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-frame-close.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-frame-close.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-frame-open.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-frame-open.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-frame.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-frame.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-heart-gold.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-heart-gold.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-heart-red.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-heart-red.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-heart-silver.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-heart-silver.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-image-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-image-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-image-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-image-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-image-open.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-image-open.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-image-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-image-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-image.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-image.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-imageset-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-imageset-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-imageset-check.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-imageset-check.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-imageset-open.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-imageset-open.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-imageset-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-imageset-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-imageset.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-imageset.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-member-add.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-member-add.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-member-heart.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-member-heart.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-member-remove.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-member-remove.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-member.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-member.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-message-info.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/icons/24-message-info.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/public_html/images/icons/24-message-warn.png =================================================================== (Binary files differ) Property changes on: trunk/public_h... [truncated message content] |
From: <cra...@us...> - 2007-11-23 17:26:07
|
Revision: 676 http://cs-project.svn.sourceforge.net/cs-project/?rev=676&view=rev Author: crazedsanity Date: 2007-11-23 09:26:04 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Code to better display tags, option to update modifier, list alphabetically. Modified Paths: -------------- trunk/includes/content/tags.inc Modified: trunk/includes/content/tags.inc =================================================================== --- trunk/includes/content/tags.inc 2007-11-23 17:25:04 UTC (rev 675) +++ trunk/includes/content/tags.inc 2007-11-23 17:26:04 UTC (rev 676) @@ -106,7 +106,10 @@ debug_print($_POST); $goHere = $_SERVER['PHP_SELF']; - if($_POST['new_tag']) { + if($_POST['action'] == 'update') { + $result = $proj->tagObj->update_tag_modifier($_POST['tag_name_id'], $_POST['modifier']); + } + elseif($_POST['new_tag']) { //check for pre-existing tags of that name. $myTagList = $proj->tagObj->get_tag_list(); $existingTagNameId = array_search($_POST['new_tag'], $myTagList); @@ -158,10 +161,10 @@ } //get the list of tags, regardless of whether we'll show 'em all or not. -$myTagList = $proj->tagObj->get_tag_list(); +$myTagList = $proj->tagObj->get_tag_list(TRUE, FALSE); $showData = TRUE; -$showTagNameId = $sessionCache->get_cache('tagNameId'); +#$showTagNameId = $sessionCache->get_cache('tagNameId'); if($_GET['move']) { @@ -205,7 +208,7 @@ $messageArr = array( 'title' => 'No Tag Specified', 'message' => "For your convenience, records for the first available tag, " . - "\"". $myTagList[$showTagNameId] ."\" ($showTagNameId) are currently displayed. " . + "\"". $myTagList[$showTagNameId]['name'] ."\" ($showTagNameId) are currently displayed. " . "You may select a different tag from the list.", 'type' => 'notice' ); @@ -241,15 +244,20 @@ //retrieve the (possibly updated) setting $showTagNameId = $sessionCache->get_cache('tagNameId'); -if($showData) { +if($showData) { //get data for this tag. $data = $proj->tagObj->get_records_for_tag($showTagNameId); //set some vars. - $page->add_template_var("tagName", $myTagList[$showTagNameId]); + $page->add_template_var("tagName", $myTagList[$showTagNameId]['name']); + $page->add_template_var('tagModifier', $myTagList[$showTagNameId]['modifier']); $page->add_template_var("tagRecordCount", count($data)); $page->add_template_var("showTagNameId", $showTagNameId); + $page->add_template_var('modifier_option_list', create_priority_option_list($myTagList[$showTagNameId]['modifier'], 5, -5)); + + create_page_title($page, array('title' => "Tag #". $showTagNameId . ": ". $myTagList[$showTagNameId]['name'])); + //rip all block rows. $page->set_all_block_rows('content'); @@ -273,7 +281,8 @@ //display the list of available tags. $tagListBaseRow = $page->templateRows['availableTagsList']; $myRow = ""; - foreach($myTagList as $tagNameId=>$tagName) { + foreach($myTagList as $tagNameId=>$data) { + $tagName = $data['name']; $tagListBaseRow = $page->templateRows['availableTagsList']; if($tagNameId == $showTagNameId) { //switch to a row without the link, so it's more apparent what's selected. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 17:25:10
|
Revision: 675 http://cs-project.svn.sourceforge.net/cs-project/?rev=675&view=rev Author: crazedsanity Date: 2007-11-23 09:25:04 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Add the "tags" section back. Modified Paths: -------------- trunk/includes/content.inc Modified: trunk/includes/content.inc =================================================================== --- trunk/includes/content.inc 2007-11-23 17:24:32 UTC (rev 674) +++ trunk/includes/content.inc 2007-11-23 17:25:04 UTC (rev 675) @@ -116,6 +116,7 @@ 'summary' => "Summary", 'project' => "Projects", 'helpdesk' => "Helpdesk", + 'tags' => "Tags", 'contacts' => "Contacts", 'settings' => "Settings", ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 17:24:39
|
Revision: 674 http://cs-project.svn.sourceforge.net/cs-project/?rev=674&view=rev Author: crazedsanity Date: 2007-11-23 09:24:32 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Updated block row name to match code, form to change modifier, etc. Modified Paths: -------------- trunk/templates/content/tags/index.content.tmpl Modified: trunk/templates/content/tags/index.content.tmpl =================================================================== --- trunk/templates/content/tags/index.content.tmpl 2007-11-23 17:23:11 UTC (rev 673) +++ trunk/templates/content/tags/index.content.tmpl 2007-11-23 17:24:32 UTC (rev 674) @@ -15,14 +15,14 @@ </td> </tr> <!-- END availableTagsList --> - <!-- BEGIN availableTagsList_selected --> + <!-- BEGIN availableTagsList_noLink --> <tr> <td nowrap style="padding-left:5px;"> <img src="/images/bullet-round.png" border="0"> - <b> %%tagName%%</b> + <font size="+1"><b>%%tagName%%</b></font> </td> </tr> - <!-- END availableTagsList_selected --> + <!-- END availableTagsList_noLink --> </table> </td> </tr> @@ -38,28 +38,38 @@ </td> <td> + <form method="POST" action="{PHP_SELF}?editTagId={showTagNameId}"> + <input type="HIDDEN" name="tag_name_id" value="{showTagNameId}"> + <input type="HIDDEN" name="action" value="update"> <table border=1 cellpadding=3 cellspacing=0> <tr> - <th colspan=5> - {tagName} [{tagRecordCount}] - </th> + <td align="center" colspan="2"> + <h1 style="display:inline;">{tagName}</h1><br> + <table border="0" cellpadding="3" cellspacing="0"> + <tr> + <td><b>Associated Records:</b></td> + <td>{tagRecordCount}</td> + </tr> + <tr> + <td><b>Modifier:</b></td> + <td><select name="modifier" onChange="this.form.submit();">{modifier_option_list}</select> [{tagModifier}]</td> + </tr> + </table> + </td> </tr> <tr> + <th>Record Type</th> <th>Name</th> - <th>Move Record</th> </tr> <!-- BEGIN tag_row --> <tr style="background-color: %%rowColor%%;" onmouseover="this.style.backgroundColor = '#ffffff'" onmouseout="this.style.backgroundColor ='%%rowColor2%%'" onclick="location.href = '/content/%%module%%/view?ID=%%public_id%%'"> + + <td>%%module%%</td> - <td><a href="/content/%%module%%/view/?ID=%%public_id%%">%%name%%</a> </td> - - <td> - <a href="{PHP_SELF}?showTag={showTagNameId}&tagId=%%tag_id%%&move=up">up</a> / - <a href="{PHP_SELF}?showTag={showTagNameId}&tagId=%%tag_id%%&move=down">down</a> - </td> + <td nowrap><a href="/content/%%module%%/view?ID=%%public_id%%">%%name%%</a> </td> </tr> <!-- END tag_row --> <!-- BEGIN tag_row__noRecords --> @@ -68,6 +78,7 @@ </tr> <!-- END tag_row__noRecords --> </table> + </form> </td> </tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 17:23:13
|
Revision: 673 http://cs-project.svn.sourceforge.net/cs-project/?rev=673&view=rev Author: crazedsanity Date: 2007-11-23 09:23:11 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Ordering options for tags, ability to change modifier for tag name. /lib/tagClass.php: * get_tag_list(): -- ARG CHANGE: NEW ARG: #2 ($orderByMod=TRUE) -- new argument determines if primary ordering is done by modifier. * update_tag_record(): -- force first argument to be an array. * update_tag_name_record() [NEW]: -- same as update_tag_record(), but using different table. * update_tag_modifier() [NEW]: -- wrapper for update_tag_name_record() to change modifier. Modified Paths: -------------- trunk/lib/tagClass.php Modified: trunk/lib/tagClass.php =================================================================== --- trunk/lib/tagClass.php 2007-11-23 17:19:39 UTC (rev 672) +++ trunk/lib/tagClass.php 2007-11-23 17:23:11 UTC (rev 673) @@ -53,8 +53,12 @@ * @return (array) PASS: contains tag_name_id=>name array. * @return (exception) database error or no rows. */ - public function get_tag_list($getAllData=FALSE) { - $sql = "SELECT * FROM tag_name_table ORDER BY modifier, lower(name)"; + public function get_tag_list($getAllData=FALSE, $orderByMod=TRUE) { + $orderBy = "ORDER BY lower(name)"; + if($orderByMod) { + $orderBy = "ORDER BY modifier, lower(name)"; + } + $sql = "SELECT * FROM tag_name_table ". $orderBy; $numrows = $this->db->exec($sql); $dberror = $this->db->errorMsg(); @@ -285,7 +289,7 @@ //========================================================================= - private function update_tag_record($critArr, array $changes) { + private function update_tag_record(array $critArr, array $changes) { $updateStr = string_from_array($changes, 'update'); $criteria = string_from_array($critArr, 'select', NULL, 'numeric'); $sql = "UPDATE tag_table SET ". $updateStr ."" . @@ -440,6 +444,53 @@ return($retval); }//end create_new_tag_name() //========================================================================= + + + + //========================================================================= + private function update_tag_name_record(array $critArr, array $changes) { + $updateStr = string_from_array($changes, 'update'); + $criteria = string_from_array($critArr, 'select', NULL, 'numeric'); + $sql = "UPDATE tag_name_table SET ". $updateStr ."" . + "WHERE ". $criteria; + + //start a transaction & run the update. + $numrows = $this->db->exec($sql); + $this->lastError = $this->db->errorMsg(); + + if(strlen($this->lastError) || $numrows !== 1) { + //something bad happened. + $retval = 0; + if(strlen($this->lastError)) { + //make it apparent that something went wrong. + $this->logsObj->log_dberror(__METHOD__ .": unable to update ($numrows) or dberror::: ". $this->lastError); + $retval = NULL; + } + } + else { + //good to go. + $retval = $numrows; + $this->logsObj->log_by_class("Updated tag record::: ". $updateStr ."\nCRITERIA::: ". $criteria, 'system'); + } + + return($retval); + }//end update_tag_name_record() + //========================================================================= + + + + //========================================================================= + public function update_tag_modifier($tagNameId, $modifier) { + if(is_numeric($tagNameId) && is_numeric($modifier)) { + $retval = $this->update_tag_name_record(array('tag_name_id' => $tagNameId), array('modifier' => $modifier)); + } + else { + throw new exception(__METHOD__ .": invalid input given..."); + } + + return($retval); + }//end update_tag_modifier() + //========================================================================= } ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 17:19:42
|
Revision: 672 http://cs-project.svn.sourceforge.net/cs-project/?rev=672&view=rev Author: crazedsanity Date: 2007-11-23 09:19:39 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Helpdesk converts newlines to BR's in body again (internal & external). Modified Paths: -------------- trunk/includes/content/helpdesk.inc trunk/includes/extern/helpdesk.inc Modified: trunk/includes/content/helpdesk.inc =================================================================== --- trunk/includes/content/helpdesk.inc 2007-11-21 22:20:25 UTC (rev 671) +++ trunk/includes/content/helpdesk.inc 2007-11-23 17:19:39 UTC (rev 672) @@ -247,7 +247,7 @@ $page->add_template_var("select_category_list", $categoryList); //convert the returned data into htmlentities so brackets show properly. - $helpdeskData['subject'] = $bbCodeParser->parseString(cleanString($helpdeskData['subject'], "htmlentity_plus_brackets")); + $helpdeskData['subject'] = $bbCodeParser->parseString(cleanString($helpdeskData['subject'], "htmlentity_plus_brackets"), TRUE); $helpdeskData['subject'] = preg_replace('/\s\s/', ' ', $helpdeskData['subject']); $helpdeskData['subject'] = preg_replace('/\S\s\s/', ' ', $helpdeskData['subject']); Modified: trunk/includes/extern/helpdesk.inc =================================================================== --- trunk/includes/extern/helpdesk.inc 2007-11-21 22:20:25 UTC (rev 671) +++ trunk/includes/extern/helpdesk.inc 2007-11-23 17:19:39 UTC (rev 672) @@ -148,7 +148,7 @@ //make the wrapping SANE. #$helpdeskData['subject'] = wordwrap($helpdeskData['subject'], FORMAT_WORDWRAP); $helpdeskData['subject'] = cleanString($helpdeskData['subject'], "htmlentity_plus_brackets"); - $helpdeskData['subject'] = $bbCodeParser->parseString($helpdeskData['subject']); + $helpdeskData['subject'] = $bbCodeParser->parseString($helpdeskData['subject'], TRUE); $helpdeskData['subject'] = preg_replace('/\s\s/', ' ', $helpdeskData['subject']); $helpdeskData['subject'] = preg_replace('/\S\s\s/', ' ', $helpdeskData['subject']); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-21 22:40:56
|
Revision: 671 http://cs-project.svn.sourceforge.net/cs-project/?rev=671&view=rev Author: crazedsanity Date: 2007-11-21 14:20:25 -0800 (Wed, 21 Nov 2007) Log Message: ----------- Updated tag listing. Modified Paths: -------------- trunk/templates/content/tags/index.content.tmpl Added Paths: ----------- trunk/public_html/images/bullet-round.png Added: trunk/public_html/images/bullet-round.png =================================================================== (Binary files differ) Property changes on: trunk/public_html/images/bullet-round.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/templates/content/tags/index.content.tmpl =================================================================== --- trunk/templates/content/tags/index.content.tmpl 2007-11-21 21:40:05 UTC (rev 670) +++ trunk/templates/content/tags/index.content.tmpl 2007-11-21 22:20:25 UTC (rev 671) @@ -6,14 +6,24 @@ <tr> <td> <b>Available Tags:</b><BR> - <ul> + <table border="0" cellpadding="1" cellspacing="0"> <!-- BEGIN availableTagsList --> - <li><a href="{PHP_SELF}?showTag=%%tagNameId%%">(%%tagNameId%%) %%tagName%%</a></li> + <tr> + <td nowrap style="padding-left:5px;"> + <img src="/images/bullet-round.png" border="0"> + <a href="{PHP_SELF}?showTag=%%tagNameId%%"> %%tagName%%</a> + </td> + </tr> <!-- END availableTagsList --> - <!-- BEGIN availableTagsList_noLink --> - <li>(%%tagNameId%%) %%tagName%%</li> - <!-- END availableTagsList_noLink --> - </ul> + <!-- BEGIN availableTagsList_selected --> + <tr> + <td nowrap style="padding-left:5px;"> + <img src="/images/bullet-round.png" border="0"> + <b> %%tagName%%</b> + </td> + </tr> + <!-- END availableTagsList_selected --> + </table> </td> </tr> <tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-21 21:40:12
|
Revision: 670 http://cs-project.svn.sourceforge.net/cs-project/?rev=670&view=rev Author: crazedsanity Date: 2007-11-21 13:40:05 -0800 (Wed, 21 Nov 2007) Log Message: ----------- Rename template file so it is viewable for admin interface. Added Paths: ----------- trunk/templates/content/tags/index.content.tmpl Removed Paths: ------------- trunk/templates/content/tags/shared.content.tmpl Copied: trunk/templates/content/tags/index.content.tmpl (from rev 664, trunk/templates/content/tags/shared.content.tmpl) =================================================================== --- trunk/templates/content/tags/index.content.tmpl (rev 0) +++ trunk/templates/content/tags/index.content.tmpl 2007-11-21 21:40:05 UTC (rev 670) @@ -0,0 +1,64 @@ + +<table border=1 cellpadding=3 cellspacing=0> + <tr> + <td> + <table border=1 cellpadding=3 cellspacing=0> + <tr> + <td> + <b>Available Tags:</b><BR> + <ul> + <!-- BEGIN availableTagsList --> + <li><a href="{PHP_SELF}?showTag=%%tagNameId%%">(%%tagNameId%%) %%tagName%%</a></li> + <!-- END availableTagsList --> + <!-- BEGIN availableTagsList_noLink --> + <li>(%%tagNameId%%) %%tagName%%</li> + <!-- END availableTagsList_noLink --> + </ul> + </td> + </tr> + <tr> + <td> + <b>Add a New Tag:</b><br> + <form method="POST"> + <input type="text" name="new_tag"><BR> + <input type="submit" value="Create Tag"> + </form> + </td> + </table> + </td> + + <td> + <table border=1 cellpadding=3 cellspacing=0> + <tr> + <th colspan=5> + {tagName} [{tagRecordCount}] + </th> + </tr> + <tr> + <th>Name</th> + <th>Move Record</th> + </tr> + + <!-- BEGIN tag_row --> + <tr style="background-color: %%rowColor%%;" onmouseover="this.style.backgroundColor = '#ffffff'" + onmouseout="this.style.backgroundColor ='%%rowColor2%%'" + onclick="location.href = '/content/%%module%%/view?ID=%%public_id%%'"> + + <td><a href="/content/%%module%%/view/?ID=%%public_id%%">%%name%%</a> </td> + + <td> + <a href="{PHP_SELF}?showTag={showTagNameId}&tagId=%%tag_id%%&move=up">up</a> / + <a href="{PHP_SELF}?showTag={showTagNameId}&tagId=%%tag_id%%&move=down">down</a> + </td> + </tr> + <!-- END tag_row --> + <!-- BEGIN tag_row__noRecords --> + <tr> + <td colspan="5"><font color="red"><b>NO RECORDS</b></font></td> + </tr> + <!-- END tag_row__noRecords --> + </table> + </td> + + </tr> +</table> Deleted: trunk/templates/content/tags/shared.content.tmpl =================================================================== --- trunk/templates/content/tags/shared.content.tmpl 2007-11-21 21:32:11 UTC (rev 669) +++ trunk/templates/content/tags/shared.content.tmpl 2007-11-21 21:40:05 UTC (rev 670) @@ -1,64 +0,0 @@ - -<table border=1 cellpadding=3 cellspacing=0> - <tr> - <td> - <table border=1 cellpadding=3 cellspacing=0> - <tr> - <td> - <b>Available Tags:</b><BR> - <ul> - <!-- BEGIN availableTagsList --> - <li><a href="{PHP_SELF}?showTag=%%tagNameId%%">(%%tagNameId%%) %%tagName%%</a></li> - <!-- END availableTagsList --> - <!-- BEGIN availableTagsList_noLink --> - <li>(%%tagNameId%%) %%tagName%%</li> - <!-- END availableTagsList_noLink --> - </ul> - </td> - </tr> - <tr> - <td> - <b>Add a New Tag:</b><br> - <form method="POST"> - <input type="text" name="new_tag"><BR> - <input type="submit" value="Create Tag"> - </form> - </td> - </table> - </td> - - <td> - <table border=1 cellpadding=3 cellspacing=0> - <tr> - <th colspan=5> - {tagName} [{tagRecordCount}] - </th> - </tr> - <tr> - <th>Name</th> - <th>Move Record</th> - </tr> - - <!-- BEGIN tag_row --> - <tr style="background-color: %%rowColor%%;" onmouseover="this.style.backgroundColor = '#ffffff'" - onmouseout="this.style.backgroundColor ='%%rowColor2%%'" - onclick="location.href = '/content/%%module%%/view?ID=%%public_id%%'"> - - <td><a href="/content/%%module%%/view/?ID=%%public_id%%">%%name%%</a> </td> - - <td> - <a href="{PHP_SELF}?showTag={showTagNameId}&tagId=%%tag_id%%&move=up">up</a> / - <a href="{PHP_SELF}?showTag={showTagNameId}&tagId=%%tag_id%%&move=down">down</a> - </td> - </tr> - <!-- END tag_row --> - <!-- BEGIN tag_row__noRecords --> - <tr> - <td colspan="5"><font color="red"><b>NO RECORDS</b></font></td> - </tr> - <!-- END tag_row__noRecords --> - </table> - </td> - - </tr> -</table> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-21 21:32:13
|
Revision: 669 http://cs-project.svn.sourceforge.net/cs-project/?rev=669&view=rev Author: crazedsanity Date: 2007-11-21 13:32:11 -0800 (Wed, 21 Nov 2007) Log Message: ----------- Format issue notes without the "pre" tag. Modified Paths: -------------- trunk/templates/content/helpdesk/view.content.tmpl Modified: trunk/templates/content/helpdesk/view.content.tmpl =================================================================== --- trunk/templates/content/helpdesk/view.content.tmpl 2007-11-21 21:31:42 UTC (rev 668) +++ trunk/templates/content/helpdesk/view.content.tmpl 2007-11-21 21:32:11 UTC (rev 669) @@ -147,8 +147,11 @@ <tr> <th style="border-bottom:solid #000 1px;" align="right">Notes:<BR><font size="-3"><i>(Includes previous/current<BR>solution(s), if available)</i></font></th> <td style="border-bottom:solid #000 1px;" colspan="2"> -<!-- BEGIN issueNotes --><div style="border-top:dashed #000 1px;">%%solutionIndicator%% <u> [#%%note_id%%] <b>%%subject%%</b> (%%fname%%@%%created%%)</u></div> - <div style="width:100%; overflow:auto"><pre style="font-size:10px;">%%body%%</pre></div> +<!-- BEGIN issueNotes --> + <div style="border-top:dashed #000 1px;"> + %%solutionIndicator%% <u> [#%%note_id%%] <b>%%subject%%</b> (%%fname%%@%%created%%)</u> + </div><br> + <div style="width:100%; overflow:auto"><code style="font-size:10px;">%%body%%</code></div> <!-- END issueNotes --> </td> </tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-21 21:31:58
|
Revision: 668 http://cs-project.svn.sourceforge.net/cs-project/?rev=668&view=rev Author: crazedsanity Date: 2007-11-21 13:31:42 -0800 (Wed, 21 Nov 2007) Log Message: ----------- Cleaning note body. Modified Paths: -------------- trunk/includes/content/helpdesk.inc Modified: trunk/includes/content/helpdesk.inc =================================================================== --- trunk/includes/content/helpdesk.inc 2007-11-21 21:31:07 UTC (rev 667) +++ trunk/includes/content/helpdesk.inc 2007-11-21 21:31:42 UTC (rev 668) @@ -369,10 +369,11 @@ if(is_array($myNotes) && count($myNotes)) { $baseRow = $page->templateRows['issueNotes']; foreach($myNotes as $repArr) { - $repArr['body'] = $bbCodeParser->parseString(cleanString($repArr['body'], "htmlentity_plus_brackets")); + $repArr['body'] = $bbCodeParser->parseString($repArr['body']); + $repArr['body'] = preg_replace('/\s\s/', ' ', $repArr['body']); + $repArr['body'] = preg_replace('/\S\s\s/', ' ', $repArr['body']); + $repArr['subject'] = cleanString($repArr['subject'], "htmlentity_plus_brackets"); - $repArr['subject'] = preg_replace('/\s\s/', ' ', $repArr['subject']); - $repArr['subject'] = preg_replace('/\S\s\s/', ' ', $repArr['subject']); $repArr['solutionIndicator'] = ""; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-21 21:31:09
|
Revision: 667 http://cs-project.svn.sourceforge.net/cs-project/?rev=667&view=rev Author: crazedsanity Date: 2007-11-21 13:31:07 -0800 (Wed, 21 Nov 2007) Log Message: ----------- Stop double-cleaning note body. Modified Paths: -------------- trunk/includes/extern/helpdesk.inc Modified: trunk/includes/extern/helpdesk.inc =================================================================== --- trunk/includes/extern/helpdesk.inc 2007-11-21 21:29:25 UTC (rev 666) +++ trunk/includes/extern/helpdesk.inc 2007-11-21 21:31:07 UTC (rev 667) @@ -179,7 +179,6 @@ if(is_array($myNotes) && count($myNotes)) { $baseRow = $page->templateRows['issueNotes']; foreach($myNotes as $repArr) { - $repArr['body'] = cleanString($repArr['body'], "htmlentity_plus_brackets"); $repArr['body'] = $bbCodeParser->parseString($repArr['body'], FALSE); $repArr['body'] = preg_replace('/\s\s/', ' ', $repArr['body']); $repArr['body'] = preg_replace('/\S\s\s/', ' ', $repArr['body']); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |