Re: [tw] [TW5] How to insert the current date and time of the file in a tiddler?

2014-09-24 Thread Jeremy Ruston
in the [TWc] there was a macro to show the current filedate and time with fileDate. How can I get this in [TW5]? I believe that that macro is part of the TiddlyTools collection from Eric Shulman. I don't think that we can directly implement it for TW5 because we don't have access to an API that

Re: [tw] [TW5] How to insert the current date and time of the file in a tiddler?

2014-09-24 Thread Eric Shulman
On Wednesday, September 24, 2014 4:31:24 AM UTC-7, Jeremy Ruston wrote: in the [TWc] there was a macro to show the current filedate and time with fileDate. How can I get this in [TW5]? I believe that that macro is part of the TiddlyTools collection from Eric Shulman. I don't think that

Re: [tw] [TW5] How to insert the current date and time of the file in a tiddler?

2014-09-24 Thread Jeremy Ruston
What about the value of document.lastModified? That's what my DatePlugin code returns. Gosh, I did not know about that. Neat. But it doesn't seem to operate how I would expect for documents loaded from a file:// URI. In Chrome at least, each time one runs document.lastModified in the

Re: [tw] [TW5] How to insert the current date and time of the file in a tiddler?

2014-09-24 Thread Uwe
I pasted your code (slightly adapted to the german language notation) in a tiddler and it works. Thank you very much! \define fileDate() $list filter=[!sort[modified]limit[1]] $view field=modified format=date template=DDD, DD. MMM , 0hh:0mm/ Uhr. /$list \end Letzte Änderung: fileDate This

Re: [tw] [TW5] How to insert the current date and time of the file in a tiddler?

2014-09-24 Thread PMario
On Wednesday, September 24, 2014 4:31:53 PM UTC+2, Uwe wrote: I pasted your code (slightly adapted to the german language notation) in a tiddler and it works. Thank you very much! Hi Uwe, I hope you know, that there is some basic TW documentation available in German already. [1][2] I

Re: [tw] [TW5] How to insert the current date and time of the file in a tiddler?

2014-09-24 Thread Jeremy Ruston
 When do you plan the next release? I'm planning to release 5.1.2 on Friday or Saturday this week, all being well. Best wishes Jeremy — jeremy.rus...@gmail.com On Wed, Sep 24, 2014 at 5:47 PM, PMario pmari...@gmail.com wrote: On Wednesday, September 24, 2014 4:31:53 PM UTC+2, Uwe