D
Dr J R Stockton
In comp.lang.javascript message <[email protected]
No. The need is not to say that the list has been modified, but to say
that the list has not needed to be modified. That of course requires
the delivered page to be modified.
You need in fact two dates; one for the most recent change in the list,
and one for how up-to-date the list actually is. The latter could be
done by CRON, provided that the list-change process, when needed, is
correspondingly prompt and reliable.
If you keep changing Last-Modified, and keep displaying it with
corresponding words, and do not display the list-changed date, your
users will keep reading the list and finding no difference. They will
be annoyed.
, Wed, 9 Jan 2008 23:35:57, Jeremy J Starcher <[email protected]> posted:
I have a page on my site that lists used bikes, the page is automagically
built from my used-bike list.
During the summer we run out of used bikes. We'll go 3-4 months before
we have any available on our floor. (Just not that many out there --
tight market here.)
I field dozens, if not hundreds, of calls all saying that "You never
updated your used bike page! What use is that!"
So yes, there is a need to show that a page has been modified even if
none of the contents have changed. If it will field the calls, I'll have
the web page updated once a day. Touching the file on the server would
be easiest... just run a cron job.
No. The need is not to say that the list has been modified, but to say
that the list has not needed to be modified. That of course requires
the delivered page to be modified.
You need in fact two dates; one for the most recent change in the list,
and one for how up-to-date the list actually is. The latter could be
done by CRON, provided that the list-change process, when needed, is
correspondingly prompt and reliable.
If you keep changing Last-Modified, and keep displaying it with
corresponding words, and do not display the list-changed date, your
users will keep reading the list and finding no difference. They will
be annoyed.