summaryrefslogtreecommitdiff
path: root/fml/lib/FML
diff options
context:
space:
mode:
authorfukachan <fukachan>2004-02-01 14:38:03 +0000
committerfukachan <fukachan>2004-02-01 14:38:03 +0000
commit34b29f8eaf6b676ad092dbf58bb711acf2a7fc3d (patch)
tree58595ea4aada2bf196ecd4fa3387696c5a1629bb /fml/lib/FML
parentb562d181a89e15e23c4b57facec57d12305e796e (diff)
downloadfml8-34b29f8eaf6b676ad092dbf58bb711acf2a7fc3d.tar.gz
fml8-34b29f8eaf6b676ad092dbf58bb711acf2a7fc3d.tar.bz2
fml8-34b29f8eaf6b676ad092dbf58bb711acf2a7fc3d.zip
$sequence_file -> $article_sequence_file
use //o if could.
Diffstat (limited to 'fml/lib/FML')
-rw-r--r--fml/lib/FML/Article/Sequence.pm21
1 files changed, 9 insertions, 12 deletions
diff --git a/fml/lib/FML/Article/Sequence.pm b/fml/lib/FML/Article/Sequence.pm
index bca1f059..8c1fabc2 100644
--- a/fml/lib/FML/Article/Sequence.pm
+++ b/fml/lib/FML/Article/Sequence.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: Sequence.pm,v 1.6 2003/12/30 08:22:36 fukachan Exp $
+# $FML: Sequence.pm,v 1.7 2003/12/30 08:24:55 fukachan Exp $
#
package FML::Article::Sequence;
@@ -42,13 +42,11 @@ This routine uses C<File::Sequence> module.
# Return Value: NUM(sequence identifier)
sub increment_id
{
- my ($self) = @_;
- my $curproc = $self->{ _curproc };
- my $config = $curproc->config();
- my $pcb = $curproc->pcb();
-
- # XXX-TODO: sequence_file -> article_sequence_file
- my $seq_file = $config->{ sequence_file };
+ my ($self) = @_;
+ my $curproc = $self->{ _curproc };
+ my $config = $curproc->config();
+ my $pcb = $curproc->pcb();
+ my $seq_file = $config->{ article_sequence_file };
$curproc->lock($lock_channel);
@@ -93,8 +91,7 @@ sub id
}
# processes not Process::Distribute
else {
- # XXX-TODO: sequence_file -> article_sequence_file
- my $seq_file = $config->{ sequence_file };
+ my $seq_file = $config->{ article_sequence_file };
my $n = 0;
use File::Sequence;
@@ -144,7 +141,7 @@ sub speculate_max_id
ENTRY:
while (defined($fn = $dh->read)) {
- next ENTRY unless $fn =~ /^\d+$/;
+ next ENTRY unless $fn =~ /^\d+$/o;
use File::Spec;
$subdir = File::Spec->catfile($spool_dir, $fn);
@@ -171,7 +168,7 @@ sub speculate_max_id
ENTRY:
while (defined($fn = $dh->read)) {
- next ENTRY unless $fn =~ /^\d+$/;
+ next ENTRY unless $fn =~ /^\d+$/o;
$max = $max < $fn ? $fn : $max;
}