comoblog-commit Mailing List for CoMoblog Mobile Blog Application (Page 21)
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-28 10:52:40
|
Update of /cvsroot/comoblog/modules/mod_wordswapper/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15650/include Log Message: Directory /cvsroot/comoblog/modules/mod_wordswapper/include added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:52:29
|
Update of /cvsroot/comoblog/modules/mod_wordswapper In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15619/mod_wordswapper Log Message: Directory /cvsroot/comoblog/modules/mod_wordswapper added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:48:45
|
Update of /cvsroot/comoblog/modules/mod_comment_notify/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14767/mod_comment_notify/install Modified Files: mod_comment_notify.xml Log Message: typo fairy got into the xml, removed the extra tag Index: mod_comment_notify.xml =================================================================== RCS file: /cvsroot/comoblog/modules/mod_comment_notify/install/mod_comment_notify.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_comment_notify.xml 28 Nov 2005 10:41:39 -0000 1.1 +++ mod_comment_notify.xml 28 Nov 2005 10:48:32 -0000 1.2 @@ -1,8 +1,6 @@ <?xml version="1.0" standalone="no"?> <!DOCTYPE module SYSTEM "http://comoblog.sourceforge.net/DTD/comoblog_mod_install.dtd"> <module> -<module> - <name>mod_comment_notify</name> <description>Sends an email (using smtp) when a comment is added</description> <allowed_pos>not_visible</allowed_pos> |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:41:55
|
Update of /cvsroot/comoblog/modules/mod_comment_notify/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13672/mod_comment_notify/install Added Files: mod_comment_notify.xml Log Message: initial add mod_comment_notify, this mod will email a notification of new comments to the site owner, ive not used it in anger since i first wrote it, as i replace it with an rss feed of comments, how ever i believe it all works okay - on linux at least., it should probably be tested some more, however i noticed that there was a feature request for this, so im adding it as a base for some one to look at, test and file any bug reports. --- NEW FILE: mod_comment_notify.xml --- <?xml version="1.0" standalone="no"?> <!DOCTYPE module SYSTEM "http://comoblog.sourceforge.net/DTD/comoblog_mod_install.dtd"> <module> <module> <name>mod_comment_notify</name> <description>Sends an email (using smtp) when a comment is added</description> <allowed_pos>not_visible</allowed_pos> <filter_posts>N</filter_posts> <filter_comments>Y</filter_comments> <version>1.0</version> <minimum_supported>1.0</minimum_supported> <certified>1.0</certified> <author>iamdecal iam...@gm... http://www.iamdecal.co.uk</author> <date>2004-04-29</date> <param name="CFG_COMMENT_NOTIFY_FROM" description="The address notifications will be sent from" type="text" editable="Y" accept_null="N" value="" /> <param name="CFG_COMMENT_NOTIFY_TO" description="The addresses notifications will be sent to" type="text" editable="Y" accept_null="N" value="" /> <param name="CFG_WHERE_IS_SENDMAIL" description="location of send mail -" type="text" editable="Y" accept_null="N" value="/usr/sbin/sendmail" /> </module> |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:41:55
|
Update of /cvsroot/comoblog/modules/mod_comment_notify In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13672/mod_comment_notify Added Files: mod_comment_notify_comment_filter.php Log Message: initial add mod_comment_notify, this mod will email a notification of new comments to the site owner, ive not used it in anger since i first wrote it, as i replace it with an rss feed of comments, how ever i believe it all works okay - on linux at least., it should probably be tested some more, however i noticed that there was a feature request for this, so im adding it as a base for some one to look at, test and file any bug reports. --- NEW FILE: mod_comment_notify_comment_filter.php --- <?php include('include/pear/Mail.php'); require_once(dirname(__FILE__).'/include/mod_comment_notify.inc.php'); $subject = mod_comment_notify($comment['post_id']); $body = "Message details " . "\n\n"; $body .= "Post ID:" . $comment['post_id'] ."\n"; $body .= "Link: " .CFG_SITE_URL. "post.php?/". $comment['post_id'] ."\n"; $body .= "From:" . $comment['comment_author'] . " - " . $comment['comment_author_email'] ."\n"; $body .= "Comment:\n\n" . $comment['comment_text'] ."\n"; $recipients = CFG_COMMENT_NOTIFY_TO; $headers['From'] = CFG_COMMENT_NOTIFY_FROM; $headers['To'] = CFG_COMMENT_NOTIFY_TO; $headers['Subject'] = 'Blog Comment Added To Post - ' .$subject; $params['sendmail_path'] = CFG_WHERE_IS_SENDMAIL; // Create the mail object using the Mail::factory method $mail_object =& Mail::factory('sendmail', $params);$mail_object->send($recipients, $headers, $body); ?> |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:41:55
|
Update of /cvsroot/comoblog/modules/mod_comment_notify/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13672/mod_comment_notify/include Added Files: mod_comment_notify.inc.php Log Message: initial add mod_comment_notify, this mod will email a notification of new comments to the site owner, ive not used it in anger since i first wrote it, as i replace it with an rss feed of comments, how ever i believe it all works okay - on linux at least., it should probably be tested some more, however i noticed that there was a feature request for this, so im adding it as a base for some one to look at, test and file any bug reports. --- NEW FILE: mod_comment_notify.inc.php --- <?php function mod_comment_notify ($item_id) { $query = "select post_mail_subject from ".CFG_MYSQL_TABPREFIX."posts where post_id = '".$item_id ."'"; $item ="Unknown Post ". $query; $result = mysql_query($query); if ($result) { $item = mysql_result($result, 0); } return ($item); } ?> |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:41:55
|
Update of /cvsroot/comoblog/modules/mod_comment_notify/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13672/mod_comment_notify/img Added Files: mod_comment_notify.gif mod_comment_notify_big.gif Log Message: initial add mod_comment_notify, this mod will email a notification of new comments to the site owner, ive not used it in anger since i first wrote it, as i replace it with an rss feed of comments, how ever i believe it all works okay - on linux at least., it should probably be tested some more, however i noticed that there was a feature request for this, so im adding it as a base for some one to look at, test and file any bug reports. --- NEW FILE: mod_comment_notify.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mod_comment_notify_big.gif --- (This appears to be a binary file; contents omitted.) |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:34:33
|
Update of /cvsroot/comoblog/modules/mod_comment_notify/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12243/include Log Message: Directory /cvsroot/comoblog/modules/mod_comment_notify/include added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:34:33
|
Update of /cvsroot/comoblog/modules/mod_comment_notify/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12243/img Log Message: Directory /cvsroot/comoblog/modules/mod_comment_notify/img added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:34:33
|
Update of /cvsroot/comoblog/modules/mod_comment_notify/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12243/install Log Message: Directory /cvsroot/comoblog/modules/mod_comment_notify/install added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:34:31
|
Update of /cvsroot/comoblog/modules/mod_comment_notify In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12206/mod_comment_notify Log Message: Directory /cvsroot/comoblog/modules/mod_comment_notify added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:32:06
|
Update of /cvsroot/comoblog/modules/mod_prevnext/templates/sidebar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11777/mod_prevnext/templates/sidebar Added Files: mod_prevnext.tpl.htm Log Message: initial add mod_postbytitle, adds next and previous links to the individual post pages. --- NEW FILE: mod_prevnext.tpl.htm --- <!-- BEGIN: main --> <div id="mod_prevnext"> <a href="{CFG_MOD_PREVNEXT_PREVLINK}">{CFG_MOD_PREVNEXT_PREVTEXT}</a> {CFG_MOD_PREVNEXT_SEPERATOR} <a href="{CFG_MOD_PREVNEXT_NEXTLINK}">{CFG_MOD_PREVNEXT_NEXTTEXT}</a> </div> <!-- END: main --> |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:32:06
|
Update of /cvsroot/comoblog/modules/mod_prevnext/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11777/mod_prevnext/include Added Files: mod_prevnext.inc.php Log Message: initial add mod_postbytitle, adds next and previous links to the individual post pages. --- NEW FILE: mod_prevnext.inc.php --- <?php function mod_prevnext_post_next ($post_id) { if (CFG_USE_PATH_INFO == 'no'){ $iisbug = '?'; }else{ $iisbug = ''; } $query = " select p.post_id as next_post_id from ".CFG_MYSQL_TABPREFIX."posts p where p.post_id > '".$post_id."' order by p.post_id limit 1; "; $res = mysql_query($query); if (!$res || !mysql_num_rows($res)){ return (false); } $post = mysql_fetch_array($res); $returnval = CFG_SITE_URL.'post.php'.$iisbug.'/'.$post['next_post_id']; # echo $returnval; return ($returnval); } function mod_prevnext_post_prev($post_id) { if (CFG_USE_PATH_INFO == 'no'){ $iisbug = '?'; }else{ $iisbug = ''; } $query = " select p.post_id as prev_post_id from ".CFG_MYSQL_TABPREFIX."posts p where p.post_id < '".$post_id."' order by p.post_id desc limit 1; "; $res = mysql_query($query); if (!$res || !mysql_num_rows($res)){ return (false); } $post = mysql_fetch_array($res); $returnval = CFG_SITE_URL.'post.php'.$iisbug.'/'.$post['prev_post_id']; # echo $returnval; return ($returnval); } ?> |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:32:06
|
Update of /cvsroot/comoblog/modules/mod_prevnext/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11777/mod_prevnext/install Added Files: mod_prevnext.xml Log Message: initial add mod_postbytitle, adds next and previous links to the individual post pages. --- NEW FILE: mod_prevnext.xml --- <?xml version="1.0" standalone="no"?> <!DOCTYPE module SYSTEM "http://comoblog.sourceforge.net/DTD/comoblog_mod_install.dtd"> <module> <name> mod_prevnext </name> <description> displays a previous and next link for each post (if there is one) </description> <allowed_pos>sidebar</allowed_pos> <allowed_pos>top</allowed_pos> <version>1.0</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_PREVNEXT_NEXTTEXT" description="The text for when there is a next post " type="text" accept_null="Y" encrypt="N" restricted_values="" editable="Y" value="Next Post" /> <param name="CFG_MOD_PREVNEXT_NONEXTTEXT" description="The text for when there is NOT a next post " type="text" accept_null="Y" encrypt="N" restricted_values="" editable="Y" value="" /> <param name="CFG_MOD_PREVNEXT_PREVTEXT" description="The text for when there is a previous post " type="text" accept_null="Y" encrypt="N" restricted_values="" editable="Y" value="Previous Posts" /> <param name="CFG_MOD_PREVNEXT_NOPREVTEXT" description="The text for when there is NOT a previous post" type="text" accept_null="Y" encrypt="N" restricted_values="" editable="Y" value="" /> <param name="CFG_MOD_PREVNEXT_SEPERATOR" description="The code to divide the links for example a space or / " type="text" accept_null="Y" encrypt="N" restricted_values="" editable="Y" value=" / " /> <param name="CFG_MOD_PREVNEXT_COLOR" description="" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_PREVNEXT_A_COLOR" description="Link Color" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_PREVNEXT_A_HOVER_COLOR" description="Link Hover Color" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_PREVNEXT_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_PREVNEXT_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_PREVNEXT_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_PREVNEXT_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_PREVNEXT_EXTRASTYLE" description="Im not really happy with the position of this module,so you could put something like position:relative;left:120;top50; to put it just where you want it " type="text" editable="Y" accept_null="Y" value="" restrict_values="" /> </module> |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:32:05
|
Update of /cvsroot/comoblog/modules/mod_prevnext/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11777/mod_prevnext/css Added Files: mod_prevnext.css.php Log Message: initial add mod_postbytitle, adds next and previous links to the individual post pages. --- NEW FILE: mod_prevnext.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_prevnext { font-size: '.CFG_MOD_PREVNEXT_FONT_SIZE.'px; font-family: '.CFG_MOD_PREVNEXT_FONT_FAMILY.'; color: #'.CFG_MOD_PREVNEXT_COLOR.'; // can be used for setting the position etc '. CFG_MOD_PREVNEXT_EXTRASTYLE .' } #mod_prevnext a { color: #'.CFG_MOD_PREVNEXT_A_COLOR.'; text-decoration: '.CFG_MOD_PREVNEXT_A_TEXT_DECORATION.'; } #mod_prevnext a:hover { color: #'.CFG_MOD_PREVNEXT_A_HOVER_COLOR.'; text-decoration: '.CFG_MOD_PREVNEXT_A_HOVER_TEXT_DECORATION.'; } '; } mysql_close(); ?> |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:32:05
|
Update of /cvsroot/comoblog/modules/mod_prevnext/templates/top In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11777/mod_prevnext/templates/top Added Files: mod_prevnext.tpl.htm Log Message: initial add mod_postbytitle, adds next and previous links to the individual post pages. --- NEW FILE: mod_prevnext.tpl.htm --- <!-- BEGIN: main --> <div id="mod_prevnext"> <a href="{CFG_MOD_PREVNEXT_PREVLINK}">{CFG_MOD_PREVNEXT_PREVTEXT}</a> {CFG_MOD_PREVNEXT_SEPERATOR} <a href="{CFG_MOD_PREVNEXT_NEXTLINK}">{CFG_MOD_PREVNEXT_NEXTTEXT}</a> </div> <!-- END: main --> |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:32:04
|
Update of /cvsroot/comoblog/modules/mod_prevnext In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11777/mod_prevnext Added Files: index.php mod_prevnext.php mod_prevnext.text Log Message: initial add mod_postbytitle, adds next and previous links to the individual post pages. --- NEW FILE: mod_prevnext.php --- <?php if (in_array('mod_prevnext', $SIDEBAR_MODULES)) { $mod_pos = 'sidebar'; }else{ $mod_pos = 'top'; } require_once (CFG_BASE_PATH.'/modules/mod_prevnext/include/mod_prevnext.inc.php'); $post_id = ''; if (isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] != '/' && $_SERVER['SCRIPT_FILENAME'] == CFG_BASE_PATH . 'post.php'){ $post_id = substr($_SERVER['PATH_INFO'],1,strlen($_SERVER['PATH_INFO'])-1); } $prevnext_prevlink = mod_prevnext_post_prev($post_id); $prevnext_nextlink = mod_prevnext_post_next($post_id); #echo $prevnext_prevlink; #echo $prevnext_nextlink; $mod_prevnext_tpl = new XTemplate (CFG_BASE_PATH.'/modules/mod_prevnext/templates/'.$mod_pos.'/mod_prevnext.tpl.htm'); if($post_id) { if ($prevnext_nextlink) { #echo "next link "; $mod_prevnext_tpl->assign('CFG_MOD_PREVNEXT_NEXTTEXT', CFG_MOD_PREVNEXT_NEXTTEXT ); $mod_prevnext_tpl->assign('CFG_MOD_PREVNEXT_NEXTLINK', $prevnext_nextlink ); } else { # echo "no next link "; $mod_prevnext_tpl->assign('CFG_MOD_PREVNEXT_NEXTTEXT', CFG_MOD_PREVNEXT_NONEXTTEXT ); $mod_prevnext_tpl->assign('CFG_MOD_PREVNEXT_NEXTLINK', '#' ); } if ($prevnext_prevlink) { # echo " prev link "; $mod_prevnext_tpl->assign('CFG_MOD_PREVNEXT_PREVTEXT', CFG_MOD_PREVNEXT_PREVTEXT ); $mod_prevnext_tpl->assign('CFG_MOD_PREVNEXT_PREVLINK', $prevnext_prevlink ); } else { # echo " no prev link "; $mod_prevnext_tpl->assign('CFG_MOD_PREVNEXT_PREVTEXT', CFG_MOD_PREVNEXT_NOPREVTEXT ); $mod_prevnext_tpl->assign('CFG_MOD_PREVNEXT_PREVLINK', '#' ); } $mod_prevnext_tpl->parse('main'); $mod_contents = $mod_prevnext_tpl->text("main"); }else { $mod_contents = ""; } ?> --- NEW FILE: index.php --- --- NEW FILE: mod_prevnext.text --- mod_prevnext adds a previous and next link to the page when you're viewing a specific post (i.e. ONLY in post.php) because I wasnt very happy with where this ended up on the page, either in the side bar or in the top position, you can add any other style info via the admin area so that you can use some css positioning. NOTE that this module should be made obsolite in the next version of comoblog, I believe we'd be better served by moving the code into the main libraries. |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:32:04
|
Update of /cvsroot/comoblog/modules/mod_prevnext/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11777/mod_prevnext/img Added Files: mod_prevnext.gif mod_prevnext_big.gif Log Message: initial add mod_postbytitle, adds next and previous links to the individual post pages. --- NEW FILE: mod_prevnext_big.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mod_prevnext.gif --- (This appears to be a binary file; contents omitted.) |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:18:00
|
Update of /cvsroot/comoblog/modules/mod_prevnext/templates/top In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9312/top Log Message: Directory /cvsroot/comoblog/modules/mod_prevnext/templates/top added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:17:59
|
Update of /cvsroot/comoblog/modules/mod_prevnext/templates/sidebar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9312/sidebar Log Message: Directory /cvsroot/comoblog/modules/mod_prevnext/templates/sidebar added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:17:21
|
Update of /cvsroot/comoblog/modules/mod_prevnext/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9160/img Log Message: Directory /cvsroot/comoblog/modules/mod_prevnext/img added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:17:21
|
Update of /cvsroot/comoblog/modules/mod_prevnext/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9160/css Log Message: Directory /cvsroot/comoblog/modules/mod_prevnext/css added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:17:21
|
Update of /cvsroot/comoblog/modules/mod_prevnext/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9160/templates Log Message: Directory /cvsroot/comoblog/modules/mod_prevnext/templates added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:17:21
|
Update of /cvsroot/comoblog/modules/mod_prevnext/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9160/install Log Message: Directory /cvsroot/comoblog/modules/mod_prevnext/install added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:17:20
|
Update of /cvsroot/comoblog/modules/mod_prevnext/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9160/include Log Message: Directory /cvsroot/comoblog/modules/mod_prevnext/include added to the repository |