Commit d808fdc5 authored by 's avatar

Style fix

parent d214220f
<!--#if AUTHENTICATED_USER--> <!--#if AUTHENTICATED_USER-->
<TR> <TR>
<TD><STRONG>Access<BR>Control</STRONG></TD> <TD ALIGN="LEFT" VALIGN="TOP">
<STRONG>Access<BR>Control</STRONG>
</TD>
<TD> <TD>
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0"> <TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0">
<TR> <TR>
......
__doc__="""Object Manager __doc__="""Object Manager
$Id: ObjectManager.py,v 1.13 1997/09/25 15:44:18 brian Exp $""" $Id: ObjectManager.py,v 1.14 1997/11/05 16:39:10 brian Exp $"""
__version__='$Revision: 1.13 $'[11:-2] __version__='$Revision: 1.14 $'[11:-2]
from SingleThreadedTransaction import Persistent from SingleThreadedTransaction import Persistent
...@@ -328,10 +328,10 @@ class ObjectManager(Acquirer,Management,Persistent): ...@@ -328,10 +328,10 @@ class ObjectManager(Acquirer,Management,Persistent):
return self.manage_propertiesForm(self,REQUEST) return self.manage_propertiesForm(self,REQUEST)
def _defaultInput(self,n,t,v): def _defaultInput(self,n,t,v):
return '<INPUT NAME="%s:%s" SIZE="50" VALUE="%s"></TD>' % (n,t,v) return '<INPUT NAME="%s:%s" SIZE="40" VALUE="%s"></TD>' % (n,t,v)
def _stringInput(self,n,t,v): def _stringInput(self,n,t,v):
return ('<INPUT NAME="%s:%s" SIZE="50" VALUE="%s"></TD>' return ('<INPUT NAME="%s:%s" SIZE="40" VALUE="%s"></TD>'
% (n,t,html_quote(v))) % (n,t,html_quote(v)))
def _booleanInput(self,n,t,v): def _booleanInput(self,n,t,v):
...@@ -350,11 +350,11 @@ class ObjectManager(Acquirer,Management,Persistent): ...@@ -350,11 +350,11 @@ class ObjectManager(Acquirer,Management,Persistent):
try: v=html_quote(join(v,'\n')) try: v=html_quote(join(v,'\n'))
except: v='' except: v=''
return ( return (
'<TEXTAREA NAME="%s:lines" ROWS="10" COLS="50">%s</TEXTAREA>' '<TEXTAREA NAME="%s:lines" ROWS="10" COLS="40">%s</TEXTAREA>'
% (n,v)) % (n,v))
def _textInput(self,n,t,v): def _textInput(self,n,t,v):
return ('<TEXTAREA NAME="%s" ROWS="10" COLS="50">%s</TEXTAREA>' return ('<TEXTAREA NAME="%s" ROWS="10" COLS="40">%s</TEXTAREA>'
% (n,html_quote(v))) % (n,html_quote(v)))
_inputMap={ _inputMap={
...@@ -394,6 +394,9 @@ class ObjectManager(Acquirer,Management,Persistent): ...@@ -394,6 +394,9 @@ class ObjectManager(Acquirer,Management,Persistent):
############################################################################## ##############################################################################
# #
# $Log: ObjectManager.py,v $ # $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 # Revision 1.13 1997/09/25 15:44:18 brian
# *** empty log message *** # *** empty log message ***
# #
......
...@@ -11,13 +11,10 @@ ...@@ -11,13 +11,10 @@
</table> </table>
<!--#if objectValues--> <!--#if objectValues-->
<P>
The following items have been defined. To <strong>manage</strong> the The following items have been defined. To <strong>manage</strong> the
item, click on the item's icon. To <strong>view</strong> the item, item, click on the item's icon. To <strong>view</strong> the item,
click on the item's title and id. click on the item's title and id.
<BR> <BR><BR>
</P>
<table border=0 cellspacing=0 cellpadding=2> <table border=0 cellspacing=0 cellpadding=2>
......
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