comoblog-commit Mailing List for CoMoblog Mobile Blog Application (Page 24)
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: iamdecal <iam...@us...> - 2005-11-27 19:39:16
|
Update of /cvsroot/comoblog/modules/mod_adsense/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6716/install Log Message: Directory /cvsroot/comoblog/modules/mod_adsense/install added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 19:39:06
|
Update of /cvsroot/comoblog/modules/mod_adsense In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6669/mod_adsense Log Message: Directory /cvsroot/comoblog/modules/mod_adsense added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 19:31:37
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5426/mod_randomthumb/install Added Files: mod_randomthumb.xml Log Message: initial add, just to make sure ive got the hang of it. mod_randomthumb displays a random thumbmail image and links it to the relevant post. had loads of trouble getting this to commit, so i still need to double check its all here --- NEW FILE: mod_randomthumb.xml --- <?xml version="1.0" standalone="no"?> <!DOCTYPE module SYSTEM "http://comoblog.sourceforge.net/DTD/comoblog_mod_install.dtd"> <module> <name> mod_randomthumb </name> <description> displays a random post image and links to that post </description> <allowed_pos>sidebar</allowed_pos> <version>1</version> <minimum_supported>1.0</minimum_supported> <certified> 1.0 </certified> <author>iamdecal iam...@gm... http://www.iamdecal.co.uk</author> <date>2004-10-15</date> <param name="CFG_MOD_RANDOMTHUMB_IMG_WIDTH" description="The width of the image." type="text" editable="Y" accept_null="N" value="120" restrict_values="" /> <param name="CFG_MOD_RANDOMTHUMB_IMG_BORDER" description='The details of the image border - for example , "1px solid black".' type="text" editable="Y" accept_null="N" value="" restrict_values="" /> <param name="CFG_MOD_RANDOMTHUMB_EXTRASTYLE" description="Any extra style you might want to add, to enable this module to blend in with your site, this will be applied to the DIV that holds the module" type="text" editable="Y" accept_null="Y" value="" restrict_values="" /> <param name="CFG_MOD_RANDOMTHUMB_COLOR" description="" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_RANDOMTHUMB_A_COLOR" description="Link Color" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_RANDOMTHUMB_A_HOVER_COLOR" description="Link Hover Color" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_RANDOMTHUMB_A_TEXT_DECORATION" description="Link Decoration" type="select" editable="Y" accept_null="N" value="none" restrict_values="none|underline|overline|line-through" /> <param name="CFG_MOD_RANDOMTHUMB_A_HOVER_TEXT_DECORATION" description="Link Hover Decoration" type="select" editable="Y" accept_null="N" value="underline" restrict_values="none|underline|overline|line-through" /> <param name="CFG_MOD_RANDOMTHUMB_FONT_FAMILY" description="Link Font Family" type="font_picker" editable="Y" accept_null="N" value="Verdana,Arial,Helvetica,sans-serif" restrict_values="Verdana,Arial,Helvetica,sans-serif" /> <param name="CFG_MOD_RANDOMTHUMB_FONT_SIZE" description="Link Font Size" type="select" editable="Y" accept_null="N" value="10" restrict_values="8|9|10|11|12|13|14|15|16|17|18|19|20" /> <param name="CFG_MOD_RANDOMTHUMB_TITLE" description="The title of this module" type="text" editable="Y" accept_null="Y" value="" restrict_values="Random Image" /> </module> |
|
From: iamdecal <iam...@us...> - 2005-11-27 19:31:34
|
Update of /cvsroot/comoblog/modules/mod_randomthumb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5426/mod_randomthumb Added Files: index.php mod_randomthumb.php Log Message: initial add, just to make sure ive got the hang of it. mod_randomthumb displays a random thumbmail image and links it to the relevant post. had loads of trouble getting this to commit, so i still need to double check its all here --- NEW FILE: mod_randomthumb.php --- <?php if (in_array('mod_randomthumb', $SIDEBAR_MODULES)) $mod_pos = 'sidebar'; else $mod_pos = 'top'; require_once (CFG_BASE_PATH.'/modules/mod_randomthumb/include/mod_randomthumb.inc.php'); $randomthumb_items = mod_randomthumb(); if ($randomthumb_items) { $mod_randomthumb_tpl = new XTemplate (CFG_BASE_PATH.'/modules/mod_randomthumb/templates/'.$mod_pos.'/mod_randomthumb.tpl.htm'); for ($c = 0; $c < count($randomthumb_items); $c++) { if ($c % 2) $tpl->assign('BGCOLOR', '#ffffff'); else $tpl->assign('BGCOLOR', '#efefef'); $mod_randomthumb_tpl->assign('ITEM', $randomthumb_items[$c]); $mod_randomthumb_tpl->parse('main.item'); } $mod_randomthumb_tpl->parse('main'); $mod_contents = $mod_randomthumb_tpl->text("main"); } else $mod_contents = ''; ?> --- NEW FILE: index.php --- |
|
From: iamdecal <iam...@us...> - 2005-11-27 19:31:32
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5426/mod_randomthumb/img Added Files: mod_randomthumb.gif mod_randomthumb_big.gif Log Message: initial add, just to make sure ive got the hang of it. mod_randomthumb displays a random thumbmail image and links it to the relevant post. had loads of trouble getting this to commit, so i still need to double check its all here --- NEW FILE: mod_randomthumb.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mod_randomthumb_big.gif --- (This appears to be a binary file; contents omitted.) |
|
From: iamdecal <iam...@us...> - 2005-11-27 19:31:31
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5426/mod_randomthumb/include Added Files: mod_randomthumb.inc.php Log Message: initial add, just to make sure ive got the hang of it. mod_randomthumb displays a random thumbmail image and links it to the relevant post. had loads of trouble getting this to commit, so i still need to double check its all here --- NEW FILE: mod_randomthumb.inc.php --- <?php function mod_randomthumb() { if (CFG_USE_PATH_INFO == 'no') $iisbug = '?'; else $iisbug = ''; $query = " select img_id, img_extension, i.post_id , p.post_mail_subject , img_thumb , img_display from ".CFG_MYSQL_TABPREFIX."images i, ".CFG_MYSQL_TABPREFIX."posts p where i.post_id = p.post_id and i.post_id > 0 order by rand() limit 1; "; $res = mysql_query($query); if (!$res || !mysql_num_rows($res)){ return (false); } $items = array(); while ($row = mysql_fetch_assoc($res)) { if ($row['img_thumb'] == 'Y') { $isthumb = '_thumb'; } else { $isthumb = ''; } $row['imageurl'] = "img/posts/" . $row['img_id'] . $isthumb . "." . $row['img_extension']; $row['postlink'] = CFG_SITE_URL ."post.php".$iisbug."/".$row['post_id']; $row['postalt'] = $row['post_mail_subject']; $row['imagewidth'] = CFG_MOD_RANDOMTHUMB_IMG_WIDTH; $row['mod_randomthumb_title'] = CFG_MOD_RANDOMTHUMB_TITLE; $items[] = $row; } return ($items); } ?> |
|
From: iamdecal <iam...@us...> - 2005-11-27 19:31:31
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/templates/sidebar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5426/mod_randomthumb/templates/sidebar Added Files: mod_randomthumb.tpl.htm Log Message: initial add, just to make sure ive got the hang of it. mod_randomthumb displays a random thumbmail image and links it to the relevant post. had loads of trouble getting this to commit, so i still need to double check its all here --- NEW FILE: mod_randomthumb.tpl.htm --- <!-- BEGIN: main --> <div id="mod_randomthumb"> <!-- BEGIN: item --> {ITEM.mod_randomthumb_title} <a href="{ITEM.postlink}"> <img alt="{ITEM.postalt}" src="{ITEM.imageurl}" width="{ITEM.imagewidth}px" border="0px"/> </a> <br /> {ITEM.postalt} <!-- END: item --> </div> <!-- END: main --> |
|
From: iamdecal <iam...@us...> - 2005-11-27 19:31:30
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5426/mod_randomthumb/css Added Files: mod_randomthumb.css.php Log Message: initial add, just to make sure ive got the hang of it. mod_randomthumb displays a random thumbmail image and links it to the relevant post. had loads of trouble getting this to commit, so i still need to double check its all here --- NEW FILE: mod_randomthumb.css.php --- <?php require_once (dirname(__FILE__).'/../../../include/config.inc.php'); Header ('Content-type: text/css'); if (in_array('mod_prevnext', $SIDEBAR_MODULES)) $mod_pos = 'sidebar'; else $mod_pos = 'top'; if ($mod_pos == 'sidebar') { echo ' #mod_randomthumb { // can be used for setting the position etc etc '. CFG_MOD_RANDOMTHUMB_EXTRASTYLE .' font-size: '.CFG_MOD_RANDOMTHUMB_FONT_SIZE.'px; font-family: '.CFG_MOD_RANDOMTHUMB_FONT_FAMILY.'; color: #'.CFG_MOD_RANDOMTHUMB_COLOR.'; } #mod_randomthumb a { color: #'.CFG_MOD_RANDOMTHUMB_A_COLOR.'; text-decoration: '.CFG_MOD_RANDOMTHUMB_A_TEXT_DECORATION.'; } #mod_randomthumb a:hover { color: #'.CFG_MOD_RANDOMTHUMB_A_HOVER_COLOR.'; text-decoration: '.CFG_MOD_RANDOMTHUMB_A_HOVER_TEXT_DECORATION.'; } #mod_randomthumb img { width : ' . CFG_MOD_RANDOMTHUMB_IMG_WIDTH.'px; border: ' . CFG_MOD_RANDOMTHUMB_IMG_BORDER_WIDTH .'; }'; } mysql_close(); ?> |
|
From: iamdecal <iam...@us...> - 2005-11-27 18:50:10
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/templates/sidebar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28498/sidebar Log Message: Directory /cvsroot/comoblog/modules/mod_randomthumb/templates/sidebar added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 17:32:52
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8868/templates Log Message: Directory /cvsroot/comoblog/modules/mod_randomthumb/templates added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 17:32:52
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8868/css Log Message: Directory /cvsroot/comoblog/modules/mod_randomthumb/css added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 17:32:51
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8868/img Log Message: Directory /cvsroot/comoblog/modules/mod_randomthumb/img added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 17:32:51
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8868/include Log Message: Directory /cvsroot/comoblog/modules/mod_randomthumb/include added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 17:32:51
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8868/install Log Message: Directory /cvsroot/comoblog/modules/mod_randomthumb/install added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 17:06:09
|
Update of /cvsroot/comoblog/modules/mod_randomthumb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3025/mod_randomthumb Log Message: Directory /cvsroot/comoblog/modules/mod_randomthumb added to the repository |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-25 04:31:51
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9280 Modified Files: CHANGELOG Log Message: 1361701 - Fixed site_url issues and search results after post deletion Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- CHANGELOG 25 Nov 2005 02:36:40 -0000 1.27 +++ CHANGELOG 25 Nov 2005 04:31:43 -0000 1.28 @@ -4,6 +4,7 @@ * FEATURE: Ability to edit comments (1347626) * MODULE: Updated mod_calendar to 1.1 +* MODULE: Updated mod_search to 1.1 * BUG: Module upgrade tries to upgrade half-written modules * BUG: Module install/upgrade can fail without warning (1364384) * BUG: Comments don't handle quotation marks (1364093) |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-25 04:31:29
|
Update of /cvsroot/comoblog/comoblog/modules/mod_search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9196 Modified Files: mod_search.php search_results.php Log Message: 1361701 - Fixed site_url issues and search results after post deletion Index: mod_search.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_search/mod_search.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- mod_search.php 9 Oct 2005 08:28:37 -0000 1.2 +++ mod_search.php 25 Nov 2005 04:31:16 -0000 1.3 @@ -1,7 +1,7 @@ <?php $mod_contents = '<div id="mod_blog_search"><table width="100%" border="0" cellspacing="0" cellpadding="0">'; $mod_contents .= '<tr><td><p>'; -$mod_contents .= '<form action="./modules/mod_search/search_results.php" method="post">'; +$mod_contents .= '<form action="'.CFG_SITE_URL.'/modules/mod_search/search_results.php" method="post">'; $mod_contents .= 'Search: <br>'; $mod_contents .= '<input type="text" name="search_txt"><br>'; $mod_contents .= '<input type="submit" name="search_but" value="search">'; Index: search_results.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_search/search_results.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- search_results.php 5 Oct 2005 00:48:15 -0000 1.1 +++ search_results.php 25 Nov 2005 04:31:16 -0000 1.2 @@ -25,11 +25,13 @@ $tpl = new XTemplate (CFG_BASE_PATH."/modules/mod_search/templates/search_results.tpl.htm", "main"); +$tpl->assign ('SITE_URL', CFG_SITE_URL); +$tpl->parse('main.title'); + $search_string = $_POST['search_txt']; $posts = do_search ($search_string); $page_title = "Search Results for '".$search_string."'"; $tpl->assign ('PAGE_TITLE', $page_title); -$tpl->assign ('SITE_URL', CFG_SITE_URL); if ($posts) { //for ($c = 0; $c < count($posts); $c++) { @@ -89,26 +91,6 @@ } -// modules //////////////////////////////////////////////////////////////////// -// - if (count($SIDEBAR_MODULES) > 0) { - for ($mod_cnt = 0; $mod_cnt < count($SIDEBAR_MODULES); $mod_cnt++) { - include_once (CFG_BASE_PATH.'/modules/'.$SIDEBAR_MODULES[$mod_cnt].'/'.$SIDEBAR_MODULES[$mod_cnt].'.php'); - $tpl->assign('SIDEBAR_MODULE',$mod_contents); - $tpl->parse('main.sidebar_module'); - } - } - if (count($TOP_MODULES) > 0) { - for ($mod_cnt = 0; $mod_cnt < count($TOP_MODULES); $mod_cnt++) { - include_once (CFG_BASE_PATH.'/modules/'.$TOP_MODULES[$mod_cnt].'/'.$TOP_MODULES[$mod_cnt].'.php'); - $tpl->assign('TOP_MODULE',$mod_contents); - $tpl->parse('main.top_bar.top_module'); - } - $tpl->parse('main.top_bar'); - } -// -/////////////////////////////////////////////////////////////////////////////// - $tpl->parse('main'); $tpl->out('main'); |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-25 04:31:28
|
Update of /cvsroot/comoblog/comoblog/modules/mod_search/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9196/include Modified Files: blog_search.inc.php Log Message: 1361701 - Fixed site_url issues and search results after post deletion Index: blog_search.inc.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_search/include/blog_search.inc.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- blog_search.inc.php 5 Oct 2005 01:38:32 -0000 1.2 +++ blog_search.inc.php 25 Nov 2005 04:31:16 -0000 1.3 @@ -6,8 +6,9 @@ $search_string = strtolower($search_string); $posts = array(); - $query = "select distinct post_id from ".CFG_MYSQL_TABPREFIX."blog_search_index - where word like '%".$search_string."%'"; + $query = "select distinct s.post_id from ".CFG_MYSQL_TABPREFIX."blog_search_index s, ".CFG_MYSQL_TABPREFIX."posts p + where s.word like '%".$search_string."%' + and s.post_id = p.post_id"; $res = mysql_query($query); |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-25 04:31:28
|
Update of /cvsroot/comoblog/comoblog/modules/mod_search/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9196/install Modified Files: mod_search.xml Log Message: 1361701 - Fixed site_url issues and search results after post deletion Index: mod_search.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_search/install/mod_search.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- mod_search.xml 13 Nov 2005 12:35:28 -0000 1.2 +++ mod_search.xml 25 Nov 2005 04:31:16 -0000 1.3 @@ -6,7 +6,7 @@ mod_search </name> - <version>1.0</version> + <version>1.1</version> <minimum_supported>1.0</minimum_supported> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-25 04:31:28
|
Update of /cvsroot/comoblog/comoblog/modules/mod_search/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9196/templates Modified Files: search_results.tpl.htm Log Message: 1361701 - Fixed site_url issues and search results after post deletion Index: search_results.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_search/templates/search_results.tpl.htm,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- search_results.tpl.htm 9 Oct 2005 08:42:10 -0000 1.2 +++ search_results.tpl.htm 25 Nov 2005 04:31:17 -0000 1.3 @@ -1,7 +1,7 @@ <!-- BEGIN: main -->{FILE "../../templates/header.tpl.htm"} <div id="header"> - <h1><!-- BEGIN: logo --><a href="{SITE_URL}index.php" title="{TITLE}"><img src="{SITE_URL}img/comoblog/{LOGO_IMG}" border="0" alt="{TITLE}" /></a><!-- END: logo --><!-- BEGIN: title --><a href="{SITE_URL}index.php"> {TITLE} </a><!-- END: title --></h1> + <h1><a href="{SITE_URL}index.php"> {TITLE} </a></h1> </div> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-25 02:36:48
|
Update of /cvsroot/comoblog/comoblog/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24798/css Modified Files: comoblog.css.php Log Message: 1314308 - Display bug with table layout under I.E. Index: comoblog.css.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/css/comoblog.css.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- comoblog.css.php 4 Oct 2005 00:29:13 -0000 1.3 +++ comoblog.css.php 25 Nov 2005 02:36:40 -0000 1.4 @@ -112,7 +112,7 @@ #posts { float: left; - width: '.(CFG_PAGE_WIDTH-CFG_SIDEBAR_WIDTH).'px; + width: '.(CFG_PAGE_WIDTH-CFG_SIDEBAR_WIDTH-5).'px; } |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-25 02:36:48
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24798/docs Modified Files: CHANGELOG Log Message: 1314308 - Display bug with table layout under I.E. Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- CHANGELOG 25 Nov 2005 02:07:51 -0000 1.26 +++ CHANGELOG 25 Nov 2005 02:36:40 -0000 1.27 @@ -7,6 +7,7 @@ * BUG: Module upgrade tries to upgrade half-written modules * BUG: Module install/upgrade can fail without warning (1364384) * BUG: Comments don't handle quotation marks (1364093) +* BUG: I.E. display bug with table layout (1314308) CoMoblog 1.0, 2005-11-19 |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-25 02:08:06
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20418/docs Modified Files: CHANGELOG Log Message: 1364093 - Comments don't handle quotation marks Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- CHANGELOG 24 Nov 2005 05:45:39 -0000 1.25 +++ CHANGELOG 25 Nov 2005 02:07:51 -0000 1.26 @@ -6,6 +6,7 @@ * MODULE: Updated mod_calendar to 1.1 * BUG: Module upgrade tries to upgrade half-written modules * BUG: Module install/upgrade can fail without warning (1364384) +* BUG: Comments don't handle quotation marks (1364093) CoMoblog 1.0, 2005-11-19 |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-25 02:07:20
|
Update of /cvsroot/comoblog/comoblog/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20334/include Modified Files: libraries.inc.php Log Message: 1364093 - Comments don't handle quotation marks Index: libraries.inc.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/include/libraries.inc.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- libraries.inc.php 9 Oct 2005 14:11:35 -0000 1.3 +++ libraries.inc.php 25 Nov 2005 02:07:11 -0000 1.4 @@ -310,9 +310,9 @@ insert into ".CFG_MYSQL_TABPREFIX."comments (comment_author,comment_author_email,comment_text,comment_added,post_id) values ( - '".addslashes($comment['comment_author'])."', - '".addslashes($comment['comment_author_email'])."', - '".addslashes($comment['comment_text'])."', + '".$comment['comment_author']."', + '".$comment['comment_author_email']."', + '".$comment['comment_text']."', '".time()."', '".$comment['post_id']."' ) |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-24 06:41:17
|
Update of /cvsroot/comoblog/modules/mod_purge/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6101/mod_purge/install Added Files: mod_purge.xml Log Message: 1352436 - Initial release - mod_purge --- NEW FILE: mod_purge.xml --- <?xml version="1.0" standalone="no"?> <!DOCTYPE module SYSTEM "http://comoblog.sourceforge.net/DTD/comoblog_mod_install.dtd"> <module> <name>mod_purge</name> <version>1.0</version> <minimum_supported>1.0</minimum_supported> <certified> 1.0 </certified> <description>This module will silently purge entries from your blog older than a certain age</description> <allowed_pos>sidebar</allowed_pos> <param name="CFG_PURGE_INTERVAL" value="24" description="Interval (hours) between checking for purgable entries" editable="Y" accept_null="N" encrypt="N" type="text" /> <param name="CFG_PURGE_AGE" value="14" description="Age (days) that you want to keep posts for" editable="Y" accept_null="N" encrypt="N" type="text" /> <param name="CFG_LAST_PURGE" value="0" description="Timestamp of last purge execution" editable="N" accept_null="N" encrypt="N" type="text" /> </module> |