Changeset 4682

Show
Ignore:
Timestamp:
01/16/08 14:54:12 (5 years ago)
Author:
lyokato
Message:

lang/perl/OAuth-Lite: Checking in changes prior to tagging of version 0.03. Changelog diff is:

Index: Changes
===================================================================
--- Changes (リビジョン 4674)
+++ Changes (作業コピー)
@@ -1,5 +1,9 @@

Revision history for Perl extension XML::APML.


+0.03 Wed Jan 16 14:41:00 2008
+ - added ImplicitData? document
+ - fixed Makefile.PL
+

0.02 Wed Dec 12 12:27:11 2007

  • removed debug code.


Location:
lang/perl/XML-APML/trunk
Files:
2 added
1 removed
5 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/XML-APML/trunk/Changes

    r3307 r4682  
    11Revision history for Perl extension XML::APML. 
     2 
     30.03  Wed Jan 16 14:41:00 2008 
     4        - added ImplicitData document 
     5        - fixed Makefile.PL 
    26 
    370.02  Wed Dec 12 12:27:11 2007 
  • lang/perl/XML-APML/trunk/MANIFEST

    r3307 r4682  
    11Changes 
    2 inc/Module/Install.pm 
    3 inc/Module/Install/Base.pm 
    4 inc/Module/Install/Can.pm 
    5 inc/Module/Install/Fetch.pm 
    6 inc/Module/Install/Include.pm 
    7 inc/Module/Install/Makefile.pm 
    8 inc/Module/Install/Metadata.pm 
    9 inc/Module/Install/Win32.pm 
    10 inc/Module/Install/WriteAll.pm 
    11 inc/Test/More.pm 
    122lib/XML/APML.pm 
    133lib/XML/APML/Application.pm 
     
    2212Makefile.PL 
    2313MANIFEST 
     14MANIFEST.SKIP 
    2415META.yml 
    2516README 
     
    3122t/99_pod.t 
    3223t/sample/apml.xml 
    33 XML-APML-0.01/lib/XML/APML/Node.pm 
  • lang/perl/XML-APML/trunk/Makefile.PL

    r3307 r4682  
    22name 'XML-APML'; 
    33all_from 'lib/XML/APML.pm'; 
    4  
     4perl_version '5.008001'; 
    55build_requires 'Test::More'; 
    66requires 'Class::Accessor'       => 0.31; 
  • lang/perl/XML-APML/trunk/lib/XML/APML.pm

    r3307 r4682  
    2424use Carp (); 
    2525 
    26 our $VERSION = '0.02'; 
     26our $VERSION = '0.03'; 
    2727 
    2828use constant DEFAULT_NS => 'http://www.apml.org/apml-0.6'; 
  • lang/perl/XML-APML/trunk/lib/XML/APML/ImplicitData.pm

    r3307 r4682  
    1010 
    11111; 
     12__END__ 
    1213 
     14=head1 NAME 
     15 
     16XML::APML::ImplicitData - ImplicitData markup 
     17 
     18=head1 SYNOPSIS 
     19 
     20=head1 DESCRIPTION 
     21 
     22Class that represents ImplicitData mark-up for APML 
     23 
     24=head1 METHODS 
     25 
     26=head2 new 
     27 
     28Constructor 
     29 
     30=head2 concepts 
     31 
     32Get all concepts. 
     33Returns as array in list context. 
     34 
     35    my @concepts = $implicit->concepts; 
     36 
     37Or returns as array reference. 
     38 
     39    my $concepts = $implicit->concepts; 
     40 
     41Also, you can set multiple concepts at once. 
     42 
     43    $implicit->concepts($concept1, $concept2, $concept3); 
     44 
     45=head2 add_concept 
     46 
     47Add concept 
     48 
     49    $implicit->add_concept($concept); 
     50 
     51=head2 sources 
     52 
     53Get all sources. 
     54Returns as array in list context. 
     55 
     56    my @sources = $implicit->sources; 
     57 
     58Or returns as array reference. 
     59 
     60    my $sources = $implicit->sources; 
     61 
     62Also, you can set multiple sources at once. 
     63 
     64    $implicit->sources($source1, $source2, $source3); 
     65 
     66=head2 add_source 
     67 
     68Add source 
     69 
     70    $implicit->add_source($source); 
     71 
     72=cut