I have three rss.vm files.

/src/org/roller/presentation/velocity/export_rss.vm
/web/WEB-INF/classes/flavors/rss.vm
/web/WEB-INF/classes/planetrss.vm

Which one should I change?

The rss.vm file has this: <title>$utilities.textToHTML($entry.title,true)</title>

Should I maybe change this to <title>$utilities.textToHTML($utilities.removeHTML($entry.title))</title> ??

Shervin

Dave Johnson wrote:
You should be able to fix this in the rss.vm template. The latest
version of that template in the Roller trunk does this:

<title>$utilities.textToHTML($utilities.removeHTML($website.name))</title>

Which should remove all HTML from the title and them escape any
ampersand and pointy-braces. So your rss.vm must be doing something
differernt than that.

- Dave

Reply via email to