> I would like to however, now that I can import properly, either be > able to use a normal search routine or to tag them when I import them > (if I import a bunch of them at once) so I can find tiddlers that > someone else created.
http://www.TiddlyTools.com/#ImportTiddlersPlugin has many more features than the basic built-in importer. Among them is the ability to add tags to 'inbound' tiddlers so they are easier to find later on, as well as keeping a cumulative [[ImportedTiddlers]] history so you can remember where you got them from. To list all tiddler "by author", you can use the following inline javascript [1]: --------------------- <script> var out=[]; var who=''; var tids=store.getTiddlers('modifier'); for (i=0; i<tids.length; i++) { var t=tids[i]; if (who!=t.modifier) { who=t.modifier; out.push('by '+who+':'); } out.push('{{indent{[['+t.title+']]}}}'); } return out.join(''); </script> --------------------- [1] requires http://www.TiddlyTools.com/#InlineJavascriptPlugin Simply place the above script into a tiddler (e.g., [[TabAuthor]]) and then add that tiddler to the <<tabs>> macro defined in [[SideBarTabs]], like this: <<tabs txtMainTab "Timeline" "Timeline" TabTimeline "Author" "by author" TabAuthor "All" "All tiddlers" TabAll "Tags" "All tags" TabTags "More" "More lists" TabMore>> note: inline scripts are not plugins, and should not be tagged with 'systemConfig'. For a comparison of plugins vs. inline scripts, please see: http://www.TiddlyTools.com/faq.html#FAQ_ScriptsAndPlugins enjoy, -e --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TiddlyWiki" 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/TiddlyWiki?hl=en -~----------~----~----~----~------~----~------~--~---

