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
0e43cc09
Commit
0e43cc09
authored
Nov 11, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added DraftFolder.
parent
1254bb47
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
lib/python/OFS/__init__.py
lib/python/OFS/__init__.py
+9
-3
No files found.
lib/python/OFS/__init__.py
View file @
0e43cc09
...
@@ -8,12 +8,13 @@
...
@@ -8,12 +8,13 @@
#
#
##############################################################################
##############################################################################
__doc__
=
'''OFS
__doc__
=
'''OFS
$Id: __init__.py,v 1.
2 1997/11/10 16:32:54
jim Exp $'''
$Id: __init__.py,v 1.
3 1997/11/11 19:26:37
jim Exp $'''
__version__
=
'$Revision: 1.
2
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
3
$'
[
11
:
-
2
]
import
Session
import
Session
,
DraftFolder
__
.
meta_types
=
(
__
.
meta_types
=
(
{
'name'
:
'Draft Folder'
,
'action'
:
'manage_addDraftFolderForm'
},
{
'name'
:
'Session'
,
'action'
:
'manage_addSessionForm'
},
{
'name'
:
'Session'
,
'action'
:
'manage_addSessionForm'
},
{
'name'
:
'File'
,
'action'
:
'manage_addFileForm'
},
{
'name'
:
'File'
,
'action'
:
'manage_addFileForm'
},
{
'name'
:
'Image'
,
'action'
:
'manage_addImageForm'
},
{
'name'
:
'Image'
,
'action'
:
'manage_addImageForm'
},
...
@@ -23,6 +24,8 @@ __.meta_types=(
...
@@ -23,6 +24,8 @@ __.meta_types=(
__
.
methods
=
{
__
.
methods
=
{
'manage_addSessionForm'
:
Session
.
addForm
,
'manage_addSessionForm'
:
Session
.
addForm
,
'manage_addSession'
:
Session
.
add
,
'manage_addSession'
:
Session
.
add
,
'manage_addDraftFolderForm'
:
DraftFolder
.
addForm
,
'manage_addDraftFolder'
:
DraftFolder
.
add
,
}
}
...
@@ -32,6 +35,9 @@ __.methods={
...
@@ -32,6 +35,9 @@ __.methods={
##############################################################################
##############################################################################
#
#
# $Log: __init__.py,v $
# $Log: __init__.py,v $
# Revision 1.3 1997/11/11 19:26:37 jim
# Added DraftFolder.
#
# Revision 1.2 1997/11/10 16:32:54 jim
# Revision 1.2 1997/11/10 16:32:54 jim
# Changed to support separate Image and File objects.
# Changed to support separate Image and File objects.
#
#
...
...
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