Is there some way to get an XML list of all the forums on a site? This gives me an HTML list of the forums on my site
http://localhost/drupal/forum/
but this does not work for an XML list:
http://localhost/drupal/forum/0/feed .
What I am really trying to do is get the most recent postings in a forum to appear on another (non-Drupal) site, with links to the Drupal site. I thought I might have JavaScript on the other site retrieve an XML list from Drupal and then I'd use XSL to transform that list into HTML. To make this work on the other site, I'd need to at least get a list of all the forums in XML, I think, so I could learn the forums' node IDs. Any suggestions, with as much detail as possible, are appreciated.
I also tried creating my own PHP page for this, with a call to forum_overview(). That resulted in a long list of warnings and errors, starting with "Warning: mysql_real_escape_string() expects parameter 2 to be resource, null given in C:\Program Files\Apache\Apache2.2\htdocs\drupal\includes\database.mysql.inc on line 400."
Comments
Views
Install the Views module. Create a view that displays all the forums, regardless of taxonomic organization, and then enable the RSS output as described here: http://drupal.org/node/83597