Intial commit
[profile/ivi/w3m.git] / Bonus / README.eng
1 2ch.cgi
2
3   [w3m-dev 03635] 2ch.cgi
4   localcgi to read 2ch dat directly
5
6   w3m file:/cgi-bin/2ch.cgi?http://pc.2ch.net/test/read.cgi/unix/1035755937/
7
8   It uses wget -c.
9   `dat' files are recorded under ~/w3m2ch/.
10   You can not post.
11
12 smb.cgi
13
14   [w3m-dev 03634] smb.cgi
15   localcgi to access SMB.
16   Since it uses nmblookup, smbclient, you should install samba.
17   Password can be passed to smbclient:
18   1) When the password is set by contents of ~/.w3m/smb and
19      -A option available, `smbclient -A ~/.w3m/smb' is used.
20   2) When the environment variable PASSWD_FILE, it is used.
21   3) When the password is set by contents of ~/.w3m/smb,
22      the password is passed via standrad I/O using
23      the environment variable PASSWD_FD.
24
25 google.cgi
26
27   [w3m-dev 03625] keymap key SEARCH string
28
29 html2latex
30
31   Convert HTML document into LaTeX. Ruby script. incomplete.
32
33   Usage:
34
35     html2latex file.html > file.tex
36
37   Why this script is here?
38
39     To exploit code for makeref. :-)
40
41 makeref
42
43   Read HTML document and number the anchors. Print numbered document
44   into standard output and append reference index. Ruby script.
45
46   Usage:
47
48     makeref [-u] [-url base_url] [file]
49
50     -url: Specify URL of the document. It is used to complete link
51           in the document.
52
53     -u: Append URL after each anchor, instead of reference number.
54
55   Bugs
56
57     If there are any error in HTML (unbalanced < , character entity
58     without ; , etc.), output will be miserable.
59
60 htmldump
61
62   Read HTML document from URL, number the anchors and format it,
63   and output it on standard output.
64
65   Usage
66
67     htmldump [-u] [URL]
68
69     -u: Append URL after each anchor, instead of reference number.
70
71     If URL is omitted, $WWW_HOME is used instead.
72
73   Bugs
74
75     It assumes that the document on URL is HTML.
76     As it uses makeref to number the anchor, it can't handle any document
77     makeref can't handle.