comoblog-commit Mailing List for CoMoblog Mobile Blog Application (Page 20)
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 11:10:13
|
Update of /cvsroot/comoblog/modules/mod_postbytopic/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19169/include Log Message: Directory /cvsroot/comoblog/modules/mod_postbytopic/include added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:10:12
|
Update of /cvsroot/comoblog/modules/mod_postbytopic/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19169/img Log Message: Directory /cvsroot/comoblog/modules/mod_postbytopic/img added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:09:59
|
Update of /cvsroot/comoblog/modules/mod_postbytopic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19124/mod_postbytopic Log Message: Directory /cvsroot/comoblog/modules/mod_postbytopic added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:05:51
|
Update of /cvsroot/comoblog/modules/mod_rss2/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18402/mod_rss2/install Added Files: mod_rss2.xml Log Message: initial add NOT FOR RELEASE - WORK IN PROGRESS mod_rss2, this is an improved RSS feed mod that also provides a feed for comments as they are posted, it also adds a list of the latest comments to the side bar, to do the latest comments list should be seperate, however if we do that as another module there will be code replicated... i think the lastest comments code should be moved to the core code base, so that it van be used to generate a list for both the lastest comments module and the rss2 module. RSS templates need valdiating - is it worth adding support for ATOM etc? also links to blog lines, newgator my yahoo and the rest. --- NEW FILE: mod_rss2.xml --- <?xml version="1.0" standalone="no"?> <!DOCTYPE module SYSTEM "http://comoblog.sourceforge.net/DTD/comoblog_mod_install.dtd"> <module> <name>mod_rss2</name> <description>Syndicate your blog with RSS feeds now with added comments feed and list of latest comments</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> <param name="CFG_RSS2_1_IMG" description="Image for RSS 1.0 feed button" type="image" editable="Y" accept_null="Y" /> <param name="CFG_RSS2_2_IMG" description="Image for RSS 2.0 feed button" type="image" editable="Y" accept_null="Y" /> <param name="CFG_RSS2_1" description="Provide RSS 1.0 feed" type="select" restrict_values="yes|no" value="yes" accept_null="N" editable="Y" /> <param name="CFG_RSS2_2" description="Provide RSS 2.0 feed" type="select" restrict_values="yes|no" value="yes" accept_null="N" editable="Y" /> <param name="CFG_RSS2_COPYRIGHT" description="Copyright note for RSS feed" type="text" value="" accept_null="Y" editable="Y" /> </module> |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:05:51
|
Update of /cvsroot/comoblog/modules/mod_rss2/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18402/mod_rss2/css Added Files: mod_rss2.css.php Log Message: initial add NOT FOR RELEASE - WORK IN PROGRESS mod_rss2, this is an improved RSS feed mod that also provides a feed for comments as they are posted, it also adds a list of the latest comments to the side bar, to do the latest comments list should be seperate, however if we do that as another module there will be code replicated... i think the lastest comments code should be moved to the core code base, so that it van be used to generate a list for both the lastest comments module and the rss2 module. RSS templates need valdiating - is it worth adding support for ATOM etc? also links to blog lines, newgator my yahoo and the rest. --- NEW FILE: mod_rss2.css.php --- <?php require_once (dirname(__FILE__).'/../../../include/config.inc.php'); Header ('Content-type: text/css'); if (in_array('mod_rss2', $SIDEBAR_MODULES)) $mod_pos = 'sidebar'; else $mod_pos = 'top'; if ($mod_pos == 'sidebar') { echo ' #mod_rss2 { font-size: '.CFG_MOR_RSS2_FONT_SIZE.'px; font-family: '.CFG_MOR_RSS2_FONT_FAMILY.'; color: #'.CFG_MOR_RSS2_COLOR.'; } #mod_rss2 ul { margin: 0; padding: 0; } #mod_rss2 li { list-style-type: none; padding-bottom : 5px; } #mod_rss2 a { color: #'.CFG_MOR_RSS2_A_COLOR.'; text-decoration: '.CFG_MOR_RSS2_A_TEXT_DECORATION.'; } #mod_rss2 a:hover { color: #'.CFG_MOR_RSS2_A_HOVER_COLOR.'; text-decoration: '.CFG_MOR_RSS2_A_HOVER_TEXT_DECORATION.'; } '; } mysql_close(); ?> |
Update of /cvsroot/comoblog/modules/mod_rss2/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18402/mod_rss2/img Added Files: css.gif getfirefox_88x31.png mod_rss2.gif mod_rss2_big.gif rss2.gif rss_1.0.gif rss_2.0.gif rsscomments.gif xhtml10.gif Log Message: initial add NOT FOR RELEASE - WORK IN PROGRESS mod_rss2, this is an improved RSS feed mod that also provides a feed for comments as they are posted, it also adds a list of the latest comments to the side bar, to do the latest comments list should be seperate, however if we do that as another module there will be code replicated... i think the lastest comments code should be moved to the core code base, so that it van be used to generate a list for both the lastest comments module and the rss2 module. RSS templates need valdiating - is it worth adding support for ATOM etc? also links to blog lines, newgator my yahoo and the rest. --- NEW FILE: xhtml10.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: css.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rss_1.0.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mod_rss2_big.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rss_2.0.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rsscomments.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: getfirefox_88x31.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rss2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mod_rss2.gif --- (This appears to be a binary file; contents omitted.) |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:05:51
|
Update of /cvsroot/comoblog/modules/mod_rss2/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18402/mod_rss2/include Added Files: mod_rss2.inc.php Log Message: initial add NOT FOR RELEASE - WORK IN PROGRESS mod_rss2, this is an improved RSS feed mod that also provides a feed for comments as they are posted, it also adds a list of the latest comments to the side bar, to do the latest comments list should be seperate, however if we do that as another module there will be code replicated... i think the lastest comments code should be moved to the core code base, so that it van be used to generate a list for both the lastest comments module and the rss2 module. RSS templates need valdiating - is it worth adding support for ATOM etc? also links to blog lines, newgator my yahoo and the rest. --- NEW FILE: mod_rss2.inc.php --- <?php function comments_last ($howmany) { if (CFG_USE_PATH_INFO == 'no') $iisbug = '?'; else $iisbug = ''; $query = " select c.*, p.post_mail_subject, c.comment_text as post_mail_body,c.comment_added as post_mail_date, c.comment_author_email as post_mail_from from easymoblog_posts p , easymoblog_comments c where p.post_id =c.post_id order by comment_id desc limit 0,".$howmany.";"; $res = mysql_query($query); if (!$res || !mysql_num_rows($res)) return (false); $posts = array(); while ($row = mysql_fetch_array($res)) { $row['post_permalink'] = CFG_SITE_URL.'post.php'.$iisbug.'/'.$row['post_id']; #$row['post_permalink'] = CFG_SITE_URL.'post/'.$row['post_id']; $row['post_trackback_ping_url'] = CFG_SITE_URL.'trackback.php'.$iisbug.'/'.$row['post_id']; $row['post_trackback_list'] = CFG_SITE_URL.'trackback.php'.$iisbug.'/'.$row['post_id'].'?__mode=list'; $row['post_trackback_list_rss'] = CFG_SITE_URL.'trackback.php'.$iisbug.'/'.$row['post_id'].'?__mode=rss'; $row['post_mail_from'] = "hidden"; $posts[] = $row; } return ($posts); } ?> |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:05:51
|
Update of /cvsroot/comoblog/modules/mod_rss2/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18402/mod_rss2/templates Added Files: rss2.tpl.html Log Message: initial add NOT FOR RELEASE - WORK IN PROGRESS mod_rss2, this is an improved RSS feed mod that also provides a feed for comments as they are posted, it also adds a list of the latest comments to the side bar, to do the latest comments list should be seperate, however if we do that as another module there will be code replicated... i think the lastest comments code should be moved to the core code base, so that it van be used to generate a list for both the lastest comments module and the rss2 module. RSS templates need valdiating - is it worth adding support for ATOM etc? also links to blog lines, newgator my yahoo and the rest. --- NEW FILE: rss2.tpl.html --- <!-- BEGIN: main --> <div id="mod_rss2"> <div class="mod_header_text">Posts Feed</div><br/> <A href="modules/mod_rss2/rss2.php?/1.0" target="_blank" title="rss 1.0 feed"> <IMG src="modules/mod_rss2/img/rss_1.0.gif" border="0" alt="rss 1.0 feed"/> </A> <A href="modules/mod_rss2/rss2.php?/2.0" target="_blank" title="rss 2.0 feed"> <IMG src="modules/mod_rss2/img/rss_2.0.gif" border="0" alt="rss 2.0 feed"/> </A> <div class="mod_header_text">Latest Comments</div> <ul> <!-- BEGIN: rss --> <li><a href="{RSS.post_permalink}" title="{RSS.post_mail_date} - {RSS.post_mail_subject} - {RSS.post_mail_from}">on : {RSS.post_mail_subject}</a></li> <!-- END: rss --> </ul> <div class="mod_header_text">Comments Feed</div> <A href="modules/mod_rss2/rss2.php?/c1.0" target="_blank" title="rss 1.0 feed for comments"><IMG src="modules/mod_rss2/img/rss_1.0.gif" border="0" alt="rss 1.0 feed for comments"/></A> <A href="modules/mod_rss2/rss2.php?/c2.0" target="_blank" title="rss 2.0 feed for comments"><IMG src="modules/mod_rss2/img/rss_2.0.gif" border="0" alt="rss 2.0 feed for comments"/></A> </div> <!-- END: main --> |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:05:51
|
Update of /cvsroot/comoblog/modules/mod_rss2/templates/1.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18402/mod_rss2/templates/1.0 Added Files: rss2.tpl.xml Log Message: initial add NOT FOR RELEASE - WORK IN PROGRESS mod_rss2, this is an improved RSS feed mod that also provides a feed for comments as they are posted, it also adds a list of the latest comments to the side bar, to do the latest comments list should be seperate, however if we do that as another module there will be code replicated... i think the lastest comments code should be moved to the core code base, so that it van be used to generate a list for both the lastest comments module and the rss2 module. RSS templates need valdiating - is it worth adding support for ATOM etc? also links to blog lines, newgator my yahoo and the rest. --- NEW FILE: rss2.tpl.xml --- <!-- BEGIN: main --><?xml version="1.0" encoding="iso-8859-1"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/"> <channel rdf:about="http://www.xml.com/xml/news.rss"> <title>{BLOG.title}</title> <link>{BLOG.link}</link> <description>{BLOG.description}</description> <image rdf:resource="{BLOG.logo}" /> <items> <rdf:Seq> <!-- BEGIN: item --> <rdf:li resource="{POST.post_permalink}" /> <!-- END: item --> </rdf:Seq> </items> </channel> <image rdf:about="{BLOG.logo}"> <title>{BLOG.description}</title> <link>{BLOG.link}</link> <url>{BLOG.logo}</url> </image> <!-- BEGIN: post --> <item rdf:about="{POST.post_permalink}"> <title>{POST.post_mail_subject}</title> <link>{POST.post_permalink}</link> <description>{POST.post_mail_body} </description> </item> <!-- END: post --> </rdf:RDF> <!-- END: main --> |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:05:51
|
Update of /cvsroot/comoblog/modules/mod_rss2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18402/mod_rss2 Added Files: index.php mod_rss2.php rss2.php Log Message: initial add NOT FOR RELEASE - WORK IN PROGRESS mod_rss2, this is an improved RSS feed mod that also provides a feed for comments as they are posted, it also adds a list of the latest comments to the side bar, to do the latest comments list should be seperate, however if we do that as another module there will be code replicated... i think the lastest comments code should be moved to the core code base, so that it van be used to generate a list for both the lastest comments module and the rss2 module. RSS templates need valdiating - is it worth adding support for ATOM etc? also links to blog lines, newgator my yahoo and the rest. --- NEW FILE: index.php --- --- NEW FILE: rss2.php --- <?php require ('../../include/config.inc.php'); require_once (CFG_BASE_PATH.'/modules/mod_rss2/include/mod_rss2.inc.php'); // RSS VERSION ////////////////////////////////////////////////////// // $rss_version = ''; if (isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] != '/') $rss_version = substr($_SERVER['PATH_INFO'],1,strlen($_SERVER['PATH_INFO'])-1); // ///////////////////////////////////////////////////////////////////// $blog['title'] = htmlspecialchars(strip_tags(CFG_TITLE)); $blog['link'] = CFG_SITE_URL; $blog['description'] = htmlspecialchars(strip_tags(CFG_INTRO_TEXT)); $blog['language'] = CFG_LANG; $blog['generator'] = 'EasyMoblog '.CFG_VERSION; $blog['logo'] = CFG_SITE_URL.'img/easymoblog/'.CFG_LOGO_IMG; $blog['copyright'] = htmlspecialchars(strip_tags(CFG_RSS2_COPYRIGHT)); switch ($rss_version) { case '1.0': break; case '2.0': break; case 'c1.0': break; case 'c2.0': break; default: die('You must specify a valid rss version'); break; } if (($rss_version =='1.0') or ($rss_version =='2.0')) { $posts = posts_last(CFG_HOWMANY_ITEMS); } else { $posts = comments_last(CFG_HOWMANY_ITEMS); } $tpl = new XTemplate('templates/'.$rss_version.'/rss2.tpl.xml'); $tpl->assign('VERSION', CFG_VERSION); $tpl->assign('BLOG', $blog); if ($posts) { for ($c = 0; $c < count($posts); $c++) { $posts[$c]['post_mail_subject'] = htmlspecialchars(strip_tags($posts[$c]['post_mail_subject'])); $posts[$c]['post_mail_body'] = htmlspecialchars(strip_tags($posts[$c]['post_mail_body'])); #$posts[$c]['post_mail_from'] = htmlspecialchars(strip_tags($posts[$c]['post_mail_from'])); $posts[$c]['post_mail_from'] = "iamdecal"; $post['post_category'] = ''; $tpl->assign('POST', $posts[$c]); if ($rss_version == '1.0') $tpl->parse('main.item'); if ($posts[$c]['post_images'] > 0) { $query = " select img_thumb, concat(img_id,'.',img_extension) as img_name, concat(img_id,'_thumb.',img_extension) as img_thumb_name, img_width, img_height from ".CFG_MYSQL_TABPREFIX."images where post_id = '".$posts[$c]['post_id']."' and img_display = 'attach' "; $res = mysql_query($query); while ($row = mysql_fetch_assoc($res)) { if ($row['img_thumb'] == 'Y') { $tpl->assign('IMAGE', $row); $tpl->parse('main.post.thumb_img'); } else { $tpl->assign('IMAGE', $row); $tpl->parse('main.post.img'); } } } $tpl->parse('main.post'); } } Header ('Content-type: text/xml'); $tpl->parse('main'); $tpl->out('main'); ?> --- NEW FILE: mod_rss2.php --- <?php function comments_last2 ($howmany) { if (CFG_USE_PATH_INFO == 'no') $iisbug = '?'; else $iisbug = ''; $query = "select p.post_mail_subject,p.post_id,c.comment_added as post_mail_date, c.comment_author_email as post_mail_from from easymoblog_posts p , easymoblog_comments c where p.post_id =c.post_id order by comment_id desc limit 0,".$howmany.";"; $res = mysql_query($query); if (!$res || !mysql_num_rows($res)) return (false); $rss = array(); while ($row = mysql_fetch_array($res)) { $row['post_permalink'] = CFG_SITE_URL.'post.php'.$iisbug.'/'.$row['post_id']; #$row['post_permalink'] = CFG_SITE_URL.'post/'.$row['post_id']; $rss[] = $row; } return ($rss); } $mod_contents = ''; $rss = comments_last2(10); $rss_tpl = new XTemplate (CFG_BASE_PATH.'/modules/mod_rss2/templates/rss2.tpl.html'); if ($rss) { for ($c = 0; $c < count($rss); $c++) { $rss[$c]['post_mail_subject'] = htmlspecialchars(strip_tags($rss[$c]['post_mail_subject'])); $rss[$c]['post_mail_from'] = htmlspecialchars(strip_tags($rss[$c]['post_mail_from'])); $rss_tpl->assign('RSS', $rss[$c]); $rss_tpl->parse('main.rss'); } $mod_contents .= $rss_tpl->parse('main'); $mod_contents .= $rss_tpl->text("main"); } else { $mod_contents =""; } ?> |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:05:50
|
Update of /cvsroot/comoblog/modules/mod_rss2/templates/c1.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18402/mod_rss2/templates/c1.0 Added Files: rss2.tpl.xml Log Message: initial add NOT FOR RELEASE - WORK IN PROGRESS mod_rss2, this is an improved RSS feed mod that also provides a feed for comments as they are posted, it also adds a list of the latest comments to the side bar, to do the latest comments list should be seperate, however if we do that as another module there will be code replicated... i think the lastest comments code should be moved to the core code base, so that it van be used to generate a list for both the lastest comments module and the rss2 module. RSS templates need valdiating - is it worth adding support for ATOM etc? also links to blog lines, newgator my yahoo and the rest. --- NEW FILE: rss2.tpl.xml --- <!-- BEGIN: main --><?xml version="1.0" encoding="iso-8859-1"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/"> <channel rdf:about="http://www.xml.com/xml/news.rss"> <title>{BLOG.title}</title> <link>{BLOG.link}</link> <description>{BLOG.description}</description> <image rdf:resource="{BLOG.logo}" /> <items> <rdf:Seq> <!-- BEGIN: item --> <rdf:li resource="{POST.post_permalink}" /> <!-- END: item --> </rdf:Seq> </items> </channel> <image rdf:about="{BLOG.logo}"> <title>{BLOG.description}</title> <link>{BLOG.link}</link> <url>{BLOG.logo}</url> </image> <!-- BEGIN: post --> <item rdf:about="{POST.post_permalink}"> <title>{POST.post_mail_subject}</title> <link>{POST.post_permalink}</link> <description>{POST.post_mail_body} </description> </item> <!-- END: post --> </rdf:RDF> <!-- END: main --> |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:05:50
|
Update of /cvsroot/comoblog/modules/mod_rss2/templates/2.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18402/mod_rss2/templates/2.0 Added Files: rss2.tpl.xml Log Message: initial add NOT FOR RELEASE - WORK IN PROGRESS mod_rss2, this is an improved RSS feed mod that also provides a feed for comments as they are posted, it also adds a list of the latest comments to the side bar, to do the latest comments list should be seperate, however if we do that as another module there will be code replicated... i think the lastest comments code should be moved to the core code base, so that it van be used to generate a list for both the lastest comments module and the rss2 module. RSS templates need valdiating - is it worth adding support for ATOM etc? also links to blog lines, newgator my yahoo and the rest. --- NEW FILE: rss2.tpl.xml --- <!-- BEGIN: main --><?xml version="1.0" encoding="iso-8859-1"?> <!-- RSS generated by {BLOG.generator} --> <rss version="2.0"> <channel> <title>{BLOG.title}</title> <link>{BLOG.link}</link> <description>{BLOG.description}</description> <language>{BLOG.language}</language> <generator>{BLOG.generator}</generator> <copyright>{BLOG.copyright}</copyright> <docs>http://backend.userland.com/rss</docs> <image> <url>{BLOG.logo}</url> <title>{BLOG.title}</title> <link>{BLOG.link}</link> </image> <!-- BEGIN: post --> <item> <title>{POST.post_mail_subject}</title> <link>{POST.post_permalink}</link> <comments>{POST.post_permalink}</comments> <description> <!-- BEGIN: thumb_img --> <a href="{SITE_URL}img.php?i={IMAGE.img_name}" onclick="open_popup(this.href,{IMAGE.img_width},{IMAGE.img_height});return false;" title="{TXT.enlarge}"> <img class="post_img_thumb" src="{SITE_URL}img/posts/{IMAGE.img_thumb_name}" border="0" alt="" align="left"/> </a> <!-- END: thumb_img --> <!-- BEGIN: img --> <a href="{SITE_URL}img.php?i={IMAGE.img_name}" onclick="open_popup(this.href,{IMAGE.img_width},{IMAGE.img_height});return false;" title="{TXT.enlarge}"> <img class="post_img_thumb" src="{SITE_URL}img/posts/{IMAGE.img_name}" border="0" alt="" align="left" /> </a> <!-- END: img --> {POST.post_mail_body}</description> <author>{POST.post_mail_from}</author> <pubDate>{POST.post_mail_date}</pubDate> <category>{POST.post_category}</category> </item> <!-- END: post --> </channel> </rss><!-- END: main --> |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:05:50
|
Update of /cvsroot/comoblog/modules/mod_rss2/templates/c2.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18402/mod_rss2/templates/c2.0 Added Files: rss2.tpl.xml Log Message: initial add NOT FOR RELEASE - WORK IN PROGRESS mod_rss2, this is an improved RSS feed mod that also provides a feed for comments as they are posted, it also adds a list of the latest comments to the side bar, to do the latest comments list should be seperate, however if we do that as another module there will be code replicated... i think the lastest comments code should be moved to the core code base, so that it van be used to generate a list for both the lastest comments module and the rss2 module. RSS templates need valdiating - is it worth adding support for ATOM etc? also links to blog lines, newgator my yahoo and the rest. --- NEW FILE: rss2.tpl.xml --- <!-- BEGIN: main --><?xml version="1.0" encoding="iso-8859-1"?> <!-- RSS generated by {BLOG.generator} --> <rss version="2.0"> <channel> <title>{BLOG.title}</title> <link>{BLOG.link}</link> <description>{BLOG.description}</description> <language>{BLOG.language}</language> <generator>{BLOG.generator}</generator> <copyright>{BLOG.copyright}</copyright> <docs>http://backend.userland.com/rss</docs> <image> <url>{BLOG.logo}</url> <title>{BLOG.title}</title> <link>{BLOG.link}</link> </image> <!-- BEGIN: post --> <item> <title>{POST.post_mail_date} - {POST.post_mail_subject} - {POST.post_mail_from}</title> <link>{POST.post_permalink}</link> <comments>{POST.post_permalink}</comments> <description>{POST.post_mail_body}</description> <author>{POST.post_mail_from}</author> <pubDate>{POST.post_mail_date}</pubDate> <category>{POST.post_category}</category> </item> <!-- END: post --> </channel> </rss><!-- END: main --> |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:01:18
|
Update of /cvsroot/comoblog/modules/mod_rss2/templates/c2.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17424/c2.0 Log Message: Directory /cvsroot/comoblog/modules/mod_rss2/templates/c2.0 added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:01:18
|
Update of /cvsroot/comoblog/modules/mod_rss2/templates/2.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17424/2.0 Log Message: Directory /cvsroot/comoblog/modules/mod_rss2/templates/2.0 added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:01:18
|
Update of /cvsroot/comoblog/modules/mod_rss2/templates/1.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17424/1.0 Log Message: Directory /cvsroot/comoblog/modules/mod_rss2/templates/1.0 added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:01:11
|
Update of /cvsroot/comoblog/modules/mod_rss2/templates/c1.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17424/c1.0 Log Message: Directory /cvsroot/comoblog/modules/mod_rss2/templates/c1.0 added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:00:37
|
Update of /cvsroot/comoblog/modules/mod_rss2/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17236/install Log Message: Directory /cvsroot/comoblog/modules/mod_rss2/install added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:00:34
|
Update of /cvsroot/comoblog/modules/mod_rss2/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17236/templates Log Message: Directory /cvsroot/comoblog/modules/mod_rss2/templates added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:00:33
|
Update of /cvsroot/comoblog/modules/mod_rss2/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17236/img Log Message: Directory /cvsroot/comoblog/modules/mod_rss2/img added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:00:33
|
Update of /cvsroot/comoblog/modules/mod_rss2/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17236/include Log Message: Directory /cvsroot/comoblog/modules/mod_rss2/include added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:00:30
|
Update of /cvsroot/comoblog/modules/mod_rss2/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17236/css Log Message: Directory /cvsroot/comoblog/modules/mod_rss2/css added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 11:00:22
|
Update of /cvsroot/comoblog/modules/mod_rss2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17042/mod_rss2 Log Message: Directory /cvsroot/comoblog/modules/mod_rss2 added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:52:40
|
Update of /cvsroot/comoblog/modules/mod_wordswapper/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15650/img Log Message: Directory /cvsroot/comoblog/modules/mod_wordswapper/img added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-28 10:52:40
|
Update of /cvsroot/comoblog/modules/mod_wordswapper/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15650/install Log Message: Directory /cvsroot/comoblog/modules/mod_wordswapper/install added to the repository |