* doc-jp/README.pre_form: added [w3m-dev 03373]

* doc/README.pre_form: brief translation
From: Fumitoshi UKAI  <ukai@debian.or.jp>
This commit is contained in:
Fumitoshi UKAI
2002-11-05 16:37:36 +00:00
parent f23dd7b4a3
commit 8f470bfe83
3 changed files with 81 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2002-11-06 Fumitoshi UKAI <ukai@debian.or.jp>
* doc-jp/README.pre_form: added [w3m-dev 03373]
* doc/README.pre_form: brief translation
2002-11-06 Fumitoshi UKAI <ukai@debian.or.jp>
* etc.c (PASS_IS_READABLE_MSG): deleted
@@ -4154,4 +4159,4 @@ a * [w3m-dev 03276] compile error on EWS4800
* release-0-2-1
* import w3m-0.2.1
$Id: ChangeLog,v 1.471 2002/11/05 16:03:12 ukai Exp $
$Id: ChangeLog,v 1.472 2002/11/05 16:37:36 ukai Exp $

33
doc-jp/README.pre_form Normal file
View File

@@ -0,0 +1,33 @@
pre_form: $BFCDj$N%5%$%H$r3+$$$?;~$K!"(Bform $B$rM=$a@_Dj$9$k5!G=$G$9!#(B
$BNI$/;H$&7G<(HD$H$+$G$OJXMx$H;W$$$^$9$,!"0BA4@-$,5>@7$K$J$k$+$b(B
$B$7$l$^$;$s!#FC$K(B submit $B$O5$$r$D$1$F;H$C$F2<$5$$!#(B
$B%G%U%)%k%H$N@_Dj%U%!%$%k$O(B ~/.w3m/pre_form $B$G$9!#(B
$B@_Dj%U%)!<%^%C%H$O!"(B
url <url> [<action>]
text <name> <value>
file <name> <value>
password <name> <value>
checkbox <name> <value> [<checked>]
radio <name> <value>
section <name> <value>
submit [<name>]
textarea <name>
<value>
:
/textarea
$B$G$9!#(B
<action> $B$,@_Dj$7$F$"$k;~$O!"0lCW$9$k(B action $BB0@-$r;}$D(B form $B$N$_(B
$B@_Dj$7$^$9!#(B
text, file, password, select, textarea $B$O0lCW$9$k(B name $BB0@-$r;}$D(B
input, select $B$^$?$O(B textarea $BMWAG$N(B value $BB0@-$r@_Dj$7$^$9!#(B
checkbox, radio $B$O(B name $BB0@-$H(B value $BB0@-$,0lCW$9$k(B input $BMWAG$r(B
check $B$7$^$9!#(B
<checked> $B$,(B 0$B!"(Bno $B$^$?$O(B off $B$N>l9g$O(B checkbox $B$N(B check $B$r30$7$^$9!#(B
submit $B$N>l9g!"(B<name> $B$,@_Dj$7$F$"$k;~$O!"0lCW$9$k(B name $BB0@-$r;}$D(B
input $BMWAG$r(B submit $B$7$^$9!#(B<name> $B$,@_Dj$7$F$$$J$$>l9g$O!":G8e$N(B
input type=submit $BMWAG$r(B submit $B$7$^$9!#(B
<name> $B$d(B <value> $B$O!"%7%'%k$NMM$K(B \,'$B!A(B',"$B!A(B" $B$G%/%)!<%H2DG=$G$9!#(B

42
doc/README.pre_form Normal file
View File

@@ -0,0 +1,42 @@
pre_form: Feature to configure form parameters when opening specific site.
It would be convinient for sites where you often visit, but it may introduce
some security issues. Be careful to use this feature, especially `submit'
params described below.
Default configuration file for pre_form is ~/.w3m/pre_form.
Syntax as follows:
url <url> [<action>]
text <name> <value>
file <name> <value>
password <name> <value>
checkbox <name> <value> [<checked>]
radio <name> <value>
section <name> <value>
submit [<name>]
textarea <name>
<value>
:
/textarea
If <action> is set, form which has matched <action> attributes
will be configured by this pre_form.
The line begining with text, file, passwd, select, textarea means that
it will set value to <value> in input, select or textarea element which
name attribute matches with <name>.
The line beginning with checkbox, radio means that it will check
input element which name and value attribute matches with <name> and <value>
respectively. If <checked> is 0, no, or off, disable check of the checkbox.
The line beginning with submit means that it will submit input element which
name attribute matches with <name>, or submit last <input type=submit>
element if no <name> specified.
You quote \, ' (single-quote) or " (double quote) as you do in shell.