What is a XSLT template that will get the <title></title> that contains the name of a blog and put it in every <entry></entry> or as an attribute in every <entry> ?
from
<feed>
<title>title of feed</title>
<entry>...</entry>
<entry>...</entry>
</feed>
to
<feed>
<entry><blog>title of feed</blog>...</entry>
<entry><blog>title of feed</blog>...</entry>
</feed>
or
<feed>
<entry blog="title of blog">...</entry>
<entry blog="title of blog">...</entry>
</feed>
for the attribute solution, something like this should work :