comoblog-commit Mailing List for CoMoblog Mobile Blog Application (Page 29)
Status: Inactive
Brought to you by:
markwallis
You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(49) |
Oct
(127) |
Nov
(211) |
Dec
(56) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(51) |
Feb
(128) |
Mar
(1) |
Apr
(2) |
May
|
Jun
|
Jul
(2) |
Aug
(24) |
Sep
|
Oct
(151) |
Nov
(9) |
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
(17) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 15:29:55
|
Update of /cvsroot/comoblog/comoblog/modules/mod_calendar/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17367/modules/mod_calendar/install Modified Files: mod_calendar.xml Log Message: Update mod_calendar to allow day offset to be a select string rather than an integer Index: mod_calendar.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_calendar/install/mod_calendar.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- mod_calendar.xml 7 Oct 2005 15:14:57 -0000 1.5 +++ mod_calendar.xml 7 Oct 2005 15:29:47 -0000 1.6 @@ -10,12 +10,12 @@ <param name="CFG_CALENDAR_DAY_OFFSET" - description="Offset indicating the first day of the month. 0 is Saturday, 1 is Sunday, etc" - type="text" + description="Option to choose the first day of the week in the calendar" + type="select" editable="Y" accept_null="N" - value="0" - restrict_values="0|1|2|3|4|5|6" + value="Sunday" + restrict_values="Saturday|Sunday|Monday|Tuesday|Wednesday|Thursday|Friday" /> <param |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 15:29:55
|
Update of /cvsroot/comoblog/comoblog/modules/mod_calendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17367/modules/mod_calendar Modified Files: mod_calendar.php Log Message: Update mod_calendar to allow day offset to be a select string rather than an integer Index: mod_calendar.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_calendar/mod_calendar.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- mod_calendar.php 7 Oct 2005 15:14:57 -0000 1.3 +++ mod_calendar.php 7 Oct 2005 15:29:47 -0000 1.4 @@ -11,7 +11,37 @@ else $mod_calendar_tpl->assign('ARROW_RIGHT', 'modules/mod_calendar/img/right.gif' ); - +function convert_offset ($str) +{ + $val = 0; + + switch ($str) + { + case "Sunday": + $val = 0; + break; + case "Monday": + $val = 1; + break; + case "Tuesday": + $val = 2; + break; + case "Wednesday": + $val = 3; + break; + case "Thursday": + $val = 4; + break; + case "Friday": + $val = 5; + break; + case "Saturday": + $val = 6; + break; + } + + return $val; +} function start_day ($month, $year) { @@ -29,7 +59,7 @@ $start_day = ($total_days_since_1901 + 2) % 7; - $start_day = $start_day - CFG_CALENDAR_DAY_OFFSET; + $start_day = $start_day - convert_offset(CFG_CALENDAR_DAY_OFFSET); if ($start_day == 0) { $start_day = 7; @@ -100,9 +130,11 @@ $cnt = 0; +$offset = convert_offset(CFG_CALENDAR_DAY_OFFSET); + while ($cnt < 7) { - $val = ($cnt + CFG_CALENDAR_DAY_OFFSET) % 7; + $val = ($cnt + $offset) % 7; switch ($val) { |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 15:15:15
|
Update of /cvsroot/comoblog/comoblog/modules/mod_calendar/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13593/modules/mod_calendar/templates Modified Files: mod_calendar.tpl.htm Log Message: RFE: 1280305 - Ability to change first day in calendar module Index: mod_calendar.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_calendar/templates/mod_calendar.tpl.htm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- mod_calendar.tpl.htm 16 Aug 2005 05:49:47 -0000 1.1.1.1 +++ mod_calendar.tpl.htm 7 Oct 2005 15:14:57 -0000 1.2 @@ -4,13 +4,9 @@ <p><a href="{SITE_URL}index.php{IISBUG}/{PREV_DATE}" title="{TXT.cal_previous}"><img src="{SITE_URL}{ARROW_LEFT}" border="0" alt="{TXT.cal_previous}" /></a> {CAL_DATE} <!-- BEGIN: next --><a href="{SITE_URL}index.php{IISBUG}/{NEXT_DATE}" title="{TXT.cal_next}"><img src="{SITE_URL}{ARROW_RIGHT}" border="0" alt="{TXT.cal_next}" /></a><!-- END: next --></p> <table cellspacing="0"> <tr class="calendar_header"> - <td>{TXT.cal_Su}</td> - <td>{TXT.cal_M}</td> - <td>{TXT.cal_Tu}</td> - <td>{TXT.cal_W}</td> - <td>{TXT.cal_Th}</td> - <td>{TXT.cal_F}</td> - <td>{TXT.cal_Sa}</td> + <!-- BEGIN: header--> + <td>{HEADER}</td> + <!-- END: header--> </tr> <!-- BEGIN: row --> <tr> @@ -28,4 +24,4 @@ </table> </div> <!-- END: calendar --> -<!-- END: main --> \ No newline at end of file +<!-- END: main --> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 15:15:06
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13593/docs Modified Files: CHANGELOG Log Message: RFE: 1280305 - Ability to change first day in calendar module Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- CHANGELOG 7 Oct 2005 14:09:48 -0000 1.15 +++ CHANGELOG 7 Oct 2005 15:14:57 -0000 1.16 @@ -13,6 +13,7 @@ * FEATURE: Added HTML filter option (1304057) * FEATURE: HTML now accepted in intro and footer (1280287) * FEATURE: Allow date editing through admin (1280315) +* FEATURE: Ability to change the first weekday in calendar (1280305) * CORE: Added pre/post db save post filter framework * CORE: Updated core supported module set * BUG: Disable POP3 APOP authentication by default (1280278) |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 15:15:05
|
Update of /cvsroot/comoblog/comoblog/docs/upgrades In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13593/docs/upgrades Modified Files: easymoblog-0.5.1_to_comoblog-0.1.sql Log Message: RFE: 1280305 - Ability to change first day in calendar module Index: easymoblog-0.5.1_to_comoblog-0.1.sql =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/upgrades/easymoblog-0.5.1_to_comoblog-0.1.sql,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- easymoblog-0.5.1_to_comoblog-0.1.sql 5 Oct 2005 01:48:34 -0000 1.5 +++ easymoblog-0.5.1_to_comoblog-0.1.sql 7 Oct 2005 15:14:57 -0000 1.6 @@ -5,6 +5,8 @@ update comoblog_preferences SET pref_display_order=1 where pref_name='CFG_BODY_BGCOLOR'; update comoblog_preferences SET pref_display_order=2 where pref_name='CFG_PAGE_WIDTH'; update comoblog_preferences SET pref_display_order=3 where pref_name='CFG_BG_IMG'; +insert into comoblog_preferences (pref_name, pref_value, pref_description, pref_topic_id, pref_encrypt, pref_type, pref_restrict_values, pref_accept_null, pref_editable, pref_display_order, mod_name) VALUES ('CFG_CALENDAR_DAY_OFFSET', +'0', 'Offset indicating the first day of the month. 0 is Saturday, 1 is Sunday, etc', 0, 'N', 'text', '0|1|2|3|4|5|6', 'N', 'Y', 0, 'mod_calendar'); insert into comoblog_preferences (pref_name, pref_value, pref_description, pref_topic_id, pref_encrypt, pref_type, pref_restrict_values, pref_accept_null, pref_editable, pref_display_order, mod_name) VALUES ('CFG_ALLOW_HTML', 'yes', 'Allow HTML from posts to be displayed', 1, 'N', 'select', 'yes|no', 'N', 'Y', 0, ''); insert into comoblog_preferences (pref_name, pref_value, pref_description, pref_topic_id, pref_encrypt, pref_type, pref_restrict_values, pref_accept_null, pref_editable, pref_display_order, mod_name) VALUES ('CFG_MAX_ALLOWED_IMAGES', 'unlimited', 'The maximum number of images that will be read from an email post.', 1, 'N', 'select', 'unlimited|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|10', 'N', 'Y', 0, ''); |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 15:15:05
|
Update of /cvsroot/comoblog/comoblog/modules/mod_calendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13593/modules/mod_calendar Modified Files: mod_calendar.php Log Message: RFE: 1280305 - Ability to change first day in calendar module Index: mod_calendar.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_calendar/mod_calendar.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- mod_calendar.php 2 Sep 2005 01:06:16 -0000 1.2 +++ mod_calendar.php 7 Oct 2005 15:14:57 -0000 1.3 @@ -29,6 +29,8 @@ $start_day = ($total_days_since_1901 + 2) % 7; + $start_day = $start_day - CFG_CALENDAR_DAY_OFFSET; + if ($start_day == 0) { $start_day = 7; } @@ -91,9 +93,47 @@ $mod_calendar_tpl->parse("main.calendar.next"); +/////////////////////////////////////////////////////////////////////////////// +// +// headers +// - +$cnt = 0; + +while ($cnt < 7) +{ + $val = ($cnt + CFG_CALENDAR_DAY_OFFSET) % 7; + + switch ($val) + { + case 0: + $header[$cnt] = $TXT['cal_Su'];; + break; + case 1: + $header[$cnt] = $TXT['cal_M']; + break; + case 2: + $header[$cnt] = $TXT['cal_Tu']; + break; + case 3: + $header[$cnt] = $TXT['cal_W']; + break; + case 4: + $header[$cnt] = $TXT['cal_Th']; + break; + case 5: + $header[$cnt] = $TXT['cal_F']; + break; + case 6: + $header[$cnt] = $TXT['cal_Sa']; + break; + } + $mod_calendar_tpl->assign("HEADER", $header[$cnt]); + $mod_calendar_tpl->parse("main.calendar.header"); + + $cnt += 1; +} /////////////////////////////////////////////////////////////////////////////// // @@ -194,4 +234,4 @@ // /////////////////////////////////////////////////////////////////////////////// -?> \ No newline at end of file +?> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 15:15:05
|
Update of /cvsroot/comoblog/comoblog/modules/mod_calendar/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13593/modules/mod_calendar/install Modified Files: mod_calendar.xml Log Message: RFE: 1280305 - Ability to change first day in calendar module Index: mod_calendar.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_calendar/install/mod_calendar.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- mod_calendar.xml 7 Oct 2005 00:48:49 -0000 1.4 +++ mod_calendar.xml 7 Oct 2005 15:14:57 -0000 1.5 @@ -9,6 +9,16 @@ <allowed_pos>sidebar</allowed_pos> <param + name="CFG_CALENDAR_DAY_OFFSET" + description="Offset indicating the first day of the month. 0 is Saturday, 1 is Sunday, etc" + type="text" + editable="Y" + accept_null="N" + value="0" + restrict_values="0|1|2|3|4|5|6" + /> + + <param name="CFG_CALENDAR_FONT_FAMILY" description="" type="font_picker" |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 14:09:56
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30290/docs Modified Files: CHANGELOG Log Message: RFE: 1280315 - Allow date editing/updating through admin screens Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- CHANGELOG 7 Oct 2005 13:21:21 -0000 1.14 +++ CHANGELOG 7 Oct 2005 14:09:48 -0000 1.15 @@ -12,6 +12,7 @@ * FEATURE: Added image count limit option (1304056) * FEATURE: Added HTML filter option (1304057) * FEATURE: HTML now accepted in intro and footer (1280287) +* FEATURE: Allow date editing through admin (1280315) * CORE: Added pre/post db save post filter framework * CORE: Updated core supported module set * BUG: Disable POP3 APOP authentication by default (1280278) |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 14:09:56
|
Update of /cvsroot/comoblog/comoblog/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30290/admin Modified Files: post_add.php post_edit.php Log Message: RFE: 1280315 - Allow date editing/updating through admin screens Index: post_add.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/admin/post_add.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- post_add.php 5 Oct 2005 00:45:34 -0000 1.2 +++ post_add.php 7 Oct 2005 14:09:48 -0000 1.3 @@ -58,6 +58,15 @@ $post[$k] = addslashes($v); } + if ($post['post_date_option'] == "now") + { + $post['post_mail_date'] = time(); + } + else if ($post['post_date_option'] == "change") + { + $post['post_mail_date'] = strtotime($post['post_mail_date']); + } + // add post entry in the database $query = " insert into ".CFG_MYSQL_TABPREFIX."posts ( @@ -68,7 +77,7 @@ 'text/plain', '0', '".$post['post_mail_from']."', - '".time()."', + '".$post['post_mail_date']."', '".$post['post_mail_subject']."', '".$post['post_mail_body']."', '".$post['topic_id']."' @@ -151,7 +160,7 @@ } $tpl->parse('main.images'); - +$tpl->assign('NOW_DATE', strftime($CAL_DATE_FORMAT." %H:%M", time())); $tpl->assign('ACTION', basename($_SERVER['PHP_SELF'])); Index: post_edit.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/admin/post_edit.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- post_edit.php 5 Oct 2005 00:45:34 -0000 1.2 +++ post_edit.php 7 Oct 2005 14:09:48 -0000 1.3 @@ -89,6 +89,19 @@ $post[$k] = addslashes($v); } + if ($post['post_date_option'] == "now") + { + $post['post_mail_date'] = time(); + } + else if ($post['post_date_option'] == "change") + { + $post['post_mail_date'] = strtotime($post['post_mail_date']); + } + else + { + $post['post_mail_date'] = strtotime($post['post_mail_date_orig']); + } + $query = " update ".CFG_MYSQL_TABPREFIX."posts @@ -97,6 +110,7 @@ post_mail_subject = '".$post['post_mail_subject'] ."', post_mail_body = '".$post['post_mail_body'] ."', post_images = '".$post['post_images'] ."', + post_mail_date = '".$post['post_mail_date'] ."', topic_id = '".$post['topic_id'] ."' where post_id = '".$post['post_id'] ."' @@ -133,6 +147,9 @@ if ($post) { + $strdate = strftime($CAL_DATE_FORMAT." %H:%M", $post['post_mail_date']); + $post['post_mail_date'] = $strdate; + $tpl->assign('POST', $post); // topics |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 14:09:56
|
Update of /cvsroot/comoblog/comoblog/admin/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30290/admin/templates Modified Files: post_add.tpl.htm post_edit.tpl.htm Log Message: RFE: 1280315 - Allow date editing/updating through admin screens Index: post_edit.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/comoblog/admin/templates/post_edit.tpl.htm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- post_edit.tpl.htm 16 Aug 2005 05:49:45 -0000 1.1.1.1 +++ post_edit.tpl.htm 7 Oct 2005 14:09:48 -0000 1.2 @@ -46,6 +46,17 @@ </p> </td> </tr> + <tr> + <td colspan="3"> + <p>Date Posted:<br /> + <input type="radio" name="post_date_option" value="keep" checked>Don't change</input> + <input type="hidden" name="post_mail_date_orig" value="{POST.post_mail_date}"> <br /> + <input type="radio" name="post_date_option" value="now">Now</input><br /> + <input type="radio" name="post_date_option" value="change">Change to:</input> + <input type="text" name="post_mail_date" value="{POST.post_mail_date}" size="40"><br /> + </p> + </td> + </tr> <!-- BEGIN: images --> <tr> <td colspan="3"><b>IMAGES:</b></td> Index: post_add.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/comoblog/admin/templates/post_add.tpl.htm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- post_add.tpl.htm 16 Aug 2005 05:49:45 -0000 1.1.1.1 +++ post_add.tpl.htm 7 Oct 2005 14:09:48 -0000 1.2 @@ -43,6 +43,15 @@ </p> </td> </tr> + <tr> + <td colspan="3"> + <p>Date Posted:<br /> + <input type="radio" name="post_date_option" value="now" checked>Now</input><br /> + <input type="radio" name="post_date_option" value="change">Post at:</input> + <input type="text" name="post_mail_date" value="{NOW_DATE}" size="40"><br /> + </p> + </td> + </tr> <!-- BEGIN: images --> <tr> <td colspan="3"><b>IMAGES:</b></td> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 13:21:32
|
Update of /cvsroot/comoblog/comoblog/_install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16149/_install Modified Files: step_5.php Log Message: RFE: 1280287 - HTML allowed in footer and intro textareas Index: step_5.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/step_5.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- step_5.php 16 Aug 2005 05:49:44 -0000 1.1.1.1 +++ step_5.php 7 Oct 2005 13:21:21 -0000 1.2 @@ -16,14 +16,11 @@ if (strtoupper($_SERVER['REQUEST_METHOD']) == 'POST') { - // check form - foreach ($_POST as $k => $v) { - if (get_magic_quotes_gpc() == 0) - $_POST[$k] = addslashes(htmlentities(trim($v))); - else - $_POST[$k] = htmlentities(trim($v)); - } - + if (get_magic_quotes_gpc() == 0) + $_POST['title'] = addslashes(htmlentities(trim($_POST['title']))); + else + $_POST['title'] = htmlentities(trim($_POST['title'])); + $errors = array(); if (count($errors) == 0) { |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 13:21:30
|
Update of /cvsroot/comoblog/comoblog/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16149/admin Modified Files: set_preference.php Log Message: RFE: 1280287 - HTML allowed in footer and intro textareas Index: set_preference.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/admin/set_preference.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- set_preference.php 2 Sep 2005 01:06:15 -0000 1.2 +++ set_preference.php 7 Oct 2005 13:21:21 -0000 1.3 @@ -173,6 +173,21 @@ } } break; + case 'textarea': + if ($encrypt == 'Y') + $query = " + update ".CFG_MYSQL_TABPREFIX."preferences + set pref_value = PASSWORD('".$param[$f]."') + where pref_id = '".$id[$f]."' + "; + else + $query = " + update ".CFG_MYSQL_TABPREFIX."preferences + set pref_value = '".$param[$f]."' + where pref_id = '".$id[$f]."' + "; + $res = mysql_query($query); + break; default: if (!get_magic_quotes_gpc()) $param[$f] = addslashes(htmlentities($param[$f])); |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 13:21:30
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16149/docs Modified Files: CHANGELOG Log Message: RFE: 1280287 - HTML allowed in footer and intro textareas Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- CHANGELOG 5 Oct 2005 01:52:44 -0000 1.13 +++ CHANGELOG 7 Oct 2005 13:21:21 -0000 1.14 @@ -11,6 +11,7 @@ * FEATURE: Cookie stores comments data (1280298) * FEATURE: Added image count limit option (1304056) * FEATURE: Added HTML filter option (1304057) +* FEATURE: HTML now accepted in intro and footer (1280287) * CORE: Added pre/post db save post filter framework * CORE: Updated core supported module set * BUG: Disable POP3 APOP authentication by default (1280278) |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 00:48:57
|
Update of /cvsroot/comoblog/comoblog/modules/mod_calendar/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3757 Modified Files: mod_calendar.xml Log Message: Complete branding with images and default colours Index: mod_calendar.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_calendar/install/mod_calendar.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- mod_calendar.xml 7 Oct 2005 00:41:14 -0000 1.3 +++ mod_calendar.xml 7 Oct 2005 00:48:49 -0000 1.4 @@ -104,7 +104,7 @@ type="color_picker" editable="Y" accept_null="N" - value="336699" + value="1F1F1F" /> <param |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 00:41:25
|
Update of /cvsroot/comoblog/comoblog/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2737/img Modified Files: comoblogo.gif Log Message: Complete branding with images and default colours Index: comoblogo.gif =================================================================== RCS file: /cvsroot/comoblog/comoblog/img/comoblogo.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsBxpEtL and /tmp/cvs54GDso differ |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 00:41:22
|
Update of /cvsroot/comoblog/comoblog/_install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2737/_install Modified Files: comoblog_preferences.xml Log Message: Complete branding with images and default colours Index: comoblog_preferences.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/comoblog_preferences.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- comoblog_preferences.xml 5 Oct 2005 01:48:34 -0000 1.10 +++ comoblog_preferences.xml 7 Oct 2005 00:41:14 -0000 1.11 @@ -421,7 +421,7 @@ <param name="CFG_TITLE_BGCOLOR" - value="003366" + value="000000" description="Background colour of page Header" topic_id="6" encrypt="N" @@ -447,7 +447,7 @@ <param name="CFG_SIDEBAR_BGCOLOR" - value="336699" + value="9A0109" description="Background colour of Sidebar" topic_id="8" encrypt="N" |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 00:41:22
|
Update of /cvsroot/comoblog/comoblog/_install/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2737/_install/img Modified Files: install1.jpg install2.jpg install3.jpg Log Message: Complete branding with images and default colours Index: install1.jpg =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/img/install1.jpg,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsh6ocmG and /tmp/cvsxBWg8i differ Index: install3.jpg =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/img/install3.jpg,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvs2M6YXR and /tmp/cvsdyKIjv differ Index: install2.jpg =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/img/install2.jpg,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsjKsCwP and /tmp/cvsEpU73s differ |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 00:41:22
|
Update of /cvsroot/comoblog/comoblog/img/comoblog In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2737/img/comoblog Modified Files: 4.gif Log Message: Complete branding with images and default colours Index: 4.gif =================================================================== RCS file: /cvsroot/comoblog/comoblog/img/comoblog/4.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 Binary files /tmp/cvsWlVVIP and /tmp/cvsYxVAYs differ |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-07 00:41:22
|
Update of /cvsroot/comoblog/comoblog/modules/mod_calendar/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2737/modules/mod_calendar/install Modified Files: mod_calendar.xml Log Message: Complete branding with images and default colours Index: mod_calendar.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_calendar/install/mod_calendar.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- mod_calendar.xml 2 Sep 2005 01:06:16 -0000 1.2 +++ mod_calendar.xml 7 Oct 2005 00:41:14 -0000 1.3 @@ -50,7 +50,7 @@ type="color_picker" editable="Y" accept_null="N" - value="336699" + value="1F1F1F" /> <param @@ -77,7 +77,7 @@ type="color_picker" editable="Y" accept_null="N" - value="336699" + value="1F1F1F" /> <param |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-05 01:52:51
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27313 Modified Files: CHANGELOG Log Message: Changelog updates Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- CHANGELOG 5 Oct 2005 00:45:34 -0000 1.12 +++ CHANGELOG 5 Oct 2005 01:52:44 -0000 1.13 @@ -4,11 +4,15 @@ Initial Release. Based on the Easymoblog 0.5.1 release with the following additions. -* FEATURE: Fnformational error messages during MYSQL setup (1280250) +* FEATURE: mod_search module added - allows post searching (1280296) +* FEATURE: Informational error messages during MYSQL setup (1280250) * FEATURE: Debugging now optionally available for POP3 (1280310) * FEATURE: POP3 errors now reported from batch script (1280310) * FEATURE: Cookie stores comments data (1280298) -* FEATURE: Added pre/post db save post filter framework +* FEATURE: Added image count limit option (1304056) +* FEATURE: Added HTML filter option (1304057) +* CORE: Added pre/post db save post filter framework +* CORE: Updated core supported module set * BUG: Disable POP3 APOP authentication by default (1280278) * BUG: Background images now displaying (1280325) * BUG: Trackback pings now work (1280323) |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-05 01:50:30
|
Update of /cvsroot/comoblog/comoblog/modules/mod_example/admin/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26973/templates Added Files: mod_example.tpl.htm Log Message: Add missing mod_example files for developers --- NEW FILE: mod_example.tpl.htm --- |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-05 01:50:30
|
Update of /cvsroot/comoblog/comoblog/modules/mod_example/admin/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26973/img Added Files: mod_example.gif Log Message: Add missing mod_example files for developers --- NEW FILE: mod_example.gif --- (This appears to be a binary file; contents omitted.) |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-05 01:48:42
|
Update of /cvsroot/comoblog/comoblog/docs/upgrades In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26677/docs/upgrades Modified Files: easymoblog-0.5.1_to_comoblog-0.1.sql Log Message: RFE: 1304057 - HTML filter option added Index: easymoblog-0.5.1_to_comoblog-0.1.sql =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/upgrades/easymoblog-0.5.1_to_comoblog-0.1.sql,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- easymoblog-0.5.1_to_comoblog-0.1.sql 5 Oct 2005 01:32:56 -0000 1.4 +++ easymoblog-0.5.1_to_comoblog-0.1.sql 5 Oct 2005 01:48:34 -0000 1.5 @@ -5,6 +5,8 @@ update comoblog_preferences SET pref_display_order=1 where pref_name='CFG_BODY_BGCOLOR'; update comoblog_preferences SET pref_display_order=2 where pref_name='CFG_PAGE_WIDTH'; update comoblog_preferences SET pref_display_order=3 where pref_name='CFG_BG_IMG'; +insert into comoblog_preferences (pref_name, pref_value, pref_description, pref_topic_id, pref_encrypt, pref_type, pref_restrict_values, pref_accept_null, pref_editable, pref_display_order, mod_name) VALUES ('CFG_ALLOW_HTML', +'yes', 'Allow HTML from posts to be displayed', 1, 'N', 'select', 'yes|no', 'N', 'Y', 0, ''); insert into comoblog_preferences (pref_name, pref_value, pref_description, pref_topic_id, pref_encrypt, pref_type, pref_restrict_values, pref_accept_null, pref_editable, pref_display_order, mod_name) VALUES ('CFG_MAX_ALLOWED_IMAGES', 'unlimited', 'The maximum number of images that will be read from an email post.', 1, 'N', 'select', 'unlimited|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|10', 'N', 'Y', 0, ''); insert into comoblog_preferences (pref_name, pref_value, pref_description, pref_topic_id, pref_encrypt, pref_type, pref_restrict_values, pref_accept_null, pref_editable, pref_display_order, mod_name) VALUES ('CFG_BG_IMG_REPEAT', 'repeat', 'Repeat of background image', 14, 'N', 'select', 'repeat|repeat-x|repeat-y|no-repeat', 'N', 'Y', 4, ''); insert into comoblog_preferences (pref_name, pref_value, pref_description, pref_topic_id, pref_encrypt, pref_type, pref_restrict_values, pref_accept_null, pref_editable, pref_display_order, mod_name) VALUES ('CFG_MAIL_DEBUG', 'no', 'POP3 enable debugging', 4, 'N', 'select', 'no|yes', 'N', 'Y', 5, ''); |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-05 01:48:42
|
Update of /cvsroot/comoblog/comoblog/batch In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26677/batch Modified Files: comoblog_batch.php Log Message: RFE: 1304057 - HTML filter option added Index: comoblog_batch.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/batch/comoblog_batch.php,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- comoblog_batch.php 5 Oct 2005 01:32:56 -0000 1.6 +++ comoblog_batch.php 5 Oct 2005 01:48:34 -0000 1.7 @@ -48,6 +48,9 @@ $new_v = str_replace ('<', '', $v); $post['images_cid'][$k] = str_replace ('>', '', $new_v); } + + if (CFG_ALLOW_HTML == 'no') + $post['post_mail_body'] = filter_html($post['post_mail_body']); // clean up text and html if ($post['post_ctype'] == 'text/plain') |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-05 01:48:42
|
Update of /cvsroot/comoblog/comoblog/_install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26677/_install Modified Files: comoblog_preferences.xml Log Message: RFE: 1304057 - HTML filter option added Index: comoblog_preferences.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/comoblog_preferences.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- comoblog_preferences.xml 5 Oct 2005 01:32:56 -0000 1.9 +++ comoblog_preferences.xml 5 Oct 2005 01:48:34 -0000 1.10 @@ -118,6 +118,19 @@ editable="Y" display_order="0" /> + + <param + name="CFG_ALLOW_HTML" + value="yes" + description="Allow HTML from posts to be displayed" + topic_id="1" + encrypt="N" + type="select" + restrict_values="yes|no" + accept_null="N" + editable="Y" + display_order="0" + /> <param name="CFG_BATCH_TIMEOUT" |