Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [mddrew01] XML Feed Issues LinksSQL 2.2.0

Quote Reply
Re: [mddrew01] XML Feed Issues LinksSQL 2.2.0 In reply to
Thanks Alex!

The fix below also contains an escape character for the URL. There is another post about this located here
http://www.gossamer-threads.com/perl/gforum/gforum.cgi?post=221689#221689
, but it does not fix the URL:

Here is the complete code for the file - xml_search_results.xml - located in your template directory.
********************************************************************

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="0.91">
<channel>
<title><%site_title%></title>
<link><%build_root_url%></link>
<description>DESCRIPTION OF YOUR SITE GOES HERE</description>
<language>en-us</language>
<copyright>COPYRIGHT FOR YOUR SITE GOES HERE</copyright>
<managingEditor>CONTACTEMAIL GOES HERE</managingEditor>
<webMaster>TECHNICAL EMAIL GOES HERE</webMaster>
<%loop link_results_loop%>
<item>
<title><%GT::CGI::html_escape($Title)%></title>
<link><%GT::CGI::html_escape($URL)%></link>
<description> <%GT::CGI::html_escape($Description)%></description>
</item>
<%endloop%>
</channel>
</rss>
Subject Author Views Date
Thread XML Feed Issues LinksSQL 2.2.0 mddrew01 4079 Jun 30, 2004, 8:05 AM
Thread Re: [mddrew01] XML Feed Issues LinksSQL 2.2.0
mddrew01 3969 Jul 1, 2004, 12:02 PM
Thread Re: [mddrew01] XML Feed Issues LinksSQL 2.2.0
gotze 3959 Jul 1, 2004, 2:29 PM
Thread Re: [gotze] XML Feed Issues LinksSQL 2.2.0
ccunet 3932 Jul 5, 2004, 8:19 AM
Thread Re: [ccunet] XML Feed Issues LinksSQL 2.2.0
courierb 3820 Oct 18, 2004, 7:11 PM
Post Re: [courierb] XML Feed Issues LinksSQL 2.2.0
ccunet 3696 Mar 4, 2005, 6:11 AM