ソースの表示

                             <p>ソースコード</p>
 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
#!/usr/bin/perl

# require Jcode;
# *Jgetcode = &amp;Jcode::getcode;
# *Jconvert = &amp;Jcode::convert;

require "../../../cgi-bin/jcode.pl";
*Jgetcode = &amp;jcode::getcode;
*Jconvert = sub { &amp;jcode::to($_[1], $_[0], $_[2]); };

@styles = ("../../ipp.css","../test.css");
$title = "テスト11";
$mycode = &amp;Jgetcode($title);
# $cutcode = "utf8";
$cutcode = "euc";

$scrname = $ENV{'SCRIPT_NAME'};
$scrname =~ s/_1|_u// ;
if($scrname =~ /(ts[0-9]{4}.cgi$)/){
    $filename = $+ ;
    $filename =~ s/cgi/htm/ ;
}

$file = "ts0010.cgi";
$fcode = "sjis";

{

    &amp;printHeader;

    print "<div class=test>n";

    &amp;Jprint ("$cutcode で $file の出力をする。<br>n");
    print "<ol>";
    open(IN, $file);
    while($line = <IN>){
        $line =~ s/&amp;/&amp;amp;/g;
        $line =~ s/"/&amp;quot;/g;
        $line =~ s/</&amp;lt;/g;
        $line =~ s/>/&amp;gt;/g;
        $line =~ s/ /&amp;nbsp;/g;
        &amp;Jfprint ("<li>$line");
    }
    close(IN);
    print "</ol>";

    print "</div>";

    &amp;printFooter;

    exit;
}

sub printHeader{
    print "Content-type: text/htmlnn";
    &amp;Jprint ("<html lang=ja><head><title>", $title, "</title>", "n");
    foreach $st (@styles){
        print "<link rel="stylesheet" type="text/css" href="$st">n";
    }
    print "</head><body>n";
    print "<div class=head>n";
    &amp;Jprint ("<h1>", $title, "</h1><hr>n");
    &amp;printlinks;
    print "<hr></div>n";
}

sub printFooter{
    print "<div class=foot><hr>n";
    &amp;printlinks;
    print "<hr>n";
    open(IN, "../../sig.txt");
    while ($sig = <IN>){ print $sig; }
    close(IN);
    print "</div>n";
    print "</body></html>n";
}

sub printlinks{
    print "<a href="../../../index.htm">Home</a>n";
    print "/n<a href="../../">Perl</a>n";
    print "/n<a href="../">TestCGI Index</a>n";
    if($filename){
        &amp;Jprint ("/n<a href="../$filename">", $title, "の解説", "</a>n");
    }
}

sub Jprint{
    foreach (@_) { print &amp;Jconvert($_, $cutcode, $mycode); }
}

sub Jfprint{
    foreach (@_) { print &amp;Jconvert($_, $cutcode, $fcode); }
}
                          </div>
comments powered by Disqus
Built with Hugo
Theme Stack designed by Jimmy