[Comoblog-commit] modules/mod_rss2/templates rss2.tpl.html,1.1,1.2
Status: Inactive
Brought to you by:
markwallis
|
From: iamdecal <iam...@us...> - 2005-12-11 23:20:58
|
Update of /cvsroot/comoblog/modules/mod_rss2/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8739/mod_rss2/templates Modified Files: rss2.tpl.html Log Message: misc tweaks to layout and style sheet still to do - ensure that the created feeds are valid ( http://feedvalidator.org/) we need : valid date format author must be an email address (define as a constant ? so that a different email address (eg a spam trapper) can be used ?) use CDATA sections for decription valid language also - id prefere that the pages that are called are located in the root of the site - but i cant see away to modulise that - however i also think that RSS should be part of the base package not a module. Index: rss2.tpl.html =================================================================== RCS file: /cvsroot/comoblog/modules/mod_rss2/templates/rss2.tpl.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- rss2.tpl.html 28 Nov 2005 11:05:37 -0000 1.1 +++ rss2.tpl.html 11 Dec 2005 23:20:47 -0000 1.2 @@ -1,20 +1,31 @@ <!-- 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 class="mod_header_text"> + Posts Feed<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> + <div class="mod_header_text"> + Comments Feed + <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> + <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> <!-- END: main --> \ No newline at end of file |