Changeset 383 for collective.imstransport
- Timestamp:
- 07/13/09 15:37:55 (3 years ago)
- Location:
- collective.imstransport/trunk/collective/imstransport
- Files:
-
- 40 modified
-
browser/exportform.py (modified) (1 diff)
-
browser/importform.py (modified) (1 diff)
-
config.py (modified) (1 diff)
-
IMS_exceptions.py (modified) (1 diff)
-
utilities/bb/bbreader.py (modified) (1 diff)
-
utilities/bb/configbb.py (modified) (1 diff)
-
utilities/bb/imsbbreader.py (modified) (1 diff)
-
utilities/imscc/ccreader.py (modified) (1 diff)
-
utilities/imscc/ccresourcewriter.py (modified) (1 diff)
-
utilities/imscc/ccwriter.py (modified) (1 diff)
-
utilities/imscc/configcc.py (modified) (1 diff)
-
utilities/imscc/imsccreader.py (modified) (1 diff)
-
utilities/imscc/imsccwriter.py (modified) (1 diff)
-
utilities/imscp/configcp.py (modified) (1 diff)
-
utilities/imscp/cpreader.py (modified) (1 diff)
-
utilities/imscp/cpresourcereader.py (modified) (1 diff)
-
utilities/imscp/cpresourcewriter.py (modified) (1 diff)
-
utilities/imscp/cpwriter.py (modified) (1 diff)
-
utilities/imscp/imscpreader.py (modified) (1 diff)
-
utilities/imscp/imscpwriter.py (modified) (1 diff)
-
utilities/imsinterchange.py (modified) (1 diff)
-
utilities/imsutility.py (modified) (1 diff)
-
utilities/interfaces.py (modified) (1 diff)
-
utilities/mit/configmit.py (modified) (1 diff)
-
utilities/mit/imsmitreader.py (modified) (1 diff)
-
utilities/mit/mitreader.py (modified) (1 diff)
-
utilities/mit/mitresourcereader.py (modified) (1 diff)
-
utilities/moodle/backupreader.py (modified) (1 diff)
-
utilities/moodle/configmoodle.py (modified) (1 diff)
-
utilities/moodle/imsmoodlewriter.py (modified) (1 diff)
-
utilities/moodle/moodlebackupreader.py (modified) (1 diff)
-
utilities/moodle/moodlewriter.py (modified) (1 diff)
-
utilities/objcreator.py (modified) (1 diff)
-
utilities/packagingio.py (modified) (1 diff)
-
utilities/webct/configwebct.py (modified) (1 diff)
-
utilities/webct/imswebctreader.py (modified) (1 diff)
-
utilities/webctvista/configwebctvista.py (modified) (1 diff)
-
utilities/webctvista/imswebctvistareader.py (modified) (1 diff)
-
utilities/webctvista/webctvistareader.py (modified) (1 diff)
-
utilities/webct/webctreader.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
collective.imstransport/trunk/collective/imstransport/browser/exportform.py
r214 r383 1 2 1 ################################################################################## 3 # 4 # Copyright (C) 2006 Utah State University, All rights reserved.5 # 6 # This program is free software; you can redistribute it and/or modify 7 # it under the terms of the GNU General Public License as published by 8 # the Free Software Foundation; either version 2 of the License, or 9 # (at your option) any later version. 10 # 11 # This program is distributed in the hope that it will be useful, 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 # GNU General Public License for more details. 15 # 16 # You should have received a copy of the GNU General Public License 17 # along with this program; if not, write to the Free Software 18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 # 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 20 19 ################################################################################## 21 20 22 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 23 __docformat__ = 'plaintext'24 22 __version__ = '$ Revision 0.0 $'[11:-2] 25 23 -
collective.imstransport/trunk/collective/imstransport/browser/importform.py
r214 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from zope.interface import Interface, implements 2 25 from zope.schema import TextLine, Choice -
collective.imstransport/trunk/collective/imstransport/config.py
r143 r383 1 1 ################################################################################## 2 # 3 # Copyright (C) 2004-2006 Utah State University, All rights reserved.4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 19 ################################################################################## 20 20 21 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __docformat__ = 'plaintext'23 22 __version__ = "$Revision: 2618 $"[11:-2] 24 23 25 #26 # Product configuration. This contents of this module will be imported into27 # __init__.py and every content type module.28 #29 # If you wish to perform custom configuration, you may put a file AppConfig.py30 # in your product's root directory. This will be included in this file if31 # found.32 #33 24 import os 34 25 -
collective.imstransport/trunk/collective/imstransport/IMS_exceptions.py
r186 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 1 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 2 23 3 24 class ManifestError(Exception): -
collective.imstransport/trunk/collective/imstransport/utilities/bb/bbreader.py
r378 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from urlparse import urlparse -
collective.imstransport/trunk/collective/imstransport/utilities/bb/configbb.py
r378 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 IMS_schema = 'IMS Content Package' 2 25 IMS_version = '1.2' -
collective.imstransport/trunk/collective/imstransport/utilities/bb/imsbbreader.py
r378 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from collective.imstransport.utilities.imsinterchange import IMSReader 2 25 from collective.imstransport.utilities.packagingio import ZipfileReader -
collective.imstransport/trunk/collective/imstransport/utilities/imscc/ccreader.py
r307 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from collective.imstransport.IMS_exceptions import ManifestError -
collective.imstransport/trunk/collective/imstransport/utilities/imscc/ccresourcewriter.py
r195 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 24 1 25 from xml.dom import minidom 2 26 -
collective.imstransport/trunk/collective/imstransport/utilities/imscc/ccwriter.py
r337 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from string import join -
collective.imstransport/trunk/collective/imstransport/utilities/imscc/configcc.py
r337 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 IMS_schema = 'IMS Common Cartridge' 2 25 IMS_version = '1.0.0' -
collective.imstransport/trunk/collective/imstransport/utilities/imscc/imsccreader.py
r215 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from zope.interface import implements 2 25 from collective.imstransport.utilities.interfaces import IIMSObjectCreator -
collective.imstransport/trunk/collective/imstransport/utilities/imscc/imsccwriter.py
r296 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from collective.imstransport.utilities.packagingio import ZipfileWriter 2 25 from collective.imstransport.utilities.imscc.ccwriter import CCWriter -
collective.imstransport/trunk/collective/imstransport/utilities/imscp/configcp.py
r306 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 IMS_schema = 'IMS Content Package' 2 25 IMS_version = '1.2' -
collective.imstransport/trunk/collective/imstransport/utilities/imscp/cpreader.py
r306 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from collective.imstransport.IMS_exceptions import ManifestError -
collective.imstransport/trunk/collective/imstransport/utilities/imscp/cpresourcereader.py
r197 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from collective.imstransport.IMS_exceptions import ManifestError -
collective.imstransport/trunk/collective/imstransport/utilities/imscp/cpresourcewriter.py
r176 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 24 1 25 from xml.dom import minidom 2 26 LOM_version = 'LOMv1.0' -
collective.imstransport/trunk/collective/imstransport/utilities/imscp/cpwriter.py
r306 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from string import join -
collective.imstransport/trunk/collective/imstransport/utilities/imscp/imscpreader.py
r306 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from collective.imstransport.utilities.imsinterchange import IMSReader 2 25 from collective.imstransport.utilities.packagingio import ZipfileReader -
collective.imstransport/trunk/collective/imstransport/utilities/imscp/imscpwriter.py
r306 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from zope.interface import implements 2 25 from collective.imstransport.utilities.interfaces import IIMSManifestWriter -
collective.imstransport/trunk/collective/imstransport/utilities/imsinterchange.py
r325 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from Products.CMFCore.interfaces import ISiteRoot 2 25 from collective.imstransport import IMSTransportMessageFactory as _ -
collective.imstransport/trunk/collective/imstransport/utilities/imsutility.py
r378 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from zope.interface import implements 2 25 from zope.component import getUtility, getUtilitiesFor -
collective.imstransport/trunk/collective/imstransport/utilities/interfaces.py
r195 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from zope.interface import Interface 2 3 25 4 26 class IIMSTransportUtility(Interface): -
collective.imstransport/trunk/collective/imstransport/utilities/mit/configmit.py
r313 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 IMS_schema = 'IMS Content Package' 2 25 IMS_version = '1.2' -
collective.imstransport/trunk/collective/imstransport/utilities/mit/imsmitreader.py
r313 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from collective.imstransport.utilities.imsinterchange import IMSReader 2 25 from collective.imstransport.utilities.packagingio import ZipfileReader -
collective.imstransport/trunk/collective/imstransport/utilities/mit/mitreader.py
r313 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from collective.imstransport.IMS_exceptions import ManifestError -
collective.imstransport/trunk/collective/imstransport/utilities/mit/mitresourcereader.py
r197 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from collective.imstransport.utilities.imscp.cpresourcereader import CPResourceReader -
collective.imstransport/trunk/collective/imstransport/utilities/moodle/backupreader.py
r298 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from collective.imstransport.IMS_exceptions import ManifestError -
collective.imstransport/trunk/collective/imstransport/utilities/moodle/configmoodle.py
r337 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 IMS_schema = 'IMS Content Package' 2 25 IMS_version = '1.2' -
collective.imstransport/trunk/collective/imstransport/utilities/moodle/imsmoodlewriter.py
r378 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from zope.interface import implements 2 25 from collective.imstransport.utilities.interfaces import IIMSManifestWriter -
collective.imstransport/trunk/collective/imstransport/utilities/moodle/moodlebackupreader.py
r300 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from collective.imstransport.utilities.packagingio import ZipfileReader 2 25 from collective.imstransport.utilities.imsinterchange import IMSReader -
collective.imstransport/trunk/collective/imstransport/utilities/moodle/moodlewriter.py
r337 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from string import join -
collective.imstransport/trunk/collective/imstransport/utilities/objcreator.py
r313 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from zope.interface import implements 2 25 from collective.imstransport.utilities.interfaces import IIMSObjectCreator -
collective.imstransport/trunk/collective/imstransport/utilities/packagingio.py
r378 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from zipfile import ZipFile, ZIP_DEFLATED 2 25 from StringIO import StringIO -
collective.imstransport/trunk/collective/imstransport/utilities/webct/configwebct.py
r325 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 IMS_schema = 'IMS Content Package' 2 25 IMS_version = '1.2' -
collective.imstransport/trunk/collective/imstransport/utilities/webct/imswebctreader.py
r378 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from collective.imstransport.utilities.imsinterchange import IMSReader 2 25 from collective.imstransport.utilities.packagingio import ZipfileReader -
collective.imstransport/trunk/collective/imstransport/utilities/webctvista/configwebctvista.py
r325 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 IMS_schema = 'IMS Content Package' 2 25 IMS_version = '1.2' -
collective.imstransport/trunk/collective/imstransport/utilities/webctvista/imswebctvistareader.py
r325 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from collective.imstransport.utilities.imsinterchange import IMSReader 2 25 from collective.imstransport.utilities.packagingio import ZipfileReader -
collective.imstransport/trunk/collective/imstransport/utilities/webctvista/webctvistareader.py
r325 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from collective.imstransport.IMS_exceptions import ManifestError -
collective.imstransport/trunk/collective/imstransport/utilities/webct/webctreader.py
r378 r383 1 ################################################################################## 2 # Copyright (c) 2004-2009 Utah State University, All rights reserved. 3 # Portions copyright 2009 Massachusetts Institute of Technology, All rights reserved. 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 # 19 ################################################################################## 20 21 __author__ = '''Brent Lambert, David Ray, Jon Thomas''' 22 __version__ = '$ Revision 0.0 $'[11:-2] 23 1 24 from xml.dom import minidom 2 25 from collective.imstransport.IMS_exceptions import ManifestError
