File: folderAdd.dtml

package info (click to toggle)
zope-lockablefolder 0.1.0-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 144 kB
  • ctags: 20
  • sloc: python: 139; sh: 41; makefile: 34; perl: 26
file content (131 lines) | stat: -rw-r--r-- 4,568 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<dtml-comment>
# 
# Copyright (c) 2001 Butch Landingin 
# All rights reserved. Written by Butch Landingin <butchland@yahoo.com> 
# 
# Redistribution and use in source and binary forms, with or without 
# modification, are permitted provided that the following conditions 
# are met: 
#
# 1. Redistributions of source code must retain the above copyright 
#    notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright 
#    notice, this list of conditions and the following disclaimer in the 
#    documentation and/or other materials provided with the distribution. 
#
# 3. The name of the author may not be used to endorse or promote products 
#    derived from this software without specific prior written permission 
# 
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
#   
#  In accordance with the license provided for by the software upon 
#  which some of the source code has been derived or used, the following acknowledgement 
#  is hereby provided : 
# 
#      "This product includes software developed by the Zope Corporation 
#      for use in the Z Object Publishing Environment 
#      (http://www.zope.org/)." 
#  
# 
</dtml-comment>
<dtml-var manage_page_header>

<dtml-var "manage_form_title(this(), _,
           form_title='Add Lockable Folder',
           help_product='OFSP',
           help_topic='Folder_Add.stx'
	   )">
<p class="form-help">
A Lockable Folder contains other objects. Use Lockable Folders to organize your
web objects in to logical groups. The <em>create public interface</em> 
option creates an index document inside the Lockable Folder to give the
Lockable Folder a default HTML representation. The <em>create user folder</em>
option creates a User Folder inside the Folder to hold authorization
information for the Lockable Folder. 
</p>
<p class="form-help">
You can use a Lockable Folder to replace a standard Folder. In addition to
being just like a regular Folder, a Lockable Folder allows you to restrict
the access to selected objects so they are no longer viewable via a URL.
Access to these objects via DTML, Script or ZPT TALES expressions should
not be affected however.
</p>

<FORM ACTION="manage_addFolder" METHOD="POST">

<table cellspacing="0" cellpadding="2" border="0">
  <tr>
    <td align="left" valign="top">
    <div class="form-label">
    Id
    </div>
    </td>
    <td align="left" valign="top">
    <input type="text" name="id" size="40" />
    </td>
  </tr>

  <tr>
    <td align="left" valign="top">
    <div class="form-optional">
    Title
    </div>
    </td>
    <td align="left" valign="top">
    <input type="text" name="title" size="40" />
    </td>
  </tr>
<dtml-if 
 "_.SecurityCheckPermission('Add Documents, Images, and Files',this())">
  <tr>
    <td align="left" valign="top">
    </td>
    <td align="left" valign="top">
    <div class="form-text">
    <input type="checkbox" name="createPublic:int" value="1" 
     id="cbCreatePublic"> 
     <label for="cbCreatePublic">Create public interface</label>
    </div>
    </td>
  </tr>
</dtml-if>

<dtml-if 
 "_.SecurityCheckPermission('Add User Folders',this())">
  <tr>
    <td align="left" valign="top">
    </td>
    <td align="left" valign="top">
    <div class="form-text">
    <input type="checkbox" name="createUserF:int" value="1" 
     id="cbCreateUserF"> 
     <label for="cbCreateUserF">Create user folder</label>
    </div>
    </td>
  </tr>
</dtml-if>

  <tr>
    <td align="left" valign="top">
    </td>
    <td align="left" valign="top">
    <div class="form-element">
    <input class="form-element" type="submit" name="submit" 
     value="Add" /> 
    </div>
    </td>
  </tr>
</table>
</form>

<dtml-var manage_page_footer>