summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLTREE.pm
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-05-16 18:22:05 +0000
committerKarl Berry <karl@freefriends.org>2021-05-16 18:22:05 +0000
commit248607bb023f6076034784addb5070ed1f6ef843 (patch)
tree1726b0fa89c9e3e6e7fdb759d62e62011c9edc61 /Master/tlpkg/TeXLive/TLTREE.pm
parentef42b50b6cb2e5aa8bc7cb5e75c3199b781cd105 (diff)
podisms, list missing functions
git-svn-id: svn://tug.org/texlive/trunk@59226 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLTREE.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLTREE.pm23
1 files changed, 20 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLTREE.pm b/Master/tlpkg/TeXLive/TLTREE.pm
index 92b4914faa5..89054437014 100644
--- a/Master/tlpkg/TeXLive/TLTREE.pm
+++ b/Master/tlpkg/TeXLive/TLTREE.pm
@@ -19,8 +19,25 @@ C<TeXLive::TLTREE> -- TeX Live tree of all files
=head1 SYNOPSIS
use TeXLive::TLTREE;
- TeXLive::TLTREE->new ();
- ...
+ my $tltree = TeXLive::TLTREE->new();
+
+ $tltree->init_from_svn();
+ $tltree->init_from_statusfile();
+ $tltree->init_from_files();
+ $tltree->init_from_git();
+ $tltree->init_from_gitsvn();
+ $tltree->print();
+ $tltree->find_alldirs();
+ $tltree->print_node();
+ $tltree->walk_tree();
+ $tltree->add_path_to_tree();
+ $tltree->file_svn_lastrevision();
+ $tltree->size_of();
+ $tltree->get_matching_files();
+ $tltree->files_under_path();
+ $tltree->svnroot();
+ $tltree->revision();
+ $tltree->architectures();
=head1 DESCRIPTION
@@ -549,8 +566,8 @@ sub architectures {
return defined $self->{'archs'} ? @{ $self->{'archs'} } : ();
}
-
1;
+__END__
=head1 SEE ALSO