- Timestamp:
- 07/06/09 16:08:04 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
collective.imstransport/trunk/collective/imstransport/utilities/imscc/configcc.py
r212 r337 4 4 LOM_namespace = 'http://ltsc.ieee.org/xsd/LOM' 5 5 LOM_IMSCC_namespace = 'http://ltsc.ieee.org/xsd/imscc/LOM' 6 LOM_CC_namespace = 'http://ltsc.ieee.org/xsd/LOM' 6 7 WL_namespace = 'http://www.imsglobal.org/xsd/imswl_v1p0' 7 WL_schemainst = 'http://www.w3.org/2001/XMLSchema-instance'8 IMS_schemainst = 'http://www.w3.org/2001/XMLSchema-instance' 8 9 9 10 namespaces = [('xmlns', 'http://www.imsglobal.org/xsd/imscc/imscp_v1p1'), 10 ('xmlns:lomimscc', 'http://ltsc.ieee.org/xsd/imscc/LOM'),11 ('xmlns:lom', 'http://ltsc.ieee.org/xsd/LOM'),12 ('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'),]11 ('xmlns:lomimscc', LOM_IMSCC_namespace), 12 ('xmlns:lom', LOM_CC_namespace), 13 ('xmlns:xsi', IMS_schemainst),] 13 14 14 15 schema_locations = [ 15 16 'http://www.imsglobal.org/xsd/imscc/imscp_v1p1 http://www.imsglobal.org/profile/cc/ccv1p0/derived_schema/imscp_v1p2_localised.xsd', 16 ' http://ltsc.ieee.org/xsd/LOM http://www.imsglobal.org/profile/cc/ccv1p0/derived_schema/domainProfile_2/lomLoose_localised.xsd',17 ' http://ltsc.ieee.org/xsd/imscc/LOM http://www.imsglobal.org/profile/cc/ccv1p0/derived_schema/domainProfile_1/lomLoose_localised.xsd',]17 '%s http://www.imsglobal.org/profile/cc/ccv1p0/derived_schema/domainProfile_2/lomLoose_localised.xsd' %LOM_CC_namespace, 18 '%s http://www.imsglobal.org/profile/cc/ccv1p0/derived_schema/domainProfile_1/lomLoose_localised.xsd' %LOM_IMSCC_namespace,]
