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
678a457e
Commit
678a457e
authored
Dec 18, 2000
by
adam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
repairing accidental commit by promoting proper revision to the head of the trunk
parent
cfec0d63
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
68 additions
and
194 deletions
+68
-194
lib/python/AccessControl/listLocalRoles.dtml
lib/python/AccessControl/listLocalRoles.dtml
+1
-1
lib/python/DocumentTemplate/DT_In.py
lib/python/DocumentTemplate/DT_In.py
+9
-28
lib/python/OFS/importExport.dtml
lib/python/OFS/importExport.dtml
+29
-49
lib/python/OFS/main.dtml
lib/python/OFS/main.dtml
+5
-81
lib/python/OFS/properties.dtml
lib/python/OFS/properties.dtml
+24
-35
No files found.
lib/python/AccessControl/listLocalRoles.dtml
View file @
678a457e
...
...
@@ -18,7 +18,7 @@
<strong>
Local roles
</strong>
allow you to give particular users extra roles
in the context of this object, in addition to the roles they already have.
<dtml-if
has_local_roles
>
<br>
The following users have been given local roles. To modify the local roles
given to a particular user, click on the name of the user. To remove all
...
...
lib/python/DocumentTemplate/DT_In.py
View file @
678a457e
...
...
@@ -382,11 +382,11 @@
'''
#'
__rcs_id__
=
'$Id: DT_In.py,v 1.4
1 2000/12/18 20:45:01
adam Exp $'
__version__
=
'$Revision: 1.4
1
$'
[
11
:
-
2
]
__rcs_id__
=
'$Id: DT_In.py,v 1.4
2 2000/12/18 22:59:06
adam Exp $'
__version__
=
'$Revision: 1.4
2
$'
[
11
:
-
2
]
from
DT_Util
import
ParseError
,
parse_params
,
name_param
,
str
from
DT_Util
import
render_blocks
,
InstanceDict
,
ValidationError
,
VSEval
,
expr_globals
from
DT_Util
import
render_blocks
,
InstanceDict
,
ValidationError
from
string
import
find
,
atoi
,
join
,
split
import
ts_regex
from
DT_InSV
import
sequence_variables
,
opt
...
...
@@ -408,7 +408,6 @@ class InClass:
expr
=
sort
=
batch
=
mapping
=
None
start_name_re
=
None
reverse
=
None
sort_expr
=
reverse_expr
=
None
def
__init__
(
self
,
blocks
):
tname
,
args
,
section
=
blocks
[
0
]
...
...
@@ -416,7 +415,7 @@ class InClass:
orphan
=
'3'
,
overlap
=
'1'
,
mapping
=
1
,
skip_unauthorized
=
1
,
previous
=
1
,
next
=
1
,
expr
=
''
,
sort
=
''
,
reverse
=
1
,
sort_expr
=
''
,
reverse_expr
=
''
)
reverse
=
1
)
self
.
args
=
args
has_key
=
args
.
has_key
...
...
@@ -424,12 +423,6 @@ class InClass:
self
.
sort
=
sort
=
args
[
'sort'
]
if
sort
==
'sequence-item'
:
self
.
sort
=
''
if
has_key
(
'sort_expr'
):
self
.
sort_expr
=
VSEval
.
Eval
(
args
[
'sort_expr'
],
expr_globals
)
if
has_key
(
'reverse_expr'
):
self
.
reverse_expr
=
VSEval
.
Eval
(
args
[
'reverse_expr'
],
expr_globals
)
if
has_key
(
'reverse'
):
self
.
reverse
=
args
[
'reverse'
]
...
...
@@ -491,21 +484,15 @@ class InClass:
raise
'InError'
,
(
'Strings are not allowed as input to the in tag.'
)
section
=
self
.
section
params
=
self
.
args
mapping
=
self
.
mapping
if
self
.
sort_expr
is
not
None
:
self
.
sort
=
self
.
sort_expr
.
eval
(
md
)
sequence
=
self
.
sort_sequence
(
sequence
)
elif
self
.
sort
is
not
None
:
if
self
.
sort
is
not
None
:
sequence
=
self
.
sort_sequence
(
sequence
)
if
self
.
reverse_expr
is
not
None
and
self
.
reverse_expr
.
eval
(
md
):
sequence
=
self
.
reverse_sequence
(
sequence
)
elif
self
.
reverse
is
not
None
:
if
self
.
reverse
is
not
None
:
sequence
=
self
.
reverse_sequence
(
sequence
)
next
=
previous
=
0
...
...
@@ -657,18 +644,12 @@ class InClass:
section
=
self
.
section
mapping
=
self
.
mapping
if
self
.
sort_expr
is
not
None
:
self
.
sort
=
self
.
sort_expr
.
eval
(
md
)
sequence
=
self
.
sort_sequence
(
sequence
)
elif
self
.
sort
is
not
None
:
if
self
.
sort
is
not
None
:
sequence
=
self
.
sort_sequence
(
sequence
)
if
self
.
reverse_expr
is
not
None
and
self
.
reverse_expr
.
eval
(
md
):
sequence
=
self
.
reverse_sequence
(
sequence
)
elif
self
.
reverse
is
not
None
:
if
self
.
reverse
is
not
None
:
sequence
=
self
.
reverse_sequence
(
sequence
)
vars
=
sequence_variables
(
sequence
)
kw
=
vars
.
data
kw
[
'mapping'
]
=
mapping
...
...
lib/python/OFS/importExport.dtml
View file @
678a457e
...
...
@@ -6,22 +6,24 @@
<BODY
BGCOLOR=
"#FFFFFF"
LINK=
"#000099"
VLINK=
"#555555"
>
<dtml-var
manage_tabs
>
<P>
You can export Zope objects to a file in order to transfer
them to a different Zope installation. You can either choose
to download the export file to your local machine, or save it
in the
"
var
"
directory of your Zope installation
on the server.
</P>
<FORM
ACTION=
"manage_exportObject"
METHOD=
"POST"
>
<TABLE
CELLPADDING=
"4"
>
<TR>
<TD
COLSPAN=
"2"
BGCOLOR=
"#000099"
></TD>
</TR>
<TR>
<TD
WIDTH=
"70%"
VALIGN=
"TOP"
>
<TABLE
CELLSPACING=
"2"
>
<TR>
<TH
ALIGN=
"LEFT"
VALIGN=
"TOP"
>
Export object id
</TH>
<TD
ALIGN=
"LEFT"
VALIGN=
"TOP"
>
<INPUT
TYPE=
"TEXT"
NAME=
"id"
SIZE=
"25"
VALUE=
"<dtml-if ids><dtml-var
<TABLE
CELLSPACING=
"2"
>
<TR>
<TH
ALIGN=
"LEFT"
VALIGN=
"TOP"
>
Export object id
</TH>
<TD
ALIGH=
"LEFT"
VALIGN=
"TOP"
>
<INPUT
TYPE=
"TEXT"
NAME=
"id"
SIZE=
"25"
VALUE=
"<dtml-if ids><dtml-var
"
ids
[
0
]"
html_quote
></dtml-if>
">
</TD>
</TR>
<TR>
</TD>
</TR>
<TR>
<TH
ALIGN=
"LEFT"
VALIGN=
"TOP"
>
Export to
</TH>
<TD
ALIGN=
"LEFT"
VALIGN=
"TOP"
>
<INPUT
TYPE=
"RADIO"
NAME=
"download:int"
VALUE=
"1"
>
...
...
@@ -41,27 +43,24 @@
<TD><INPUT
TYPE=
"SUBMIT"
VALUE=
"Export"
></TD>
</TR>
</TABLE>
</TD>
<TD
VALIGN=
TOP
WIDTH=
"30%"
>
<SM>
You can export Zope objects to a file in order to transfer
them to a different Zope installation. You can either choose
to download the export file to your local machine, or save it
in the
"
var
"
directory of your Zope installation
on the server.
</SM>
</TD>
</TR>
</TABLE>
</FORM>
<p>
You may import Zope objects which have been previously
exported to a file, by placing the file in the
"
import
"
directory of your Zope installation on the server. You should create
the
"
import
"
directory in the root of your Zope installation
if it does not yet exist.
</p>
<p>
Note that by default, you will become the owner of the objects
that you are importing. If you wish the imported objects to retain
their existing ownership information, select "retain existing
ownership information".
</p>
<FORM
ACTION=
"manage_importObject"
METHOD=
"POST"
>
<TABLE
CELLPADDING=
2
>
<TR>
<TD
COLSPAN=
"2"
BGCOLOR=
"#000099"
></TD>
</TR>
<TR>
<TD
WIDTH=
"70%"
VALIGN=
"TOP"
>
<TABLE
CELLSPACING=
"2"
>
<TR>
...
...
@@ -88,25 +87,6 @@ on the server.</SM>
</TD>
</TR>
</TABLE>
</TD>
<TD
WIDTH=
"30%"
VALIGN=
"TOP"
>
<SM>
<p>
You may import Zope objects which have been previously
exported to a file, by placing the file in the
"
import
"
directory of your Zope installation on the server. You should create
the
"
import
"
directory in the root of your Zope installation
if it does not yet exist.
</p>
<p>
Note that by default, you will become the owner of the objects
that you are importing. If you wish the imported objects to retain
their existing ownership information, select "retain existing
ownership information".
</p>
</SM>
</TABLE>
</FORM>
</BODY>
</HTML>
...
...
lib/python/OFS/main.dtml
View file @
678a457e
...
...
@@ -2,66 +2,16 @@
<HTML
lang=
"en"
>
<HEAD>
<TITLE>
Contents
</TITLE>
<SCRIPT
LANGUAGE=
"JavaScript"
>
<!--
isSelected = false;
function toggleSelect()
{
if (isSelected == false)
{
for (i = 0; i < document.objectItems.length; i++)
document.objectItems.elements[i].checked = true ;
isSelected = true;
return isSelected;
}
else
for (i = 0; i < document.objectItems.length; i++)
document.objectItems.elements[i].checked = false ;
isSelected = false;
return isSelected;
}
//-->
</SCRIPT>
</HEAD>
<BODY
BGCOLOR=
"#FFFFFF"
LINK=
"#000099"
VLINK=
"#555555"
>
<dtml-var
manage_tabs
>
<FORM
ACTION=
"&dtml-URL1;"
METHOD=
"POST"
name=
"objectItems"
>
<P>
<FORM
ACTION=
"&dtml-URL1;"
METHOD=
"POST"
>
<dtml-if
objectItems
>
<TABLE
BORDER=
"0"
CELLSPACING=
"0"
CELLPADDING=
"2"
>
<dtml-unless
skey
>
<dtml-call
expr=
"REQUEST.set('skey', 'id')"
>
</dtml-unless>
<dtml-unless
rkey
>
<dtml-call
expr=
"REQUEST.set('rkey', '')"
>
</dtml-unless>
<TR>
<TD
WIDTH =
"2%"
ALIGN=
"left"
>
</TD>
<TD
WIDTH =
"4%"
ALIGN=
"left"
><a
href=
"<dtml-var absolute_url>/manage_main?skey=meta_type<dtml-if "
rkey =
=
''"
>
&
rkey=meta_type
</dtml-if>
">Type
</TD>
<TD
WIDTH =
"50%"
ALIGN=
"left"
><a
href=
"./manage_main?skey=id<dtml-if "
rkey =
=
''"
>
&
rkey=id
</dtml-if>
">Id
</a></TD>
<TD
WIDTH =
"15%"
ALIGN=
"left"
><a
href=
"./manage_main?skey=get_size<dtml-if "
rkey =
=
''"
>
&
rkey=get_size
</dtml-if>
">Size
</a></TD>
<TD
WIDTH =
"29%"
ALIGN=
"left"
><a
href=
"./manage_main?skey=bobobase_modification_time<dtml-if "
rkey =
=
''"
>
&
rkey=bobobase_modification_time
</dtml-if>
">Last Modified
</a></TD>
</TR>
<dtml-in
objectItems
sort_expr=
"skey"
reverse_expr=
"rkey"
>
<dtml-if
sequence-odd
>
<dtml-in
objectItems
sort
>
<TR>
</dtml-if>
<dtml-if
sequence-even
>
<TR
BGCOLOR=
"#DDDDDD"
>
</dtml-if>
<TD
ALIGN=
"LEFT"
VALIGN=
"TOP"
WIDTH=
"16"
>
<INPUT
TYPE=
"CHECKBOX"
NAME=
"ids:list"
VALUE=
"&dtml-sequence-key;"
>
</TD>
...
...
@@ -87,19 +37,6 @@ function toggleSelect()
</dtml-if>
</dtml-if>
</TD>
<dtml-with
sequence-key
>
<TD>
<dtml-if
get_size
>
<dtml-var
get_size
thousands_commas
>
bytes
<dtml-else>
</dtml-if>
</TD>
<TD>
<dtml-var
bobobase_modification_time
fmt=
mm
>
/
<dtml-var
bobobase_modification_time
fmt=
dd
>
/
<dtml-var
bobobase_modification_time
fmt=
yy
>
<dtml-var
bobobase_modification_time
fmt=
AMPMMinutes
>
</TD>
</dtml-with>
</TR>
</dtml-in>
</TABLE>
...
...
@@ -120,21 +57,11 @@ function toggleSelect()
<INPUT
TYPE=
"SUBMIT"
NAME=
"manage_delObjects:method"
VALUE=
"Delete"
>
</dtml-if>
<dtml-if
"
_
.
SecurityCheckPermission
('
Import
/
Export
objects
',
this
())"
>
<INPUT
TYPE=
"SUBMIT"
NAME=
"manage_importExportForm:method"
VALUE=
"
Import/
Export..."
>
<INPUT
TYPE=
"SUBMIT"
NAME=
"manage_importExportForm:method"
VALUE=
"Export..."
>
</dtml-if>
</TD>
</TR>
</TABLE>
<TABLE
BORDER=
"0"
CELLSPACING=
"0"
CELLPADDING=
2
>
<TR>
<TD
ALIGN=
"LEFT"
VALIGN=
"TOP"
WIDTH=
"16"
></TD>
<TD
ALIGN=
"LEFT"
VALIGN=
"TOP"
>
<FORM
OnSubmit=
"return false;"
>
<Input
type=
"submit"
value=
"Unselect All"
OnClick=
"toggleSelect(); return false"
>
</FORM>
</TD>
</TR>
</TABLE>
<dtml-else>
<TABLE
BORDER=
"0"
CELLSPACING=
"0"
CELLPADDING=
"2"
>
<TR>
...
...
@@ -197,6 +124,3 @@ window.parent.update_menu();
</BODY>
</HTML>
lib/python/OFS/properties.dtml
View file @
678a457e
...
...
@@ -5,22 +5,27 @@
</head>
<body
bgcolor=
"#FFFFFF"
link=
"#000099"
vlink=
"#555555"
>
<dtml-var
manage_tabs
>
<dtml-if
Principia-Version
>
<p>
<em>
You are currently working in version
<dtml-var
Principia-Version
></em>
</p>
</dtml-if
Principia-Version
>
<TABLE
CELLPADDING=
"4"
BORDER=
1
>
<TR>
<TD
COLSPAN=
"2"
BGCOLOR=
"#000099"
><font
color=
"#FFFFFF"
>
Defined Properties
</font></TD>
</TR>
<TR>
<TD
WIDTH=
"70%"
VALIGN=
"TOP"
>
<form
action=
"<dtml-var URL1>"
method=
"POST"
>
<dtml-if
propertyMap
>
<table
border=
"1"
cellspacing=
"0"
cellpadding=
"2"
>
<p>
Properties allow you to assign simple values to Zope objects.
The following properties are defined for this item.
<dtml-if
property_extensible_schema__
>
To
<a
href=
"#addpropform"
>
add a new property
</a>
, enter a name, type and value for the new property
and click the
"
Add
"
button.
</dtml-if>
To change property values, edit the
values and click "Save Changes".
</p>
<table
border=
"0"
cellspacing=
"0"
cellpadding=
"2"
>
<tr>
<th
colspan=
"3"
>
Property
</th>
<th>
Type
</th>
...
...
@@ -148,15 +153,7 @@
</dtml-if>
</td>
</tr>
</table></TD>
<TD
VALIGN=
TOP
WIDTH=
"30%"
>
Properties allow you to assign simple values to Zope objects.
The properties at left are defined for this item.
To change property values, edit the
values and click "Save Changes".
</TD>
</TR>
</TABLE>
</table>
<dtml-else>
<p>
...
...
@@ -171,14 +168,17 @@ To add a property, click the "Add..." button.
</form>
<dtml-if
property_extensible_schema__
>
<TABLE
CELLPADDING=
"4"
BORDER=
1
>
<TR>
<TD
COLSPAN=
"2"
BGCOLOR=
"#000099"
><font
color=
"#FFFFFF"
>
Add Properties
</font></TD>
</TR>
<TR>
<TD
WIDTH=
"70%"
VALIGN=
"TOP"
>
<a
name=
"addpropform"
>
<form
action=
"<dtml-var URL1>/manage_addProperty"
method=
"POST"
>
<table
BORDER=
1
CELLPADDING=
2
>
<p>
To add a new property, enter a name, type and value for the new
property and click the
"
Add
"
button. For
"
selection
"
and
"
multiple selection
"
properties enter the name of a selection variable in the
"
Value
"
field. The selection variable is a property or method that returns a list
of strings from which the selection(s) can be chosen.
</p>
<table>
<tr>
<th
align=
"left"
valign=
"top"
>
Name
</th>
<td
align=
"left"
valign=
"top"
><input
type=
"text"
name=
"id"
size=
"20"
></td>
...
...
@@ -210,17 +210,6 @@ To add a property, click the "Add..." button.
</tr>
</table>
</form>
</TD>
<TD
VALIGN =
"top"
WIDTH=
"30%"
>
To add a new property, enter a name, type and value for the new
property and click the
"
Add
"
button. For
"
selection
"
and
"
multiple selection
"
properties enter the name of a selection variable in the
"
Value
"
field. The selection variable is a property or method that returns a list
of strings from which the selection(s) can be chosen.
</TD>
</TR>
</TABLE>
</dtml-if>
</body>
...
...
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