summaryrefslogtreecommitdiffstats
path: root/docs/manual/howto/cgi.html.ja.utf8
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2012-04-26 15:35:04 +0200
committerRich Bowen <rbowen@apache.org>2012-04-26 15:35:04 +0200
commit6f3fe670108c26161d744c360591b5edc762fe01 (patch)
tree1d9435de7e2c3b22765cfe9395cc71cc390542ae /docs/manual/howto/cgi.html.ja.utf8
parentRemove trailing and leading newlines and spaces caused by xml formatting styles (diff)
downloadapache2-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.utf828
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 --&gt; $ENV{$key}&lt;br&gt;";<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 --&gt; $ENV{$key}&lt;br&gt;";
+}
+ </pre>
+
<h3><a name="stdin" id="stdin">STDIN と STDOUT</a></h3>