Index: /lang/perl/XML-APML/trunk/MANIFEST
===================================================================
--- /lang/perl/XML-APML/trunk/MANIFEST (revision 3307)
+++ /lang/perl/XML-APML/trunk/MANIFEST (revision 4682)
@@ -1,13 +1,3 @@
 Changes
-inc/Module/Install.pm
-inc/Module/Install/Base.pm
-inc/Module/Install/Can.pm
-inc/Module/Install/Fetch.pm
-inc/Module/Install/Include.pm
-inc/Module/Install/Makefile.pm
-inc/Module/Install/Metadata.pm
-inc/Module/Install/Win32.pm
-inc/Module/Install/WriteAll.pm
-inc/Test/More.pm
 lib/XML/APML.pm
 lib/XML/APML/Application.pm
@@ -22,4 +12,5 @@
 Makefile.PL
 MANIFEST
+MANIFEST.SKIP
 META.yml
 README
@@ -31,3 +22,2 @@
 t/99_pod.t
 t/sample/apml.xml
-XML-APML-0.01/lib/XML/APML/Node.pm
Index: /lang/perl/XML-APML/trunk/lib/XML/APML.pm
===================================================================
--- /lang/perl/XML-APML/trunk/lib/XML/APML.pm (revision 3307)
+++ /lang/perl/XML-APML/trunk/lib/XML/APML.pm (revision 4682)
@@ -24,5 +24,5 @@
 use Carp ();
 
-our $VERSION = '0.02';
+our $VERSION = '0.03';
 
 use constant DEFAULT_NS => 'http://www.apml.org/apml-0.6';
Index: /lang/perl/XML-APML/trunk/lib/XML/APML/ImplicitData.pm
===================================================================
--- /lang/perl/XML-APML/trunk/lib/XML/APML/ImplicitData.pm (revision 3307)
+++ /lang/perl/XML-APML/trunk/lib/XML/APML/ImplicitData.pm (revision 4682)
@@ -10,3 +10,63 @@
 
 1;
+__END__
 
+=head1 NAME
+
+XML::APML::ImplicitData - ImplicitData markup
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+Class that represents ImplicitData mark-up for APML
+
+=head1 METHODS
+
+=head2 new
+
+Constructor
+
+=head2 concepts
+
+Get all concepts.
+Returns as array in list context.
+
+    my @concepts = $implicit->concepts;
+
+Or returns as array reference.
+
+    my $concepts = $implicit->concepts;
+
+Also, you can set multiple concepts at once.
+
+    $implicit->concepts($concept1, $concept2, $concept3);
+
+=head2 add_concept
+
+Add concept
+
+    $implicit->add_concept($concept);
+
+=head2 sources
+
+Get all sources.
+Returns as array in list context.
+
+    my @sources = $implicit->sources;
+
+Or returns as array reference.
+
+    my $sources = $implicit->sources;
+
+Also, you can set multiple sources at once.
+
+    $implicit->sources($source1, $source2, $source3);
+
+=head2 add_source
+
+Add source
+
+    $implicit->add_source($source);
+
+=cut
Index: /lang/perl/XML-APML/trunk/Makefile.PL
===================================================================
--- /lang/perl/XML-APML/trunk/Makefile.PL (revision 3307)
+++ /lang/perl/XML-APML/trunk/Makefile.PL (revision 4682)
@@ -2,5 +2,5 @@
 name 'XML-APML';
 all_from 'lib/XML/APML.pm';
-
+perl_version '5.008001';
 build_requires 'Test::More';
 requires 'Class::Accessor'       => 0.31;
Index: /lang/perl/XML-APML/trunk/Changes
===================================================================
--- /lang/perl/XML-APML/trunk/Changes (revision 3307)
+++ /lang/perl/XML-APML/trunk/Changes (revision 4682)
@@ -1,3 +1,7 @@
 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
Index: /lang/perl/XML-APML/trunk/MANIFEST.SKIP
===================================================================
--- /lang/perl/XML-APML/trunk/MANIFEST.SKIP (revision 4682)
+++ /lang/perl/XML-APML/trunk/MANIFEST.SKIP (revision 4682)
@@ -0,0 +1,13 @@
+\bRCS\b
+\bCVS\b
+^MANIFEST\.
+^Makefile$
+~$
+\.old$
+^blib/
+^pm_to_blib
+^MakeMaker-\d
+\.gz$
+\.cvsignore
+^9\d_.*\.t
+\.svn
Index: /lang/perl/XML-APML/trunk/.shipit
===================================================================
--- /lang/perl/XML-APML/trunk/.shipit (revision 4682)
+++ /lang/perl/XML-APML/trunk/.shipit (revision 4682)
@@ -0,0 +1,8 @@
+# auto-generated shipit config file.
+steps = CommitMessageWrap, FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN
+
+svn.tagpattern = release-%v
+commit_message.format = lang/perl/OAuth-Lite: %msg
+
+# svn.tagpattern = http://code.example.com/svn/tags/MyProj-%v
+# CheckChangeLog.files = ChangeLog, MyProj.CHANGES
