diff --git a/Donators b/Donators index 52fe25a1..d91a26b2 100644 --- a/Donators +++ b/Donators @@ -3,6 +3,11 @@ Also drop me a note, if you want the donated amount to be displayed. 2008: +* Peter Rufer +* Yann Le Du +* Wilson Bilkovich +* Galen Taylor +* Ben Hoffstein * Luc St-Louis * Robert Meerman * Silvio Di Stefano diff --git a/TODO b/TODO index 25e9d2d1..55ecdb97 100644 --- a/TODO +++ b/TODO @@ -7,7 +7,15 @@ BUGS: - can't reverse tab through the vimperator toolbar - searching backwards incrementally does not work i.e. with 'incsearch' set - http://msdn2.microsoft.com/en-us/library/ms535258.aspx does not scroll with j/k/etc. - same for http://forum.mootools.net/topic.php?id=3458 + same for http://forum.mootools.net/topic.php?id=3458 and + http://kainhofer.com/~lilypond/Documentation/user/lilypond/ + probable problem: + @media screen { + body>div#tocframe { + position: fixed + } + } + - insert abbreviations broken on - :sidebar improvements (:sidebar! Downloads while downloads is open should refocus the sidebar) - http://www.maximonline.com/jokes/ - the prev and next buttons on the image map are not hinted diff --git a/content/buffer.js b/content/buffer.js index c261d2db..961b40f1 100644 --- a/content/buffer.js +++ b/content/buffer.js @@ -682,7 +682,7 @@ liberator.Buffer = function () //{{{ nFeed++; var type = feedTypes[feed.type] || feedTypes["application/rss+xml"]; if (verbose) - yield [feed.title, liberator.util.highlightURL(feed.href, true) +  ({type})]; + yield [" " + feed.title, liberator.util.highlightURL(feed.href, true) +  ({type})]; } } } @@ -736,22 +736,22 @@ liberator.Buffer = function () //{{{ return; } - yield ["Title", doc.title]; - yield ["URL", liberator.util.highlightURL(doc.location.toString(), true)]; + yield [" Title", doc.title]; + yield [" URL", liberator.util.highlightURL(doc.location.toString(), true)]; var ref = "referrer" in doc && doc.referrer; if (ref) - yield ["Referrer", liberator.util.highlightURL(ref, true)]; + yield [" Referrer", liberator.util.highlightURL(ref, true)]; if (pageSize[0]) - yield ["File Size", pageSize[1] ? pageSize[1] + " (" + pageSize[0] + ")" + yield [" File Size", pageSize[1] ? pageSize[1] + " (" + pageSize[0] + ")" : pageSize[0]]; - yield ["Mime-Type", doc.contentType]; - yield ["Encoding", doc.characterSet]; - yield ["Compatibility", doc.compatMode == "BackCompat" ? "Quirks Mode" : "Full/Almost Standards Mode"]; + yield [" Mime-Type", doc.contentType]; + yield [" Encoding", doc.characterSet]; + yield [" Compatibility", doc.compatMode == "BackCompat" ? "Quirks Mode" : "Full/Almost Standards Mode"]; if (lastModVerbose) - yield ["Last Modified", lastModVerbose]; + yield [" Last Modified", lastModVerbose]; }); addPageInfoSection("m", "Meta Tags", function (verbose) @@ -761,7 +761,7 @@ liberator.Buffer = function () //{{{ let nodes = Array.map(metaNodes, function (node) [(node.name || node.httpEquiv), node.content]) .sort(function (a, b) String.localeCompare(a[0].toLowerCase(), b[0].toLowerCase())); - return ([node[0], liberator.util.highlightURL(node[1], false)] + return ([" " + node[0], liberator.util.highlightURL(node[1], false)] for each (node in arrayIter(nodes))); }); @@ -1289,7 +1289,8 @@ liberator.Buffer = function () //{{{ let opt = pageInfo[option]; if (opt) return liberator.template.table(opt[1], opt[0](true)); - else alert(option); + else + alert(option); },
); XML.prettyPrinting = false; liberator.echo(list, liberator.commandline.FORCE_MULTILINE);