Out of date plugins can be a problem for both users and developers.

Below is a forEach script I found somewhere and cobbled it up to list
all systemConfig tiddlers to take pertinent information from plugin
headers.  I have been using it with a proxy to inject it into a
developer's TiddlyWiki to check for the latest versions and again to
check my own.

Obviously that method is not for everyone but as a Bookmarklet it may
be a tool that would encourage users to strive for the latest plugins
for their older TiddlyWikis.

It is so handy and useful I thought it would make a good Bookmarklet,
not only for users to keep their distribution TiddlyWikis up to date
but, it could be a good diagnostic tool for developers to quickly
check a user's TiddlyWiki for out of date plugins and conflicts when
they are having problems.

I wonder if it would be practical to make a Bookmarklet with the same
capabilities.

---------------------------
<<forEachTiddler
     where 'tiddler.tags.contains("systemConfig")'
     sortBy 'tiddler.title.toLowerCase()'
     write '"|[[" + tiddler.title +"]]" + "|[["+tiddler.text.length
+"]]" + "|[[" +tiddler.modified.formatString("YYYY.0MM.0DD") + "]]|"
         + store.getTiddlerSlice(tiddler.title, "Author") + "|"
         + store.getTiddlerSlice(tiddler.title, "Version") + "|"
         + store.getTiddlerSlice(tiddler.title, "CoreVersion")+"|\n"'
     begin '"|sortable|k\n"
         +"|>|>|>|>|>|!Information from Plugin Headers|h\n"
         + "|!Plugin|!Size|!Modified|!Author|!Version|!CoreVersion|h
\n"'>>
----------------------------

Morris
--~--~---------~--~----~------------~-------~--~----~
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