Commit 0f92e420 authored by Romain Courteaud's avatar Romain Courteaud

erp5_web_renderjs_ui: fixup modification date retrieval

See nexedi/erp5@2e3f7a8a
parent 2c4b10c4
......@@ -10,13 +10,10 @@ response.setBase(None)
response.setHeader("Access-Control-Allow-Origin", "*")
web_page = context
web_section = REQUEST.get("current_web_section")
if web_section is None:
parent_value = context.getParentValue()
if parent_value.getPortalType() == "Web Section":
web_section = parent_value
web_section = context.getWebSectionValue()
if REQUEST.getHeader('If-Modified-Since', '') == web_page.getModificationDate().rfc822():
# Must-Revalidate caching policy uses Base_getWebSiteDrivenModificationDate
if REQUEST.getHeader('If-Modified-Since', '') == web_page.Base_getWebSiteDrivenModificationDate().rfc822():
response.setStatus(304)
return ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment