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
dac03d4e
Commit
dac03d4e
authored
Oct 17, 2000
by
Amos Latteier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed 'self' argument from API documentation methods. Also fixed some permission information.
parent
73fb83db
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
156 additions
and
147 deletions
+156
-147
lib/python/Products/OFSP/help/DTMLDocument.py
lib/python/Products/OFSP/help/DTMLDocument.py
+7
-6
lib/python/Products/OFSP/help/DTMLMethod.py
lib/python/Products/OFSP/help/DTMLMethod.py
+7
-6
lib/python/Products/OFSP/help/DateTime.py
lib/python/Products/OFSP/help/DateTime.py
+57
-57
lib/python/Products/OFSP/help/File.py
lib/python/Products/OFSP/help/File.py
+4
-4
lib/python/Products/OFSP/help/Folder.py
lib/python/Products/OFSP/help/Folder.py
+12
-1
lib/python/Products/OFSP/help/Image.py
lib/python/Products/OFSP/help/Image.py
+9
-2
lib/python/Products/OFSP/help/ObjectManager.py
lib/python/Products/OFSP/help/ObjectManager.py
+5
-5
lib/python/Products/OFSP/help/ObjectManagerItem.py
lib/python/Products/OFSP/help/ObjectManagerItem.py
+11
-13
lib/python/Products/OFSP/help/PropertyManager.py
lib/python/Products/OFSP/help/PropertyManager.py
+10
-19
lib/python/Products/OFSP/help/PropertySheet.py
lib/python/Products/OFSP/help/PropertySheet.py
+12
-12
lib/python/Products/OFSP/help/PropertySheets.py
lib/python/Products/OFSP/help/PropertySheets.py
+3
-3
lib/python/Products/OFSP/help/Request.py
lib/python/Products/OFSP/help/Request.py
+7
-7
lib/python/Products/OFSP/help/Response.py
lib/python/Products/OFSP/help/Response.py
+12
-12
No files found.
lib/python/Products/OFSP/help/DTMLDocument.py
View file @
dac03d4e
...
@@ -84,7 +84,7 @@
...
@@ -84,7 +84,7 @@
##############################################################################
##############################################################################
def
manage_addDocument
(
self
,
id
,
title
):
def
manage_addDocument
(
id
,
title
):
"""
"""
Add a DTML Document to the current ObjectManager
Add a DTML Document to the current ObjectManager
"""
"""
...
@@ -101,7 +101,7 @@ class DTMLDocument:
...
@@ -101,7 +101,7 @@ class DTMLDocument:
'OFSP.PropertyManager.PropertyManager'
,
'OFSP.PropertyManager.PropertyManager'
,
)
)
def
__call__
(
self
,
client
=
None
,
REQUEST
=
{},
RESPONSE
=
None
,
**
kw
):
def
__call__
(
client
=
None
,
REQUEST
=
{},
RESPONSE
=
None
,
**
kw
):
"""
"""
Calling a DTMLDocument causes the Document to interpret the DTML
Calling a DTMLDocument causes the Document to interpret the DTML
...
@@ -174,7 +174,7 @@ class DTMLDocument:
...
@@ -174,7 +174,7 @@ class DTMLDocument:
"""
"""
def
manage_edit
(
self
,
data
,
title
):
def
manage_edit
(
data
,
title
):
"""
"""
Change the DTML Document, replacing its contents with 'data'
Change the DTML Document, replacing its contents with 'data'
and
and
...
@@ -185,18 +185,19 @@ class DTMLDocument:
...
@@ -185,18 +185,19 @@ class DTMLDocument:
Permission -- 'Change DTML Documents'
Permission -- 'Change DTML Documents'
"""
"""
def
document_src
(
self
):
def
document_src
():
"""
"""
Returns the unrendered source text of the DTML Document.
Returns the unrendered source text of the DTML Document.
Permission -- 'View management screens'
Permission -- 'View management screens'
"""
"""
def
get_size
(
self
):
def
get_size
():
"""
"""
Returns the size of the unrendered source text of the DTML
Returns the size of the unrendered source text of the DTML
Document in bytes.
Document in bytes.
Permission -- 'View'
"""
"""
__constructor__
=
manage_addDocument
__constructor__
=
manage_addDocument
...
...
lib/python/Products/OFSP/help/DTMLMethod.py
View file @
dac03d4e
...
@@ -83,7 +83,7 @@
...
@@ -83,7 +83,7 @@
#
#
##############################################################################
##############################################################################
def
manage_addDTMLMethod
(
self
,
id
,
title
):
def
manage_addDTMLMethod
(
id
,
title
):
"""
"""
Add a DTML Method to the current ObjectManager
Add a DTML Method to the current ObjectManager
"""
"""
...
@@ -103,7 +103,7 @@ class DTMLMethod:
...
@@ -103,7 +103,7 @@ class DTMLMethod:
__extends__
=
(
'OFSP.ObjectManagerItem.ObjectManagerItem'
,)
__extends__
=
(
'OFSP.ObjectManagerItem.ObjectManagerItem'
,)
def
__call__
(
self
,
client
=
None
,
REQUEST
=
{},
**
kw
):
def
__call__
(
client
=
None
,
REQUEST
=
{},
**
kw
):
"""
"""
Calling a DTMLMethod causes the Method to interpret the DTML
Calling a DTMLMethod causes the Method to interpret the DTML
...
@@ -174,7 +174,7 @@ class DTMLMethod:
...
@@ -174,7 +174,7 @@ class DTMLMethod:
Permission -- 'View'
Permission -- 'View'
"""
"""
def
manage_edit
(
self
,
data
,
title
):
def
manage_edit
(
data
,
title
):
"""
"""
Change the DTML Method, replacing its contents with 'data' and
Change the DTML Method, replacing its contents with 'data' and
changing its title.
changing its title.
...
@@ -184,18 +184,19 @@ class DTMLMethod:
...
@@ -184,18 +184,19 @@ class DTMLMethod:
Permission -- 'Change DTML Methods'
Permission -- 'Change DTML Methods'
"""
"""
def
document_src
(
self
):
def
document_src
():
"""
"""
Returns the unrendered source text of the DTML Method.
Returns the unrendered source text of the DTML Method.
Permission -- 'View management screens'
Permission -- 'View management screens'
"""
"""
def
get_size
(
self
):
def
get_size
():
"""
"""
Returns the size of the unrendered source text of the DTML
Returns the size of the unrendered source text of the DTML
Method in bytes.
Method in bytes.
Permission -- 'View'
"""
"""
__constructor__
=
manage_addDTMLMethod
__constructor__
=
manage_addDTMLMethod
lib/python/Products/OFSP/help/DateTime.py
View file @
dac03d4e
...
@@ -280,7 +280,7 @@ class DateTime:
...
@@ -280,7 +280,7 @@ class DateTime:
"""
"""
def
timeTime
(
self
):
def
timeTime
():
"""
"""
Return the date/time as a floating-point number in UTC, in the
Return the date/time as a floating-point number in UTC, in the
...
@@ -290,7 +290,7 @@ class DateTime:
...
@@ -290,7 +290,7 @@ class DateTime:
"""
"""
def
toZone
(
self
,
z
):
def
toZone
(
z
):
"""
"""
Return a DateTime with the value as the current object,
Return a DateTime with the value as the current object,
...
@@ -298,7 +298,7 @@ class DateTime:
...
@@ -298,7 +298,7 @@ class DateTime:
"""
"""
def
isFuture
(
self
):
def
isFuture
():
"""
"""
Return true if this object represents a date/time later than
Return true if this object represents a date/time later than
...
@@ -306,7 +306,7 @@ class DateTime:
...
@@ -306,7 +306,7 @@ class DateTime:
"""
"""
def
isPast
(
self
):
def
isPast
():
"""
"""
Return true if this object represents a date/time earlier than
Return true if this object represents a date/time earlier than
...
@@ -314,7 +314,7 @@ class DateTime:
...
@@ -314,7 +314,7 @@ class DateTime:
"""
"""
def
isCurrentYear
(
self
):
def
isCurrentYear
():
"""
"""
Return true if this object represents a date/time that falls
Return true if this object represents a date/time that falls
...
@@ -323,7 +323,7 @@ class DateTime:
...
@@ -323,7 +323,7 @@ class DateTime:
"""
"""
def
isCurrentMonth
(
self
):
def
isCurrentMonth
():
"""
"""
Return true if this object represents a date/time that falls
Return true if this object represents a date/time that falls
...
@@ -332,7 +332,7 @@ class DateTime:
...
@@ -332,7 +332,7 @@ class DateTime:
"""
"""
def
isCurrentDay
(
self
):
def
isCurrentDay
():
"""
"""
Return true if this object represents a date/time that falls
Return true if this object represents a date/time that falls
...
@@ -341,7 +341,7 @@ class DateTime:
...
@@ -341,7 +341,7 @@ class DateTime:
"""
"""
def
isCurrentHour
(
self
):
def
isCurrentHour
():
"""
"""
Return true if this object represents a date/time that falls
Return true if this object represents a date/time that falls
...
@@ -350,7 +350,7 @@ class DateTime:
...
@@ -350,7 +350,7 @@ class DateTime:
"""
"""
def
isCurrentMinute
(
self
):
def
isCurrentMinute
():
"""
"""
Return true if this object represents a date/time that falls
Return true if this object represents a date/time that falls
...
@@ -359,7 +359,7 @@ class DateTime:
...
@@ -359,7 +359,7 @@ class DateTime:
"""
"""
def
earliestTime
(
self
):
def
earliestTime
():
"""
"""
Return a new DateTime object that represents the earliest
Return a new DateTime object that represents the earliest
...
@@ -368,7 +368,7 @@ class DateTime:
...
@@ -368,7 +368,7 @@ class DateTime:
"""
"""
def
latestTime
(
self
):
def
latestTime
():
"""
"""
Return a new DateTime object that represents the latest
Return a new DateTime object that represents the latest
...
@@ -449,7 +449,7 @@ class DateTime:
...
@@ -449,7 +449,7 @@ class DateTime:
"""
"""
def
isLeapYear
(
self
):
def
isLeapYear
():
"""
"""
Return true if the current year (in the context of the
Return true if the current year (in the context of the
...
@@ -457,7 +457,7 @@ class DateTime:
...
@@ -457,7 +457,7 @@ class DateTime:
"""
"""
def
dayOfYear
(
self
):
def
dayOfYear
():
"""
"""
Return the day of the year, in context of the timezone
Return the day of the year, in context of the timezone
...
@@ -466,7 +466,7 @@ class DateTime:
...
@@ -466,7 +466,7 @@ class DateTime:
"""
"""
# Component access
# Component access
def
parts
(
self
):
def
parts
():
"""
"""
Return a tuple containing the calendar year, month, day, hour,
Return a tuple containing the calendar year, month, day, hour,
...
@@ -474,14 +474,14 @@ class DateTime:
...
@@ -474,14 +474,14 @@ class DateTime:
"""
"""
def
timezone
(
self
):
def
timezone
():
"""
"""
Return the timezone in which the object is represented.
Return the timezone in which the object is represented.
"""
"""
def
year
(
self
):
def
year
():
"""
"""
Return the calendar year of the object
Return the calendar year of the object
...
@@ -489,7 +489,7 @@ class DateTime:
...
@@ -489,7 +489,7 @@ class DateTime:
"""
"""
def
month
(
self
):
def
month
():
"""
"""
Return the month of the object as an integer
Return the month of the object as an integer
...
@@ -497,7 +497,7 @@ class DateTime:
...
@@ -497,7 +497,7 @@ class DateTime:
"""
"""
def
Month
(
self
):
def
Month
():
"""
"""
Return the full month name
Return the full month name
...
@@ -505,7 +505,7 @@ class DateTime:
...
@@ -505,7 +505,7 @@ class DateTime:
"""
"""
def
aMonth
(
self
):
def
aMonth
():
"""
"""
Return the abbreviated month name.
Return the abbreviated month name.
...
@@ -513,7 +513,7 @@ class DateTime:
...
@@ -513,7 +513,7 @@ class DateTime:
"""
"""
def
Mon
(
self
):
def
Mon
():
"""
"""
Compatibility: see aMonth
Compatibility: see aMonth
...
@@ -521,7 +521,7 @@ class DateTime:
...
@@ -521,7 +521,7 @@ class DateTime:
"""
"""
def
pMonth
(
self
):
def
pMonth
():
"""
"""
Return the abbreviated (with period) month name.
Return the abbreviated (with period) month name.
...
@@ -529,7 +529,7 @@ class DateTime:
...
@@ -529,7 +529,7 @@ class DateTime:
"""
"""
def
Mon_
(
self
):
def
Mon_
():
"""
"""
Compatibility: see pMonth
Compatibility: see pMonth
...
@@ -537,7 +537,7 @@ class DateTime:
...
@@ -537,7 +537,7 @@ class DateTime:
"""
"""
def
day
(
self
):
def
day
():
"""
"""
Return the integer day
Return the integer day
...
@@ -545,7 +545,7 @@ class DateTime:
...
@@ -545,7 +545,7 @@ class DateTime:
"""
"""
def
Day
(
self
):
def
Day
():
"""
"""
Return the full name of the day of the week
Return the full name of the day of the week
...
@@ -553,7 +553,7 @@ class DateTime:
...
@@ -553,7 +553,7 @@ class DateTime:
"""
"""
def
DayOfWeek
(
self
):
def
DayOfWeek
():
"""
"""
Compatibility: see Day
Compatibility: see Day
...
@@ -561,7 +561,7 @@ class DateTime:
...
@@ -561,7 +561,7 @@ class DateTime:
"""
"""
def
aDay
(
self
):
def
aDay
():
"""
"""
Return the abbreviated name of the day of the week
Return the abbreviated name of the day of the week
...
@@ -569,7 +569,7 @@ class DateTime:
...
@@ -569,7 +569,7 @@ class DateTime:
"""
"""
def
pDay
(
self
):
def
pDay
():
"""
"""
Return the abbreviated (with period) name of the day of the
Return the abbreviated (with period) name of the day of the
...
@@ -579,7 +579,7 @@ class DateTime:
...
@@ -579,7 +579,7 @@ class DateTime:
"""
"""
def
Day_
(
self
):
def
Day_
():
"""
"""
Compatibility: see pDay
Compatibility: see pDay
...
@@ -587,7 +587,7 @@ class DateTime:
...
@@ -587,7 +587,7 @@ class DateTime:
"""
"""
def
dow
(
self
):
def
dow
():
"""
"""
Return the integer day of the week, where Sunday is 0
Return the integer day of the week, where Sunday is 0
...
@@ -595,7 +595,7 @@ class DateTime:
...
@@ -595,7 +595,7 @@ class DateTime:
"""
"""
def
dow_1
(
self
):
def
dow_1
():
"""
"""
Return the integer day of the week, where Sunday is 1
Return the integer day of the week, where Sunday is 1
...
@@ -603,7 +603,7 @@ class DateTime:
...
@@ -603,7 +603,7 @@ class DateTime:
"""
"""
def
h_12
(
self
):
def
h_12
():
"""
"""
Return the 12-hour clock representation of the hour
Return the 12-hour clock representation of the hour
...
@@ -611,7 +611,7 @@ class DateTime:
...
@@ -611,7 +611,7 @@ class DateTime:
"""
"""
def
h_24
(
self
):
def
h_24
():
"""
"""
Return the 24-hour clock representation of the hour
Return the 24-hour clock representation of the hour
...
@@ -619,7 +619,7 @@ class DateTime:
...
@@ -619,7 +619,7 @@ class DateTime:
"""
"""
def
ampm
(
self
):
def
ampm
():
"""
"""
Return the appropriate time modifier (am or pm)
Return the appropriate time modifier (am or pm)
...
@@ -627,7 +627,7 @@ class DateTime:
...
@@ -627,7 +627,7 @@ class DateTime:
"""
"""
def
hour
(
self
):
def
hour
():
"""
"""
Return the 24-hour clock representation of the hour
Return the 24-hour clock representation of the hour
...
@@ -635,7 +635,7 @@ class DateTime:
...
@@ -635,7 +635,7 @@ class DateTime:
"""
"""
def
minute
(
self
):
def
minute
():
"""
"""
Return the minute
Return the minute
...
@@ -643,7 +643,7 @@ class DateTime:
...
@@ -643,7 +643,7 @@ class DateTime:
"""
"""
def
second
(
self
):
def
second
():
"""
"""
Return the second
Return the second
...
@@ -651,14 +651,14 @@ class DateTime:
...
@@ -651,14 +651,14 @@ class DateTime:
"""
"""
def
millis
(
self
):
def
millis
():
"""
"""
Return the millisecond since the epoch in GMT.
Return the millisecond since the epoch in GMT.
"""
"""
def
strftime
(
self
,
format
):
def
strftime
(
format
):
"""
"""
Return date time string formatted according to 'format'
Return date time string formatted according to 'format'
...
@@ -666,28 +666,28 @@ class DateTime:
...
@@ -666,28 +666,28 @@ class DateTime:
"""
"""
# General formats from previous DateTime
# General formats from previous DateTime
def
Date
(
self
):
def
Date
():
"""
"""
Return the date string for the object.
Return the date string for the object.
"""
"""
def
Time
(
self
):
def
Time
():
"""
"""
Return the time string for an object to the nearest second.
Return the time string for an object to the nearest second.
"""
"""
def
TimeMinutes
(
self
):
def
TimeMinutes
():
"""
"""
Return the time string for an object not showing seconds.
Return the time string for an object not showing seconds.
"""
"""
def
AMPM
(
self
):
def
AMPM
():
"""
"""
Return the time string for an object to the nearest second.
Return the time string for an object to the nearest second.
...
@@ -695,68 +695,68 @@ class DateTime:
...
@@ -695,68 +695,68 @@ class DateTime:
"""
"""
def
AMPMMinutes
(
self
):
def
AMPMMinutes
():
"""
"""
Return the time string for an object not showing seconds.
Return the time string for an object not showing seconds.
"""
"""
def
PreciseTime
(
self
):
def
PreciseTime
():
"""
"""
Return the time string for the object.
Return the time string for the object.
"""
"""
def
PreciseAMPM
(
self
):
def
PreciseAMPM
():
"""Return the time string for the object."""
"""Return the time string for the object."""
def
yy
(
self
):
def
yy
():
"""Return calendar year as a 2 digit string"""
"""Return calendar year as a 2 digit string"""
def
mm
(
self
):
def
mm
():
"""Return month as a 2 digit string"""
"""Return month as a 2 digit string"""
def
dd
(
self
):
def
dd
():
"""Return day as a 2 digit string"""
"""Return day as a 2 digit string"""
def
rfc822
(
self
):
def
rfc822
():
"""Return the date in RFC 822 format"""
"""Return the date in RFC 822 format"""
# New formats
# New formats
def
fCommon
(
self
):
def
fCommon
():
"""Return a string representing the object
\
'
s value
"""Return a string representing the object
\
'
s value
in the format: March 1, 1997 1:45 pm"""
in the format: March 1, 1997 1:45 pm"""
def
fCommonZ
(
self
):
def
fCommonZ
():
"""Return a string representing the object
\
'
s value
"""Return a string representing the object
\
'
s value
in the format: March 1, 1997 1:45 pm US/Eastern"""
in the format: March 1, 1997 1:45 pm US/Eastern"""
def
aCommon
(
self
):
def
aCommon
():
"""Return a string representing the object
\
'
s value
"""Return a string representing the object
\
'
s value
in the format: Mar 1, 1997 1:45 pm"""
in the format: Mar 1, 1997 1:45 pm"""
def
aCommonZ
(
self
):
def
aCommonZ
():
"""Return a string representing the object
\
'
s value
"""Return a string representing the object
\
'
s value
in the format: Mar 1, 1997 1:45 pm US/Eastern"""
in the format: Mar 1, 1997 1:45 pm US/Eastern"""
def
pCommon
(
self
):
def
pCommon
():
"""Return a string representing the object
\
'
s value
"""Return a string representing the object
\
'
s value
in the format: Mar. 1, 1997 1:45 pm"""
in the format: Mar. 1, 1997 1:45 pm"""
def
pCommonZ
(
self
):
def
pCommonZ
():
"""Return a string representing the object
\
'
s value
"""Return a string representing the object
\
'
s value
in the format: Mar. 1, 1997 1:45 pm US/Eastern"""
in the format: Mar. 1, 1997 1:45 pm US/Eastern"""
def
ISO
(
self
):
def
ISO
():
"""Return the object in ISO standard format
"""Return the object in ISO standard format
Dates are output as: YYYY-MM-DD HH:MM:SS
Dates are output as: YYYY-MM-DD HH:MM:SS
"""
"""
def
HTML4
(
self
):
def
HTML4
():
"""Return the object in the format used in the HTML4.0 specification,
"""Return the object in the format used in the HTML4.0 specification,
one of the standard forms in ISO8601. See
one of the standard forms in ISO8601. See
http://www.w3.org/TR/NOTE-datetime
http://www.w3.org/TR/NOTE-datetime
...
...
lib/python/Products/OFSP/help/File.py
View file @
dac03d4e
...
@@ -84,7 +84,7 @@
...
@@ -84,7 +84,7 @@
##############################################################################
##############################################################################
def
manage_addFile
(
self
,
id
,
file
=
''
,
title
=
''
,
precondition
=
''
,
content_type
=
''
):
def
manage_addFile
(
id
,
file
=
''
,
title
=
''
,
precondition
=
''
,
content_type
=
''
):
"""
"""
Add a new File object.
Add a new File object.
...
@@ -136,7 +136,7 @@ class File:
...
@@ -136,7 +136,7 @@ class File:
'OFSP.PropertyManager.PropertyManager'
,
'OFSP.PropertyManager.PropertyManager'
,
)
)
def
update_data
(
self
,
data
,
content_type
=
None
,
size
=
None
):
def
update_data
(
data
,
content_type
=
None
,
size
=
None
):
"""
"""
Updates the contents of the File with 'data'.
Updates the contents of the File with 'data'.
...
@@ -147,14 +147,14 @@ class File:
...
@@ -147,14 +147,14 @@ class File:
Permission -- Python only
Permission -- Python only
"""
"""
def
getSize
(
self
):
def
getSize
():
"""
"""
Returns the size of the file in bytes.
Returns the size of the file in bytes.
Permission -- 'View'
Permission -- 'View'
"""
"""
def
getContentType
(
self
):
def
getContentType
():
"""
"""
Returns the content type of the file.
Returns the content type of the file.
...
...
lib/python/Products/OFSP/help/Folder.py
View file @
dac03d4e
...
@@ -84,7 +84,7 @@
...
@@ -84,7 +84,7 @@
##############################################################################
##############################################################################
def
manage_addFolder
(
self
,
id
,
title
):
def
manage_addFolder
(
id
,
title
):
"""
"""
Add a Folder to the current ObjectManager
Add a Folder to the current ObjectManager
...
@@ -108,3 +108,14 @@ class Folder:
...
@@ -108,3 +108,14 @@ class Folder:
)
)
__constructor__
=
manage_addFolder
__constructor__
=
manage_addFolder
lib/python/Products/OFSP/help/Image.py
View file @
dac03d4e
...
@@ -83,7 +83,7 @@
...
@@ -83,7 +83,7 @@
#
#
##############################################################################
##############################################################################
def
manage_addImage
(
self
,
id
,
file
,
title
=
''
,
precondition
=
''
,
content_type
=
''
):
def
manage_addImage
(
id
,
file
,
title
=
''
,
precondition
=
''
,
content_type
=
''
):
"""
"""
Add a new Image object.
Add a new Image object.
...
@@ -135,7 +135,7 @@ class Image:
...
@@ -135,7 +135,7 @@ class Image:
__extends__
=
(
'OFSP.File.File'
,)
__extends__
=
(
'OFSP.File.File'
,)
def
tag
(
self
,
height
=
None
,
width
=
None
,
alt
=
None
,
def
tag
(
height
=
None
,
width
=
None
,
alt
=
None
,
scale
=
0
,
xscale
=
0
,
yscale
=
0
,
**
args
):
scale
=
0
,
xscale
=
0
,
yscale
=
0
,
**
args
):
"""
"""
This method returns a string which contains an HTML IMG tag
This method returns a string which contains an HTML IMG tag
...
@@ -152,3 +152,10 @@ class Image:
...
@@ -152,3 +152,10 @@ class Image:
Permission -- 'View'
Permission -- 'View'
"""
"""
lib/python/Products/OFSP/help/ObjectManager.py
View file @
dac03d4e
...
@@ -109,7 +109,7 @@ class ObjectManager:
...
@@ -109,7 +109,7 @@ class ObjectManager:
object.
object.
"""
"""
def
objectIds
(
self
,
type
=
None
):
def
objectIds
(
type
=
None
):
"""
"""
This method returns a list of the ids of the contained
This method returns a list of the ids of the contained
objects.
objects.
...
@@ -133,7 +133,7 @@ class ObjectManager:
...
@@ -133,7 +133,7 @@ class ObjectManager:
Permission -- 'Access contents information'
Permission -- 'Access contents information'
"""
"""
def
objectValues
(
self
,
type
=
None
):
def
objectValues
(
type
=
None
):
"""
"""
This method returns a sequence of contained objects.
This method returns a sequence of contained objects.
...
@@ -156,7 +156,7 @@ class ObjectManager:
...
@@ -156,7 +156,7 @@ class ObjectManager:
Permission -- 'Access contents information'
Permission -- 'Access contents information'
"""
"""
def
objectItems
(
self
,
type
=
None
):
def
objectItems
(
type
=
None
):
"""
"""
This method returns a sequence of (id, object) tuples.
This method returns a sequence of (id, object) tuples.
...
@@ -176,13 +176,13 @@ class ObjectManager:
...
@@ -176,13 +176,13 @@ class ObjectManager:
Permission -- 'Access contents information'
Permission -- 'Access contents information'
"""
"""
def
superValues
(
self
,
t
):
def
superValues
(
type
):
"""
"""
This method returns a list of objects of a given meta_type(es)
This method returns a list of objects of a given meta_type(es)
contained in the Object Manager and all its parent Object
contained in the Object Manager and all its parent Object
Managers.
Managers.
The t argument specifies the meta_type(es). It can be a string
The t
ype
argument specifies the meta_type(es). It can be a string
specifying one meta_type, or it can be a list of strings to
specifying one meta_type, or it can be a list of strings to
specify many.
specify many.
...
...
lib/python/Products/OFSP/help/ObjectManagerItem.py
View file @
dac03d4e
...
@@ -108,7 +108,7 @@ class ObjectManagerItem:
...
@@ -108,7 +108,7 @@ class ObjectManagerItem:
This object is acquired and should not be set.
This object is acquired and should not be set.
"""
"""
def
getId
(
self
):
def
getId
():
"""
"""
Returns the object's id.
Returns the object's id.
...
@@ -121,7 +121,7 @@ class ObjectManagerItem:
...
@@ -121,7 +121,7 @@ class ObjectManagerItem:
Permission -- Always available
Permission -- Always available
"""
"""
def
title_or_id
(
self
):
def
title_or_id
():
"""
"""
If the title is not blank, return it, otherwise
If the title is not blank, return it, otherwise
return the id.
return the id.
...
@@ -129,7 +129,7 @@ class ObjectManagerItem:
...
@@ -129,7 +129,7 @@ class ObjectManagerItem:
Permission -- Always available
Permission -- Always available
"""
"""
def
title_and_id
(
self
):
def
title_and_id
():
"""
"""
If the title is not blank, the return the title
If the title is not blank, the return the title
followed by the id in parentheses. Otherwise return the id.
followed by the id in parentheses. Otherwise return the id.
...
@@ -137,7 +137,7 @@ class ObjectManagerItem:
...
@@ -137,7 +137,7 @@ class ObjectManagerItem:
Permission -- Always available
Permission -- Always available
"""
"""
def
manage_workspace
(
self
):
def
manage_workspace
():
"""
"""
This is the web method that is called when a user selects an
This is the web method that is called when a user selects an
...
@@ -145,10 +145,9 @@ class ObjectManagerItem:
...
@@ -145,10 +145,9 @@ class ObjectManagerItem:
Management navigation view.
Management navigation view.
Permission -- 'View management screens'
Permission -- 'View management screens'
"""
"""
def
this
(
self
):
def
this
():
"""
"""
Return the object.
Return the object.
...
@@ -161,10 +160,10 @@ class ObjectManagerItem:
...
@@ -161,10 +160,10 @@ class ObjectManagerItem:
you are in a method of a non-item subobject of an item and you
you are in a method of a non-item subobject of an item and you
need to get the item outside of the context of the subobject.
need to get the item outside of the context of the subobject.
Permission --
XXX
Permission --
Always available
"""
"""
def
absolute_url
(
self
,
relative
=
None
):
def
absolute_url
(
relative
=
None
):
"""
"""
Return the absolute url to the object.
Return the absolute url to the object.
...
@@ -176,14 +175,14 @@ class ObjectManagerItem:
...
@@ -176,14 +175,14 @@ class ObjectManagerItem:
Permission -- Always available
Permission -- Always available
"""
"""
def
getPhysicalRoot
(
self
):
def
getPhysicalRoot
():
"""
"""
Returns the top-level Zope Application object.
Returns the top-level Zope Application object.
Permission -- Python only
Permission -- Python only
"""
"""
def
getPhysicalPath
(
self
):
def
getPhysicalPath
():
"""
"""
Get the path of an object from the root, ignoring virtual
Get the path of an object from the root, ignoring virtual
hosts.
hosts.
...
@@ -192,7 +191,7 @@ class ObjectManagerItem:
...
@@ -192,7 +191,7 @@ class ObjectManagerItem:
"""
"""
def
unrestrictedTraverse
(
self
,
path
,
default
=
None
):
def
unrestrictedTraverse
(
path
,
default
=
None
):
"""
"""
Return the object obtained by traversing the given path from
Return the object obtained by traversing the given path from
the object on which the method was called. This method begins
the object on which the method was called. This method begins
...
@@ -205,7 +204,7 @@ class ObjectManagerItem:
...
@@ -205,7 +204,7 @@ class ObjectManagerItem:
Permission -- Python only
Permission -- Python only
"""
"""
def
restrictedTraverse
(
self
,
path
,
default
=
None
):
def
restrictedTraverse
(
path
,
default
=
None
):
"""
"""
Return the object obtained by traversing the given path from
Return the object obtained by traversing the given path from
the object on which the method was called, performing security
the object on which the method was called, performing security
...
@@ -215,7 +214,6 @@ class ObjectManagerItem:
...
@@ -215,7 +214,6 @@ class ObjectManagerItem:
returned.
returned.
Permission -- Python only
Permission -- Python only
"""
"""
...
...
lib/python/Products/OFSP/help/PropertyManager.py
View file @
dac03d4e
...
@@ -93,23 +93,23 @@ class PropertyManager:
...
@@ -93,23 +93,23 @@ class PropertyManager:
read-only and can have default values.
read-only and can have default values.
"""
"""
def
getProperty
(
self
,
id
,
d
=
None
):
def
getProperty
(
id
,
d
=
None
):
"""
"""
Return the value of the property 'id'. If the property is not
Return the value of the property 'id'. If the property is not
found the optional second argument or None is returned.
found the optional second argument or None is returned.
Permission --
Access contents information
Permission --
'Access contents information'
"""
"""
def
getPropertyType
(
self
,
id
):
def
getPropertyType
(
id
):
"""
"""
Get the type of property 'id'. Returns None if no such
Get the type of property 'id'. Returns None if no such
property exists.
property exists.
Permission --
Access contents information
Permission --
'Access contents information'
"""
"""
def
hasProperty
(
self
,
id
):
def
hasProperty
(
id
):
"""
"""
Returns a true value if the Property Manager has the property
Returns a true value if the Property Manager has the property
'id'. Otherwise returns a false value.
'id'. Otherwise returns a false value.
...
@@ -117,41 +117,32 @@ class PropertyManager:
...
@@ -117,41 +117,32 @@ class PropertyManager:
Permission -- 'Access contents information'
Permission -- 'Access contents information'
"""
"""
def
propertyIds
(
self
):
def
propertyIds
():
"""
"""
Returns a list of property ids.
Returns a list of property ids.
Permission -- 'Access contents information'
Permission -- 'Access contents information'
"""
"""
def
propertyValues
(
self
):
def
propertyValues
():
"""
"""
Returns a list of property values.
Returns a list of property values.
Permission -- 'Access contents information'
Permission -- 'Access contents information'
"""
"""
def
propertyItems
(
self
):
def
propertyItems
():
"""
"""
Return a list of (id, property) tuples.
Return a list of (id, property) tuples.
Permission -- 'Access contents information'
Permission -- 'Access contents information'
"""
"""
def
propertyMap
(
self
):
def
propertyMap
():
"""
"""
Returns a tuple of mappings, giving meta-data for properties.
Returns a tuple of mappings, giving meta-data for properties.
The meta-data includes 'id', 'type', and 'mode'.
The meta-data includes 'id', 'type', and 'mode'.
Permission --
Access contents information
Permission --
'Access contents information'
"""
"""
## Removed for now at brian's request
##
## def propdict(self):
## """
## Returns the properties as a mapping from property id to
## property value.
## Permission --
## """
lib/python/Products/OFSP/help/PropertySheet.py
View file @
dac03d4e
...
@@ -94,7 +94,7 @@ class PropertySheet:
...
@@ -94,7 +94,7 @@ class PropertySheet:
"""
"""
def
xml_namespace
(
self
):
def
xml_namespace
():
"""
"""
Return a namespace string usable as an xml namespace
Return a namespace string usable as an xml namespace
...
@@ -106,7 +106,7 @@ class PropertySheet:
...
@@ -106,7 +106,7 @@ class PropertySheet:
"""
"""
def
getProperty
(
self
,
id
,
d
=
None
):
def
getProperty
(
id
,
d
=
None
):
"""
"""
Get the property 'id', returning the optional second
Get the property 'id', returning the optional second
...
@@ -116,7 +116,7 @@ class PropertySheet:
...
@@ -116,7 +116,7 @@ class PropertySheet:
"""
"""
def
getPropertyType
(
self
,
id
):
def
getPropertyType
(
id
):
"""
"""
Get the type of property 'id'. Returns None if no such
Get the type of property 'id'. Returns None if no such
...
@@ -126,7 +126,7 @@ class PropertySheet:
...
@@ -126,7 +126,7 @@ class PropertySheet:
"""
"""
def
hasProperty
(
self
,
id
):
def
hasProperty
(
id
):
"""
"""
Returns true if 'self' has a property with the given 'id',
Returns true if 'self' has a property with the given 'id',
...
@@ -136,7 +136,7 @@ class PropertySheet:
...
@@ -136,7 +136,7 @@ class PropertySheet:
"""
"""
def
propertyIds
(
self
):
def
propertyIds
():
"""
"""
Returns a list of property ids.
Returns a list of property ids.
...
@@ -145,7 +145,7 @@ class PropertySheet:
...
@@ -145,7 +145,7 @@ class PropertySheet:
"""
"""
def
propertyValues
(
self
):
def
propertyValues
():
"""
"""
Returns a list of actual property values.
Returns a list of actual property values.
...
@@ -154,7 +154,7 @@ class PropertySheet:
...
@@ -154,7 +154,7 @@ class PropertySheet:
"""
"""
def
propertyItems
(
self
):
def
propertyItems
():
"""
"""
Return a list of (id, property) tuples.
Return a list of (id, property) tuples.
...
@@ -163,7 +163,7 @@ class PropertySheet:
...
@@ -163,7 +163,7 @@ class PropertySheet:
"""
"""
def
propertyMap
(
self
):
def
propertyMap
():
"""
"""
Returns a tuple of mappings, giving meta-data for properties.
Returns a tuple of mappings, giving meta-data for properties.
...
@@ -172,7 +172,7 @@ class PropertySheet:
...
@@ -172,7 +172,7 @@ class PropertySheet:
"""
"""
def
propertyInfo
(
self
):
def
propertyInfo
():
"""
"""
Returns a mapping containing property meta-data.
Returns a mapping containing property meta-data.
...
@@ -181,7 +181,7 @@ class PropertySheet:
...
@@ -181,7 +181,7 @@ class PropertySheet:
"""
"""
def
manage_addProperty
(
self
,
id
,
value
,
type
,
REQUEST
=
None
):
def
manage_addProperty
(
id
,
value
,
type
,
REQUEST
=
None
):
"""
"""
Add a new property with the given 'id', 'value' and 'type'.
Add a new property with the given 'id', 'value' and 'type'.
...
@@ -235,7 +235,7 @@ class PropertySheet:
...
@@ -235,7 +235,7 @@ class PropertySheet:
"""
"""
def
manage_changeProperties
(
self
,
REQUEST
=
None
,
**
kw
):
def
manage_changeProperties
(
REQUEST
=
None
,
**
kw
):
"""
"""
Change existing object properties by passing either a mapping
Change existing object properties by passing either a mapping
...
@@ -264,7 +264,7 @@ class PropertySheet:
...
@@ -264,7 +264,7 @@ class PropertySheet:
"""
"""
def
manage_delProperties
(
self
,
ids
=
None
,
REQUEST
=
None
):
def
manage_delProperties
(
ids
=
None
,
REQUEST
=
None
):
"""
"""
Delete one or more properties with the given 'ids'. The 'ids'
Delete one or more properties with the given 'ids'. The 'ids'
...
...
lib/python/Products/OFSP/help/PropertySheets.py
View file @
dac03d4e
...
@@ -104,7 +104,7 @@ class PropertySheets:
...
@@ -104,7 +104,7 @@ class PropertySheets:
"""
"""
def
values
(
self
):
def
values
():
"""
"""
Return a sequence of all of the PropertySheet objects for
Return a sequence of all of the PropertySheet objects for
...
@@ -114,7 +114,7 @@ class PropertySheets:
...
@@ -114,7 +114,7 @@ class PropertySheets:
"""
"""
def
items
(
self
):
def
items
():
"""
"""
Return a sequence containing an '(id, object)' tuple for
Return a sequence containing an '(id, object)' tuple for
...
@@ -124,7 +124,7 @@ class PropertySheets:
...
@@ -124,7 +124,7 @@ class PropertySheets:
"""
"""
def
get
(
self
,
name
,
default
=
None
):
def
get
(
name
,
default
=
None
):
"""
"""
Return the PropertySheet identified by 'name', or the value
Return the PropertySheet identified by 'name', or the value
...
...
lib/python/Products/OFSP/help/Request.py
View file @
dac03d4e
...
@@ -182,7 +182,7 @@ class Request:
...
@@ -182,7 +182,7 @@ class Request:
"""
"""
def
get_header
(
self
,
name
,
default
=
None
):
def
get_header
(
name
,
default
=
None
):
"""
"""
Return the named HTTP header, or an optional default argument
Return the named HTTP header, or an optional default argument
...
@@ -196,7 +196,7 @@ class Request:
...
@@ -196,7 +196,7 @@ class Request:
"""
"""
def
has_key
(
self
,
key
):
def
has_key
(
key
):
"""
"""
Returns a true value if the REQUEST object contains key,
Returns a true value if the REQUEST object contains key,
...
@@ -207,7 +207,7 @@ class Request:
...
@@ -207,7 +207,7 @@ class Request:
"""
"""
def
keys
(
self
):
def
keys
():
"""
"""
Returns a sorted sequence of all keys in the REQUEST object.
Returns a sorted sequence of all keys in the REQUEST object.
...
@@ -216,7 +216,7 @@ class Request:
...
@@ -216,7 +216,7 @@ class Request:
"""
"""
def
items
(
self
):
def
items
():
"""
"""
Returns a sequence of (key, value) tuples for all the keys in
Returns a sequence of (key, value) tuples for all the keys in
...
@@ -226,7 +226,7 @@ class Request:
...
@@ -226,7 +226,7 @@ class Request:
"""
"""
def
values
(
self
):
def
values
():
"""
"""
Returns a sequence of values for all the keys in the REQUEST
Returns a sequence of values for all the keys in the REQUEST
...
@@ -236,7 +236,7 @@ class Request:
...
@@ -236,7 +236,7 @@ class Request:
"""
"""
def
setServerURL
(
self
,
protocol
=
None
,
hostname
=
None
,
port
=
None
):
def
setServerURL
(
protocol
=
None
,
hostname
=
None
,
port
=
None
):
"""
"""
Sets the specified elements of 'SERVER_URL', also affecting
Sets the specified elements of 'SERVER_URL', also affecting
...
@@ -248,7 +248,7 @@ class Request:
...
@@ -248,7 +248,7 @@ class Request:
"""
"""
def
setVirtualRoot
(
self
,
path
,
hard
=
0
):
def
setVirtualRoot
(
path
,
hard
=
0
):
"""
"""
Alters 'URL', 'URLn', 'URLPATHn', 'BASEn', 'BASEPATHn', and
Alters 'URL', 'URLn', 'URLPATHn', 'BASEn', 'BASEPATHn', and
...
...
lib/python/Products/OFSP/help/Response.py
View file @
dac03d4e
...
@@ -92,7 +92,7 @@ class Response:
...
@@ -92,7 +92,7 @@ class Response:
"""
"""
def
setStatus
(
s
elf
,
s
tatus
,
reason
=
None
):
def
setStatus
(
status
,
reason
=
None
):
'''
'''
Sets the HTTP status code of the response; the argument may
Sets the HTTP status code of the response; the argument may
...
@@ -120,7 +120,7 @@ class Response:
...
@@ -120,7 +120,7 @@ class Response:
'''
'''
def
setHeader
(
self
,
name
,
value
):
def
setHeader
(
name
,
value
):
'''
'''
Sets an HTTP return header "name" with value "value", clearing
Sets an HTTP return header "name" with value "value", clearing
...
@@ -133,7 +133,7 @@ class Response:
...
@@ -133,7 +133,7 @@ class Response:
'''
'''
def
addHeader
(
self
,
name
,
value
):
def
addHeader
(
name
,
value
):
'''
'''
Set a new HTTP return header with the given value, while
Set a new HTTP return header with the given value, while
...
@@ -143,7 +143,7 @@ class Response:
...
@@ -143,7 +143,7 @@ class Response:
'''
'''
def
setBase
(
self
,
base
):
def
setBase
(
base
):
"""
"""
Set the base URL for the returned document.
Set the base URL for the returned document.
...
@@ -152,7 +152,7 @@ class Response:
...
@@ -152,7 +152,7 @@ class Response:
"""
"""
def
appendCookie
(
self
,
name
,
value
):
def
appendCookie
(
name
,
value
):
'''
'''
Returns an HTTP header that sets a cookie on cookie-enabled
Returns an HTTP header that sets a cookie on cookie-enabled
...
@@ -165,7 +165,7 @@ class Response:
...
@@ -165,7 +165,7 @@ class Response:
'''
'''
def
expireCookie
(
self
,
name
,
**
kw
):
def
expireCookie
(
name
,
**
kw
):
'''
'''
Cause an HTTP cookie to be removed from the browser
Cause an HTTP cookie to be removed from the browser
...
@@ -182,7 +182,7 @@ class Response:
...
@@ -182,7 +182,7 @@ class Response:
'''
'''
def
setCookie
(
self
,
name
,
value
,
**
kw
):
def
setCookie
(
name
,
value
,
**
kw
):
'''
'''
Set an HTTP cookie on the browser
Set an HTTP cookie on the browser
...
@@ -196,7 +196,7 @@ class Response:
...
@@ -196,7 +196,7 @@ class Response:
'''
'''
def
appendHeader
(
self
,
name
,
value
,
delimiter
=
","
):
def
appendHeader
(
name
,
value
,
delimiter
=
","
):
'''
'''
Append a value to a cookie
Append a value to a cookie
...
@@ -209,7 +209,7 @@ class Response:
...
@@ -209,7 +209,7 @@ class Response:
'''
'''
def
redirect
(
self
,
location
,
lock
=
0
):
def
redirect
(
location
,
lock
=
0
):
"""
"""
Cause a redirection without raising an error. If the "lock"
Cause a redirection without raising an error. If the "lock"
...
@@ -222,8 +222,8 @@ class Response:
...
@@ -222,8 +222,8 @@ class Response:
"""
"""
def
write
(
self
,
data
):
def
write
(
data
):
"""
\
"""
Return data as a stream
Return data as a stream
HTML data may be returned using a stream-oriented interface.
HTML data may be returned using a stream-oriented interface.
...
@@ -236,7 +236,7 @@ class Response:
...
@@ -236,7 +236,7 @@ class Response:
Note that published objects must not generate any errors
Note that published objects must not generate any errors
after beginning stream-oriented output.
after beginning stream-oriented output.
Permission --
XXX
Permission --
Always available
"""
"""
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