File tree Expand file tree Collapse file tree 9 files changed +38
-23
lines changed Expand file tree Collapse file tree 9 files changed +38
-23
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for XML-Axk
2
2
3
+ 0.001009 2019-04-26
4
+ Updated metadata
5
+
6
+ 0.001008 2019-02-22
7
+ Non-trial release of 0.001007
8
+
9
+ 0.001007-TRIAL 2019-02-16
10
+ Fixed per cpantesters results
11
+
3
12
0.001006 2019-02-14
4
13
No substantive changes
5
14
Original file line number Diff line number Diff line change 3
3
lib/XML/Axk.pm
4
4
lib/XML/Axk/App.pm
5
5
lib/XML/Axk/Base.pm
6
+ lib/XML/Axk/Bundle.pod
6
7
lib/XML/Axk/Core.pm
7
8
lib/XML/Axk/DOM.pm
8
9
lib/XML/Axk/L/L0.pm
Original file line number Diff line number Diff line change @@ -147,6 +147,12 @@ my %opts = (
147
147
},
148
148
},
149
149
150
+ x_authority => ' cpan:CXW' ,
151
+ x_contributors => [
152
+ # Use CPAN emails where possible, so MetaCPAN will pick them up.
153
+ ' Christopher White <[email protected] >' ,
154
+ ],
155
+
150
156
$provides ? (provides => $provides ) : (),
151
157
152
158
}, # META_MERGE
Original file line number Diff line number Diff line change @@ -5,20 +5,12 @@ use strict;
5
5
use warnings;
6
6
use XML::Axk::Base;
7
7
8
- our $VERSION = ' 0.001008' ;
9
-
10
- # use parent 'Exporter';
11
- # our (@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
12
- # BEGIN {
13
- # @EXPORT = qw();
14
- # @EXPORT_OK = qw();
15
- # %EXPORT_TAGS = (
16
- # default => [@EXPORT],
17
- # all => [@EXPORT, @EXPORT_OK]
18
- # );
19
- # }
8
+ our $VERSION = ' 0.001009' ;
9
+ our $AUTHORITY = ' cpan:CXW' ;
20
10
11
+ 1;
21
12
# Docs {{{1
13
+ __END__
22
14
23
15
=head1 NAME
24
16
@@ -32,7 +24,4 @@ embedded usage in other Perl scripts.
32
24
=cut
33
25
34
26
# }}}1
35
-
36
- 1;
37
- __END__
38
27
# vi: set fdm=marker: #
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ use XML::Axk::Core;
8
8
# Semantic versioning, packed per Perl rules. Must always be at least one
9
9
# digit left of the decimal, and six digits right of the decimal. For
10
10
# prerelease versions, put an underscore before the last three digits.
11
- our $VERSION = ' 0.001008 ' ;
11
+ our $VERSION = ' 0.001009 ' ;
12
12
13
13
use Getopt::Long qw( GetOptionsFromArray :config gnu_getopt) ;
14
14
Original file line number Diff line number Diff line change
1
+ =head1 NAME
2
+
3
+ XML::Axk::Bundle - namespace for plugin bundles
4
+
5
+ =head1 SYNOPSIS
6
+
7
+ Axk can be extended with bundles. A bundle may implement a new backend
8
+ or language, for example. For ease of installation, bundles should be
9
+ distributed as CPAN distributions under the C<XML::Axk::Bundle::> namespace.
10
+ For example, a new language might be C<XML::Axk::Bundle::LangFoo>.
11
+
12
+ Names in the C<Bundle> namespace are first-come, first-served. Authors are
13
+ requested to name language bundles starting with C<L> and backend bundles
14
+ starting with C<B>, but other than that, have fun!
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ use XML::Axk::Base qw(:all);
11
11
use XML::Axk::Preparse;
12
12
use Data::Dumper;
13
13
14
- our $VERSION = ' 0.001008 ' ;
14
+ our $VERSION = ' 0.001009 ' ;
15
15
16
16
=encoding UTF-8
17
17
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ sub import {
82
82
# }}}1
83
83
1;
84
84
# === Documentation ===================================================== {{{2
85
+ __END__
85
86
86
87
=pod
87
88
@@ -105,11 +106,6 @@ When implementing a language:
105
106
updater => sub { ... } );
106
107
}
107
108
108
- If all you need is the registry:
109
-
110
- use XML::Axk::Language ();
111
- # Then do something with @XML::Axk::Language::SP_Registry.
112
-
113
109
=head1 OPTIONS
114
110
115
111
C<target > : the name of the package to load the script parameters (SPs) into
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ use Data::Dumper;
11
11
use Import::Into;
12
12
13
13
our $ObjTiny ;
14
- our $VERSION = ' 0.001008 ' ;
14
+ our $VERSION = ' 0.001009 ' ;
15
15
16
16
BEGIN {
17
17
require parent;
You can’t perform that action at this time.
0 commit comments