Changeset 4682
- Timestamp:
- 01/16/08 14:54:12 (5 years ago)
- Location:
- lang/perl/XML-APML/trunk
- Files:
-
- 2 added
- 1 removed
- 5 modified
-
.shipit (added)
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (3 diffs)
-
MANIFEST.SKIP (added)
-
Makefile.PL (modified) (1 diff)
-
inc (deleted)
-
lib/XML/APML.pm (modified) (1 diff)
-
lib/XML/APML/ImplicitData.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/XML-APML/trunk/Changes
r3307 r4682 1 1 Revision history for Perl extension XML::APML. 2 3 0.03 Wed Jan 16 14:41:00 2008 4 - added ImplicitData document 5 - fixed Makefile.PL 2 6 3 7 0.02 Wed Dec 12 12:27:11 2007 -
lang/perl/XML-APML/trunk/MANIFEST
r3307 r4682 1 1 Changes 2 inc/Module/Install.pm3 inc/Module/Install/Base.pm4 inc/Module/Install/Can.pm5 inc/Module/Install/Fetch.pm6 inc/Module/Install/Include.pm7 inc/Module/Install/Makefile.pm8 inc/Module/Install/Metadata.pm9 inc/Module/Install/Win32.pm10 inc/Module/Install/WriteAll.pm11 inc/Test/More.pm12 2 lib/XML/APML.pm 13 3 lib/XML/APML/Application.pm … … 22 12 Makefile.PL 23 13 MANIFEST 14 MANIFEST.SKIP 24 15 META.yml 25 16 README … … 31 22 t/99_pod.t 32 23 t/sample/apml.xml 33 XML-APML-0.01/lib/XML/APML/Node.pm -
lang/perl/XML-APML/trunk/Makefile.PL
r3307 r4682 2 2 name 'XML-APML'; 3 3 all_from 'lib/XML/APML.pm'; 4 4 perl_version '5.008001'; 5 5 build_requires 'Test::More'; 6 6 requires 'Class::Accessor' => 0.31; -
lang/perl/XML-APML/trunk/lib/XML/APML.pm
r3307 r4682 24 24 use Carp (); 25 25 26 our $VERSION = '0.0 2';26 our $VERSION = '0.03'; 27 27 28 28 use constant DEFAULT_NS => 'http://www.apml.org/apml-0.6'; -
lang/perl/XML-APML/trunk/lib/XML/APML/ImplicitData.pm
r3307 r4682 10 10 11 11 1; 12 __END__ 12 13 14 =head1 NAME 15 16 XML::APML::ImplicitData - ImplicitData markup 17 18 =head1 SYNOPSIS 19 20 =head1 DESCRIPTION 21 22 Class that represents ImplicitData mark-up for APML 23 24 =head1 METHODS 25 26 =head2 new 27 28 Constructor 29 30 =head2 concepts 31 32 Get all concepts. 33 Returns as array in list context. 34 35 my @concepts = $implicit->concepts; 36 37 Or returns as array reference. 38 39 my $concepts = $implicit->concepts; 40 41 Also, you can set multiple concepts at once. 42 43 $implicit->concepts($concept1, $concept2, $concept3); 44 45 =head2 add_concept 46 47 Add concept 48 49 $implicit->add_concept($concept); 50 51 =head2 sources 52 53 Get all sources. 54 Returns as array in list context. 55 56 my @sources = $implicit->sources; 57 58 Or returns as array reference. 59 60 my $sources = $implicit->sources; 61 62 Also, you can set multiple sources at once. 63 64 $implicit->sources($source1, $source2, $source3); 65 66 =head2 add_source 67 68 Add source 69 70 $implicit->add_source($source); 71 72 =cut
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)