Script

Modification date demo

I have written a moddate include file which returns the modification date of the current file.
Here is what it returns for this page:

This script was last modified on: Monday, September 14, 2009 (Local time: Fri, 4 Sep 2009 14:00:00 +1000)

To implement this in your own pages, get the script of the moddate.irev file, make a moddate.irev file,
change it to use your local time zone, save it in your includes folder, and use it as follows:

<?rev
	include "includes/moddate.irev"
?>

This works by looking at the $_SERVER["PATH_TRANSLATED"] parameter, which for this page is:

$_SERVER["PATH_TRANSLATED"]:	/home/troz/troz.net/onrev/samples/moddate_demo.irev

The shell command: ls -l "/home/troz/troz.net/onrev/samples/moddate_demo.irev" lists the details for the specified file.

-rw-r--r-- 1 troz troz 2191 Sep 14  2009 /home/troz/troz.net/onrev/samples/moddate_demo.irev

And the modification date is extracted from that line, and can then be formatted in any way you wish,
remembering that sometimes the time will be shown and sometimes the year:

	Sep 14  2009 

For checking purposes, here is the data for every irev file in my samples folder:

-rw-r--r-- 1 troz troz 1342 Jul 27  2009 answer.irev
-rw-r--r-- 1 troz troz 1172 Apr 18 19:03 button.irev
-rw-r--r-- 1 troz troz 5833 Jul 27 2009 calendar.irev
-rw-r--r-- 1 troz troz 3955 Jul 27 2009 cookies.irev
-rw-r--r-- 1 troz troz 2286 Oct 18 2009 desktop.irev
-rw-r--r-- 1 troz troz 1837 Jul 27 2009 fib.irev
-rw-r--r-- 1 troz troz 4442 Aug 14 2009 form.irev
-rw-r--r-- 1 troz troz 2263 Jul 27 2009 human_check.irev
-rw-r--r-- 1 troz troz 657 Jul 27 2009 index.irev
-rw-r--r-- 1 troz troz 5209 Sep 14 2009 links.irev
-rw-r--r-- 1 troz troz 1693 Jul 27 2009 lookup.irev
-rw-r--r-- 1 troz troz 1678 Aug 6 2009 mobile.irev
-rw-r--r-- 1 troz troz 2191 Sep 14 2009 moddate_demo.irev
-rw-r--r-- 1 troz troz 3787 Jul 27 2009 numbers.irev
-rw-r--r-- 1 troz troz 6724 Apr 20 18:14 photos.irev
-rw-r--r-- 1 troz troz 7557 Aug 1 2009 poll.irev
-rw-r--r-- 1 troz troz 3065 Aug 3 2009 search.irev
-rw-r--r-- 1 troz troz 1786 Sep 14 2009 showscript.irev
-rw-r--r-- 1 troz troz 2381 Aug 3 2009 sitemap.irev
-rw-r--r-- 1 troz troz 3698 Aug 19 2009 slideshow.irev
-rw-r--r-- 1 troz troz 2727 Jul 27 2009 test.irev
-rw-r--r-- 1 troz troz 1227 Jul 27 2009 testcal.irev
-rw-r--r-- 1 troz troz 5140 Aug 31 2009 timezones.irev
-rw-r--r-- 1 troz troz 2061 Jul 29 08:32 touch.irev
-rw-r--r-- 1 troz troz 4928 Sep 14 2009 upload.irev
-rw-r--r-- 1 troz troz 2000 May 30 18:46 various.irev
-rw-r--r-- 1 troz troz 1644 Aug 3 2009 walker.irev

Include files:

includes/moddate.irev