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: Eloi G. <ada...@us...> - 2008-08-23 04:15:50
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22865 Added Files: index.php Log Message: Initial Version --- NEW FILE: index.php --- <?php /** * This is the index file for the phpwsbb module. * * @version $Id: index.php,v 1.1 2008/08/23 04:15:49 adarkling Exp $ * * @author Eloi George <el...@NO...> * @module Bulletin Board */ if (!defined('PHPWS_SOURCE_DIR')) { include '../../config/core/404.html'; exit(); } Layout::addStyle('phpwsbb'); // When was this user last on? if (Current_User::isLogged()) { $db = & new PHPWS_DB('phpwsbb_users'); // If this is the first phpwsbb session activity... if (!isset($_SESSION['phpwsbb_last_on'])) { // load last_on information $db->addWhere('user_id', Current_User::getId()); $result = $db->select('row'); if (PHPWS_Error::logIfError($result)) { Layout::add(PHPWS_Error::printError($result)); return; } // if User doesn't have an activity entry yet. Create one. if (empty($result)) { $db->reset(); $db->addValue('user_id', Current_User::getId()); $db->addValue('last_on', '0'); $db->addValue('last_activity', time()); $db->insert(); $result['last_on'] = 0; $result['last_activity'] = time(); } $db->reset(); $session_lifetime = ini_get('session.gc_maxlifetime'); $since = time() - $session_lifetime; // if the last activity was in a previous session, update last_on if ($result['last_activity'] < $since) { $db->addValue('last_on', $result['last_activity']); $_SESSION['phpwsbb_last_on'] = $result['last_activity']; } else $_SESSION['phpwsbb_last_on'] = $result['last_on']; } // otherwise, just update the last_activity $db->addValue('last_activity', time()); $db->addWhere('user_id', Current_User::getId()); $result = $db->select('row'); $db->update(); } PHPWS_Core::initModClass('phpwsbb', 'BB_Data.php'); PHPWSBB_Data::load_moderators(); PHPWS_Core::initModClass('phpwsbb', 'Forum.php'); PHPWS_Core::initModClass('phpwsbb', 'Topic.php'); PHPWS_Core::initModClass('comments', 'Comments.php'); $msg_noauth = dgettext('phpwsbb', "You're not allowed to do this!"); /* Process any form button submissions */ /* Button format is BB_vars[tab:command<::key:value><::key:value>...] */ if (isset($_REQUEST['BB_vars'])) { $key = array_keys($_REQUEST['BB_vars']); $arr = explode('::', $key[0]); foreach($arr AS $value) { $req = explode(':', $value); $_REQUEST[$req[0]] = $req[1]; } unset($_REQUEST['ARTICLE_vars']); } // Basic view public function request if (!empty($_GET['view'])) { switch ($_GET['view']) { case 'topic': $topic = & new PHPWSBB_Topic((int) $_GET['id']); if ($topic->id) { $title = $topic->get_title(); $content = $topic->view(); } else { $message = dgettext('phpwsbb', "This topic doesn't exist. Please check the address you entered."); unset($topic); } break; case 'forum': $forum = new PHPWSBB_Forum((int) $_GET['id']); if ($forum->id) { $title = $forum->get_title(); $content = $forum->view(); } else { $message = dgettext('phpwsbb', "This forum doesn't exist. Please check the address you entered."); unset($forum); } break; } } /* User actions */ elseif (!empty($_REQUEST['op'])) { //If Topic is requested, pre-load it if (!empty($_REQUEST['topic'])) { $topic = & new PHPWSBB_Topic((int) $_REQUEST['topic']); $forum = $topic->get_forum(); } //If Forum is requested, pre-load it elseif (!empty($_REQUEST['forum'])) { // Make a reference to this $GLOBAL $GLOBALS['BBForums'][(int) $_REQUEST['forum']] = new PHPWSBB_Forum((int) $_REQUEST['forum']); $forum = & $GLOBALS['BBForums'][(int) $_REQUEST['forum']]; } switch ($_REQUEST['op']) { case 'create_topic': $topic = & new PHPWSBB_Topic(); $topic->fid = $forum->id; $title = sprintf(dgettext('phpwsbb', 'Create a New Topic in Forum "%s"'), $forum->get_title()); $content = $topic->edit(); break; case 'save_topic': // Make sure that we can save this topic if (empty($forum) || !$forum->can_post()) { $message = dgettext('phpwsbb', 'You are not authorized to save topics in this forum.'); Security::log($GLOBALS['BB_message']); break; } $topic = & new PHPWSBB_Topic(); if ($topic->create($forum->id) !== true) { $message = $topic->_error; $title = sprintf(dgettext('phpwsbb', 'Editing Topic "%s"'), $topic->get_title()); $content = $topic->edit(); break; } $title = $topic->get_title(); $content = $topic->view(); $_SESSION['DBPager_Last_View']['comments_items'] = 'index.php?module=phpwsbb&view=topic&id='.$topic->id; unset($message); break; case 'getnew': if (!empty($_SESSION['phpwsbb_last_on'])) $since = $_SESSION['phpwsbb_last_on']; $title = sprintf(dgettext('phpwsbb', 'New Posts Since My Last Visit (%s)'), PHPWSBB_Data::get_long_date($since)); PHPWS_Core::initModClass('phpwsbb', 'BB_Lists.php'); $content = PHPWSBB_Lists::search_threads('since', $since); Layout::addPageTitle($title); break; case 'viewtoday': $since = strtotime('00:00 today'); $title = dgettext('phpwsbb', 'Today\'s Posts'); PHPWS_Core::initModClass('phpwsbb', 'BB_Lists.php'); $content = PHPWSBB_Lists::search_threads('since', $since); Layout::addPageTitle($title); break; case 'viewweek': $since = strtotime('last monday'); $title = dgettext('phpwsbb', 'This Week\'s Posts'); PHPWS_Core::initModClass('phpwsbb', 'BB_Lists.php'); $content = PHPWSBB_Lists::search_threads('since', $since); Layout::addPageTitle($title); break; case 'viewzerothreads': $title = dgettext('phpwsbb', 'Threads with no replies'); PHPWS_Core::initModClass('phpwsbb', 'BB_Lists.php'); $content = PHPWSBB_Lists::search_threads('zerothreads'); Layout::addPageTitle($title); break; case 'viewuserthreads': PHPWS_Core::initModClass('phpwsbb', 'BB_Lists.php'); if (isset($_REQUEST['user'])) { $title = sprintf(dgettext('phpwsbb', 'Topics started by %s'), $_REQUEST['username']); $content = PHPWSBB_Lists::search_threads('userthreads', (int) $_REQUEST['user']); } else { $title = dgettext('phpwsbb', 'My Topics'); $content = PHPWSBB_Lists::search_threads('userthreads', Current_User::getId()); } Layout::addPageTitle($title); break; case 'viewuserposts': PHPWS_Core::initModClass('phpwsbb', 'BB_Lists.php'); if (isset($_REQUEST['user'])) { $title = sprintf(dgettext('phpwsbb', 'Bulletin Board Comments made by %s'), $_REQUEST['username']); $content = PHPWSBB_Lists::search_comments('userposts', (int) $_REQUEST['user']); } else { $title = dgettext('phpwsbb', 'My Comments'); $content = PHPWSBB_Lists::search_comments('userposts', Current_User::getId()); } Layout::addPageTitle($title); break; case 'viewlockedthreads': $title = dgettext('phpwsbb', 'Locked Threads'); PHPWS_Core::initModClass('phpwsbb', 'BB_Lists.php'); $content = PHPWSBB_Lists::search_threads('lockedthreads'); Layout::addPageTitle($title); break; case 'fill_topic': // For diagnostic use only! Creates test comments in a topic // Make sure that we can save this topic if (empty($topic) || empty($forum) || !$forum->can_post()) { $message = dgettext('phpwsbb', 'You are not authorized to post here.'); Security::log($GLOBALS['BB_message']); break; } // Load the topic's comment list include(PHPWS_SOURCE_DIR . 'mod/phpwsbb/inc/'. $_REQUEST['template'] .'.php'); if (empty($comment_list)) { $message = 'Invalid Template File.'; break; } // Load a list of all user ids $db = new PHPWS_DB('users'); $db->addColumn('id'); $list = $db->select('col'); PHPWS_Error::logIfError($list); $listsize = count($list) - 1; // Create all requested comments foreach ($comment_list AS $comment) { // If non is specified, pick a random user as author if (!$comment['author_id'] && empty($comment['anon_name'])) $comment['author_id'] = $list[rand(0, $listsize)]; PHPWSBB_Data::create_comment($topic->id, $comment['subject'], $comment['entry'], $comment['author_id'], $comment['anon_name']); sleep(1); } // reload & show the topic $topic = & new PHPWSBB_Topic($topic->id); $title = $topic->get_title(); $content = $topic->view(); break; default: // If none of these actions were requested & user is an admin.. if (Current_User::authorized('comments')) include(PHPWS_SOURCE_DIR . 'mod/phpwsbb/index_admin.php'); } } /* If nothing else, show the top menu */ if (empty($content)) { $title = dgettext('phpwsbb', 'Bulletin Board Forums'); PHPWS_Core::initModClass('phpwsbb', 'BB_Lists.php'); $content = PHPWSBB_Lists::list_forums(); } /* Show the MiniAdmin */ PHPWSBB_Data::MiniAdmin(); if (!empty($topic)) $topic->MiniAdmin(); if (!empty($forum)) $forum->MiniAdmin(); /* Show generated content */ if (!empty($title)) $template['TITLE'] = $title; if (!empty($message)) $template['MESSAGE'] = $message; if (!empty($content)) $template['CONTENT'] = $content; $content = PHPWS_Template::process($template, 'phpwsbb', 'main.tpl'); Layout::add($content); unset($topic, $forum, $title, $message, $content); ?> |
|
From: Greg M. <bli...@us...> - 2008-08-23 03:14:25
|
Update of /cvsroot/phpwebsite-comm/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30865 Modified Files: avail Log Message: Giving adarkling access to phpwsbb. Index: avail =================================================================== RCS file: /cvsroot/phpwebsite-comm/CVSROOT/avail,v retrieving revision 1.73 retrieving revision 1.74 diff -C2 -d -r1.73 -r1.74 *** avail 22 Jul 2008 12:44:12 -0000 1.73 --- avail 23 Aug 2008 03:14:30 -0000 1.74 *************** *** 21,24 **** --- 21,25 ---- avail|singletrack|modules/pear avail|andyoflinux|modules/photobox + avail|adarkling|modules/phpwsbb avail|verdonv|modules/phpwsbusinesses avail|blindman1344|modules/phpwsprov |
|
From: Greg M. <bli...@us...> - 2008-08-23 02:55:35
|
Update of /cvsroot/phpwebsite-comm/modules/mailinglists/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23205/class Modified Files: Email.php Log Message: Emails are now templated. Index: Email.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/class/Email.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Email.php 23 Aug 2008 01:49:37 -0000 1.3 --- Email.php 23 Aug 2008 02:55:12 -0000 1.4 *************** *** 311,314 **** --- 311,317 ---- } + $tpl_text['MESSAGE'] = $this->getMsgText(); + $tpl_html['MESSAGE'] = $this->getMsgHtml(); + if (PHPWS_Settings::get('mailinglists', 'footer')) { *************** *** 319,344 **** $url .= PHPWS_Text::linkAddress('mailinglists', $vars, false, false, false); ! $footer_text = str_replace('[URL]', $url, ! PHPWS_Text::decodeText(PHPWS_Settings::get('mailinglists', 'footer_text_msg'))); ! $footer_html = str_replace('[URL]', $url, ! PHPWS_Text::parseOutput(PHPWS_Settings::get('mailinglists', 'footer_html_msg'))); ! $mail->setMessageBody($this->getMsgText() . "\n" . $footer_text); ! /* Only set the HTML message if the subscriber has requested HTML. */ ! if ($subscriber->getHtml(false)) ! { ! $mail->setHTMLBody($this->getMsgHtml() . $footer_html); ! } ! } ! else { ! $mail->setMessageBody($this->getMsgText()); ! ! /* Only set the HTML message if the subscriber has requested HTML. */ ! if ($subscriber->getHtml(false)) ! { ! $mail->setHTMLBody($this->getMsgHtml()); ! } } } --- 322,337 ---- $url .= PHPWS_Text::linkAddress('mailinglists', $vars, false, false, false); ! $tpl_text['FOOTER'] = str_replace('[URL]', $url, ! PHPWS_Text::decodeText(PHPWS_Settings::get('mailinglists', 'footer_text_msg'))); ! $tpl_html['FOOTER'] = str_replace('[URL]', $url, ! PHPWS_Text::parseOutput(PHPWS_Settings::get('mailinglists', 'footer_html_msg'))); ! } ! $mail->setMessageBody(PHPWS_Template::process($tpl_text, 'mailinglists', 'email/send_text.tpl')); ! /* Only set the HTML message if the subscriber has requested HTML. */ ! if ($subscriber->getHtml(false)) { ! $mail->setHTMLBody(PHPWS_Template::process($tpl_html, 'mailinglists', 'email/send_html.tpl')); } } |
|
From: Greg M. <bli...@us...> - 2008-08-23 02:55:07
|
Update of /cvsroot/phpwebsite-comm/modules/mailinglists/templates/email In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23205/templates/email Added Files: send_html.tpl send_text.tpl Log Message: Emails are now templated. --- NEW FILE: send_text.tpl --- {MESSAGE} <!-- BEGIN footer -->{FOOTER}<!-- END footer --> --- NEW FILE: send_html.tpl --- {MESSAGE} <!-- BEGIN footer --> <hr /> {FOOTER} <!-- END footer --> |
|
From: Greg M. <bli...@us...> - 2008-08-23 02:55:07
|
Update of /cvsroot/phpwebsite-comm/modules/mailinglists/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23205/docs Modified Files: changelog.txt Log Message: Emails are now templated. Index: changelog.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/docs/changelog.txt,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** changelog.txt 23 Aug 2008 01:49:40 -0000 1.50 --- changelog.txt 23 Aug 2008 02:55:13 -0000 1.51 *************** *** 9,12 **** --- 9,13 ---- *cvs + - Emails are now templated (email/send_html.tpl and email/send_text.tpl). - Added workaround for issue where emails could be sent with relative URLs. - Now call cacheQueries on all DBPagers to retain pager settings. |
|
From: Greg M. <bli...@us...> - 2008-08-23 01:49:32
|
Update of /cvsroot/phpwebsite-comm/modules/mailinglists/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29394/docs Modified Files: changelog.txt Log Message: Added workaround for issue where emails could be sent with relative URLs. Index: changelog.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/docs/changelog.txt,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** changelog.txt 22 Aug 2008 03:15:49 -0000 1.49 --- changelog.txt 23 Aug 2008 01:49:40 -0000 1.50 *************** *** 9,12 **** --- 9,13 ---- *cvs + - Added workaround for issue where emails could be sent with relative URLs. - Now call cacheQueries on all DBPagers to retain pager settings. - Support Smart Tags in HTML emails. |
|
From: Greg M. <bli...@us...> - 2008-08-23 01:49:31
|
Update of /cvsroot/phpwebsite-comm/modules/mailinglists/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29394/class Modified Files: Email.php Log Message: Added workaround for issue where emails could be sent with relative URLs. Index: Email.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/class/Email.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Email.php 22 Aug 2008 02:53:25 -0000 1.2 --- Email.php 23 Aug 2008 01:49:37 -0000 1.3 *************** *** 119,129 **** /* Support Smart Tags */ $text = PHPWS_Text::parseTag($this->msg_html); ! /* Need to add full URL since the text may be going in emails. */ ! $src = '@(src|href)="@'; ! $rpl = "\\1=\"$address"; ! $text = preg_replace($src, $rpl, $text); ! return PHPWS_Text::parseOutput($text); } --- 119,131 ---- /* Support Smart Tags */ $text = PHPWS_Text::parseTag($this->msg_html); + $text = PHPWS_Text::parseOutput($text); ! /* Need to add full URL since the text is going into emails. */ ! $src[] = '@(src|href)="\./@'; ! $rpl[] = "\\1=\"$address"; ! $src[] = '@(src|href)="(images|index.php)@'; ! $rpl[] = "\\1=\"$address\\2"; ! return preg_replace($src, $rpl, $text); } |
|
From: Greg M. <bli...@us...> - 2008-08-22 03:16:10
|
Update of /cvsroot/phpwebsite-comm/modules/mailinglists/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5992/class Modified Files: MailingListsManager.php MyPage.php Log Message: Now call cacheQueries on all DBPagers to retain pager settings. Index: MailingListsManager.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/class/MailingListsManager.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MailingListsManager.php 2 Jan 2008 21:59:25 -0000 1.1 --- MailingListsManager.php 22 Aug 2008 03:15:45 -0000 1.2 *************** *** 575,578 **** --- 575,579 ---- $pager->addWhere('list_id', $list->getId()); $pager->addWhere('approved', 1); + $pager->cacheQueries(); return $pager->get(); *************** *** 598,601 **** --- 599,603 ---- $pager->setDefaultOrder('name', 'asc'); $pager->setEmptyMessage(dgettext('mailinglists', 'No mailing lists found.')); + $pager->cacheQueries(); return $pager->get(); *************** *** 649,652 **** --- 651,655 ---- $pager->setEmptyMessage(dgettext('mailinglists', 'No subscribers.')); $pager->addWhere('list_id', $list->getId()); + $pager->cacheQueries(); return $pager->get(); *************** *** 912,915 **** --- 915,919 ---- $pager->addWhere('list_id', 0); $pager->addWhere('approved', 0); + $pager->cacheQueries(); return $pager->get(); *************** *** 1110,1113 **** --- 1114,1118 ---- $pager->addWhere('list_id', 0, '!='); $pager->addWhere('approved', 0); + $pager->cacheQueries(); return $pager->get(); Index: MyPage.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/class/MyPage.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MyPage.php 3 Jan 2008 17:55:09 -0000 1.2 --- MyPage.php 22 Aug 2008 03:15:46 -0000 1.3 *************** *** 55,58 **** --- 55,59 ---- $pager->setEmptyMessage(dgettext('mailinglists', 'No lists available at this time.')); $pager->addWhere('active', 1); + $pager->cacheQueries(); $template['CONTENT'] = $pager->get(); *************** *** 222,225 **** --- 223,227 ---- $pager->addWhere('list_id', $list->getId()); $pager->addWhere('approved', 1); + $pager->cacheQueries(); return $pager->get(); |
|
From: Greg M. <bli...@us...> - 2008-08-22 03:16:07
|
Update of /cvsroot/phpwebsite-comm/modules/mailinglists/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5992/boost Modified Files: dependency.xml Log Message: Now call cacheQueries on all DBPagers to retain pager settings. Index: dependency.xml =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/boost/dependency.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dependency.xml 11 Jun 2008 02:53:28 -0000 1.2 --- dependency.xml 22 Aug 2008 03:15:44 -0000 1.3 *************** *** 4,8 **** <title>core</title> <properName>phpWebSite Core</properName> ! <version>1.7.1</version> <url>http://phpwebsite.appstate.edu/downloads/modules/base/</url> </module> --- 4,8 ---- <title>core</title> <properName>phpWebSite Core</properName> ! <version>1.8.2</version> <url>http://phpwebsite.appstate.edu/downloads/modules/base/</url> </module> |
|
From: Greg M. <bli...@us...> - 2008-08-22 03:15:45
|
Update of /cvsroot/phpwebsite-comm/modules/mailinglists/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5992/docs Modified Files: changelog.txt Log Message: Now call cacheQueries on all DBPagers to retain pager settings. Index: changelog.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/docs/changelog.txt,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** changelog.txt 22 Aug 2008 02:53:28 -0000 1.48 --- changelog.txt 22 Aug 2008 03:15:49 -0000 1.49 *************** *** 9,12 **** --- 9,13 ---- *cvs + - Now call cacheQueries on all DBPagers to retain pager settings. - Support Smart Tags in HTML emails. |
|
From: Greg M. <bli...@us...> - 2008-08-22 02:53:23
|
Update of /cvsroot/phpwebsite-comm/modules/mailinglists/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29379/docs Modified Files: changelog.txt Log Message: Support Smart Tags in HTML emails. Index: changelog.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/docs/changelog.txt,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** changelog.txt 21 Jun 2008 15:25:36 -0000 1.47 --- changelog.txt 22 Aug 2008 02:53:28 -0000 1.48 *************** *** 7,10 **** --- 7,14 ---- + *cvs + + - Support Smart Tags in HTML emails. + *mailinglists-1.1.0 (21 Jun 2008) |
|
From: Greg M. <bli...@us...> - 2008-08-22 02:53:23
|
Update of /cvsroot/phpwebsite-comm/modules/mailinglists/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29379/class Modified Files: Email.php Log Message: Support Smart Tags in HTML emails. Index: Email.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/class/Email.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Email.php 2 Jan 2008 21:59:25 -0000 1.1 --- Email.php 22 Aug 2008 02:53:25 -0000 1.2 *************** *** 115,119 **** if ($format) { ! return PHPWS_Text::parseOutput($this->msg_html); } --- 115,129 ---- if ($format) { ! $address = PHPWS_Core::getHomeHttp(); ! ! /* Support Smart Tags */ ! $text = PHPWS_Text::parseTag($this->msg_html); ! ! /* Need to add full URL since the text may be going in emails. */ ! $src = '@(src|href)="@'; ! $rpl = "\\1=\"$address"; ! $text = preg_replace($src, $rpl, $text); ! ! return PHPWS_Text::parseOutput($text); } |
|
From: Eloi G. <ada...@us...> - 2008-08-21 23:41:00
|
Update of /cvsroot/phpwebsite-comm/modules/article/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18530/templates Modified Files: config.tpl mail_form.tpl Log Message: Corrected minor typographical errors Index: config.tpl =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/templates/config.tpl,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** config.tpl 21 Aug 2008 20:17:22 -0000 1.9 --- config.tpl 21 Aug 2008 23:40:37 -0000 1.10 *************** *** 70,74 **** <caption>{CATEGORY_INDEX_LABEL}</caption> <tbody> ! <t> <th><b>{CATEGORY_INDEX_TITLE_1}</b></th> <th><b>{CATEGORY_INDEX_TITLE_2}</b></th> --- 70,74 ---- <caption>{CATEGORY_INDEX_LABEL}</caption> <tbody> ! <tr> <th><b>{CATEGORY_INDEX_TITLE_1}</b></th> <th><b>{CATEGORY_INDEX_TITLE_2}</b></th> Index: mail_form.tpl =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/templates/mail_form.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mail_form.tpl 2 Jul 2007 07:45:12 -0000 1.4 --- mail_form.tpl 21 Aug 2008 23:40:37 -0000 1.5 *************** *** 59,63 **** <div style="text-align: center;"> {SEND} !          {CANCEL} </div> --- 59,63 ---- <div style="text-align: center;"> {SEND} ! {CANCEL} </div> |
|
From: Eloi G. <ada...@us...> - 2008-08-21 23:40:31
|
Update of /cvsroot/phpwebsite-comm/modules/article/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18530/docs Modified Files: MANUAL.html Log Message: Corrected minor typographical errors Index: MANUAL.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/docs/MANUAL.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MANUAL.html 21 Aug 2008 20:17:17 -0000 1.2 --- MANUAL.html 21 Aug 2008 23:40:39 -0000 1.3 *************** *** 170,174 **** <b>Image:</b><br /> If you intend to show an image with the article summary (for example, on the homepage listings), then this is where you choose the photo to be shown. You can also turn the image into a link and specify a photo caption to be included. See "Image Management" for more information.<br /> ! Note: You <u>must</u> have javascript enabled to use this feature.<br /> <br /> <h2>Page Editing Screen</h2><b>Page Settings/Teaser:</b><br /> --- 170,174 ---- <b>Image:</b><br /> If you intend to show an image with the article summary (for example, on the homepage listings), then this is where you choose the photo to be shown. You can also turn the image into a link and specify a photo caption to be included. See "Image Management" for more information.<br /> ! Note: You <i>must</i> have javascript enabled to use this feature.<br /> <br /> <h2>Page Editing Screen</h2><b>Page Settings/Teaser:</b><br /> *************** *** 209,213 **** Select the instructions that you want search engine spiders to follow when they see this page. Select "Default Settings" if you're not sure which to pick. This option will use the site-wide setting selected in "Layout"<br /> <br /> ! <h2>Article Information</h2><u>NOTE -- These items are not editable.</u><br /> Created By: Who created the article<br /> Updated By: the last person to edit the article<br /> --- 209,213 ---- Select the instructions that you want search engine spiders to follow when they see this page. Select "Default Settings" if you're not sure which to pick. This option will use the site-wide setting selected in "Layout"<br /> <br /> ! <h2>Article Information</h2><i>NOTE -- These items are not editable.</i><br /> Created By: Who created the article<br /> Updated By: the last person to edit the article<br /> *************** *** 265,269 **** Each section will give you an "attached image" dialog to choose the image to be shown. If you already added an image to this section, it's displayed here. Clicking the image (or the "X") will allow you to change it. See "Image Management" for more information.<br /> ! Note: You <u>must</u> have javascript enabled to use this feature.<br /> <br /> <b>Alternate Text (Short Image Description):</b><br /> --- 265,269 ---- Each section will give you an "attached image" dialog to choose the image to be shown. If you already added an image to this section, it's displayed here. Clicking the image (or the "X") will allow you to change it. See "Image Management" for more information.<br /> ! Note: You <i>must</i> have javascript enabled to use this feature.<br /> <br /> <b>Alternate Text (Short Image Description):</b><br /> *************** *** 456,460 **** If you click "Approve" the article will be available on the site as of the publishing date set in the article. If you click "Disapprove", you will be asked for the reason why. This reason will be emailed to the article editor and shown in the Message Box whenever the article is next edited. This way the site editors never have to change the articles themselves -- the writers will have that responsibility. ! </body> </html> --- 456,460 ---- If you click "Approve" the article will be available on the site as of the publishing date set in the article. If you click "Disapprove", you will be asked for the reason why. This reason will be emailed to the article editor and shown in the Message Box whenever the article is next edited. This way the site editors never have to change the articles themselves -- the writers will have that responsibility. ! </div> </body> </html> |
|
From: Eloi G. <ada...@us...> - 2008-08-21 23:40:31
|
Update of /cvsroot/phpwebsite-comm/modules/article/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18530/boost Modified Files: about.html Log Message: Corrected minor typographical errors Index: about.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/boost/about.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** about.html 17 Jun 2007 20:25:51 -0000 1.1 --- about.html 21 Aug 2008 23:40:38 -0000 1.2 *************** *** 9,13 **** <h4><eloi@NOSPAM.bygeorgewarecom></h4> ! <p>Article Manager lets you post articles, information & web pages..<p> <p>This phpWebsite module works with Related, Categories, Menu, Comments and Special Tags.</p> --- 9,13 ---- <h4><eloi@NOSPAM.bygeorgewarecom></h4> ! <p>Article Manager lets you post articles, information & web pages..<p> <p>This phpWebsite module works with Related, Categories, Menu, Comments and Special Tags.</p> |
|
From: Eloi G. <ada...@us...> - 2008-08-21 23:40:19
|
Update of /cvsroot/phpwebsite-comm/modules/article/.cache In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18499/.cache Log Message: Directory /cvsroot/phpwebsite-comm/modules/article/.cache added to the repository |
|
From: Eloi G. <ada...@us...> - 2008-08-21 20:29:38
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7997/templates Log Message: Directory /cvsroot/phpwebsite-comm/modules/phpwsbb/templates added to the repository |
|
From: Eloi G. <ada...@us...> - 2008-08-21 20:29:32
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7997/inc Log Message: Directory /cvsroot/phpwebsite-comm/modules/phpwsbb/inc added to the repository |
|
From: Eloi G. <ada...@us...> - 2008-08-21 20:29:31
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7997/img Log Message: Directory /cvsroot/phpwebsite-comm/modules/phpwsbb/img added to the repository |
|
From: Eloi G. <ada...@us...> - 2008-08-21 20:29:29
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7997/docs Log Message: Directory /cvsroot/phpwebsite-comm/modules/phpwsbb/docs added to the repository |
|
From: Eloi G. <ada...@us...> - 2008-08-21 20:29:28
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7997/conf Log Message: Directory /cvsroot/phpwebsite-comm/modules/phpwsbb/conf added to the repository |
|
From: Eloi G. <ada...@us...> - 2008-08-21 20:29:27
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7997/class Log Message: Directory /cvsroot/phpwebsite-comm/modules/phpwsbb/class added to the repository |
|
From: Eloi G. <ada...@us...> - 2008-08-21 20:29:26
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7997/boost Log Message: Directory /cvsroot/phpwebsite-comm/modules/phpwsbb/boost added to the repository |
|
From: Eloi G. <ada...@us...> - 2008-08-21 20:29:25
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/.settings In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7997/.settings Log Message: Directory /cvsroot/phpwebsite-comm/modules/phpwsbb/.settings added to the repository |
|
From: Eloi G. <ada...@us...> - 2008-08-21 20:27:02
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7172/phpwsbb Log Message: Directory /cvsroot/phpwebsite-comm/modules/phpwsbb added to the repository |