1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 07:02:27 +01:00

Hack on :help NEWS.

--HG--
extra : rebase_source : ad2bc75249d38f42f07b705c1799d7bb1fa2e3ad
This commit is contained in:
Kris Maglione
2011-02-17 17:46:34 -05:00
parent 5cf0480676
commit 35bbf562d4

View File

@@ -754,6 +754,16 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
return res;
}
let body = rec(NEWS, 0);
for each (let li in body..li) {
let list = li..li.(@NS::highlight == "HelpNewsOld");
if (list.length() && list.length() == li..li.length()) {
for each (let li in list)
li.@NS::highlight = "";
li.@NS::highlight = "HelpNewsOld";
}
}
XML.prettyPrinting = XML.ignoreWhitespace = false;
return ["application/xml",
'<?xml version="1.0"?>\n' +
@@ -765,7 +775,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
<h1 tag="versions news NEWS">{config.appName} Versions</h1>
<toc start="2"/>
{rec(NEWS, 0)}
{body}
</document>.toXMLString()))
];
}