Re: Last-modified date & indexing

Roy T. Fielding (fielding@avron.ICS.UCI.EDU)
Fri, 11 Nov 1994 14:27:39 +0100

> I think I should know the answer, but where is an HTTP server supposed to
> get the HTTP last-modified date? Is it from the file system (which
> produces different results on various OSes), from the HTML header, or...?

That is entirely up to the server. For the usual file objects, it is just
the file system last-mod date -- the server should be aware of the limitations
of the OS under which it runs. For objects with includes, it may be the
most recent of the set of last-mod dates of its component parts. For
database gateways, it may be the last-update timestamp of the record.
For virtual objects, it may be the last time its internal state changed.
In any case, the HTTP client should only know (and care) about the result --
whatever gets stuck in the Last-modified: header -- and not worry about
how it was obtained.

However, under no circumstances should it ever come from the HTML header.
That mechanism was never intended to provide values for metainformation
that can be (and is) more readily obtained elsewhere.

.....Roy Fielding ICS Grad Student, University of California, Irvine USA
<fielding@ics.uci.edu>
<URL:http://www.ics.uci.edu/dir/grad/Software/fielding>