You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(120) |
Jun
(74) |
Jul
(97) |
Aug
(35) |
Sep
(35) |
Oct
(34) |
Nov
|
Dec
(6) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(18) |
Feb
(8) |
Mar
(7) |
Apr
(23) |
May
(28) |
Jun
(31) |
Jul
(27) |
Aug
(34) |
Sep
(48) |
Oct
(511) |
Nov
(197) |
Dec
(333) |
| 2005 |
Jan
(212) |
Feb
(33) |
Mar
(94) |
Apr
(51) |
May
(16) |
Jun
|
Jul
(200) |
Aug
(43) |
Sep
(88) |
Oct
(60) |
Nov
(62) |
Dec
(41) |
| 2006 |
Jan
(94) |
Feb
(49) |
Mar
(54) |
Apr
|
May
(39) |
Jun
(39) |
Jul
(61) |
Aug
(36) |
Sep
(23) |
Oct
(76) |
Nov
(73) |
Dec
(32) |
| 2007 |
Jan
|
Feb
(87) |
Mar
|
Apr
(8) |
May
(36) |
Jun
(49) |
Jul
(54) |
Aug
(8) |
Sep
(50) |
Oct
(36) |
Nov
|
Dec
(3) |
| 2008 |
Jan
(133) |
Feb
(54) |
Mar
(39) |
Apr
(2) |
May
(6) |
Jun
(74) |
Jul
(97) |
Aug
(70) |
Sep
(12) |
Oct
(20) |
Nov
(64) |
Dec
(24) |
| 2009 |
Jan
(25) |
Feb
(49) |
Mar
(18) |
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
(10) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Greg M. <bli...@us...> - 2008-03-29 20:03:07
|
Update of /cvsroot/phpwebsite-comm/modules/wiki/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6952/class Modified Files: OldWikiPage.php WikiImage.php WikiManager.php Log Message: Support new mod_rewrite method introduced in phpWebSite 1.5.0 Index: WikiManager.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/wiki/class/WikiManager.php,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** WikiManager.php 3 Jan 2008 16:29:38 -0000 1.68 --- WikiManager.php 29 Mar 2008 20:01:55 -0000 1.69 *************** *** 258,266 **** $pager->setModule('wiki'); $pager->setTemplate('images/admin.tpl'); ! $pager->addToggle(' class="bgcolor1"'); $pager->addPageTags($tags); $pager->addRowTags('getTpl'); $pager->setSearch('filename', 'summary'); $pager->setDefaultOrder('filename', 'asc'); $template['TITLE'] = dgettext('wiki', 'Wiki Images'); --- 258,267 ---- $pager->setModule('wiki'); $pager->setTemplate('images/admin.tpl'); ! $pager->addToggle(PHPWS_LIST_TOGGLE_CLASS); $pager->addPageTags($tags); $pager->addRowTags('getTpl'); $pager->setSearch('filename', 'summary'); $pager->setDefaultOrder('filename', 'asc'); + $pager->setEmptyMessage(dgettext('wiki', 'No images found.')); $template['TITLE'] = dgettext('wiki', 'Wiki Images'); *************** *** 289,293 **** $pager->setModule('wiki'); $pager->setTemplate('recentchanges/list.tpl'); ! $pager->addToggle(' class="bgcolor1"'); $pager->addPageTags($tags); $pager->addRowTags('getRecentChangesTpl'); --- 290,294 ---- $pager->setModule('wiki'); $pager->setTemplate('recentchanges/list.tpl'); ! $pager->addToggle(PHPWS_LIST_TOGGLE_CLASS); $pager->addPageTags($tags); $pager->addRowTags('getRecentChangesTpl'); *************** *** 403,407 **** if(!isset($_REQUEST['op']) && !isset($_REQUEST['page_op'])) { ! if (MOD_REWRITE_ENABLED && isset($_REQUEST['id']) && is_string($_REQUEST['id'])) { PHPWS_Core::initModClass('wiki', 'WikiPage.php'); --- 404,414 ---- if(!isset($_REQUEST['op']) && !isset($_REQUEST['page_op'])) { ! // phpWebSite 1.5.0 and later mod_rewrite method ! if (isset($_GET['var1'])) ! { ! $_REQUEST['id'] = $_GET['id'] = $_GET['var1']; ! } ! ! if (isset($_REQUEST['id']) && is_string($_REQUEST['id'])) { PHPWS_Core::initModClass('wiki', 'WikiPage.php'); Index: WikiImage.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/wiki/class/WikiImage.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** WikiImage.php 28 May 2007 19:00:16 -0000 1.9 --- WikiImage.php 29 Mar 2008 20:01:55 -0000 1.10 *************** *** 37,48 **** function WikiImage($id=NULL) { ! if (empty($id)) { ! return; ! } ! $this->setId($id); ! $db = new PHPWS_DB('wiki_images'); ! $db->loadObject($this); } --- 37,47 ---- function WikiImage($id=NULL) { ! if (!empty($id)) { ! $this->setId($id); ! $db = new PHPWS_DB('wiki_images'); ! PHPWS_Error::logIfError($db->loadObject($this)); ! } } *************** *** 76,82 **** $db->addColumn('username'); $result = $db->select('col'); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); return dgettext('wiki', 'N/A'); } --- 75,80 ---- $db->addColumn('username'); $result = $db->select('col'); ! if (PHPWS_Error::logIfError($result)) { return dgettext('wiki', 'N/A'); } *************** *** 218,225 **** return implode(' ', $imageErrors); } ! else ! { ! return dgettext('wiki', 'Please specify a valid file to upload.'); ! } } else --- 216,221 ---- return implode(' ', $imageErrors); } ! ! return dgettext('wiki', 'Please specify a valid file to upload.'); } else *************** *** 230,252 **** $image->setFilename($this->created . '_' . $image->file_name); } ! $result = $image->write(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); return dgettext('wiki', 'There was a problem saving your image.'); } ! else ! { ! $this->setFilename($image->file_name); ! $this->setSize($image->getSize()); ! $this->setType($image->file_type); ! } } $db = new PHPWS_DB('wiki_images'); ! $result = $db->saveObject($this); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); @unlink(PHPWS_HOME_DIR . 'images/wiki/' . $this->getFilename()); return dgettext('wiki', 'There was a problem saving your image.'); --- 226,243 ---- $image->setFilename($this->created . '_' . $image->file_name); } ! ! if (PHPWS_Error::logIfError($image->write())) { return dgettext('wiki', 'There was a problem saving your image.'); } ! ! $this->setFilename($image->file_name); ! $this->setSize($image->getSize()); ! $this->setType($image->file_type); } $db = new PHPWS_DB('wiki_images'); ! if (PHPWS_Error::logIfError($db->saveObject($this))) { @unlink(PHPWS_HOME_DIR . 'images/wiki/' . $this->getFilename()); return dgettext('wiki', 'There was a problem saving your image.'); *************** *** 274,281 **** $db = new PHPWS_DB('wiki_images'); $db->addWhere('id', $this->getId()); ! $result = $db->delete(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); return dgettext('wiki', 'Error deleting image.'); } --- 265,270 ---- $db = new PHPWS_DB('wiki_images'); $db->addWhere('id', $this->getId()); ! if (PHPWS_Error::logIfError($db->delete())) { return dgettext('wiki', 'Error deleting image.'); } *************** *** 286,301 **** return dgettext('wiki', 'Image was not deleted!'); } - else - { - $tags = array(); - $tags['MESSAGE'] = dgettext('wiki', 'Are you sure you want to delete this image?'); - $tags['YES'] = PHPWS_Text::secureLink(dgettext('wiki', 'Yes'), 'wiki', - array('op'=>'doimagedelete', 'yes'=>1, 'id'=>$this->getId())); - $tags['NO'] = PHPWS_Text::secureLink(dgettext('wiki', 'No'), 'wiki', - array('op'=>'doimagedelete', 'no'=>1, 'id'=>$this->getId())); - $tags['WIKIPAGE'] = '<img src="images/wiki/' . $this->getFilename() . '" alt="" />'; ! return PHPWS_Template::processTemplate($tags, 'wiki', 'confirm.tpl'); ! } } --- 275,288 ---- return dgettext('wiki', 'Image was not deleted!'); } ! $tags = array(); ! $tags['MESSAGE'] = dgettext('wiki', 'Are you sure you want to delete this image?'); ! $tags['YES'] = PHPWS_Text::secureLink(dgettext('wiki', 'Yes'), 'wiki', ! array('op'=>'doimagedelete', 'yes'=>1, 'id'=>$this->getId())); ! $tags['NO'] = PHPWS_Text::secureLink(dgettext('wiki', 'No'), 'wiki', ! array('op'=>'doimagedelete', 'no'=>1, 'id'=>$this->getId())); ! $tags['WIKIPAGE'] = '<img src="images/wiki/' . $this->getFilename() . '" alt="" />'; ! ! return PHPWS_Template::processTemplate($tags, 'wiki', 'confirm.tpl'); } Index: OldWikiPage.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/wiki/class/OldWikiPage.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** OldWikiPage.php 3 Jan 2008 17:18:43 -0000 1.27 --- OldWikiPage.php 29 Mar 2008 20:01:55 -0000 1.28 *************** *** 43,47 **** $this->setId($id); $db = new PHPWS_DB('wiki_pages_version'); ! $db->loadObject($this); } } --- 43,47 ---- $this->setId($id); $db = new PHPWS_DB('wiki_pages_version'); ! PHPWS_Error::logIfError($db->loadObject($this)); } } |
|
From: Greg M. <bli...@us...> - 2008-03-29 20:03:07
|
Update of /cvsroot/phpwebsite-comm/modules/wiki/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6952/boost Modified Files: boost.php update.php Log Message: Support new mod_rewrite method introduced in phpWebSite 1.5.0 Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/wiki/boost/boost.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** boost.php 28 May 2007 19:00:14 -0000 1.3 --- boost.php 29 Mar 2008 20:01:53 -0000 1.4 *************** *** 25,29 **** $proper_name = 'Wiki'; ! $version = '1.1.0'; $register = FALSE; $unregister = FALSE; --- 25,29 ---- $proper_name = 'Wiki'; ! $version = '1.1.1'; $register = FALSE; $unregister = FALSE; Index: update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/wiki/boost/update.php,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** update.php 29 May 2007 02:43:18 -0000 1.21 --- update.php 29 Mar 2008 20:01:53 -0000 1.22 *************** *** 31,34 **** --- 31,37 ---- $content[] = '- Updated to new translation functions.'; $content[] = '- Requesting a restricted page forwards user to the login screen.'; + + case version_compare($currentVersion, '1.1.1', '<'): + $content[] = '- Support new mod_rewrite method introduced in phpWebSite 1.5.0.'; } |
|
From: Greg M. <bli...@us...> - 2008-03-29 18:21:43
|
Update of /cvsroot/phpwebsite-comm/modules/fortune/locale/en_US/LC_MESSAGES In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1945/locale/en_US/LC_MESSAGES Added Files: fortune.po Log Message: Added en_US locale --- NEW FILE: fortune.po --- # Fortune module for phpWebSite # # See docs/CREDITS for copyright information # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2008-03-29 13:16-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" msgid "(All)" msgstr "" msgid "Action" msgstr "" msgid "Activation changed" msgstr "" msgid "Activation could not be changed" msgstr "" msgid "Active" msgstr "" msgid "Add fortune block here" msgstr "" msgid "Add fortunes for your visitors." msgstr "" msgid "Add/Edit Fortune Blocks" msgstr "" msgid "Add/Edit Fortunes" msgstr "" msgid "Are you sure you want to permanently delete this fortune block?" msgstr "" msgid "Are you sure you want to permanently delete this fortune?" msgstr "" msgid "Are you sure you want to remove this block from this page?" msgstr "" msgid "Author" msgstr "" msgid "Block Template" msgstr "" msgid "Block could not be saved" msgstr "" msgid "Cancel" msgstr "" msgid "Cannot locate any block templates. Cannot continue." msgstr "" msgid "Categories" msgstr "" msgid "Categorize" msgstr "" msgid "Category" msgstr "" msgid "Change Interval" msgstr "" msgid "Day" msgstr "" msgid "Delete" msgstr "" msgid "Delete Fortune Blocks" msgstr "" msgid "Edit" msgstr "" msgid "Edit Fortune" msgstr "" msgid "Edit Fortune Block" msgstr "" msgid "Fortune" msgstr "" msgid "Fortune block deleted" msgstr "" msgid "Fortune block pinned" msgstr "" msgid "Fortune block saved" msgstr "" msgid "Fortune block unpinned" msgstr "" msgid "Fortune could not be saved" msgstr "" msgid "Fortune deleted" msgstr "" msgid "Fortune saved" msgstr "" msgid "Fortune tables removed." msgstr "" msgid "Fortunes File" msgstr "" msgid "Fortunes imported" msgstr "" msgid "Hide Fortune Blocks" msgstr "" msgid "Hide Fortunes" msgstr "" msgid "Hour" msgstr "" msgid "Immediate" msgstr "" msgid "Import" msgstr "" msgid "Import Fortunes" msgstr "" msgid "Inactive" msgstr "" msgid "Manage Fortune Blocks" msgstr "" msgid "Manage Fortunes" msgstr "" msgid "Minute" msgstr "" msgid "New Fortune" msgstr "" msgid "New Fortune Block" msgstr "" msgid "No fortune blocks found." msgstr "" msgid "No fortunes available." msgstr "" msgid "No fortunes found." msgstr "" msgid "Pin" msgstr "" msgid "Pin Fortune Blocks" msgstr "" msgid "Pin all" msgstr "" msgid "Please specify a valid file to upload." msgstr "" msgid "Remove" msgstr "" msgid "Remove Fortunes from Blocks" msgstr "" msgid "Save New Fortune" msgstr "" msgid "Save New Fortune Block" msgstr "" msgid "Title" msgstr "" msgid "Unpin" msgstr "" msgid "Unpin all" msgstr "" msgid "Update Fortune" msgstr "" msgid "Update Fortune Block" msgstr "" msgid "" "Use this interface to import fortune files. The files MUST be in standard " "fortune format, meaning fortunes are delimited by a \"%\" on its own line. " "Note that this is the fortune TEXT file, not the binary .dat file." msgstr "" msgid "You must specify the fortune text." msgstr "" msgid "Your fortune block must have a title." msgstr "" |
|
From: Greg M. <bli...@us...> - 2008-03-29 18:21:06
|
Update of /cvsroot/phpwebsite-comm/modules/fortune/locale/en_US/LC_MESSAGES In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1900/LC_MESSAGES Log Message: Directory /cvsroot/phpwebsite-comm/modules/fortune/locale/en_US/LC_MESSAGES added to the repository |
|
From: Greg M. <bli...@us...> - 2008-03-29 18:20:40
|
Update of /cvsroot/phpwebsite-comm/modules/fortune/locale/en_US In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1527/en_US Log Message: Directory /cvsroot/phpwebsite-comm/modules/fortune/locale/en_US added to the repository |
|
From: Greg M. <bli...@us...> - 2008-03-29 18:20:26
|
Update of /cvsroot/phpwebsite-comm/modules/fortune/locale In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1493/locale Log Message: Directory /cvsroot/phpwebsite-comm/modules/fortune/locale added to the repository |
|
From: Greg M. <bli...@us...> - 2008-03-29 17:01:51
|
Update of /cvsroot/phpwebsite-comm/modules/ads/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4152/class Modified Files: admin.php Log Message: Minor updates Index: admin.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/ads/class/admin.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** admin.php 22 Feb 2008 03:53:11 -0000 1.19 --- admin.php 29 Mar 2008 17:01:25 -0000 1.20 *************** *** 51,55 **** } ! $panel->setContent(Ads_Admin::route($action)); Layout::add(PHPWS_ControlPanel::display($panel->display())); } --- 51,55 ---- } ! $panel->setContent(Ads_Admin::route($action, $panel)); Layout::add(PHPWS_ControlPanel::display($panel->display())); } *************** *** 86,90 **** } ! function route($action) { $title = NULL; --- 86,90 ---- } ! function route($action, &$panel) { $title = NULL; *************** *** 93,113 **** PHPWS_Core::initModClass('ads', 'advertiser.php'); ! if (isset($_REQUEST['zone_id'])) ! { ! $zone = new Ads_Zone($_REQUEST['zone_id']); ! } ! else ! { ! $zone = new Ads_Zone(); ! } ! ! if (isset($_REQUEST['advertiser_id'])) ! { ! $advertiser = new Ads_Advertiser($_REQUEST['advertiser_id']); ! } ! else ! { ! $advertiser = new Ads_Advertiser(); ! } if (isset($_REQUEST['campaign_id'])) --- 93,98 ---- PHPWS_Core::initModClass('ads', 'advertiser.php'); ! $zone = new Ads_Zone(isset($_REQUEST['zone_id']) ? $_REQUEST['zone_id'] : NULL); ! $advertiser = new Ads_Advertiser(isset($_REQUEST['advertiser_id']) ? $_REQUEST['advertiser_id'] : NULL); if (isset($_REQUEST['campaign_id'])) *************** *** 160,173 **** case 'hideZone': ! $result = $zone->toggle(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); Ads_Admin::sendMessage(dgettext('ads', 'Zone activation could not be changed'), 'manageZones'); } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Zone activation changed'), 'manageZones'); ! } break; --- 145,153 ---- case 'hideZone': ! if (PHPWS_Error::logIfError($zone->toggle())) { Ads_Admin::sendMessage(dgettext('ads', 'Zone activation could not be changed'), 'manageZones'); } ! Ads_Admin::sendMessage(dgettext('ads', 'Zone activation changed'), 'manageZones'); break; *************** *** 206,219 **** else { ! $result = $zone->save(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); Ads_Admin::sendMessage(dgettext('ads', 'Zone could not be saved'), 'manageZones'); } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Zone saved'), 'manageZones'); ! } } break; --- 186,194 ---- else { ! if (PHPWS_Error::logIfError($zone->save())) { Ads_Admin::sendMessage(dgettext('ads', 'Zone could not be saved'), 'manageZones'); } ! Ads_Admin::sendMessage(dgettext('ads', 'Zone saved'), 'manageZones'); } break; *************** *** 230,243 **** else { ! $result = $zone->save(); ! if (PEAR::isError($result)) ! { ! PHPWS_Error::log($result); ! } ! elseif (isset($_REQUEST['key_id'])) { Ads_Admin::lockZone($zone->id, $_REQUEST['key_id']); } - javascript('close_refresh'); } --- 205,212 ---- else { ! if (!PHPWS_Error::logIfError($zone->save()) && isset($_REQUEST['key_id'])) { Ads_Admin::lockZone($zone->id, $_REQUEST['key_id']); } javascript('close_refresh'); } *************** *** 245,257 **** case 'lockZone': ! $result = Ads_Admin::lockZone($_GET['zone_id'], $_GET['key_id']); ! if (PEAR::isError($result)) ! { ! PHPWS_Error::log($result); ! } PHPWS_Core::goBack(); break; case 'manageZones': $title = dgettext('ads', 'Manage Zones'); $content = Ads_Admin::listZones(); --- 214,224 ---- case 'lockZone': ! PHPWS_Error::logIfError(Ads_Admin::lockZone($_GET['zone_id'], $_GET['key_id'])); PHPWS_Core::goBack(); break; case 'manageZones': + /* Need to set tab in case we got here from another action. */ + $panel->setCurrentTab('manageZones'); $title = dgettext('ads', 'Manage Zones'); $content = Ads_Admin::listZones(); *************** *** 276,294 **** if (Ads_Admin::postAdvertiser($advertiser)) { ! $result = $advertiser->save(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); Ads_Admin::sendMessage(dgettext('ads', 'Advertiser could not be saved'), 'manageAdvertisers'); } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Advertiser saved'), 'manageAdvertisers'); ! } ! } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'User not found or already advertiser'), 'manageAdvertisers'); } break; --- 243,253 ---- if (Ads_Admin::postAdvertiser($advertiser)) { ! if (PHPWS_Error::logIfError($advertiser->save())) { Ads_Admin::sendMessage(dgettext('ads', 'Advertiser could not be saved'), 'manageAdvertisers'); } ! Ads_Admin::sendMessage(dgettext('ads', 'Advertiser saved'), 'manageAdvertisers'); } + Ads_Admin::sendMessage(dgettext('ads', 'User not found or already advertiser'), 'manageAdvertisers'); break; *************** *** 298,308 **** Ads_Admin::sendMessage(dgettext('ads', 'Advertiser deleted'), 'manageAdvertisers'); } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Advertiser could not be deleted'), 'manageAdvertisers'); ! } break; case 'manageAdvertisers': $title = dgettext('ads', 'Manage Advertisers'); $content = Ads_Admin::listAdvertisers(); --- 257,266 ---- Ads_Admin::sendMessage(dgettext('ads', 'Advertiser deleted'), 'manageAdvertisers'); } ! Ads_Admin::sendMessage(dgettext('ads', 'Advertiser could not be deleted'), 'manageAdvertisers'); break; case 'manageAdvertisers': + /* Need to set tab in case we got here from another action. */ + $panel->setCurrentTab('manageAdvertisers'); $title = dgettext('ads', 'Manage Advertisers'); $content = Ads_Admin::listAdvertisers(); *************** *** 345,362 **** else { ! $result = $campaign->save(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); Ads_Admin::sendMessage(dgettext('ads', 'Campaign could not be saved'), array('action'=>'manageCampaigns', 'advertiser_id'=>$campaign->getAdvertiserId())); } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Campaign saved'), ! array('action'=>'manageCampaigns', ! 'advertiser_id'=>$campaign->getAdvertiserId())); ! } } break; --- 303,314 ---- else { ! if (PHPWS_Error::logIfError($campaign->save())) { Ads_Admin::sendMessage(dgettext('ads', 'Campaign could not be saved'), array('action'=>'manageCampaigns', 'advertiser_id'=>$campaign->getAdvertiserId())); } ! Ads_Admin::sendMessage(dgettext('ads', 'Campaign saved'), array('action'=>'manageCampaigns', ! 'advertiser_id'=>$campaign->getAdvertiserId())); } break; *************** *** 369,386 **** 'advertiser_id'=>$campaign->getAdvertiserId())); } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Campaign could not be deleted'), ! array('action'=>'manageCampaigns', ! 'advertiser_id'=>$campaign->getAdvertiserId())); ! } break; case 'lockCampaign': ! $result = Ads_Admin::lockCampaign($_GET['campaign_id'], $_GET['zone_id']); ! if (PEAR::isError($result)) ! { ! PHPWS_Error::log($result); ! } PHPWS_Core::goBack(); break; --- 321,330 ---- 'advertiser_id'=>$campaign->getAdvertiserId())); } ! Ads_Admin::sendMessage(dgettext('ads', 'Campaign could not be deleted'), array('action'=>'manageCampaigns', ! 'advertiser_id'=>$campaign->getAdvertiserId())); break; case 'lockCampaign': ! PHPWS_Error::logIfError(Ads_Admin::lockCampaign($_GET['campaign_id'], $_GET['zone_id'])); PHPWS_Core::goBack(); break; *************** *** 438,482 **** else { ! if (isset($_POST['approvalList'])) ! { ! $newAction = 'approval'; ! } ! else ! { ! $newAction = 'manageAds'; ! } ! $result = $ad->save(); ! if (PEAR::isError($result)) ! { ! PHPWS_Error::log($result); ! Ads_Admin::sendMessage(dgettext('ads', 'Ad could not be saved'), ! array('action'=>$newAction, ! 'campaign_id'=>$ad->getCampaignId())); ! } ! else { ! Ads_Admin::sendMessage(dgettext('ads', 'Ad saved'), ! array('action'=>$newAction, 'campaign_id'=>$ad->getCampaignId())); } } break; case 'hideAd': ! $result = $ad->toggle(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); Ads_Admin::sendMessage(dgettext('ads', 'Ad activation could not be changed'), ! array('action'=>'manageAds', ! 'campaign_id'=>$ad->getCampaignId())); ! } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Ad activation changed'), ! array('action'=>'manageAds', ! 'campaign_id'=>$ad->getCampaignId())); } break; --- 382,405 ---- else { ! $newAction = isset($_POST['approvalList']) ? 'approval' : 'manageAds'; ! if (PHPWS_Error::logIfError($ad->save())) { ! Ads_Admin::sendMessage(dgettext('ads', 'Ad could not be saved'), array('action'=>$newAction, 'campaign_id'=>$ad->getCampaignId())); } + Ads_Admin::sendMessage(dgettext('ads', 'Ad saved'), array('action'=>$newAction, + 'campaign_id'=>$ad->getCampaignId())); } break; case 'hideAd': ! if (PHPWS_Error::logIfError($ad->toggle())) { Ads_Admin::sendMessage(dgettext('ads', 'Ad activation could not be changed'), ! array('action'=>'manageAds', 'campaign_id'=>$ad->getCampaignId())); } + Ads_Admin::sendMessage(dgettext('ads', 'Ad activation changed'), array('action'=>'manageAds', + 'campaign_id'=>$ad->getCampaignId())); break; *************** *** 485,497 **** { Ads_Admin::sendMessage(dgettext('ads', 'Ad deleted'), ! array('action'=>'manageAds', ! 'campaign_id'=>$ad->getCampaignId())); ! } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Ad could not be deleted'), ! array('action'=>'manageAds', ! 'campaign_id'=>$ad->getCampaignId())); } break; --- 408,415 ---- { Ads_Admin::sendMessage(dgettext('ads', 'Ad deleted'), ! array('action'=>'manageAds', 'campaign_id'=>$ad->getCampaignId())); } + Ads_Admin::sendMessage(dgettext('ads', 'Ad could not be deleted'), + array('action'=>'manageAds', 'campaign_id'=>$ad->getCampaignId())); break; *************** *** 539,553 **** } ! $result = $version->delete(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); Ads_Admin::sendMessage(dgettext('ads', 'A problem occurred when trying to disapprove this ad.'), 'approval'); } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Ad disapproved.'), 'approval'); ! } break; --- 457,466 ---- } ! if (PHPWS_Error::logIfError($version->delete())) { Ads_Admin::sendMessage(dgettext('ads', 'A problem occurred when trying to disapprove this ad.'), 'approval'); } ! Ads_Admin::sendMessage(dgettext('ads', 'Ad disapproved.'), 'approval'); break; *************** *** 565,578 **** $version->setSource($ad); $version->setApproved(TRUE); ! $result = $version->save(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); Ads_Admin::sendMessage(dgettext('ads', 'An error occurred when saving your version.'), 'approval'); } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Ad approved.'), 'approval'); ! } break; --- 478,486 ---- $version->setSource($ad); $version->setApproved(TRUE); ! if (PHPWS_Error::logIfError($version->save())) { Ads_Admin::sendMessage(dgettext('ads', 'An error occurred when saving your version.'), 'approval'); } ! Ads_Admin::sendMessage(dgettext('ads', 'Ad approved.'), 'approval'); break; *************** *** 595,612 **** $version = new Version('ads', $_REQUEST['version_id']); $ad_id = $version->source_id; ! $result = $version->delete(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); Ads_Admin::sendMessage(dgettext('ads', 'A problem occurred when trying to remove this ad version.'), ! array('action'=>'versions', ! 'ad_id'=>$ad_id)); ! } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Ad version removed.'), ! array('action'=>'versions', ! 'ad_id'=>$ad_id)); } break; --- 503,513 ---- $version = new Version('ads', $_REQUEST['version_id']); $ad_id = $version->source_id; ! if (PHPWS_Error::logIfError($version->delete())) { Ads_Admin::sendMessage(dgettext('ads', 'A problem occurred when trying to remove this ad version.'), ! array('action'=>'versions', 'ad_id'=>$ad_id)); } + Ads_Admin::sendMessage(dgettext('ads', 'Ad version removed.'), + array('action'=>'versions', 'ad_id'=>$ad_id)); break; *************** *** 614,631 **** $version = new Version('ads', $_REQUEST['version_id']); $ad_id = $version->source_id; ! $result = $version->restore(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); Ads_Admin::sendMessage(dgettext('ads', 'A problem occurred when trying to restore this ad version.'), ! array('action'=>'versions', ! 'ad_id'=>$ad_id)); ! } ! else ! { ! Ads_Admin::sendMessage(dgettext('ads', 'Ad version restored.'), ! array('action'=>'versions', ! 'ad_id'=>$ad_id)); } break; --- 515,525 ---- $version = new Version('ads', $_REQUEST['version_id']); $ad_id = $version->source_id; ! if (PHPWS_Error::logIfError($version->restore())) { Ads_Admin::sendMessage(dgettext('ads', 'A problem occurred when trying to restore this ad version.'), ! array('action'=>'versions', 'ad_id'=>$ad_id)); } + Ads_Admin::sendMessage(dgettext('ads', 'Ad version restored.'), + array('action'=>'versions', 'ad_id'=>$ad_id)); break; *************** *** 655,662 **** PHPWS_Core::reroute(PHPWS_Text::linkAddress('ads', $command, TRUE)); } ! else ! { ! PHPWS_Core::reroute(PHPWS_Text::linkAddress('ads', array('action'=>$command), TRUE)); ! } } --- 549,554 ---- PHPWS_Core::reroute(PHPWS_Text::linkAddress('ads', $command, TRUE)); } ! ! PHPWS_Core::reroute(PHPWS_Text::linkAddress('ads', array('action'=>$command), TRUE)); } *************** *** 752,783 **** $zone->setMaxNumAds($_POST['max_num_ads'] + 1); ! if (isset($errors)) ! { ! return $errors; ! } ! else ! { ! return TRUE; ! } } function removeZonePin() { ! if (!isset($_GET['zone_id'])) ! { ! return; ! } ! ! $db = new PHPWS_DB('ads_zone_pins'); ! $db->addWhere('zone_id', $_GET['zone_id']); ! if (isset($_GET['key_id'])) ! { ! $db->addWhere('key_id', $_GET['key_id']); ! } ! $result = $db->delete(); ! ! if (PEAR::isError($result)) { ! PHPWS_Error::log($result); } } --- 644,661 ---- $zone->setMaxNumAds($_POST['max_num_ads'] + 1); ! return isset($errors) ? $errors : true; } function removeZonePin() { ! if (isset($_GET['zone_id'])) { ! $db = new PHPWS_DB('ads_zone_pins'); ! $db->addWhere('zone_id', $_GET['zone_id']); ! if (isset($_GET['key_id'])) ! { ! $db->addWhere('key_id', $_GET['key_id']); ! } ! PHPWS_Error::logIfError($db->delete()); } } *************** *** 796,804 **** $pager->setModule('ads'); $pager->setTemplate('zone/list.tpl'); ! $pager->addToggle(' class="bgcolor1"'); $pager->addPageTags($pageTags); $pager->addRowTags('getTpl'); $pager->setSearch('title', 'description'); $pager->setDefaultOrder('title', 'asc'); return $pager->get(); --- 674,683 ---- $pager->setModule('ads'); $pager->setTemplate('zone/list.tpl'); ! $pager->addToggle(PHPWS_LIST_TOGGLE_CLASS); $pager->addPageTags($pageTags); $pager->addRowTags('getTpl'); $pager->setSearch('title', 'description'); $pager->setDefaultOrder('title', 'asc'); + $pager->setEmptyMessage(dgettext('ads', 'No zones found.')); return $pager->get(); *************** *** 810,814 **** $db = new PHPWS_DB('ads_zone_pins'); $db->addWhere($values); ! $result = $db->delete(); $db->resetWhere(); --- 689,693 ---- $db = new PHPWS_DB('ads_zone_pins'); $db->addWhere($values); ! PHPWS_Error::logIfError($db->delete()); $db->resetWhere(); *************** *** 831,835 **** $db = new PHPWS_DB('ads_zone_pins'); $db->addWhere($values); ! $result = $db->delete(); $db->addValue($values); return $db->insert(); --- 710,714 ---- $db = new PHPWS_DB('ads_zone_pins'); $db->addWhere($values); ! PHPWS_Error::logIfError($db->delete()); $db->addValue($values); return $db->insert(); *************** *** 864,905 **** function postAdvertiser(&$advertiser) { ! if (empty($_POST['username']) || empty($_POST['business'])) ! { ! return FALSE; ! } ! ! // Check if user exists ! $db = new PHPWS_DB('users'); ! $db->addWhere('username', $_POST['username']); ! $db->addColumn('id'); ! $result = $db->select('col'); ! if (PEAR::isError($result)) ! { ! PHPWS_Error::log($result); ! return FALSE; ! } ! ! if ($result != NULL) { ! // Check that user is not already an advertiser ! $db->setTable('ads_advertisers'); ! $db->resetWhere(); ! $db->columns = NULL; ! $db->addWhere('user_id', $result[0]); ! $result2 = $db->select(); ! ! if (PEAR::isError($result2)) { ! PHPWS_Error::log($result2); ! return FALSE; ! } ! if ($result2 == NULL) ! { ! $advertiser->setUserId($result[0]); ! $advertiser->setUsername($_POST['username']); ! $advertiser->setBusiness($_POST['business']); ! $advertiser->setCreated(mktime()); ! return TRUE; } } --- 743,770 ---- function postAdvertiser(&$advertiser) { ! if (!empty($_POST['username']) && !empty($_POST['business'])) { ! // Check if user exists ! $db = new PHPWS_DB('users'); ! $db->addWhere('username', $_POST['username']); ! $db->addColumn('id'); ! $result = $db->select('col'); ! if (!PHPWS_Error::logIfError($result) && ($result != NULL)) { ! // Check that user is not already an advertiser ! $db->setTable('ads_advertisers'); ! $db->resetWhere(); ! $db->columns = NULL; ! $db->addWhere('user_id', $result[0]); ! $result2 = $db->select(); ! if (!PHPWS_Error::logIfError($result2) && ($result2 == NULL)) ! { ! $advertiser->setUserId($result[0]); ! $advertiser->setUsername($_POST['username']); ! $advertiser->setBusiness($_POST['business']); ! $advertiser->setCreated(mktime()); ! return TRUE; ! } } } *************** *** 919,927 **** $pager->setModule('ads'); $pager->setTemplate('advertiser/list.tpl'); ! $pager->addToggle(' class="bgcolor1"'); $pager->addPageTags($pageTags); $pager->addRowTags('getTpl'); $pager->setSearch('username', 'business'); $pager->setDefaultOrder('business', 'asc'); return $pager->get(); --- 784,793 ---- $pager->setModule('ads'); $pager->setTemplate('advertiser/list.tpl'); ! $pager->addToggle(PHPWS_LIST_TOGGLE_CLASS); $pager->addPageTags($pageTags); $pager->addRowTags('getTpl'); $pager->setSearch('username', 'business'); $pager->setDefaultOrder('business', 'asc'); + $pager->setEmptyMessage(dgettext('ads', 'No advertisers found.')); return $pager->get(); *************** *** 976,1004 **** $campaign->setCreated(mktime()); ! if (isset($errors)) ! { ! return $errors; ! } ! else ! { ! return TRUE; ! } } function removeCampaignPin() { ! if (!isset($_GET['campaign_id']) || !isset($_GET['zone_id'])) ! { ! return; ! } ! ! $db = new PHPWS_DB('ads_campaign_pins'); ! $db->addWhere('zone_id', $_GET['zone_id']); ! $db->addWhere('campaign_id', $_GET['campaign_id']); ! $result = $db->delete(); ! ! if (PEAR::isError($result)) { ! PHPWS_Error::log($result); } } --- 842,856 ---- $campaign->setCreated(mktime()); ! return isset($errors) ? $errors : true; } function removeCampaignPin() { ! if (isset($_GET['campaign_id']) && isset($_GET['zone_id'])) { ! $db = new PHPWS_DB('ads_campaign_pins'); ! $db->addWhere('zone_id', $_GET['zone_id']); ! $db->addWhere('campaign_id', $_GET['campaign_id']); ! PHPWS_Error::logIfError($db->delete()); } } *************** *** 1018,1022 **** $pager->setModule('ads'); $pager->setTemplate('campaign/list.tpl'); ! $pager->addToggle(' class="bgcolor1"'); $pager->addPageTags($pageTags); $pager->addRowTags('getTpl'); --- 870,874 ---- $pager->setModule('ads'); $pager->setTemplate('campaign/list.tpl'); ! $pager->addToggle(PHPWS_LIST_TOGGLE_CLASS); $pager->addPageTags($pageTags); $pager->addRowTags('getTpl'); *************** *** 1024,1027 **** --- 876,880 ---- $pager->setDefaultOrder('name', 'asc'); $pager->addWhere('advertiser_id', $advertiser_id); + $pager->setEmptyMessage(dgettext('ads', 'No campaigns found.')); return $pager->get(); *************** *** 1040,1044 **** $db = new PHPWS_DB('ads_campaign_pins'); $db->addWhere($values); ! $result = $db->delete(); $db->addValue($values); return $db->insert(); --- 893,897 ---- $db = new PHPWS_DB('ads_campaign_pins'); $db->addWhere($values); ! PHPWS_Error::logIfError($db->delete()); $db->addValue($values); return $db->insert(); *************** *** 1179,1185 **** $image->setFilename($ad->created . '_' . $image->file_name); $result = $image->write(); ! if (PEAR::isError($result)) { - PHPWS_Error::log($result); $errors['filename'] = dgettext('ads', 'There was a problem saving your image.'); } --- 1032,1037 ---- $image->setFilename($ad->created . '_' . $image->file_name); $result = $image->write(); ! if (PHPWS_Error::logIfError($result)) { $errors['filename'] = dgettext('ads', 'There was a problem saving your image.'); } *************** *** 1194,1205 **** } ! if (isset($errors)) ! { ! return $errors; ! } ! else ! { ! return TRUE; ! } } --- 1046,1050 ---- } ! return isset($errors) ? $errors : true; } *************** *** 1223,1227 **** $pager->setModule('ads'); $pager->setTemplate('ad/list.tpl'); ! $pager->addToggle(' class="bgcolor1"'); $pager->addPageTags($pageTags); $pager->addRowTags('getTpl'); --- 1068,1072 ---- $pager->setModule('ads'); $pager->setTemplate('ad/list.tpl'); ! $pager->addToggle(PHPWS_LIST_TOGGLE_CLASS); $pager->addPageTags($pageTags); $pager->addRowTags('getTpl'); *************** *** 1229,1232 **** --- 1074,1078 ---- $pager->setDefaultOrder('title', 'asc'); $pager->addWhere('campaign_id', $campaign_id); + $pager->setEmptyMessage(dgettext('ads', 'No ads found.')); return $pager->get(); |
|
From: Greg M. <bli...@us...> - 2008-03-29 17:01:23
|
Update of /cvsroot/phpwebsite-comm/modules/ads/locale/en_US/LC_MESSAGES In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4152/locale/en_US/LC_MESSAGES Modified Files: ads.po Log Message: Minor updates Index: ads.po =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/ads/locale/en_US/LC_MESSAGES/ads.po,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ads.po 22 Feb 2008 03:53:15 -0000 1.2 --- ads.po 29 Mar 2008 17:01:28 -0000 1.3 *************** *** 22,26 **** "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2008-02-21 21:51-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" --- 22,26 ---- "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2008-03-29 11:59-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" *************** *** 300,306 **** --- 300,318 ---- msgstr "" + msgid "No ads found." + msgstr "" + msgid "No ads to display" msgstr "" + msgid "No advertisers found." + msgstr "" + + msgid "No campaigns found." + msgstr "" + + msgid "No zones found." + msgstr "" + msgid "Old Ad Versions" msgstr "" |
|
From: Greg M. <bli...@us...> - 2008-03-29 17:01:23
|
Update of /cvsroot/phpwebsite-comm/modules/ads/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4152/docs Modified Files: ChangeLog Log Message: Minor updates Index: ChangeLog =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/ads/docs/ChangeLog,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ChangeLog 22 Feb 2008 03:53:14 -0000 1.6 --- ChangeLog 29 Mar 2008 17:01:26 -0000 1.7 *************** *** 5,8 **** --- 5,11 ---- *cvs + Switched to PHPWS_LIST_TOGGLE_CLASS define for DBPager. + Started to use the core's logIfError function. + Added empty messages to DBPager. Corrected a few phrases that were not being translated. |
|
From: Greg M. <bli...@us...> - 2008-03-29 15:28:18
|
Update of /cvsroot/phpwebsite-comm/modules/ads/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1853 Modified Files: CREDITS Log Message: Updated copyright for 2008 Index: CREDITS =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/ads/docs/CREDITS,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CREDITS 18 Feb 2007 17:01:18 -0000 1.2 --- CREDITS 29 Mar 2008 15:28:19 -0000 1.3 *************** *** 3,7 **** Credits and Acknowledgements ! Ads for phpWebSite is copyright (C) 2006-2007 by those listed in the Developers section below. --- 3,7 ---- Credits and Acknowledgements ! Ads for phpWebSite is copyright (C) 2006-2008 by those listed in the Developers section below. |
|
From: Verdon V. <ve...@us...> - 2008-03-17 19:07:43
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29528/boost Modified Files: dependency.xml update.php Log Message: tweaks getting ready for new tag and release Index: dependency.xml =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/boost/dependency.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** dependency.xml 17 Mar 2008 15:53:51 -0000 1.4 --- dependency.xml 17 Mar 2008 19:07:08 -0000 1.5 *************** *** 16,20 **** <title>search</title> <properName>Search</properName> ! <version>0.3.0</version> <url>http://phpwebsite.appstate.edu/downloads/modules/search/</url> </module> --- 16,20 ---- <title>search</title> <properName>Search</properName> ! <version>0.3.2</version> <url>http://phpwebsite.appstate.edu/downloads/modules/search/</url> </module> Index: update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/boost/update.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** update.php 9 Feb 2008 19:01:09 -0000 1.13 --- update.php 17 Mar 2008 19:07:08 -0000 1.14 *************** *** 174,177 **** --- 174,183 ---- + Added search to list and archive views + Resolved some validation issues with rss feed + + Added support for Search module + + Fixed a bug in episode delete + + Fixed a bug in channel delete + + Implemented short urls for episodes (if mod_rewrite is true) + + Implimented PHPWS_Text::rewriteLink() for episode view links + now that it handles multiple vars </pre>'; |
|
From: Verdon V. <ve...@us...> - 2008-03-17 19:07:40
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29528/class Modified Files: PCR_Forms.php Log Message: tweaks getting ready for new tag and release Index: PCR_Forms.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/class/PCR_Forms.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PCR_Forms.php 11 Feb 2008 21:08:27 -0000 1.7 --- PCR_Forms.php 17 Mar 2008 19:07:12 -0000 1.8 *************** *** 359,373 **** $tpl['TITLE'] = dgettext('podcaster', 'Important Information'); ! $tpl['INFO_1_LABEL'] = dgettext('podcaster', 'A note on this module:'); ! $tpl['INFO_1'] = dgettext('podcaster', 'This is the second release of podcaster for the new 1.x series phpwebsite. This release takes advantage of the new File Cabinet 2.0 features, and media upload/embed tools are now built right in. Support for PDF and other documents types has also been added.'); $tpl['INFO_2_LABEL'] = dgettext('podcaster', 'A note on media types:'); $tpl['INFO_2'] = dgettext('podcaster', 'You may specify at a channel level what media type you will allow for all episodes in that channel. Ideally, you should determine this before adding episodes to a channel, though it can be changed at any time.'); ! $tpl['INFO_3_LABEL'] = null; ! $tpl['INFO_3'] = null; $tpl['INFO_4_LABEL'] = dgettext('podcaster', 'A note on permissons:'); $tpl['INFO_4'] = dgettext('podcaster', 'Honestly, I\'m still working on understanding the new system completely. I\'ve done a basic security audit and although I am sure there is no gross holes, I\'m sure I may have something wrong too ;-) I wanted to get this rewrite out asap and will do a more thorough permissioning review for the next podcaster release.'); $tpl['INFO_5_LABEL'] = null; $tpl['INFO_5'] = null; ! $tpl['DONATE'] = sprintf(dgettext('podcaster', 'If you would like to help out with the ongoing development of Podcaster, %s click here to donate %s.'), '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=donations%40verdon%2eca&item_name=Podcaster%20Module%20Development&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=CA&bn=PP%2dDonationsBF&charset=UTF%2d8" target="new">', '</a>'); $this->podcaster->title = dgettext('podcaster', 'Read me'); --- 359,373 ---- $tpl['TITLE'] = dgettext('podcaster', 'Important Information'); ! $tpl['INFO_1_LABEL'] = dgettext('podcaster', 'About this module:'); ! $tpl['INFO_1'] = dgettext('podcaster', 'This is the second release of podcaster for the new 1.x series phpwebsite. This release takes advantage of the new File Cabinet 2.0 features, and media upload/embed tools are now built right in. Support for PDF and other documents types has also been added. Podcaster is now searchable with the search module, and new access module and short url features are implimented.'); $tpl['INFO_2_LABEL'] = dgettext('podcaster', 'A note on media types:'); $tpl['INFO_2'] = dgettext('podcaster', 'You may specify at a channel level what media type you will allow for all episodes in that channel. Ideally, you should determine this before adding episodes to a channel, though it can be changed at any time.'); ! $tpl['INFO_3_LABEL'] = dgettext('podcaster', 'A note on restricted users:'); ! $tpl['INFO_3'] = dgettext('podcaster', 'If you are allowing restricted users to add podcast episodes, you will also need to allow them to upload to the appropriate folder(s) in File Cabinet.'); $tpl['INFO_4_LABEL'] = dgettext('podcaster', 'A note on permissons:'); $tpl['INFO_4'] = dgettext('podcaster', 'Honestly, I\'m still working on understanding the new system completely. I\'ve done a basic security audit and although I am sure there is no gross holes, I\'m sure I may have something wrong too ;-) I wanted to get this rewrite out asap and will do a more thorough permissioning review for the next podcaster release.'); $tpl['INFO_5_LABEL'] = null; $tpl['INFO_5'] = null; ! $tpl['DONATE'] = sprintf(dgettext('podcaster', 'If you would like to help out with the ongoing development of Podcaster, or other modules by Verdon Vaillancourt, %s click here to donate %s (opens in new browser window).'), '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=donations%40verdon%2eca&item_name=Podcaster%20Module%20Development&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=CA&bn=PP%2dDonationsBF&charset=UTF%2d8" target="new">', '</a>'); $this->podcaster->title = dgettext('podcaster', 'Read me'); |
|
From: Verdon V. <ve...@us...> - 2008-03-17 19:07:14
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster/locale/en_US/LC_MESSAGES In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29528/locale/en_US/LC_MESSAGES Modified Files: podcaster.po Log Message: tweaks getting ready for new tag and release Index: podcaster.po =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/locale/en_US/LC_MESSAGES/podcaster.po,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** podcaster.po 11 Feb 2008 21:08:30 -0000 1.5 --- podcaster.po 17 Mar 2008 19:07:15 -0000 1.6 *************** *** 25,29 **** "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2008-02-11 16:01-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" --- 25,29 ---- "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2008-03-17 15:00-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" *************** *** 42,46 **** msgstr "" ! msgid "A note on this module:" msgstr "" --- 42,49 ---- msgstr "" ! msgid "A note on restricted users:" ! msgstr "" ! ! msgid "About this module:" msgstr "" *************** *** 217,224 **** msgstr "" #, php-format msgid "" ! "If you would like to help out with the ongoing development of Podcaster, %s " ! "click here to donate %s." msgstr "" --- 220,233 ---- msgstr "" + msgid "" + "If you are allowing restricted users to add podcast episodes, you will also " + "need to allow them to upload to the appropriate folder(s) in File Cabinet." + msgstr "" + #, php-format msgid "" ! "If you would like to help out with the ongoing development of Podcaster, or " ! "other modules by Verdon Vaillancourt, %s click here to donate %s (opens in " ! "new browser window)." msgstr "" *************** *** 383,387 **** "This release takes advantage of the new File Cabinet 2.0 features, and media " "upload/embed tools are now built right in. Support for PDF and other " ! "documents types has also been added." msgstr "" --- 392,397 ---- "This release takes advantage of the new File Cabinet 2.0 features, and media " "upload/embed tools are now built right in. Support for PDF and other " ! "documents types has also been added. Podcaster is now searchable with the " ! "search module, and new access module and short url features are implimented." msgstr "" |
|
From: Verdon V. <ve...@us...> - 2008-03-17 19:07:14
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29528/docs Modified Files: CHANGELOG Log Message: tweaks getting ready for new tag and release Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/docs/CHANGELOG,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** CHANGELOG 17 Mar 2008 15:53:55 -0000 1.7 --- CHANGELOG 17 Mar 2008 19:07:14 -0000 1.8 *************** *** 1,5 **** ! Version 1.1.0 -- Feb 2008 ------------------------------------------------------------------ ! Jan 30 - Feb 09 + Added support for File Cabinet 2.0 features + Added support for document types to episodes --- 1,5 ---- ! Version 1.1.0 -- Mar 2008 ------------------------------------------------------------------ ! Jan 30 - Mar 17 + Added support for File Cabinet 2.0 features + Added support for document types to episodes *************** *** 9,14 **** + Added search to list and archive views + Resolved some validation issues with rss feed ! + Added support for Search ! + Fixed a bug in Episode delete + Fixed a bug in channel delete + Implemented short urls for episodes (if mod_rewrite is true) --- 9,14 ---- + Added search to list and archive views + Resolved some validation issues with rss feed ! + Added support for Search module ! + Fixed a bug in episode delete + Fixed a bug in channel delete + Implemented short urls for episodes (if mod_rewrite is true) |
|
From: Verdon V. <ve...@us...> - 2008-03-17 17:50:04
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30096/boost Added Files: sql_update_110.sql Log Message: tweaks getting ready for new tag and release --- NEW FILE: sql_update_110.sql --- -- podcaster - phpwebsite module -- @version $Id: sql_update_110.sql,v 1.1 2008/03/17 17:50:02 verdonv Exp $ -- @author Verdon Vaillancourt <verdonv at users dot sourceforge dot net> ALTER TABLE podcaster_channel ADD media_type smallint NOT NULL default 0 AFTER image_id ; |
|
From: Verdon V. <ve...@us...> - 2008-03-17 15:54:19
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18478/boost Modified Files: dependency.xml Log Message: tweaks getting ready for new tag and release Index: dependency.xml =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/boost/dependency.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** dependency.xml 9 Feb 2008 19:01:09 -0000 1.3 --- dependency.xml 17 Mar 2008 15:53:51 -0000 1.4 *************** *** 4,8 **** <title>core</title> <properName>phpWebSite Core</properName> ! <version>1.7.2</version> <url>http://phpwebsite.appstate.edu/downloads/modules/base/</url> </module> --- 4,8 ---- <title>core</title> <properName>phpWebSite Core</properName> ! <version>1.8.0</version> <url>http://phpwebsite.appstate.edu/downloads/modules/base/</url> </module> *************** *** 13,15 **** --- 13,21 ---- <url>http://phpwebsite.appstate.edu/downloads/modules/filecabinet/</url> </module> + <module> + <title>search</title> + <properName>Search</properName> + <version>0.3.0</version> + <url>http://phpwebsite.appstate.edu/downloads/modules/search/</url> + </module> </dependency> |
|
From: Verdon V. <ve...@us...> - 2008-03-17 15:54:17
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18478 Modified Files: index.php Log Message: tweaks getting ready for new tag and release Index: index.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/index.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.php 2 Jan 2008 05:12:10 -0000 1.2 --- index.php 17 Mar 2008 15:53:48 -0000 1.3 *************** *** 29,36 **** --- 29,47 ---- PHPWS_Core::initModClass('podcaster', 'Podcaster.php'); $podcaster = new Podcaster; + + if (isset($_GET['var1'])) { + $_REQUEST['id'] = $_GET['id'] = (int)$_GET['var1']; + } + + if (isset($_GET['var2'])) { + $_REQUEST['episode_id'] = $_GET['episode_id'] = (int)$_GET['var2']; + } + if (isset($_REQUEST['aop'])) { $podcaster->adminMenu(); } elseif (isset($_REQUEST['uop'])) { $podcaster->userMenu(); + } elseif (isset($_REQUEST['id']) && isset($_REQUEST['episode_id'])) { + $podcaster->userMenu('view_episode'); } elseif (isset($_REQUEST['id'])) { $podcaster->userMenu('view_channel'); |
|
From: Verdon V. <ve...@us...> - 2008-03-17 15:53:55
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18478/docs Modified Files: CHANGELOG TODO Log Message: tweaks getting ready for new tag and release Index: TODO =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/docs/TODO,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TODO 9 Feb 2008 19:01:11 -0000 1.9 --- TODO 17 Mar 2008 15:53:55 -0000 1.10 *************** *** 7,14 **** A: take another look at restricted vs unrestricted correct usage - Q: review episode save key and short url - can it be like webpages - A: only if either the default .htaccess rewrite expression is changed, or - if I change episode to page or something. still needs thought - - --- 7,8 ---- Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/docs/CHANGELOG,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** CHANGELOG 9 Feb 2008 19:01:11 -0000 1.6 --- CHANGELOG 17 Mar 2008 15:53:55 -0000 1.7 *************** *** 9,12 **** --- 9,18 ---- + Added search to list and archive views + Resolved some validation issues with rss feed + + Added support for Search + + Fixed a bug in Episode delete + + Fixed a bug in channel delete + + Implemented short urls for episodes (if mod_rewrite is true) + + Implimented PHPWS_Text::rewriteLink() for episode view links + now that it handles multiple vars |
|
From: Verdon V. <ve...@us...> - 2008-03-17 15:53:52
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18478/class Modified Files: PCR_Channel.php PCR_Episode.php Log Message: tweaks getting ready for new tag and release Index: PCR_Episode.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/class/PCR_Episode.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PCR_Episode.php 9 Feb 2008 19:01:10 -0000 1.3 --- PCR_Episode.php 17 Mar 2008 15:53:53 -0000 1.4 *************** *** 302,305 **** --- 302,317 ---- $this->saveKey(); + + if ($this->active && $this->approved) { + $search = new Search($this->key_id); + $search->resetKeywords(); + $search->addKeywords($this->title); + $search->addKeywords($this->description); + $result = $search->save(); + if (PEAR::isError($result)) { + return $result; + } + } + } *************** *** 321,330 **** $key->setEditPermission('edit_episode'); ! /* need to look at pagemaster mechanism if I'll use this */ ! // if (MOD_REWRITE_ENABLED) { ! // $key->setUrl('podcaster/episodes/' . $this->id); ! // } else { ! $key->setUrl('index.php?module=podcaster&uop=view_episode&id=' . $this->id); ! // } if ($this->approved) { --- 333,341 ---- $key->setEditPermission('edit_episode'); ! if (MOD_REWRITE_ENABLED) { ! $key->setUrl('podcaster/' . $this->channel_id . '/' . $this->id); ! } else { ! $key->setUrl('index.php?module=podcaster&uop=view_episode&episode_id=' . $this->id); ! } if ($this->approved) { *************** *** 427,433 **** function viewLink() { ! $vars['uop'] = 'view_episode'; ! $vars['episode_id'] = $this->id; ! return PHPWS_Text::moduleLink($this->title, 'podcaster', $vars); } --- 438,445 ---- function viewLink() { ! // $vars['uop'] = 'view_episode'; ! // $vars['episode_id'] = $this->id; ! // return PHPWS_Text::moduleLink($this->title, 'podcaster', $vars); ! return PHPWS_Text::rewriteLink($this->title, 'podcaster', $this->channel_id, $this->id); } *************** *** 473,476 **** --- 485,489 ---- function delete() { + Key::drop($this->key_id); $db = new PHPWS_DB('podcaster_episode'); $db->addWhere('id', $this->id); Index: PCR_Channel.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/class/PCR_Channel.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** PCR_Channel.php 9 Feb 2008 19:01:10 -0000 1.4 --- PCR_Channel.php 17 Mar 2008 15:53:53 -0000 1.5 *************** *** 341,360 **** $db = new PHPWS_DB('podcaster_episode'); $db->addWhere('channel_id', $this->id); ! ! if (PHPWS_Settings::get('podcaster', 'rm_media')) { ! PHPWS_Core::initModClass('podcaster', 'PCR_Episode.php'); ! $result = $db->getObjects('Podcaster_Episode'); ! if ($result) { ! foreach ($result as $episode) { ! $media = $episode->getMedia(); ! if ($media) { ! $media->delete(); ! } ! } } } - PHPWS_Error::logIfError($db->delete()); - } --- 341,352 ---- $db = new PHPWS_DB('podcaster_episode'); $db->addWhere('channel_id', $this->id); ! PHPWS_Core::initModClass('podcaster', 'PCR_Episode.php'); ! $result = $db->getObjects('Podcaster_Episode'); ! if ($result) { ! foreach ($result as $episode) { ! $episode->delete(); } } } *************** *** 488,491 **** --- 480,495 ---- $this->saveKey(); + + if ($this->active) { + $search = new Search($this->key_id); + $search->resetKeywords(); + $search->addKeywords($this->title); + $search->addKeywords($this->description); + $result = $search->save(); + if (PEAR::isError($result)) { + return $result; + } + } + } |
|
From: Greg M. <bli...@us...> - 2008-03-02 00:14:57
|
Update of /cvsroot/phpwebsite-comm/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15569 Modified Files: avail Log Message: Fortune module added Index: avail =================================================================== RCS file: /cvsroot/phpwebsite-comm/CVSROOT/avail,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** avail 4 Feb 2008 05:02:29 -0000 1.68 --- avail 2 Mar 2008 00:14:59 -0000 1.69 *************** *** 9,12 **** --- 9,13 ---- avail|ykuendig|modules/explorer avail|blindman1344|modules/featuredphoto + avail|blindman1344|modules/fortune avail|datamgmt|modules/googlesvcs avail|gbrackett|modules/jobman |
|
From: Greg M. <bli...@us...> - 2008-02-22 04:06:17
|
Update of /cvsroot/phpwebsite-comm/modules/featuredphoto/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16018/inc Modified Files: close.php Log Message: Switch to linkAddress function Index: close.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/featuredphoto/inc/close.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** close.php 28 May 2007 20:00:48 -0000 1.4 --- close.php 22 Feb 2008 04:06:19 -0000 1.5 *************** *** 30,35 **** if (Key::checkKey($key) && javascriptEnabled()) { ! $val['address'] = sprintf('index.php?module=featuredphoto&action=editJSBlock&key_id=%s&authkey=%s', ! $key->id, Current_User::getAuthkey()); $val['label'] = dgettext('featuredphoto', 'Add photo block here'); $val['width'] = 640; --- 30,34 ---- if (Key::checkKey($key) && javascriptEnabled()) { ! $val['address'] = PHPWS_Text::linkAddress('featuredphoto', array('action'=>'editJSBlock', 'key_id'=>$key->id), true); $val['label'] = dgettext('featuredphoto', 'Add photo block here'); $val['width'] = 640; |
|
From: Greg M. <bli...@us...> - 2008-02-22 04:01:03
|
Update of /cvsroot/phpwebsite-comm/modules/poll/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12934/class Modified Files: admin.php Log Message: Corrected a few phases that were not being translated Index: admin.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/poll/class/admin.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** admin.php 14 Oct 2007 22:34:25 -0000 1.7 --- admin.php 22 Feb 2008 04:00:35 -0000 1.8 *************** *** 101,105 **** case 'editPoll': ! $title = ('Edit Poll'); $content = Poll_Admin::editPoll($poll); break; --- 101,105 ---- case 'editPoll': ! $title = dgettext('poll', 'Edit Poll'); $content = Poll_Admin::editPoll($poll); break; *************** *** 146,150 **** if (is_array($result)) { ! $title = ('Edit Poll'); $content = Poll_Admin::editPoll($poll, FALSE, $result); } --- 146,150 ---- if (is_array($result)) { ! $title = dgettext('poll', 'Edit Poll'); $content = Poll_Admin::editPoll($poll, FALSE, $result); } *************** *** 167,171 **** if (is_array($result)) { ! $template['TITLE'] = ('Edit Poll'); $template['CONTENT'] = Poll_Admin::editPoll($poll, TRUE, $result); $content = PHPWS_Template::process($template, 'poll', 'admin.tpl'); --- 167,171 ---- if (is_array($result)) { ! $template['TITLE'] = dgettext('poll', 'Edit Poll'); $template['CONTENT'] = Poll_Admin::editPoll($poll, TRUE, $result); $content = PHPWS_Template::process($template, 'poll', 'admin.tpl'); |
|
From: Greg M. <bli...@us...> - 2008-02-22 04:00:35
|
Update of /cvsroot/phpwebsite-comm/modules/poll/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12934/docs Modified Files: ChangeLog Log Message: Corrected a few phases that were not being translated Index: ChangeLog =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/poll/docs/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** ChangeLog 15 Oct 2007 02:12:14 -0000 1.7 --- ChangeLog 22 Feb 2008 04:00:36 -0000 1.8 *************** *** 3,6 **** --- 3,10 ---- + *cvs + + Corrected a few phrases that were not being translated. + *poll-1.1.0 (14 Oct 2007) |
|
From: Greg M. <bli...@us...> - 2008-02-22 04:00:34
|
Update of /cvsroot/phpwebsite-comm/modules/poll/locale/en_US/LC_MESSAGES In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12934/locale/en_US/LC_MESSAGES Modified Files: poll.po Log Message: Corrected a few phases that were not being translated Index: poll.po =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/poll/locale/en_US/LC_MESSAGES/poll.po,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** poll.po 28 May 2007 20:52:50 -0000 1.1 --- poll.po 22 Feb 2008 04:00:37 -0000 1.2 *************** *** 22,31 **** "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2007-05-28 15:50-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL...@li...>\n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" --- 22,31 ---- "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2008-02-21 21:58-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL...@li...>\n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" *************** *** 79,82 **** --- 79,85 ---- msgstr "" + msgid "Edit Poll" + msgstr "" + msgid "Edit polls" msgstr "" |
|
From: Greg M. <bli...@us...> - 2008-02-22 03:53:40
|
Update of /cvsroot/phpwebsite-comm/modules/ads/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9162/class Modified Files: admin.php Log Message: Corrected a few phases that were not being translated Index: admin.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/ads/class/admin.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** admin.php 28 May 2007 21:21:48 -0000 1.18 --- admin.php 22 Feb 2008 03:53:11 -0000 1.19 *************** *** 155,159 **** case 'editZone': ! $title = ('Edit Zone'); $content = Ads_Admin::editZone($zone); break; --- 155,159 ---- case 'editZone': ! $title = dgettext('ads', 'Edit Zone'); $content = Ads_Admin::editZone($zone); break; *************** *** 201,205 **** if (is_array($result)) { ! $title = ('Edit Zone'); $content = Ads_Admin::editZone($zone, FALSE, $result); } --- 201,205 ---- if (is_array($result)) { ! $title = dgettext('ads', 'Edit Zone'); $content = Ads_Admin::editZone($zone, FALSE, $result); } *************** *** 223,227 **** if (is_array($result)) { ! $template['TITLE'] = ('Edit Zone'); $template['CONTENT'] = Ads_Admin::editZone($zone, TRUE, $result); $content = PHPWS_Template::process($template, 'ads', 'admin.tpl'); --- 223,227 ---- if (is_array($result)) { ! $template['TITLE'] = dgettext('ads', 'Edit Zone'); $template['CONTENT'] = Ads_Admin::editZone($zone, TRUE, $result); $content = PHPWS_Template::process($template, 'ads', 'admin.tpl'); *************** *** 340,344 **** if (is_array($result)) { ! $title = ('Edit Campaign'); $content = Ads_Admin::editCampaign($campaign, $result); } --- 340,344 ---- if (is_array($result)) { ! $title = dgettext('ads', 'Edit Campaign'); $content = Ads_Admin::editCampaign($campaign, $result); } *************** *** 433,437 **** if (is_array($result)) { ! $title = ('Edit Ad'); $content = Ads_Admin::editAd($ad, $result, isset($_POST['approvalList'])); } --- 433,437 ---- if (is_array($result)) { ! $title = dgettext('ads', 'Edit Ad'); $content = Ads_Admin::editAd($ad, $result, isset($_POST['approvalList'])); } |