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
d808fdc5
Commit
d808fdc5
authored
Nov 05, 1997
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Style fix
parent
d214220f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
11 deletions
+13
-11
lib/python/AccessControl/smallRolesWidget.dtml
lib/python/AccessControl/smallRolesWidget.dtml
+3
-1
lib/python/OFS/ObjectManager.py
lib/python/OFS/ObjectManager.py
+9
-6
lib/python/OFS/main.dtml
lib/python/OFS/main.dtml
+1
-4
No files found.
lib/python/AccessControl/smallRolesWidget.dtml
View file @
d808fdc5
<!--#if AUTHENTICATED_USER-->
<TR>
<TD><STRONG>Access<BR>Control</STRONG></TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<STRONG>Access<BR>Control</STRONG>
</TD>
<TD>
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0">
<TR>
...
...
lib/python/OFS/ObjectManager.py
View file @
d808fdc5
__doc__
=
"""Object Manager
$Id: ObjectManager.py,v 1.1
3 1997/09/25 15:44:18
brian Exp $"""
$Id: ObjectManager.py,v 1.1
4 1997/11/05 16:39:10
brian Exp $"""
__version__
=
'$Revision: 1.1
3
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.1
4
$'
[
11
:
-
2
]
from
SingleThreadedTransaction
import
Persistent
...
...
@@ -328,10 +328,10 @@ class ObjectManager(Acquirer,Management,Persistent):
return
self
.
manage_propertiesForm
(
self
,
REQUEST
)
def
_defaultInput
(
self
,
n
,
t
,
v
):
return
'<INPUT NAME="%s:%s" SIZE="
5
0" VALUE="%s"></TD>'
%
(
n
,
t
,
v
)
return
'<INPUT NAME="%s:%s" SIZE="
4
0" VALUE="%s"></TD>'
%
(
n
,
t
,
v
)
def
_stringInput
(
self
,
n
,
t
,
v
):
return
(
'<INPUT NAME="%s:%s" SIZE="
5
0" VALUE="%s"></TD>'
return
(
'<INPUT NAME="%s:%s" SIZE="
4
0" VALUE="%s"></TD>'
%
(
n
,
t
,
html_quote
(
v
)))
def
_booleanInput
(
self
,
n
,
t
,
v
):
...
...
@@ -350,11 +350,11 @@ class ObjectManager(Acquirer,Management,Persistent):
try
:
v
=
html_quote
(
join
(
v
,
'
\
n
'
))
except
:
v
=
''
return
(
'<TEXTAREA NAME="%s:lines" ROWS="10" COLS="
5
0">%s</TEXTAREA>'
'<TEXTAREA NAME="%s:lines" ROWS="10" COLS="
4
0">%s</TEXTAREA>'
%
(
n
,
v
))
def
_textInput
(
self
,
n
,
t
,
v
):
return
(
'<TEXTAREA NAME="%s" ROWS="10" COLS="
5
0">%s</TEXTAREA>'
return
(
'<TEXTAREA NAME="%s" ROWS="10" COLS="
4
0">%s</TEXTAREA>'
%
(
n
,
html_quote
(
v
)))
_inputMap
=
{
...
...
@@ -394,6 +394,9 @@ class ObjectManager(Acquirer,Management,Persistent):
##############################################################################
#
# $Log: ObjectManager.py,v $
# Revision 1.14 1997/11/05 16:39:10 brian
# Style fix
#
# Revision 1.13 1997/09/25 15:44:18 brian
# *** empty log message ***
#
...
...
lib/python/OFS/main.dtml
View file @
d808fdc5
...
...
@@ -11,13 +11,10 @@
</table>
<!--#if objectValues-->
<P>
The following items have been defined. To <strong>manage</strong> the
item, click on the item's icon. To <strong>view</strong> the item,
click on the item's title and id.
<BR>
</P>
<BR><BR>
<table border=0 cellspacing=0 cellpadding=2>
...
...
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