> list all systemConfig tiddlers to take pertinent information from
> plugin headers
> [...]
> as a Bookmarklet it may be a tool that would encourage users to strive for 
> the latest plugins
> for their older TiddlyWikis.

I agree that this would be desirable - there's a ticket to have such 
info accessible via the backstage:
     http://trac.tiddlywiki.org/ticket/438

FWIW, a lot of this info is already being gathered, so one could create 
a bookmarklet* from something like the following:
---------------
(function() {

var plugins = installedPlugins.map(function(itm) {
     return [
         itm.Name || "N/A",
         itm.Version || "N/A",
         itm.Author || "N/A"
     ].join("; ");
});

var info = version.title + " " + formatVersion() + "\n" +
     plugins.join("\n") + "\n";

wikify(info, document.body);

})();
---------------
(for lack of a better idea, this just appends the plugin info to the 
bottom of the page)


-- F.


* e.g. using one of these tools:
     http://xdexavier.googlepages.com/sharebookmarklet.html
     http://subsimple.com/bookmarklets/jsbuilder.htm
     http://4umi.com/web/bookmarklet/edit.php

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWikiDev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to