Okay, it took me a while to find the information I wanted regarding
COMMENT FEEDS and PUBLISHING TO ONE'S OWN FTP SITE (FYI -- a non-
blogspot hosted blog).
If you have a blog hosted on BLOGSPOT.COM, the "Suscribe to Atom Post
Feeds", "Suscribe to Atom Comment Feeds", and "Suscribe to
(individual) Post Comment Feeds" will all work fine if you have these
features enabled under Settings/Site Feed. SEE info at >>>
http://help.blogger.com/bin/answer.py?answer=42662&query=site%20feeds...
However, FOR THOSE OF US WHO HOST OUR OWN BLOGS VIA FTP, this handy
bit of code (below) WILL NOT WORK FOR ANYTHING BUT POST FEEDS IN A NON-
BLOGSPOT HOSTED BLOG whether you have the 2-types of COMMENTS FEEDS
enabled or not:
<p id="blogfeeds"><$BlogFeedsVertical$></p>
mentioned at SEE info link >>>
http://help.blogger.com/bin/answer.py?answer=42663&query=site%20feeds...
HOWEVER!!!
THERE IS A WAY AROUND THIS FOR FTP-USERS!!! Hurray :)
1) First of all, keep those features ENABLED -- if you want to create
your comment feed link, it will need to be enabled.
2) The Post Feed will already be working with the code you should
already be using in your template --- something like this:
<p id="blogfeeds">Subscribe to<br/>Posts [<a target="_blank"
href="http://www.YOURBLOGNAME.com/blog/atom.xml" type="application/atom
+xml">Atom</a>]</p>
and/or
<p id="blogfeeds">Subscribe to <br/>Posts [<a target="_blank"
href="http://www.YOURBLOGNAME.com/blog/rss.xml"
type="application/rss+xml">RSS</a>]</p>
.....WHICH IS EQUAL TO THE BLOGGER TEMPLATES VERSION OF THIS CODE
known as:
<p id="blogfeeds"><$BlogFeedsVertical$></p> .......BUT I LIKE TO PUT
THE MANUAL VERSION IN MY TEMPLATE SO THAT I CAN SEE WHAT IS WHAT.
3) NEXT, we will work on the MANUAL COMMENTS FEED CODE you will write
for yourself:
a) Go to your actual blog page (not the template)
b) Right-Click on the Page and "View Source"
c) Look for the <!-- Meta Information --> section of your blog (near
the top of the page)
d) Find the BLOGGER ADDRESS for your FEEDS which should look like
this:
href="http://www.blogger.com/feeds/123456thisisyourblogID#/posts/
default" and copy it --- you will need it later!
KEEP IN MIND THAT IN THE BLOGGER TEMPLATE, you can't get to this info
because it is created by the code that looks like this:
<!-- Meta Information -->
<$BlogMetaData$>
which is why Right-Clicking on the ACTUAL BLOG PAGE/view source lets
you see this valuable info!
4) Okay, so now we will use this valuable information for our own
purposes in modifying our template!!!
TAKE THE CODE WE WERE SUCCESSFULLY USING FOR POST FEEDS from #2 above:
<p id="blogfeeds">Subscribe to<br/>Posts [<a target="_blank"
href="http://www.YOURBLOGNAME.com/blog/atom.xml" type="application/atom
+xml">Atom</a>]</p>
a) insert some breaks <br><br> after the existing code
b) COPY from "Subscribe" thru to "</p> and PASTE after your breaks. It
should look like this now:
<p id="blogfeeds">Subscribe to<br/>Posts [<a target="_blank"
href="http://www.YOURBLOGNAME.com/blog/atom.xml" type="application/atom
+xml">Atom</a>]</p>
<br><br>
Subscribe to<br/>Posts [<a target="_blank" href="http://
www.YOURBLOGNAME.com/blog/atom.xml" type="application/atom+xml">Atom</
a>]</p>
c) CHANGE "Posts" to "Comments"
d) COPY that Meta Data from above in #3 which looked like this:
href="http://www.blogger.com/feeds/123456thisisyourblogID#/posts/
default"
CHANGE "posts" to "comments" and PASTE it into the current "href" info
above
e) You should now have a chunk of code that looks like this:
<p id="blogfeeds">Subscribe to<br/>Posts [<a target="_blank"
href="http://www.YOURBLOGNAME.com/blog/atom.xml" type="application/atom
+xml">Atom</a>]</p>
<br><br>
Subscribe to<br/>Comments [<a target="_blank" href="http://
www.blogger.com/feeds/123456thisisyourblogID#/comments/default"
type="application/atom+xml">Atom</a>]</p>
5) REPEAT the same steps for the RSS version if you wish to provide an
RSS.xml feed in addition/instead of ATOM.xml.
Your template should now produce links that look like this:
Subscribe to
Posts [Atom]
Comments [Atom]
and/or
Subscribe to
Posts [RSS]
Comments [RSS]
AND THE COMMENTS FEED WILL ACTUALLY WORK!!! Because you are accessing
it from Blogger directly by using your blog's ID# to get the
information.
-------> You can also use this same trickeroo to make specific LABEL
FEEDS (say you have an existing label called "cats" --- you can make a
link for people to use to receive FEEDS of a particular LABEL --- i.e.
a feed from all the posts that you label with "cats"!!!
1) First we will be using the posts/default version of your blog feed
(before we changed "posts" to "comments":
href="http://www.blogger.com/feeds/123456thisisyourblogID#/posts/
default"
2) Next, we will be adding the following code at the end:
/-/labelname
in this case:
/-/cats
3) Which should look like this after you move the </br>, change the
"Comments" to "LABELS" and the "Atom" link to "cats"
<br><br>
Subscribe to my LABELS</br>[<a target="_blank" href="http://
www.blogger.com/feeds/123456thisisyourblogID#/posts/default/-/cats"
type="application/atom+xml">cats</a>]</p>
4) This will result in a list such as this (Cut an Paste to make more
labels links):
Subscribe to my LABELS
[cats]
[dogs]
[ferrets]
*****special thanks to IRAE in link below for getting me headed on the
right path to creating this extended tutorial*********
http://groups.google.com/group/blogger-help-howdoi/browse_thread/thre...