# #
# File: shared/Arc/Archive.pm #
# #
-# Authors: Andre Malo <nd@o3media.de>, 2001-04-29 #
+# Authors: Andre Malo <nd@o3media.de>, 2001-06-16 #
# #
# Description: Severance of Threads and archiving #
# #
################################################################################
use strict;
+use vars qw(
+ @EXPORT
+ $VERSION
+);
use Arc::Test;
use Lock qw(:ALL);
use XML::DOM;
+################################################################################
+#
+# Version check
+#
+$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+
################################################################################
#
# Export
#
use base qw(Exporter);
-@Arc::Archive::EXPORT = qw(cut_tail);
+@EXPORT = qw(cut_tail);
### sub cut_tail ($) ###########################################################
#
\%failed;
}
-# keep require happy
+# keep 'require' happy
1;
#
################################################################################
use strict;
+use vars qw(
+ @EXPORT
+ $VERSION
+);
+
+################################################################################
+#
+# Version check
+#
+$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
################################################################################
#
# Export
#
use base qw(Exporter);
-@Arc::Test::EXPORT = qw(get_obsolete_threads);
+@EXPORT = qw(get_obsolete_threads);
### sub get_obsolete_threads ($) ###############################################
#
[sort {$a <=> $b} splice @sorted => 0, $obsolete];
}
-# keep require happy
+# keep 'require' happy
1;
#