> A special timestamp tiddler that gets updated on saving is an interesting > idea: I've added a ticket here: >
I can envision that timestamp being transcluded in "Tool" right under the wiki version number or in Control Panel along with number of tiddler & overwritten shadows. I often use a similiar idea with wiki's I customize for ppl-- its default startup tiddler will have a last updated text line using last modified non-system tiddler. The bit of code I posted above I took even further-- made it into a wiki monitor (like FF web tools' log fundtion), it can show: * what the wiki does-- a partial behind the scenes view-- when you're opening & closing tiddlers, clicking tabs * or display temp and state tiddler updating-- to check if your buttons, sets are doing what you hope they should be doing Using esoteric wiki wizardry formulas (ie: this and that and some of that = looks like it worked)-- the last wiki activity code and html code block in lists and my fields diaplay code into that below __LATEST WIKI ACTIVITY__: <$list filter= "[all[tiddlers]!sort[modified]limit[10]]"> <$view field="title"/> - <$view field="modified" format="date" template="DD mmm YYYY 0hh:0mm:0ss"/><br/> </$list> __LAST 10 TEMP STATE ACTIONS__:<br/> tiddler title - modified date/time<br/> ``text field contents``<br/> ``custom fields`` content (if any)<hr/> <$list filter="[prefix[$:/temp]] [prefix[$:/state]] +[!sort[modified]limit[10]]"> <$view field="title"/> - <$view field="modified" format="date" template="DD mmm YYYY 0hh:0mm:0ss"/><br/> <pre><$view field="text"/></pre> <$list filter="[all[current]fields[]sort[title]] -[all[shadows]removeprefix[$:/language/Docs/Fields/]] +[append[list]]" variable="listItem"> <span class="rspannbrk"><span class="ragsspannumb"><$text text=<<listItem>> /></span> <$view field=<<listItem>>/></span> </$list> <hr style="border:dotted 3px;"/> </$list> -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/b3a8e0a4-8dcb-4e56-bca4-fdf4c7288318%40googlegroups.com.

