I have a few items...

1.  I have a report generated once every evening,
    and I think I can get the browser to cashe this
    locally by setting the Expires HTTP header, right?
    Any tricks?

2.  In the Page class, I'd like to see a getCreatedDate()
    and getModifiedDate() methods to return the timestamp
    when the object requested was created and/or modified.
    The default implementation could return None.

    In this way if those functions were implemented, the
    Page class could automatically provide the Date and
    Last-Modified headers.  

3.  Further, I'd like the Page class to handle 
    HTTP GET where If-Modified-Since is provided.
 
    Ideally, this can call the getModified() date,
    and respond appropriately if the browser's 
    copy is up-to-date.

4.  Also, this I guess is icing, is to handle the HEAD
    request by providing the Title, Date, Last-Modified
    and other headers.

Thoughts? (esp on the last one)

Clark

_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to