Skip to content
This repository has been archived by the owner on Sep 28, 2020. It is now read-only.

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Fulton committed Dec 18, 1997
1 parent 5353e4f commit 9b2dab0
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
##############################################################################
#
# 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
#
#

0 comments on commit 9b2dab0

Please sign in to comment.