diff options
author | Rich Bowen <rbowen@apache.org> | 2012-04-26 15:35:04 +0200 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2012-04-26 15:35:04 +0200 |
commit | 6f3fe670108c26161d744c360591b5edc762fe01 (patch) | |
tree | 1d9435de7e2c3b22765cfe9395cc71cc390542ae /docs/manual/howto/cgi.html.ja.utf8 | |
parent | Remove trailing and leading newlines and spaces caused by xml formatting styles (diff) | |
download | apache2-6f3fe670108c26161d744c360591b5edc762fe01.tar.xz apache2-6f3fe670108c26161d744c360591b5edc762fe01.zip |
Update transforms.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1330844 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/howto/cgi.html.ja.utf8')
-rw-r--r-- | docs/manual/howto/cgi.html.ja.utf8 | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/docs/manual/howto/cgi.html.ja.utf8 b/docs/manual/howto/cgi.html.ja.utf8 index 4ec688c79e..9845c69676 100644 --- a/docs/manual/howto/cgi.html.ja.utf8 +++ b/docs/manual/howto/cgi.html.ja.utf8 @@ -238,11 +238,12 @@ というファイルに保存し、それを <code>cgi-bin</code> ディレクトリに置いてください。</p> - <div class="example"><p><code> - #!/usr/bin/perl<br /> - print "Content-type: text/html\n\n";<br /> - print "Hello, World."; - </code></p></div> + <pre class="prettyprint lang-perl"> +#!/usr/bin/perl<br /> +print "Content-type: text/html\n\n";<br /> +print "Hello, World."; + </pre> + <p>Perl に精通していなくても、 何が起こるかを理解することはできるでしょう。1 行目は、 @@ -459,15 +460,14 @@ <a href="../env.html">あなた自身の環境変数を加える</a>ための、 多くの異なる方法を用意してします。</p> - <div class="example"><p><code> - #!/usr/bin/perl<br /> - print "Content-type: text/html\n\n";<br /> - foreach $key (keys %ENV) {<br /> - <span class="indent"> - print "$key --> $ENV{$key}<br>";<br /> - </span> - } - </code></p></div> + <pre class="prettyprint lang-perl"> +#!/usr/bin/perl +print "Content-type: text/html\n\n"; +foreach $key (keys %ENV) { + print "$key --> $ENV{$key}<br>"; +} + </pre> + <h3><a name="stdin" id="stdin">STDIN と STDOUT</a></h3> |