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
|
package XTM::PSI;
use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
require Exporter;
require AutoLoader;
@ISA = qw(Exporter AutoLoader);
@EXPORT = qw( );
@EXPORT_OK = qw( );
$VERSION = '0.03';
=pod
=head1 NAME
XTM::PSI - Topic Map management, published subject identifiers
=head1 SYNOPSIS
use XTM::PSI;
print keys %xtm;
print keys %priv;
=head1 DESCRIPTION
This package contains a hash with some PSIs. See
http://www.topicmaps.org/xtm/1.0/psi1.xtm
for a moving target.
=cut
use vars qw(%xtm %priv);
%xtm = (
universal_scope => 'http://www.topicmaps.org/xtm/1.0/#psi-universal-scope',
topic => 'http://www.topicmaps.org/xtm/1.0/#psi-topic',
association => 'http://www.topicmaps.org/xtm/1.0/#psi-association',
occurrence => 'http://www.topicmaps.org/xtm/1.0/#psi-occurrence',
'class-instance' => 'http://www.topicmaps.org/xtm/core.xtm#class-instance',
'class' => 'http://www.topicmaps.org/xtm/core.xtm#class',
'instance' => 'http://www.topicmaps.org/xtm/core.xtm#instance',
);
%priv = (
map => 'urn:x-tm-map',
desc => 'urn:x-tm-description',
server => 'urn:x-tm-server',
knowledge => 'urn:x-tm-knowledge',
continuation => 'urn:x-tm-continuation',
);
=pod
=head1 SEE ALSO
L<XTM>
=head1 AUTHOR INFORMATION
Copyright 2001, 2002, Robert Barta <rho@telecoma.net>, All rights reserved.
This library is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.
http://www.perl.com/perl/misc/Artistic.html
=cut
1;
__END__
|