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
ebc06e59
Commit
ebc06e59
authored
Dec 18, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
8a88b3fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
0 deletions
+56
-0
lib/python/Products/OFSP/__init__.py
lib/python/Products/OFSP/__init__.py
+56
-0
No files found.
lib/python/Products/OFSP/__init__.py
0 → 100644
View file @
ebc06e59
##############################################################################
#
# Copyright
#
# Copyright 1997 Digital Creations, L.C., 910 Princess Anne
# Street, Suite 300, Fredericksburg, Virginia 22401 U.S.A. All
# rights reserved.
#
##############################################################################
__doc__
=
'''OFS
$Id: __init__.py,v 1.1 1997/12/18 17:05:54 jim Exp $'''
__version__
=
'$Revision: 1.1 $'
[
11
:
-
2
]
import
Session
,
DraftFolder
__
.
meta_types
=
(
{
'name'
:
'Draft Folder'
,
'action'
:
'manage_addDraftFolderForm'
},
{
'name'
:
'Session'
,
'action'
:
'manage_addSessionForm'
},
{
'name'
:
'File'
,
'action'
:
'manage_addFileForm'
},
{
'name'
:
'Image'
,
'action'
:
'manage_addImageForm'
},
{
'name'
:
'Folder'
,
'action'
:
'manage_addFolderForm'
},
{
'name'
:
'Document'
,
'action'
:
'manage_addDocumentForm'
},
)
__
.
methods
=
{
'manage_addSessionForm'
:
Session
.
addForm
,
'manage_addSession'
:
Session
.
add
,
'manage_addDraftFolderForm'
:
DraftFolder
.
addForm
,
'manage_addDraftFolder'
:
DraftFolder
.
add
,
}
##############################################################################
#
# $Log: __init__.py,v $
# Revision 1.1 1997/12/18 17:05:54 jim
# *** empty log message ***
#
# Revision 1.3 1997/11/11 19:26:37 jim
# Added DraftFolder.
#
# Revision 1.2 1997/11/10 16:32:54 jim
# Changed to support separate Image and File objects.
#
# Revision 1.1 1997/11/07 19:31:42 jim
# *** empty log message ***
#
# Revision 1.1 1997/10/09 17:34:53 jim
# first cut, no testing
#
# Revision 1.1 1997/07/25 18:14:28 jim
# initial
#
#
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