Ignore:
Timestamp:
03.11.2008 14:37:55 (4 years ago)
Author:
mike
Message:

zms-2.11.1-120

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ZMS/trunk/dtml/ZMS/manage_customize.dtml

    r252 r267  
    11<dtml-var manage_page_header> 
    2 <title><dtml-var "getZMILangStr('TAB_CONFIGURATION')"> <dtml-var "display_type(REQUEST)"></title> 
    32</head> 
    43 
     
    1514 
    1615<dtml-comment> 
    17 <!-- ###################################################################### 
    18      ### 
    19      ###  Manager 
    20      ### 
    21      ###################################################################### 
    22 --> 
    23 </dtml-comment> 
    24  
     16################################################################################ 
     17###  Manager 
     18################################################################################ 
     19</dtml-comment> 
    2520<a name="_Manager"></a> 
    2621<dtml-var "f_headline(_,_,headline='Manager')"> 
     
    5651 
    5752<dtml-comment> 
    58 <!-- ###################################################################### 
    59      ### 
    60      ###  Configuration 
    61      ### 
    62      ###################################################################### 
    63 --> 
    64 </dtml-comment> 
    65  
     53################################################################################ 
     54###  Configuration  
     55################################################################################ 
     56</dtml-comment> 
    6657<a name="_Import"></a> 
    6758<form name="CatalogForm" action="manage_customizeSystem" method="post" enctype="multipart/form-data"> 
     
    10394 
    10495<dtml-comment> 
    105 <!-- ###################################################################### 
    106      ### 
    107      ###  Maintenance 
    108      ### 
    109      ###################################################################### 
    110 --> 
    111 </dtml-comment> 
    112  
     96################################################################################ 
     97###  Maintenance 
     98################################################################################ 
     99</dtml-comment> 
    113100<a name="_Maintenance"></a> 
    114101<form name="CatalogForm" action="manage_customize#_Maintenance" method="post"> 
     
    153140 
    154141<dtml-comment> 
    155 <!-- ###################################################################### 
    156      ### 
    157      ###   H I S T O R Y  ( V E R S I O N ) 
    158      ### 
    159      ###################################################################### 
    160 --> 
    161 </dtml-comment> 
    162  
     142################################################################################ 
     143###  History (Version) 
     144################################################################################ 
     145</dtml-comment> 
    163146<a name="_History"></a> 
    164147<form name="HistoryForm" action="manage_customizeSystem" method="post"> 
     
    227210 
    228211<dtml-comment> 
    229 <!-- ###################################################################### 
    230      ### 
    231      ###   System 
    232      ### 
    233      ###################################################################### 
    234 --> 
     212################################################################################ 
     213###  System 
     214################################################################################ 
    235215</dtml-comment> 
    236216<dtml-var "f_headline(_,_,headline='System')"> 
     
    261241 
    262242<dtml-comment> 
    263 <!-- ###################################################################### 
    264      ### 
    265      ###   Portal 
    266      ### 
    267      ###################################################################### 
    268 --> 
     243################################################################################ 
     244###  Portal 
     245################################################################################ 
    269246</dtml-comment> 
    270247<a name="_Clients"></a> 
     
    297274 
    298275<dtml-comment> 
    299 <!-- ###################################################################### 
    300      ### 
    301      ###   Miscelleaneous 
    302      ### 
    303      ###################################################################### 
    304 --> 
     276################################################################################ 
     277###  Miscellaneous 
     278################################################################################ 
    305279</dtml-comment> 
    306280<dtml-let res="[ 
     
    323297   {'key':'ZMS.checkout.max_time','title':'Max. lock-time','desc':'Specify max. time [h] for locked-objects.','datatype':'int','default':1}, 
    324298   {'key':'ZMS.protected_mode','title':'Protected mode','desc':'ZMS can run in a protected mode.','datatype':'boolean'}, 
    325    {'key':'ZMS.input.file.maxlength','title':'Upload-file maxlength','desc':'ZMS can limit the maximum upload-file size to the given value (in Bytes).','datatype':'string'}, 
    326    {'key':'ZMS.input.image.maxlength','title':'Upload-image maxlength','desc':'ZMS can limit the maximum upload-image size to the given value (in Bytes).','datatype':'string'}, 
    327    {'key':'ZMSGraphic.zmi_max_width','title':'Image.max-width in ZMI','desc':'Maximum width for display of standard image-objects in ZMS Management Interface (ZMI).','datatype':'int','default':400}, 
     299   {'key':'ZMS.input.file.plugin','title':'File.upload input','desc':'ZMS can use custom input-fields for file-upload.','datatype':'string','options':['input_file','rad_upload']}, 
     300   {'key':'ZMS.input.file.maxlength','title':'File.upload maxlength','desc':'ZMS can limit the maximum upload-file size to the given value (in Bytes).','datatype':'string'}, 
     301   {'key':'ZMS.input.image.maxlength','title':'Image.upload maxlength','desc':'ZMS can limit the maximum upload-image size to the given value (in Bytes).','datatype':'string'}, 
     302   {'key':'ZMSGraphic.zmi_max_width','title':'Image.max_width in ZMI','desc':'Maximum width for display of standard image-objects in ZMS Management Interface (ZMI).','datatype':'int','default':400}, 
    328303   {'key':'ZMSGraphic.px2em','title':'Image.px to em conversion','desc':'Scale-factor for px to em conversion in ZMS barrier-free standard image-objects depending on the CSS used for this instance.(1em in px, e.g. 16)','datatype':'string'}, 
    329304   {'key':'ZMSGraphic.superres','title':'Image superres-attribute','desc':'Super-resolution attribute for ZMS standard image-objects.','datatype':'boolean'}, 
     
    362337     <dtml-if "datatype=='boolean'"> 
    363338      <dtml-var "getCheckbox(fmName='customForm',elName='value:int',value=getConfProperty(key,item.get('default',0)),hidden=_.False,REQUEST=REQUEST)"> 
     339     <dtml-elif "item.has_key('options')"> 
     340      <select name="value"> 
     341       <dtml-in "item.get('options')"> 
     342        <option value="<dtml-var sequence-item>"<dtml-if "getConfProperty(key,item.get('default',''))==_['sequence-item']">selected="selected"</dtml-if>><dtml-var sequence-item></option> 
     343       </dtml-in> 
     344      </select> 
    364345     <dtml-else> 
    365346      <dtml-var "getTextInput(fmName='customForm',elName='value',value=getConfProperty(key,item.get('default','')),size=15,enabled=1,REQUEST=REQUEST,css='form-small')"> 
Note: See TracChangeset for help on using the changeset viewer.