File: Identifier.pm

package info (click to toggle)
libcatmandu-identifier-perl 0.15-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 292 kB
  • sloc: perl: 978; makefile: 2
file content (94 lines) | stat: -rw-r--r-- 1,911 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package Catmandu::Identifier;

use strict;
our $VERSION = '0.15';

1;
__END__

=encoding utf-8

=head1 NAME

Catmandu::Identifier - Namespace fixing around identifiers (for normalization, validation, etc.), e.g. ISBN, ISSN

=begin markdown

# STATUS

[![Build Status](https://travis-ci.org/LibreCat/Catmandu-Identifier.svg?branch=master)](https://travis-ci.org/LibreCat/Catmandu-Identifier)
[![Coverage](https://coveralls.io/repos/LibreCat/Catmandu-Identifier/badge.png?branch=master)](https://coveralls.io/r/LibreCat/Catmandu-Identifier)
[![CPANTS kwalitee](http://cpants.cpanauthors.org/dist/Catmandu-Identifier.png)](http://cpants.cpanauthors.org/dist/Catmandu-Identifier)

=end markdown

=head1 MODULES

=over

=item * L<Catmandu::Fix::isbn10>

=item * L<Catmandu::Fix::isbn13>

=item * L<Catmandu::Fix::isbn_versions>

=item * L<Catmandu::Fix::issn>

=item * L<Catmandu::Fix::uuid>

=item * L<Catmandu::Fix::memento_find>

=item * L<Catmandu::Fix::orcid_bio>

=item * L<Catmandu::Fix::orcid_find>

=item * L<Catmandu::Fix::orcid_profile>

=item * L<Catmandu::Fix::orcid_works>

=item * L<Catmandu::Fix::uri_status_code>

=item * L<Catmandu::Fix::Condition::is_valid_isbn>

=item * L<Catmandu::Fix::Condition::is_valid_issn>

=item * L<Catmandu::Fix::Condition::is_uri>

=item * L<Catmandu::Fix::Condition::is_http_uri>

=item * L<Catmandu::Fix::Condition::is_https_uri>

=item * L<Catmandu::Fix::Condition::is_web_uri>

=item * L<Catmandu::Fix::Condition::is_live_web_uri>

=item * L<Catmandu::Fix::Condition::is_archived_web_uri>

=item * L<Catmandu::Fix::Condition::is_valid_orcid>

=item * L<Catmandu::Fix::Condition::is_live_orcid>

=back

=head1 AUTHOR

Vitali Peil

=head2 CONTRIBUTOR

Patrick Hochstenbach

brian d foy

Ere Maijala

=head1 LICENSE

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=head1 SEE ALSO

L<Catmandu::Fix>

=cut