Lines Matching refs:mtime
251 def mtime(self):
268 attribute, the ``.mtime`` (last modified time), and the page can exist
345 resp.last_modified = page.mtime
404 resp.last_modified = page.mtime
452 <input type="hidden" name="mtime" value="{{page.mtime}}">
484 We save the last modified time in a hidden ``mtime`` field. This way
486 mtime is 100000, and someone else edits and saves a revision changing
487 the mtime to 100010, we can use this hidden field to detect that
522 submit_mtime = int(req.params.get('mtime') or '0') or None
523 if page.mtime != submit_mtime:
533 The first thing we do is check the mtime value. It can be an empty
534 string (when there's no mtime, like when you are creating a page) or
565 After we check the mtime we get the form parameters from
632 resp.last_modified = page.mtime