blob: 49b5f103b385bb41c149f2c69229b3aade5270e1 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
#!/usr/local/bin/perl -w
#-*- perl -*-
#
# Copyright (C) 2000 Ken'ichi Fukamachi
# All rights reserved.
#
# $FML$
#
package FML::Process::Scheduler;
use vars qw($debug @ISA @EXPORT @EXPORT_OK);
use strict;
use Carp;
use FML::Process::Kernel;
@ISA = qw(FML::Process::Kernel);
=head1 NAME
FML::Process::Scheduler -- demonstration
=head1 SYNOPSIS
use FML::Process::Configure;
$curproc = new FML::Process::Configure;
$curproc->run();
=head1 DESCRIPTION
FML::Process::Configure is the wrapper for fmlconf and makefml.
See C<FML::Process::Flow> for each method definition.
=head2 MODULES
These programs,
C<fmlconf> and C<makefml>,
bootstrap by using these modules in this order.
libexec/loader -> FML::Process::Switch -> FML::Process::Configure
=head1 METHODS
=head2 C<new($args)>
usual constructor.
=head2 C<prepare($args)>
dummy.
=cut
sub prepare { ; }
sub run
{
my ($self, $args) = @_;
use FileHandle;
use TinyScheduler;
my $schedule = new TinyScheduler;
$schedule->parse;
my $tmp = $schedule->tmpfile;
my $fh = new FileHandle $tmp, "w";
$schedule->print($fh);
$fh->close;
system "w3m -dump $tmp";
unlink $tmp;
}
# dummy to avoid the error ( undefined function )
sub AUTOLOAD
{
;
}
=head1 AUTHOR
Ken'ichi Fukamachi
=head1 COPYRIGHT
Copyright (C) 2001 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
=head1 HISTORY
FML::Process::Configure appeared in fml5 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut
1;
|