summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_actions.xml.ja
diff options
context:
space:
mode:
authorYoshiki Hayashi <yoshiki@apache.org>2002-09-11 11:15:29 +0200
committerYoshiki Hayashi <yoshiki@apache.org>2002-09-11 11:15:29 +0200
commit790490ae6cb2b64b3f5fecd03e73579dd9a2e253 (patch)
tree7e8a7ca61273af0f63fe6f720f3ef91769326249 /docs/manual/mod/mod_actions.xml.ja
parentUpdate transformations. (diff)
downloadapache2-790490ae6cb2b64b3f5fecd03e73579dd9a2e253.tar.xz
apache2-790490ae6cb2b64b3f5fecd03e73579dd9a2e253.zip
New Japanese translations.
Fowared port from 1.3. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96764 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_actions.xml.ja')
-rw-r--r--docs/manual/mod/mod_actions.xml.ja124
1 files changed, 124 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_actions.xml.ja b/docs/manual/mod/mod_actions.xml.ja
new file mode 100644
index 0000000000..8f53ec9c18
--- /dev/null
+++ b/docs/manual/mod/mod_actions.xml.ja
@@ -0,0 +1,124 @@
+<?xml version="1.0" encoding="iso-2022-jp"?>
+<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
+<modulesynopsis>
+<!-- English revision: 1.5 -->
+
+<name>mod_actions</name>
+
+<description>$B%a%G%#%"%?%$%W$d%j%/%(%9%H%a%=%C%I$K1~$8$F(B
+CGI $B%9%/%j%W%H$r<B9T$9$k5!G=$rDs6!(B</description>
+
+<status>Base</status>
+<sourcefile>mod_actions.c</sourcefile>
+<identifier>actions_module</identifier>
+
+<summary>
+ <p>$B$3$N%b%8%e!<%k$K$OFs$D$N%G%#%l%/%F%#%V$,$"$j$^$9!#(B<directive
+ module="mod_actions">Action</directive>
+ $B%G%#%l%/%F%#%V$OFCDj$N%?%$%W$N%U%!%$%k$r%j%/%(%9%H$5$l$?>l9g$K(B
+ CGI $B%9%/%j%W%H$,<B9T$5$l$k$h$&$K$7$^$9!#(B<directive
+ module="mod_actions">Script</directive>
+ $B%G%#%l%/%F%#%V$O%j%/%(%9%H$GFCDj$N%a%=%C%I$,;HMQ$5$l$?$H$-$K(B CGI
+ $B%9%/%j%W%H$,<B9T$5$l$k$h$&$K$7$^$9!#(B
+ $B$3$l$O%U%!%$%k$r=hM}$9$k%9%/%j%W%H$N<B9T$r$:$C$H4JC1$K$7$^$9!#(B</p>
+</summary>
+
+<directivesynopsis>
+
+<name>Action</name>
+
+<description>$BFCDj$N%O%s%I%i$d%3%s%F%s%H%?%$%W$KBP$7$F(B CGI $B$r<B9T$9$k$h$&$K(B
+$B@_Dj(B</description>
+
+<syntax>Action <em>action-type cgi-script</em></syntax>
+<contextlist>
+<context>$B%5!<%P@_Dj%U%!%$%k(B</context><context>$B%P!<%A%c%k%[%9%H(B</context>
+<context>$B%G%#%l%/%H%j(B</context><context>.htaccess</context>
+</contextlist>
+<override>FileInfo</override>
+
+<usage>
+ <p>$B$3$N%G%#%l%/%F%#%V$O(B <em>action-type</em>
+ $B$,%j%/%(%9%H$5$l$?$H$-$K(B <em>cgi-script</em>
+ $B$,<B9T$5$l$k$H$$$&F0:n$rDI2C$7$^$9!#(B<em>cgi-script</em> $B$O(B
+ <directive module="mod_alias">ScriptAlias</directive> $B$d(B
+ <directive module="mod_mime">AddHandler</directive> $B$K$h$C$F(B
+ CGI $B%9%/%j%W%H$K@_Dj$5$l$?%j%=!<%9$X$N(B URL-path $B$G$9!#(B
+ <em>Action-type</em> $B$K$O(B
+ <a href="../handler.html">handler</a> $B$+(B MIME
+ $B%3%s%F%s%H%?%$%W$r;XDj$G$-$^$9!#%j%/%(%9%H$5$l$?%I%-%e%a%s%H$N(B URL
+ $B$H%U%!%$%k$N%Q%9$OI8=`(B CGI $B4D6-JQ?t(B PATH_INFO $B$H(B PATH_TRANSLATED
+ $B$r;H$C$FEA$($i$l$^$9!#(B</p>
+
+<example>
+<title>$BNc(B</title>
+
+ # Requests for files of a particular type:<br />
+ Action image/gif /cgi-bin/images.cgi<br />
+<br />
+ # Files of a particular file extension<br />
+ AddHandler my-file-type .xyz<br />
+ Action my-file-type /cgi-bin/program.cgi<br />
+</example>
+
+ <p>$B:G=i$NNc$G$O!"(BMIME $B%3%s%F%s%H%?%$%W$,(B <code>image/gif</code>
+ $B$N%U%!%$%k$X$N%j%/%(%9%H$O!"$=$N%U%!%$%k$NBe$o$j$K;XDj$5$l$?%9%/%j%W%H(B
+ <code>/cgi-bin/images.cgi</code> $B$,8F$P$l$^$9!#(B</p>
+
+ <p>2 $BHVL\$NNc$G$O!"3HD%;R$,(B <code>.xyz</code> $B$N%U%!%$%k$X$N%j%/%(%9%H$O!"(B
+ $B$=$N%U%!%$%k$NBe$o$j$K;XDj$5$l$?%9%/%j%W%H(B
+ <code>/cgi-bin/program.cgi</code> $B$,8F$P$l$^$9!#(B</p>
+</usage>
+
+<seealso><directive module="mod_mime">AddHandler</directive></seealso>
+
+</directivesynopsis>
+
+<directivesynopsis>
+
+<name>Script</name>
+
+<description>$BFCDj$N%j%/%(%9%H%a%=%C%I$KBP$7$F(B CGI $B%9%/%j%W%H$r(B
+$B<B9T$9$k$h$&$K@_Dj(B</description>
+<syntax> Script <em>method cgi-script</em></syntax>
+<contextlist>
+<context>$B%5!<%P@_Dj%U%!%$%k(B</context><context>$B%P!<%A%c%k%[%9%H(B</context>
+<context>$B%G%#%l%/%H%j(B</context></contextlist>
+<usage>
+ <p>$B$3$N%G%#%l%/%F%#%V$O(B <em>method</em>
+ $B$H$$$&%a%=%C%I$r;H$C$F%j%/%(%9%H$,9T$J$o$l$?$H$-$K(B
+ <em>cgi-script</em> $B$r<B9T$9$k$H$$$&F0:n$rDI2C$7$^$9!#(B
+ <em>cgi-script</em> $B$O(B
+ <directive module="mod_alias">ScriptAlias</directive> $B$d(B
+ <directive module="mod_mime">AddHandler</directive> $B$K$h$C$F(B
+ CGI $B%9%/%j%W%H$K@_Dj$5$l$?%j%=!<%9$X$N(B URL-path $B$G$9!#(B
+ $B%j%/%(%9%H$5$l$?%I%-%e%a%s%H$N(B URL $B$H%U%!%$%k$N%Q%9$OI8=`(B CGI
+ $B4D6-JQ?t(B PATH_INFO $B$H(B PATH_TRANSLATED $B$r;H$C$FEA$($i$l$^$9!#(B</p>
+
+<note>
+ $BG$0U$N%a%=%C%IL>$r;HMQ$9$k$3$H$,$G$-$^$9!#(B
+ <strong>$B%a%=%C%IL>$OBgJ8;z>.J8;z$r6hJL$7$^$9(B</strong>$B!#$G$9$+$i!"(B
+ <code>Script&nbsp;PUT</code> $B$H(B <code>Script&nbsp;put</code>
+ $B$O$^$C$?$/0c$C$?8z2L$K$J$j$^$9!#(B
+</note>
+
+ <p>Script $B%3%^%s%I$O%G%U%)%k%H$NF0:n$rDI2C$9$k$@$1$G$"$k$3$H$K(B
+ $BCm0U$7$F$/$@$5$$!#$b$7(B CGI $B%9%/%j%W%H$,8F$P$l$?$j!"%j%/%(%9%H$5$l$?(B
+ $B%a%=%C%I$rFbIt$G07$&$3$H$N$G$-$kB>$N%j%=!<%9$,$"$l$P!"$=$l$,9T$J$o$l$^$9!#(B
+ <code>GET</code> $B%a%=%C%I$N(B Script $B$OLd9g$;0z?t$,$"$k>l9g$K$N$_(B
+ (<em>$B$?$H$($P(B</em>$B!"(Bfoo.html?hi) $B8F$P$l$k$H$$$&$3$H$K$bCm0U$7$F$/$@$5$$!#(B
+ $B$=$&$G$J$$>l9g$O!"%j%/%(%9%H$ODL>oDL$j=hM}$5$l$^$9!#(B</p>
+
+<example>
+<title>$BNc(B</title>
+ # For &lt;ISINDEX&gt;-style searching<br />
+ Script GET /cgi-bin/search<br />
+ # A CGI PUT handler<br />
+ Script PUT /~bob/put.cgi<br />
+</example>
+</usage>
+
+</directivesynopsis>
+
+</modulesynopsis>