NAKAGAWA Masaki > XML-Atom-Ext-Threading > XML::Atom::Ext::Threading::InReplyTo

Download:
XML-Atom-Ext-Threading-0.02.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 0.01   Source  

NAME ^

XML::Atom::Ext::Threading::InReplyTo

SYNOPSIS ^

  use XML::Atom::Entry;
  use XML::Atom::Ext::Threading;

  my $entry = XML::Atom::Entry->new;

  # "in-reply-to" extension element
  my $reply = XML::Atom::Ext::Threading::InReplyTo->new;
  $reply->ref('tag:example.org,2005:1');
  $reply->href('http://www.example.org/entries/1');
  $reply->type('application/xhtml+xml');
  $entry->in_reply_to($reply);

METHODS ^

ref($ref)

href($href)

type($type)

source($source)

element_name

returns 'in-reply-to'

element_ns

returns the Atom Threading namespace, http://purl.org/syndication/thread/1.0

AUTHOR ^

NAKAGAWA Masaki <masaki@cpan.org>

LICENSE ^

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

SEE ALSO ^

XML::Atom::Ext::Threading