NAME

get_rss_from_forum - Get RSS from vBulletin forum

VERSION

version 0.05

SYNOPSIS

$ get_rss_from_vbulletin_forum http://example.com/forum/forumdisplay.php?f=9
<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="RSS::From::Forum::vBulletin 0.01 (Perl module)" -->
<rss version="2.0">
  <channel>
    <title>...</title>
    <link>http://example.com/forum/forumdisplay.php?f=9#rss</link>
    <generator>...</generator>

    <item>
      <title>...</title>
      <link>http://example.com/forum/showthread.php?t=14445</link>
      <pubDate>...</pubDate>
      <description>...</description>
    </item>
    ...

  </channel>
</rss>

DESCRIPTION

See RSS::From::Forum::vBulletin for more details, including available options.

SEE ALSO

AUTHOR

Steven Haryanto <stevenharyanto@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Steven Haryanto.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.