Show
Ignore:
Timestamp:
07/06/09 16:08:04 (3 years ago)
Author:
jon
Message:

Adding the moodle export

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • collective.imstransport/trunk/collective/imstransport/utilities/imscc/configcc.py

    r212 r337  
    44LOM_namespace = 'http://ltsc.ieee.org/xsd/LOM' 
    55LOM_IMSCC_namespace = 'http://ltsc.ieee.org/xsd/imscc/LOM' 
     6LOM_CC_namespace = 'http://ltsc.ieee.org/xsd/LOM' 
    67WL_namespace = 'http://www.imsglobal.org/xsd/imswl_v1p0' 
    7 WL_schemainst = 'http://www.w3.org/2001/XMLSchema-instance' 
     8IMS_schemainst = 'http://www.w3.org/2001/XMLSchema-instance' 
    89 
    910namespaces = [('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),] 
    1314 
    1415schema_locations = [ 
    1516    '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,]