This will probably require some evaluated code, so you should get either
of these plugins (they're pretty much identical):
http://tw.lewcid.org/#writeItMacro
http://devpad.tiddlyspot.com/#EvalMacro
Using the EvalMacro, you'd add this to your DefaultTiddlers tiddler:
<<eval {{
var dateFormat = "DD MMM YYYY";
var date = new Date().formatString(dateFormat);
"[[" + date + "]]";
}}>>
(Of course you can change the dateFormat string ("DD MMM YYYY") to your
preferred format.)
HTH.
-- F.
Quite obviously, such a project would be much more suited for your
expertise.
So how about you hold off on your world domination plans for a minute
and code this thing?
-- F.
You can do this with a one-line "systemConfig" tiddler (aka, plugin)
that dynamically sets the DefaultTiddlers *shadow* tiddler each time
the document is loaded:
Start by creating a tiddler (e.g., [[DefaultTiddlersTweak]])
containing the following line of javascript code:
------------
config.shadowTiddlers.DefaultTiddlers=new Date().formatString("0DD-MMM-
YYYY");
------------
Then, make sure to remove any existing [[DefaultTiddlers]] tiddler
definition so that the next time you open your document, it will use
the shadow [[DefaultTiddlers]] definition (which has already been set
by the one-line plugin code, above.
enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
This dynamically re-writes the DefaultTiddlers *shadow* definition
each time the document is loaded. Then,