Next:
Yawns::Scratchpad
Previous:
Yawns::Preferences
 [Table of Contents]

Yawns::RSS



NAME

Yawns::RSS - A module for outputing the RSS feeds we serve

SYNOPSIS

    #!/usr/bin/perl -w

    use Yawns::RSS;
    use strict;

    my $feeds = Yawns::RSS->new();
    $feeds->output();

    #
    # Setup different output files.
    #
    my $feeds = Yawns::RSS->new( headlines => "headlines.rdf",
                                 articles  => "/tmp/articles.rdf",
                                 atom      => "/blah/atom.xml" );
    $feeds->output();

DESCRIPTION

This module contains code for outputting the various RSS feeds we serve.

new

  Create a new instance of this object.

output

  Create the various output feeds we write:

      ./articles.rdf
      ./headlines.rdf
      ./atom.xml

_generate_headlines_rdf

  Generate the headlines RDF feed into the file ./headlines.rdf

  This is an internal function

_generate_articles_rdf

  Generate the articles RDF feed into the file ./articles.rdf

  This is an internal function

_generate_articles_atom

  Generate the articles XML feed into the file ./atom.xml

  This is an internal function

[Top] Generated by HTML::FromPod 0.49 on Fri Nov 21 03:03:58 2008