NAME
TM::PSI - Topic Map management, (published) subject identifiers
DESCRIPTION
???
@@@@
SEE ALSO
AUTHOR INFORMATION
Copyright 200[1-6], Robert Barta <drrho@cpan.org>, All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
L<http://www.perl.com/perl/misc/Artistic.html>
use constant ONTOLOGY => ' tau-object bn: Tau Object sin: http://astma.it.bond.edu.au/ns/tau/1.0/object
tau-map subclasses tau-object bn: map sin: http://astma.it.bond.edu.au/ns/tau/1.0/map
tau-ontology subclasses tau-object bn: ontology sin: http://astma.it.bond.edu.au/ns/tau/1.0/ontology
tau-query subclasses tau-object bn: query sin: http://astma.it.bond.edu.au/ns/tau/1.0/query
tau-collection subclasses tau-object bn: collection sin: http://astma.it.bond.edu.au/ns/tau/1.0/collection
';
# 'sum-ergo-sum' => [ 'http://psi.tm.bond.edu.au/astma/1.0/#psi-sum-ergo-sum'], # 'regexp' => [ 'http://psi.tm.bond.edu.au/astma/1.0/#psi-regexp'], # 'validates' => [ 'http://psi.tm.bond.edu.au/astma/1.0/#psi-validates'], # 'astma-left' => [ 'http://psi.tm.bond.edu.au/astma/1.0/#psi-left'], # 'astma-right' => [ 'http://psi.tm.bond.edu.au/astma/1.0/#psi-right'],
our %PSIs = ( # core 'xtm-psi-topic' => 'http://www.topicmaps.org/xtm/1.0/#psi-topic', 'xtm-psi-association' => 'http://www.topicmaps.org/xtm/1.0/#psi-association', 'is-a' => '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', 'is-subclass-of' => 'http://www.topicmaps.org/xtm/#psi-superclass-subclass', 'superclass' => 'http://www.topicmaps.org/xtm/#psi-superclass', 'subclass' => 'http://www.topicmaps.org/xtm/#psi-subclass', 'xtm-psi-sort' => 'http://www.topicmaps.org/xtm/#psi-sort', 'xtm-psi-display' => 'http://www.topicmaps.org/xtm/#psi-display',
# Perl TM extensions 'universal-scope' => 'http://psi.tm.bond.edu.au/pxtm/1.0/#psi-universal-scope', 'basename' => 'http://psi.tm.bond.edu.au/pxtm/1.0/#psi-basename', 'name' => 'http://psi.tm.bond.edu.au/pxtm/1.0/#psi-name', 'has-indicator' => 'http://psi.tm.bond.edu.au/pxtm/1.0/#psi-has-indicator', 'subject-indicator' => 'http://psi.tm.bond.edu.au/pxtm/1.0/#psi-subject-indicator', 'is-reified-by' => 'http://psi.tm.bond.edu.au/pxtm/1.0/#psi-is-reified-by', 'reified' => 'http://psi.tm.bond.edu.au/pxtm/1.0/#psi-reified', 'reifier' => 'http://psi.tm.bond.edu.au/pxtm/1.0/#psi-reifier', 'has-data-occurrence' => 'http://psi.tm.bond.edu.au/pxtm/1.0/#psi-has-data-occurrence', 'has-uri-occurrence' => 'http://psi.tm.bond.edu.au/pxtm/1.0/#psi-has-uri-occurrence',
# AsTMa extensions 'sum-ergo-sum' => 'http://psi.tm.bond.edu.au/astma/1.0/#psi-sum-ergo-sum', 'regexp' => 'http://psi.tm.bond.edu.au/astma/1.0/#psi-regexp', 'validates' => 'http://psi.tm.bond.edu.au/astma/1.0/#psi-validates', 'left' => 'http://psi.tm.bond.edu.au/astma/1.0/#psi-left', 'right' => 'http://psi.tm.bond.edu.au/astma/1.0/#psi-right',
);
our @NATURAL_CONSTANTS = qw( thing universal-scope is-a instance class is-subclass-of superclass subclass xtm-psi-association );