Skip to content

Commit 59e2c05

Browse files
committed
Add generated README to repo
1 parent 62ed98c commit 59e2c05

File tree

2 files changed

+48
-1
lines changed

2 files changed

+48
-1
lines changed

README

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
NAME
2+
DateTime::Format::XSD - Format DateTime according to xsd:dateTime
3+
4+
VERSION
5+
version 0.4
6+
7+
SYNOPSIS
8+
my $str = DateTime::Format::XSD->format_datetime($dt);
9+
10+
DESCRIPTION
11+
XML Schema defines a usage profile which is a subset of the ISO8601
12+
profile. This profile defines that the following is the only possible
13+
representation for a dateTime, despite all other options ISO provides.
14+
15+
YYYY-MM-DD"T"HH:MI:SS(Z|[+-]zh:zm)
16+
17+
This module is a subclass of DateTime::Format::ISO8601, therefore it
18+
will be able to parse all other ISO options, but will only format it in
19+
this exact spec.
20+
21+
SEE ALSO
22+
DateTime, DateTime::Format::ISO8601, The XML Schema speficitation.
23+
24+
BUG REPORTS
25+
Please submit all bugs regarding "DateTime::Format::XSD" to
26+
27+
28+
COPYRIGHT
29+
This software is copyright (c) 2004 by Daniel Ruoso.
30+
31+
LICENSE
32+
This library is free software, you can redistribute it and/or modify it
33+
under the same terms as Perl itself.
34+
35+
AUTHORS
36+
* Daniel Ruoso <[email protected]>
37+
38+
* Timothy Legge <[email protected]>
39+
40+
COPYRIGHT AND LICENSE
41+
This software is copyright (c) 2021 by Daniel Ruoso.
42+
43+
This is free software; you can redistribute it and/or modify it under
44+
the same terms as the Perl 5 programming language system itself.
45+

dist.ini

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ skipfile=MANIFEST.SKIP
3030
exclude_filename = cpanfile
3131
exclude_filename = Makefile.PL
3232
exclude_filename = MANIFEST
33+
exclude_filename = README
3334

3435
[Encoding]
3536
encoding = bytes
@@ -40,9 +41,10 @@ match = ico
4041
[CopyFilesFromBuild::Filtered]
4142
copy = cpanfile
4243
copy = Makefile.PL
44+
copy = README
4345

4446
[CopyFilesFromRelease]
45-
copy = cpanfile, Makefile.PL
47+
copy = cpanfile, Makefile.PL, README
4648

4749
[MetaJSON]
4850
[MetaProvides::Package]

0 commit comments

Comments
 (0)