Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
056cd21a
Commit
056cd21a
authored
Nov 13, 2001
by
matt@zope.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated with lazy item mention
parent
7c734bb2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
lib/python/Products/OFSP/help/Request.py
lib/python/Products/OFSP/help/Request.py
+13
-1
No files found.
lib/python/Products/OFSP/help/Request.py
View file @
056cd21a
...
...
@@ -95,7 +95,7 @@ class Request:
The request object is a mapping object that represents a
collection of variable to value mappings. In addition, variables
are divided into f
our
categories:
are divided into f
ive
categories:
- Environment variables
...
...
@@ -115,6 +115,18 @@ class Request:
These are the cookie data, if present.
- Lazy Data
These are callables which are deferred until explicitly
referenced, at which point they are resolved (called) and
the result stored as "other" data, ie regular request data.
Thus, they are "lazy" data items. An example is SESSION objects.
Lazy data in the request may only be set by the Python
method set_lazy(name,callable) on the REQUEST object. This
method is not callable from DTML or through the web.
- Other
Data that may be set by an application object.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment