Update to w3m-0.2.1-inu-1.6.

This commit is contained in:
Akinori Ito
2001-11-15 00:32:13 +00:00
parent 6c63633545
commit 85da7ee692
82 changed files with 10900 additions and 217 deletions

View File

@@ -0,0 +1,58 @@
#!/usr/bin/perl
$PRE_MENU = "";
$POST_MENU = <<EOF;
nop "----------------------"
func "<22>֥å<D6A5><C3A5>ޡ<EFBFBD><DEA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɲ<EFBFBD> (a)" ADD_BOOKMARK "aA"
EOF
# $POST_MENU = <<EOF;
# nop "----------------------"
# func "Add Bookmark (a)" ADD_BOOKMARK "aA"
# EOF
@section = ();
%title = ();
%url = ();
while(<>) {
if (/<h2>(.*)<\/h2>/) {
$s = &unquote($1);
push(@section, $s);
} elsif (/<li><a href=\"(.*)\">(.*)<\/a>/) {
$u = &unquote($1);
$t = &unquote($2);
$url{$s} .= "$u\n";
$title{$s} .= "$t\n";
}
}
print "menu Bookmarks\n";
print $PRE_MENU;
foreach(@section) {
print " popup\t\"$_\"\t\"$_\"\n";
}
print $POST_MENU;
print "end\n";
foreach(@section) {
print "\n";
print "menu \"$_\"\n";
@ts = split("\n", $title{$_});
@us = split("\n", $url{$_});
while(@ts) {
$t = shift @ts;
$u = shift @us;
print " func\t\"$t\"\tGOTO\t\"\"\t\"$u\"\n";
}
print "end\n";
}
sub unquote {
local($_) = @_;
s/\&lt;/\</g;
s/\&gt;/\>/g;
s/\&nbsp;/ /g;
s/\&amp;/\&/g;
return $_;
}