> I've just started using TW, so apologies if this is a silly question.
Don't worry - we're a friendly bunch here, and always glad to help!
> What i want to know is whether I can change the Timeline date so that
> it reflects the date something occurred rather than the date I added
> it to TW.
That would be possible - but it would involve either using a custom
extended field[1] or modifying the respective tiddlers' modified or
created date.
A ForEachTiddler[2] macro call in combination with tiddler slices[3]
might be a more favorable solution.
For example, you might have a tiddler like this:
|Date|1969-07-20|
Apollo Eagle lands on the lunar surface.
The corresponding ForEachTiddler macro call might look like this:
---------------
<<forEachTiddler
where 'tiddler.tags.contains("tmp")'
sortBy 'getDateSlice(tiddler)'
script 'function getDateSlice(t) {
return store.getTiddlerSlice(t.title, "Date");
}'
write '"|" + getDateSlice(tiddler) + "|"
+ "[[" + tiddler.title + "]]|\n"'
begin '"|!Date|!Tiddler|h\n"'
>>
---------------
HTH.
-- F.
[1] http://www.tiddlywiki.org/wiki/Tiddler_Fields
[2] http://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin
[3] http://www.tiddlywiki.org/wiki/Tiddler_Slices
This might do the trick.
However, note that this will not create a new,separate tiddler field,
but rather override the existing last-modifed field.
> If you want to change the default date, find in the righthand
> Sidebartabs under 'more' the 'ViewTemplate' tiddler
For a list of available date formats, see the community wiki:
http://www.tiddlywiki.org/wiki/Timestamps
Some further options are explained here (towards the bottom):
http://www.tiddlywiki.org/wiki/Configuration_Options
HTH.
-- F.