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