blob: 25aae3074d951fabd2fc26714d4ab805ff76fa0a (
plain)
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
|
# $Id$
# TeXLive::TeXCatalogue - module for accessing the TeX Catalogue
# Copyright 2007 Norbert Preining
#
# This file is licensed under the GNU General Public Licence version 2
# or any later version.
die "THIS MODULE IS NOT EVEN CLOSE TO BE FINISHED\n";
package TeXLive::TeXCatalogue;
use XML::Parser;
sub new {
my $class = shift;
my %params = @_;
my $self = {
location => $params{'location'},
};
bless $self, $class;
if (defined($self->{'location'})) {
$self->initialize();
}
return $self;
}
sub initialize {
my $class = shift;
die "Not done yet ...\n";
}
1;
__END__
=head1 NAME
TeXLive::TeXCatalogue - Accessing the TeX Catalogue
=head1 SYNOPSIS
missing
=head1 DESCRIPTION
The L<TeXLive::TeXCatalogue> module provides access to the data stored
in the TeX Catalogue.
=head1 AUTHORS AND COPYRIGHT
This script and its documentation were written for the TeX Live
distribution (L<http://tug.org/texlive>) and both are licensed under the
GNU General Public License Version 2 or later.
=cut
### Local Variables:
### perl-indent-level: 2
### tab-width: 2
### indent-tabs-mode: nil
### End:
# vim:set tabstop=2: #
|