├── api
├── __init__.py
└── tests
│ ├── __init__.py
│ └── data
│ ├── 1.xml
│ ├── 2.xml
│ └── 3.xml
├── curate
└── __init__.py
├── utils
├── __init__.py
├── BLOBHoster
│ └── __init__.py
├── XSDParser
│ ├── __init__.py
│ ├── tests
│ │ ├── __init__.py
│ │ ├── renderer
│ │ │ ├── table
│ │ │ │ └── __init__.py
│ │ │ ├── xml
│ │ │ │ └── __init__.py
│ │ │ └── list
│ │ │ │ ├── unit
│ │ │ │ ├── __init__.py
│ │ │ │ ├── main
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── test_main_render_element.py
│ │ │ │ │ ├── test_main_render_sequence.py
│ │ │ │ │ ├── test_main_render_restriction.py
│ │ │ │ │ ├── test_main_render_extension.py
│ │ │ │ │ ├── test_main_render_simple_type.py
│ │ │ │ │ ├── test_main_render_attribute.py
│ │ │ │ │ ├── test_main_render_complex_type.py
│ │ │ │ │ └── test_main_render_simple_content.py
│ │ │ │ └── abstract
│ │ │ │ │ └── __init__.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── schema
│ │ │ │ ├── test_element.py
│ │ │ │ ├── test_extension.py
│ │ │ │ ├── test_sequence.py
│ │ │ │ ├── test_complex_content.py
│ │ │ │ ├── test_complex_type.py
│ │ │ │ ├── test_restriction.py
│ │ │ │ ├── test_simple_content.py
│ │ │ │ └── test_simple_type.py
│ │ └── data
│ │ │ ├── parser
│ │ │ ├── choice
│ │ │ │ ├── any
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── unbounded.html
│ │ │ │ │ ├── basic.xsd
│ │ │ │ │ └── unbounded.xsd
│ │ │ │ ├── multiple
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── element
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ └── unbounded.xml
│ │ │ │ └── sequence
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ └── unbounded.xml
│ │ │ ├── schema
│ │ │ │ ├── group
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ └── basic.xsd
│ │ │ │ ├── import
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ └── basic.xsd
│ │ │ │ ├── include
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ └── basic.xsd
│ │ │ │ ├── attribute
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.xsd
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── complex_type
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── multiple
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── notation
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ └── basic.xsd
│ │ │ │ ├── redefine
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── simple_type
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── attribute_group
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ └── basic.xsd
│ │ │ │ ├── namespace
│ │ │ │ │ ├── element
│ │ │ │ │ │ ├── 3.xml
│ │ │ │ │ │ ├── 1.xml
│ │ │ │ │ │ ├── 7.xml
│ │ │ │ │ │ ├── 3_1.xml
│ │ │ │ │ │ ├── 5.xml
│ │ │ │ │ │ ├── 7_1.xml
│ │ │ │ │ │ ├── 1_1.xml
│ │ │ │ │ │ ├── 2.xml
│ │ │ │ │ │ ├── 4.xml
│ │ │ │ │ │ ├── 5_1.xml
│ │ │ │ │ │ ├── 6.xml
│ │ │ │ │ │ ├── 8.xml
│ │ │ │ │ │ ├── 2_1.xml
│ │ │ │ │ │ ├── 4_1.xml
│ │ │ │ │ │ ├── 6_1.xml
│ │ │ │ │ │ ├── 8_1.xml
│ │ │ │ │ │ ├── 1.xsd
│ │ │ │ │ │ ├── 3.xsd
│ │ │ │ │ │ ├── 2.xsd
│ │ │ │ │ │ └── 4.xsd
│ │ │ │ │ ├── import
│ │ │ │ │ │ ├── 11.xml
│ │ │ │ │ │ ├── 13.xml
│ │ │ │ │ │ ├── 15.xml
│ │ │ │ │ │ ├── 9.xml
│ │ │ │ │ │ ├── 14.xml
│ │ │ │ │ │ ├── 16.xml
│ │ │ │ │ │ ├── 10.xml
│ │ │ │ │ │ ├── 1.xml
│ │ │ │ │ │ ├── 3.xml
│ │ │ │ │ │ ├── 12.xml
│ │ │ │ │ │ ├── 5.xml
│ │ │ │ │ │ ├── 7.xml
│ │ │ │ │ │ ├── 2.xml
│ │ │ │ │ │ ├── 4.xml
│ │ │ │ │ │ ├── 6.xml
│ │ │ │ │ │ ├── 8.xml
│ │ │ │ │ │ ├── 1_inc.xsd
│ │ │ │ │ │ ├── 3_inc.xsd
│ │ │ │ │ │ ├── 5_inc.xsd
│ │ │ │ │ │ ├── 6_inc.xsd
│ │ │ │ │ │ ├── 7_inc.xsd
│ │ │ │ │ │ ├── 8_inc.xsd
│ │ │ │ │ │ ├── 2_inc.xsd
│ │ │ │ │ │ ├── 4_inc.xsd
│ │ │ │ │ │ ├── 11_inc.xsd
│ │ │ │ │ │ └── 13_inc.xsd
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── 1.xml
│ │ │ │ │ │ ├── 13.xml
│ │ │ │ │ │ ├── 15.xml
│ │ │ │ │ │ ├── 3.xml
│ │ │ │ │ │ ├── 5.xml
│ │ │ │ │ │ ├── 7.xml
│ │ │ │ │ │ ├── 9.xml
│ │ │ │ │ │ ├── 11.xml
│ │ │ │ │ │ ├── 14.xml
│ │ │ │ │ │ ├── 16.xml
│ │ │ │ │ │ ├── 10.xml
│ │ │ │ │ │ ├── 2.xml
│ │ │ │ │ │ ├── 4.xml
│ │ │ │ │ │ ├── 12.xml
│ │ │ │ │ │ ├── 6.xml
│ │ │ │ │ │ ├── 8.xml
│ │ │ │ │ │ ├── 1_inc.xsd
│ │ │ │ │ │ ├── 3_inc.xsd
│ │ │ │ │ │ ├── 5_inc.xsd
│ │ │ │ │ │ ├── 7_inc.xsd
│ │ │ │ │ │ ├── 8_inc.xsd
│ │ │ │ │ │ ├── 6_inc.xsd
│ │ │ │ │ │ ├── 2_inc.xsd
│ │ │ │ │ │ ├── 4_inc.xsd
│ │ │ │ │ │ ├── 13_inc.xsd
│ │ │ │ │ │ ├── 9_inc.xsd
│ │ │ │ │ │ ├── 11_inc.xsd
│ │ │ │ │ │ └── 15_inc.xsd
│ │ │ │ │ └── tests.xlsx
│ │ │ │ ├── element
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ └── multiple.xml
│ │ │ │ └── target_namespace
│ │ │ │ │ ├── ref
│ │ │ │ │ └── basic.xml
│ │ │ │ │ └── element
│ │ │ │ │ └── basic.xml
│ │ │ ├── complex_type
│ │ │ │ ├── all
│ │ │ │ │ ├── basic.json
│ │ │ │ │ └── basic.xml
│ │ │ │ ├── group
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.json
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── any_attribute
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.json
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ └── basic.xsd
│ │ │ │ ├── attribute_group
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.json
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── attribute
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.xsd
│ │ │ │ ├── simple_content
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── choice
│ │ │ │ │ └── basic.xml
│ │ │ │ ├── complex_content
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ └── basic.xml
│ │ │ │ ├── sequence
│ │ │ │ │ └── basic.xml
│ │ │ │ └── multiple
│ │ │ │ │ └── basic.xml
│ │ │ ├── element
│ │ │ │ ├── multiple
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_key
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── complex_key
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── complex_keyref
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── complex_unique
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_keyref
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_unique
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_type
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── unbounded.xml
│ │ │ │ │ └── basic.html
│ │ │ │ ├── key
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.xsd
│ │ │ │ ├── keyref
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.xsd
│ │ │ │ ├── complex_type
│ │ │ │ │ └── basic.xml
│ │ │ │ └── unique
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.xsd
│ │ │ ├── simple_type
│ │ │ │ ├── union
│ │ │ │ │ └── basic.html
│ │ │ │ ├── list
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ └── basic.xsd
│ │ │ │ └── restriction
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ ├── element_absent
│ │ │ │ ├── multiple
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── complex_key
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_key
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_keyref
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_unique
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── complex_keyref
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── complex_unique
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_type
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── key
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.xsd
│ │ │ │ │ └── unbounded.xsd
│ │ │ │ ├── keyref
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.xsd
│ │ │ │ └── unique
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.xsd
│ │ │ ├── utils
│ │ │ │ ├── occurs
│ │ │ │ │ ├── item0.xml
│ │ │ │ │ ├── item1.xml
│ │ │ │ │ ├── item2.xml
│ │ │ │ │ ├── item3.xml
│ │ │ │ │ ├── item4.xml
│ │ │ │ │ ├── item5.xml
│ │ │ │ │ ├── compliant.xml
│ │ │ │ │ └── noncompliant.xml
│ │ │ │ ├── xml_data
│ │ │ │ │ ├── complex_type
│ │ │ │ │ │ ├── empty.xml
│ │ │ │ │ │ └── filled.xml
│ │ │ │ │ ├── element
│ │ │ │ │ │ ├── simple.xml
│ │ │ │ │ │ ├── complex.xml
│ │ │ │ │ │ └── simple.xsd
│ │ │ │ │ ├── attribute
│ │ │ │ │ │ ├── instance.xml
│ │ │ │ │ │ └── schema.xsd
│ │ │ │ │ └── simple_type
│ │ │ │ │ │ ├── empty.xml
│ │ │ │ │ │ └── filled.xml
│ │ │ │ ├── buttons
│ │ │ │ │ ├── add_shown.html
│ │ │ │ │ ├── remove_shown.html
│ │ │ │ │ ├── add_hidden.html
│ │ │ │ │ └── remove_hidden.html
│ │ │ │ ├── manage_occurs
│ │ │ │ │ ├── attr_use_undefined.xsd
│ │ │ │ │ ├── attr_use_optional.xsd
│ │ │ │ │ ├── attr_use_required.xsd
│ │ │ │ │ ├── attr_use_prohibited.xsd
│ │ │ │ │ ├── max_occurs_parsable.xsd
│ │ │ │ │ ├── min_occurs_parsable.xsd
│ │ │ │ │ └── max_occurs_unbounded.xsd
│ │ │ │ ├── element_type
│ │ │ │ │ ├── common_type.xsd
│ │ │ │ │ └── no_type
│ │ │ │ │ │ └── one_child_annot.xsd
│ │ │ │ ├── modules
│ │ │ │ │ └── no_module.xsd
│ │ │ │ └── xpath
│ │ │ │ │ ├── ref_import
│ │ │ │ │ └── reference.xsd
│ │ │ │ │ └── name.xsd
│ │ │ ├── restriction
│ │ │ │ ├── multiple
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── enumeration
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ └── simple_type
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ ├── extension
│ │ │ │ ├── any_attribute
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── attribute
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── attribute_group
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ └── basic.xml
│ │ │ │ ├── all
│ │ │ │ │ └── basic.xml
│ │ │ │ ├── choice
│ │ │ │ │ └── basic.xml
│ │ │ │ ├── sequence
│ │ │ │ │ └── basic.xml
│ │ │ │ ├── explicit-implicit
│ │ │ │ │ ├── Tests.xlsx
│ │ │ │ │ ├── 2-reload1.xml
│ │ │ │ │ ├── 4-reload1.xml
│ │ │ │ │ ├── 2.xml
│ │ │ │ │ ├── 6-reload1.xml
│ │ │ │ │ ├── 6-reload2.xml
│ │ │ │ │ ├── 1-reload1.xml
│ │ │ │ │ ├── 5.xml
│ │ │ │ │ ├── 6.xml
│ │ │ │ │ ├── 8-reload1.xml
│ │ │ │ │ ├── 8-reload2.xml
│ │ │ │ │ ├── 1.xml
│ │ │ │ │ ├── 3-reload1.xml
│ │ │ │ │ ├── 4.xml
│ │ │ │ │ ├── 5-reload1.xml
│ │ │ │ │ ├── 5-reload2.xml
│ │ │ │ │ ├── 7.xml
│ │ │ │ │ ├── 8.xml
│ │ │ │ │ └── 3.xml
│ │ │ │ ├── group
│ │ │ │ │ └── basic.xml
│ │ │ │ └── multiple
│ │ │ │ │ └── basic.xml
│ │ │ ├── simple_content
│ │ │ │ ├── extension
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ └── restriction
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ ├── complex_content
│ │ │ │ ├── restriction
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ └── basic.xml
│ │ │ │ └── extension
│ │ │ │ │ └── basic.xml
│ │ │ ├── namespace
│ │ │ │ ├── no_default_prefix
│ │ │ │ │ └── test.xml
│ │ │ │ ├── ref
│ │ │ │ │ └── test.xml
│ │ │ │ ├── no_target_namespace
│ │ │ │ │ └── test.xml
│ │ │ │ └── target_namespace
│ │ │ │ │ └── test.xml
│ │ │ ├── sequence
│ │ │ │ ├── choice
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ └── unbounded.xml
│ │ │ │ ├── element
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── unbounded.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── sequence
│ │ │ │ │ ├── basic.xml
│ │ │ │ │ ├── unbounded.xml
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── multiple
│ │ │ │ │ └── basic.xml
│ │ │ │ └── any
│ │ │ │ │ ├── basic.xsd
│ │ │ │ │ └── unbounded.xsd
│ │ │ ├── module
│ │ │ │ └── registered_module.xml
│ │ │ └── sequence_absent
│ │ │ │ ├── element
│ │ │ │ ├── basic.html
│ │ │ │ ├── unbounded.html
│ │ │ │ ├── basic.xsd
│ │ │ │ └── unbounded.xsd
│ │ │ │ ├── sequence
│ │ │ │ ├── basic.html
│ │ │ │ └── unbounded.html
│ │ │ │ └── any
│ │ │ │ ├── basic.xsd
│ │ │ │ └── unbounded.xsd
│ │ │ └── renderer
│ │ │ ├── list
│ │ │ ├── choice
│ │ │ │ ├── any
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ └── multiple
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ ├── element
│ │ │ │ ├── multiple
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── complex_key
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_key
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_keyref
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_unique
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── complex_keyref
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── complex_unique
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── key
│ │ │ │ │ └── basic.html
│ │ │ │ ├── keyref
│ │ │ │ │ └── basic.html
│ │ │ │ ├── unique
│ │ │ │ │ └── basic.html
│ │ │ │ └── simple_type
│ │ │ │ │ └── basic.html
│ │ │ ├── complex_type
│ │ │ │ ├── group
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── any_attribute
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── attribute_group
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── attribute
│ │ │ │ │ ├── basic.reload.html
│ │ │ │ │ └── basic.html
│ │ │ │ ├── complex_content
│ │ │ │ │ └── basic.reload.html
│ │ │ │ └── simple_content
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ ├── simple_type
│ │ │ │ ├── union
│ │ │ │ │ └── basic.html
│ │ │ │ ├── list
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ └── restriction
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ ├── element_absent
│ │ │ │ ├── complex_key
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── multiple
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_key
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── complex_keyref
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── complex_unique
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_keyref
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_unique
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── simple_type
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ ├── key
│ │ │ │ │ └── basic.html
│ │ │ │ ├── keyref
│ │ │ │ │ └── basic.html
│ │ │ │ └── unique
│ │ │ │ │ └── basic.html
│ │ │ ├── complex_content
│ │ │ │ └── restriction
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ ├── extension
│ │ │ │ ├── any_attribute
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── attribute_group
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ └── attribute
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ ├── schema
│ │ │ │ ├── group
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── import
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── attribute
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── include
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── notation
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── redefine
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── simple_type
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── attribute_group
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── complex_type
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── multiple
│ │ │ │ │ └── basic.reload.html
│ │ │ │ └── namespace
│ │ │ │ │ └── tests.xlsx
│ │ │ ├── utils
│ │ │ │ └── buttons
│ │ │ │ │ ├── add_shown.html
│ │ │ │ │ ├── remove_shown.html
│ │ │ │ │ ├── add_hidden.html
│ │ │ │ │ └── remove_hidden.html
│ │ │ ├── sequence_absent
│ │ │ │ ├── element
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ │ └── sequence
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── unbounded.html
│ │ │ ├── sequence
│ │ │ │ ├── element
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ └── sequence
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ ├── restriction
│ │ │ │ ├── multiple
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ ├── enumeration
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ │ └── simple_type
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── basic.reload.html
│ │ │ └── simple_content
│ │ │ │ ├── restriction
│ │ │ │ ├── basic.html
│ │ │ │ └── basic.reload.html
│ │ │ │ └── extension
│ │ │ │ ├── basic.html
│ │ │ │ └── basic.reload.html
│ │ │ └── default
│ │ │ ├── select
│ │ │ ├── id_none_options_empty.html
│ │ │ ├── id_str_options_empty.html
│ │ │ ├── id_none_options_list.html
│ │ │ └── id_str_options_list.html
│ │ │ ├── ul
│ │ │ ├── elem_empty_ch_true.html
│ │ │ ├── elem_none_ch_true.html
│ │ │ ├── elem_str_ch_true.html
│ │ │ ├── elem_empty_ch_false.html
│ │ │ ├── elem_none_ch_false.html
│ │ │ └── elem_str_ch_false.html
│ │ │ ├── li
│ │ │ ├── default.html
│ │ │ ├── use_str_text_none.html
│ │ │ ├── use_none_text_str.html
│ │ │ └── use_str_text_str.html
│ │ │ ├── template
│ │ │ ├── sample_no_data.html
│ │ │ └── sample_with_data.html
│ │ │ ├── form.html
│ │ │ ├── input
│ │ │ ├── val_str_pl_empty_tt_str.html
│ │ │ ├── val_empty_pl_empty_tt_empty.html
│ │ │ ├── val_str_pl_str_tt_empty.html
│ │ │ ├── val_str_pl_empty_tt_empty.html
│ │ │ ├── val_empty_pl_str_tt_str.html
│ │ │ ├── val_str_pl_str_tt_str.html
│ │ │ ├── val_empty_pl_empty_tt_str.html
│ │ │ └── val_empty_pl_str_tt_empty.html
│ │ │ ├── collapse.html
│ │ │ └── form_error.html
│ └── templates
│ │ └── renderer
│ │ ├── default
│ │ ├── inputs
│ │ │ ├── checkbox.html
│ │ │ └── select.html
│ │ ├── test
│ │ │ ├── sample_no_data.html
│ │ │ └── sample_with_data.html
│ │ ├── buttons
│ │ │ ├── add.html
│ │ │ ├── delete.html
│ │ │ └── collapse.html
│ │ ├── ul.html
│ │ ├── warning.html
│ │ └── form-error.html
│ │ ├── table
│ │ ├── wrap.html
│ │ ├── tr.html
│ │ └── table.html
│ │ ├── list
│ │ ├── li.html
│ │ ├── ul.html
│ │ └── attributes.html
│ │ └── xml
│ │ └── element.html
├── XSDhash
│ ├── __init__.py
│ ├── tests
│ │ └── __init__.py
│ ├── README.txt
│ └── tests.xlsx
├── XMLValidation
│ ├── __init__.py
│ └── tests
│ │ ├── __init__.py
│ │ └── data
│ │ ├── empty.xsd
│ │ ├── basic_nok.xml
│ │ ├── basic_ok.xml
│ │ ├── import_external_nok.xml
│ │ ├── include_nok.xml
│ │ ├── import_nok.xml
│ │ ├── include_ok.xml
│ │ ├── import_ok.xml
│ │ ├── no_root_ok.xml
│ │ ├── no_root_nok.xml
│ │ ├── not_well_formed.xsd
│ │ ├── basic.xsd
│ │ ├── invalid.xsd
│ │ └── import-external.xsd
├── XSDRefinements
│ └── __init__.py
├── XSDflattener
│ ├── __init__.py
│ └── README.txt
├── APIschemaLocator
│ └── __init__.py
└── XSDflattenerMDCS
│ └── __init__.py
├── compose
├── __init__.py
└── tests
│ └── __init__.py
├── oai_pmh
├── api
│ └── __init__.py
├── admin
│ └── __init__.py
├── explore
│ └── __init__.py
├── server
│ └── __init__.py
├── tests
│ ├── __init__.py
│ └── dump
│ │ ├── oai_set.bson
│ │ ├── oai_xslt.bson
│ │ ├── oai_identify.bson
│ │ ├── oai_my_set.bson
│ │ ├── oai_record.bson
│ │ ├── oai_registry.bson
│ │ ├── oai_settings.bson
│ │ ├── oai_my_set_bad.bson
│ │ ├── oai_settings_bad.bson
│ │ ├── oai_templ_mf_xslt.bson
│ │ ├── oai_metadata_format.bson
│ │ ├── oai_my_metadata_format.bson
│ │ └── oai_my_metadata_format_bad.bson
└── __init__.py
├── testing
├── __init__.py
└── dump
│ ├── template.bson
│ ├── xmldata.bson
│ ├── result_xslt.bson
│ └── template_version.bson
├── explore
├── tests
│ ├── __init__.py
│ └── data
│ │ ├── 1.xml
│ │ ├── 2.xml
│ │ ├── 3.xml
│ │ ├── encoding.xml
│ │ ├── 1-attr.xml
│ │ ├── 2-attr.xml
│ │ ├── 3-attr.xml
│ │ └── encoding-attr.xml
└── __init__.py
├── exporter
├── builtin
│ ├── __init__.py
│ └── urls.py
├── diffusion
│ ├── pop
│ │ ├── __init__.py
│ │ └── urls.py
│ ├── graph
│ │ ├── TO_INSTALL
│ │ ├── __init__.py
│ │ └── urls.py
│ ├── __init__.py
│ ├── csv
│ │ ├── __init__.py
│ │ └── urls.py
│ └── urls.py
├── curator
│ ├── __init__.py
│ ├── json
│ │ ├── __init__.py
│ │ └── urls.py
│ └── urls.py
└── urls.py
├── modules
├── builtin
│ ├── __init__.py
│ ├── views.py
│ ├── urls.py
│ └── resources
│ │ ├── css
│ │ ├── checkboxes.css
│ │ └── textarea.css
│ │ ├── js
│ │ ├── autocomplete.js
│ │ ├── options.js
│ │ ├── textarea.js
│ │ ├── input.js
│ │ └── sync_input.js
│ │ └── html
│ │ ├── textarea.html
│ │ ├── autocomplete.html
│ │ ├── input_button.html
│ │ ├── popup.html
│ │ └── input.html
├── curator
│ ├── __init__.py
│ ├── resources
│ │ ├── css
│ │ │ └── BLOBHoster.css
│ │ ├── html
│ │ │ ├── BLOBHoster.html
│ │ │ ├── RemoteBLOBHosterDisplay.html
│ │ │ └── BLOBHosterDisplay.html
│ │ └── js
│ │ │ └── blobhoster.js
│ └── forms.py
├── examples
│ ├── __init__.py
│ └── resources
│ │ └── css
│ │ └── list_to_graph.css
├── registry
│ ├── __init__.py
│ ├── tests.py
│ └── resources
│ │ └── html
│ │ ├── name_pid.html
│ │ └── relevant_date.html
├── diffusion
│ ├── __init__.py
│ ├── resources
│ │ └── html
│ │ │ └── ExcelUploader.html
│ └── forms.py
├── tests.py
└── exceptions.py
├── user_dashboard
├── __init__.py
└── tests
│ └── __init__.py
├── admin_mdcs
├── templatetags
│ ├── __init__.py
│ ├── dict_key_extras.py
│ └── dictionary_extras.py
└── __init__.py
├── templates
├── registration
│ └── password_reset_email.txt
├── explore
│ └── query_builder
│ │ ├── input.html
│ │ ├── yes_no.html
│ │ ├── string_select.html
│ │ ├── enum.html
│ │ ├── and_or_not.html
│ │ └── numeric_select.html
└── oai_pmh
│ ├── xml
│ └── error.xml
│ └── admin
│ └── form_my_metadata_format_edit.html
├── static
├── css
│ └── nmrr
│ │ ├── login.css
│ │ ├── dialog.css
│ │ ├── form_validation.css
│ │ └── admin.css
├── img
│ ├── box.gif
│ ├── expand.png
│ ├── header.gif
│ ├── help.gif
│ ├── icons.png
│ ├── collapse.png
│ ├── edit-big.png
│ ├── help-big.png
│ ├── Ps-x-button.png
│ ├── ajax-loader.gif
│ ├── mgi_diagram.jpg
│ ├── navigation.gif
│ ├── search-big.png
│ ├── debug-loader.gif
│ ├── loader-circle.gif
│ ├── Orange_Number_1.png
│ ├── Orange_Number_2.png
│ ├── Orange_Number_3.png
│ ├── content-wrapper.gif
│ ├── footer-wrapper.gif
│ ├── gradient-light.gif
│ ├── header-wrapper-2.gif
│ ├── navigation-arrow.gif
│ ├── subnav-wrapper-2.gif
│ ├── subnav-wrapper.gif
│ ├── navigation-arrow-2.gif
│ ├── separator-vertical.gif
│ ├── content-two-columns.gif
│ ├── glyphicons-halflings.png
│ ├── navigation-wrapper-2.gif
│ └── glyphicons-halflings-white.png
├── resources
│ ├── img
│ │ ├── box.gif
│ │ ├── check.png
│ │ ├── expand.png
│ │ ├── header.gif
│ │ ├── help.gif
│ │ ├── icons.png
│ │ ├── model.png
│ │ ├── search.png
│ │ ├── collapse.png
│ │ ├── edit-big.png
│ │ ├── help-big.png
│ │ ├── ajax-loader.gif
│ │ ├── indicator.gif
│ │ ├── mgi_diagram.jpg
│ │ ├── navigation.gif
│ │ ├── search-big.png
│ │ ├── debug-loader.gif
│ │ ├── loader-circle.gif
│ │ ├── Orange_Number_1.png
│ │ ├── Orange_Number_2.png
│ │ ├── Orange_Number_3.png
│ │ ├── content-wrapper.gif
│ │ ├── footer-wrapper.gif
│ │ ├── gradient-light.gif
│ │ ├── header-wrapper-2.gif
│ │ ├── navigation-arrow.gif
│ │ ├── subnav-wrapper-2.gif
│ │ ├── subnav-wrapper.gif
│ │ ├── navigation-arrow-2.gif
│ │ ├── separator-vertical.gif
│ │ ├── content-two-columns.gif
│ │ ├── glyphicons-halflings.png
│ │ ├── navigation-wrapper-2.gif
│ │ └── glyphicons-halflings-white.png
│ ├── css
│ │ └── lib
│ │ │ └── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_888888_256x240.png
│ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png
│ ├── lib
│ │ └── jquery-ui
│ │ │ └── themes
│ │ │ └── smoothness
│ │ │ └── images
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_888888_256x240.png
│ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png
│ └── xsd
│ │ └── new_base_template.xsd
├── libs
│ ├── fancytree
│ │ ├── skin-bootstrap
│ │ │ ├── vline.gif
│ │ │ └── vline-rtl.gif
│ │ └── skin-bootstrap-n
│ │ │ ├── vline.gif
│ │ │ └── vline-rtl.gif
│ ├── font-awesome
│ │ └── 4.4.0
│ │ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ ├── bootstrap
│ │ └── 3.3.5
│ │ │ └── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ └── jquery-ui
│ │ └── smoothness
│ │ └── 1.11.4
│ │ └── images
│ │ ├── ui-icons_222222_256x240.png
│ │ ├── ui-icons_2e83ff_256x240.png
│ │ ├── ui-icons_454545_256x240.png
│ │ ├── ui-icons_888888_256x240.png
│ │ ├── ui-icons_cd0a0a_256x240.png
│ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png
└── inc
│ └── controllers
│ └── js
│ └── nmrr
│ ├── oai_pmh_explore.js
│ └── nmrr_curate.js
├── scripts
├── tests
│ ├── launch_complexity.sh
│ ├── launch_quality.sh
│ └── launch_tests_coverage.sh
└── deployment
│ └── resources
│ ├── bddMGI.js
│ └── bddAdmin.js
├── mgi
├── tests
│ └── data
│ │ ├── accent.xml
│ │ ├── accent_attr.xml
│ │ ├── number_attr.xml
│ │ ├── number.xml
│ │ ├── a.xsd
│ │ └── list.xml
└── __init__.py
├── conf
└── mongodb.conf
└── docs
└── Required Software.md
/api/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/curate/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/api/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/compose/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/api/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/testing/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/compose/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/explore/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exporter/builtin/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/builtin/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/builtin/views.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/curator/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/examples/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/registry/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/registry/tests.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/admin/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/explore/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/server/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/user_dashboard/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/BLOBHoster/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDhash/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/diffusion/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/user_dashboard/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XMLValidation/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDRefinements/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDflattener/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDhash/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/admin_mdcs/templatetags/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exporter/diffusion/pop/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/APIschemaLocator/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/utils/XSDflattenerMDCS/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/empty.xsd:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/curator/resources/css/BLOBHoster.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/registration/password_reset_email.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/table/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/xml/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exporter/curator/__init__.py:
--------------------------------------------------------------------------------
1 | __author__ = 'pnr1'
2 |
--------------------------------------------------------------------------------
/exporter/diffusion/graph/TO_INSTALL:
--------------------------------------------------------------------------------
1 | matplotlib (1.5.0)
--------------------------------------------------------------------------------
/exporter/curator/json/__init__.py:
--------------------------------------------------------------------------------
1 | __author__ = 'pnr1'
2 |
--------------------------------------------------------------------------------
/exporter/diffusion/__init__.py:
--------------------------------------------------------------------------------
1 | __author__ = 'pnr1'
2 |
--------------------------------------------------------------------------------
/exporter/diffusion/csv/__init__.py:
--------------------------------------------------------------------------------
1 | __author__ = 'pnr1'
2 |
--------------------------------------------------------------------------------
/static/css/nmrr/login.css:
--------------------------------------------------------------------------------
1 | table td{
2 | border:none;
3 | }
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/choice/any/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/group/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/import/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/include/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exporter/diffusion/graph/__init__.py:
--------------------------------------------------------------------------------
1 | __author__ = 'pnr1'
2 |
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/basic_nok.xml:
--------------------------------------------------------------------------------
1 | test
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/basic_ok.xml:
--------------------------------------------------------------------------------
1 | test
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/choice/any/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/choice/multiple/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/all/basic.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/group/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/group/basic.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/group/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/multiple/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/simple_key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/attribute/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/complex_type/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/multiple/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/notation/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/redefine/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/simple_type/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_type/union/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/choice/any/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/unit/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | """
--------------------------------------------------------------------------------
/oai_pmh/__init__.py:
--------------------------------------------------------------------------------
1 | default_app_config = 'oai_pmh.apps.OAIPMHConfig'
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/import_external_nok.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/choice/multiple/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/complex_key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/complex_key/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/complex_keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/complex_unique/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/multiple/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/simple_key/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/simple_keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/simple_unique/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/multiple/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/attribute_group/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/occurs/item0.xml:
--------------------------------------------------------------------------------
1 | str0
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/occurs/item1.xml:
--------------------------------------------------------------------------------
1 | str1
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/occurs/item2.xml:
--------------------------------------------------------------------------------
1 | str2
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/occurs/item3.xml:
--------------------------------------------------------------------------------
1 | str3
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/occurs/item4.xml:
--------------------------------------------------------------------------------
1 | str4
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/occurs/item5.xml:
--------------------------------------------------------------------------------
1 | str5
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/choice/any/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/choice/multiple/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/multiple/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/unit/main/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | """
--------------------------------------------------------------------------------
/explore/__init__.py:
--------------------------------------------------------------------------------
1 | default_app_config = 'explore.apps.ExploreMdcsConfig'
--------------------------------------------------------------------------------
/static/css/nmrr/dialog.css:
--------------------------------------------------------------------------------
1 | div.ui-dialog {
2 | font-size: 0.9em;
3 | }
--------------------------------------------------------------------------------
/static/css/nmrr/form_validation.css:
--------------------------------------------------------------------------------
1 | .error_nmrr{
2 | display: none;
3 | }
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/any_attribute/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/any_attribute/basic.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/any_attribute/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/attribute_group/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/attribute_group/basic.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/attribute_group/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/complex_keyref/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/complex_unique/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/simple_keyref/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/simple_unique/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/complex_key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/multiple/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/simple_key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/simple_keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/simple_unique/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/choice/multiple/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_type/group/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/complex_key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/multiple/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/simple_key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/simple_keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/simple_unique/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/simple_type/union/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/unit/abstract/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | """
--------------------------------------------------------------------------------
/admin_mdcs/__init__.py:
--------------------------------------------------------------------------------
1 | default_app_config = 'admin_mdcs.apps.AdminMdcsConfig'
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/complex_key/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/complex_keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/complex_keyref/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/complex_unique/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/complex_unique/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/simple_key/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/simple_keyref/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/simple_unique/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/3.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/xml_data/complex_type/empty.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_type/any_attribute/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/complex_key/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/complex_keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/complex_keyref/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/complex_unique/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/complex_unique/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/simple_key/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/simple_keyref/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/simple_unique/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/complex_key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/multiple/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/simple_key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/simple_type/basic.xml:
--------------------------------------------------------------------------------
1 | child0
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/restriction/multiple/basic.xml:
--------------------------------------------------------------------------------
1 | child1
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/element/basic.xml:
--------------------------------------------------------------------------------
1 | child1
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/element/multiple.xml:
--------------------------------------------------------------------------------
1 | child1
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_type/list/basic.xml:
--------------------------------------------------------------------------------
1 | 0 1 2 3
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_type/attribute_group/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/complex_key/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/complex_keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/complex_unique/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/multiple/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/simple_key/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/simple_keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/simple_unique/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/default/inputs/checkbox.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/attribute/basic.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/any_attribute/basic.xml:
--------------------------------------------------------------------------------
1 | entry0
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/restriction/enumeration/basic.xml:
--------------------------------------------------------------------------------
1 | child1
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/restriction/simple_type/basic.xml:
--------------------------------------------------------------------------------
1 | child0
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/7.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_type/restriction/basic.xml:
--------------------------------------------------------------------------------
1 | child_1
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/xml_data/element/simple.xml:
--------------------------------------------------------------------------------
1 | string
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/complex_keyref/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/complex_unique/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/simple_keyref/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/simple_unique/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/__init__.py:
--------------------------------------------------------------------------------
1 | """ List renderer test suites
2 | """
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/include_nok.xml:
--------------------------------------------------------------------------------
1 |
2 | test
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_type/list/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/buttons/add_shown.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/xml_data/attribute/instance.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/xml_data/simple_type/empty.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/import_nok.xml:
--------------------------------------------------------------------------------
1 |
2 | test
3 |
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/table/wrap.html:
--------------------------------------------------------------------------------
1 |
{{ title }}
2 | {{ content | safe }}
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/any_attribute/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/attribute/basic.xml:
--------------------------------------------------------------------------------
1 | entry0
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/3_1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/11.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/13.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/15.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/9.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/13.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/15.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/7.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/9.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_content/extension/basic.xml:
--------------------------------------------------------------------------------
1 | entry0
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_type/list/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/buttons/remove_shown.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/simple_type/list/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/builtin/urls.py:
--------------------------------------------------------------------------------
1 | from django.conf.urls import patterns
2 |
3 | urlpatterns = patterns('')
4 |
--------------------------------------------------------------------------------
/scripts/tests/launch_complexity.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | radon cc --total-average **/*.py --xml > radon.xml
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_content/restriction/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/attribute/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/group/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/simple_content/basic.xml:
--------------------------------------------------------------------------------
1 | 0
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/simple_type/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/attribute_group/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/namespace/no_default_prefix/test.xml:
--------------------------------------------------------------------------------
1 | a23
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/namespace/ref/test.xml:
--------------------------------------------------------------------------------
1 | a23
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/7_1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/11.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_content/restriction/basic.xml:
--------------------------------------------------------------------------------
1 | child0
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/buttons/add_hidden.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/manage_occurs/attr_use_undefined.xsd:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/xml_data/simple_type/filled.xml:
--------------------------------------------------------------------------------
1 | child0
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/schema/test_element.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/schema/test_extension.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/schema/test_sequence.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
--------------------------------------------------------------------------------
/static/img/box.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/box.gif
--------------------------------------------------------------------------------
/templates/explore/query_builder/input.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/include_ok.xml:
--------------------------------------------------------------------------------
1 |
2 | test
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/choice/element/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/choice/sequence/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_content/restriction/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/any_attribute/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/simple_type/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/namespace/no_target_namespace/test.xml:
--------------------------------------------------------------------------------
1 | a23
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/1_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/choice/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/element/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/sequence/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/buttons/remove_hidden.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_content/restriction/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_type/group/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/simple_type/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/extension/any_attribute/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/extension/attribute_group/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/simple_type/list/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/schema/test_complex_content.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/schema/test_complex_type.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/schema/test_restriction.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/schema/test_simple_content.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/schema/test_simple_type.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
--------------------------------------------------------------------------------
/static/img/expand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/expand.png
--------------------------------------------------------------------------------
/static/img/header.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/header.gif
--------------------------------------------------------------------------------
/static/img/help.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/help.gif
--------------------------------------------------------------------------------
/static/img/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/icons.png
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/import_ok.xml:
--------------------------------------------------------------------------------
1 |
2 | test
3 |
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/default/test/sample_no_data.html:
--------------------------------------------------------------------------------
1 | No data to display
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/attribute_group/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/choice/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/complex_content/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/any_attribute/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/attribute_group/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/module/registered_module.xml:
--------------------------------------------------------------------------------
1 |
2 | 3
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/5_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/8.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/14.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/16.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/14.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/16.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/select/id_none_options_empty.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/ul/elem_empty_ch_true.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/ul/elem_none_ch_true.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_type/attribute/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/simple_type/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/static/img/collapse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/collapse.png
--------------------------------------------------------------------------------
/static/img/edit-big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/edit-big.png
--------------------------------------------------------------------------------
/static/img/help-big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/help-big.png
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/namespace/target_namespace/test.xml:
--------------------------------------------------------------------------------
1 | a23
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/10.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/10.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/target_namespace/ref/basic.xml:
--------------------------------------------------------------------------------
1 | a23
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/manage_occurs/attr_use_optional.xsd:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/manage_occurs/attr_use_required.xsd:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/li/default.html:
--------------------------------------------------------------------------------
1 |
2 | lorem ipsum
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/template/sample_no_data.html:
--------------------------------------------------------------------------------
1 | No data to display
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_content/restriction/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_type/any_attribute/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_type/attribute_group/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_type/complex_content/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/extension/any_attribute/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/mgi/tests/data/accent.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | été
4 |
--------------------------------------------------------------------------------
/static/img/Ps-x-button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/Ps-x-button.png
--------------------------------------------------------------------------------
/static/img/ajax-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/ajax-loader.gif
--------------------------------------------------------------------------------
/static/img/mgi_diagram.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/mgi_diagram.jpg
--------------------------------------------------------------------------------
/static/img/navigation.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/navigation.gif
--------------------------------------------------------------------------------
/static/img/search-big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/search-big.png
--------------------------------------------------------------------------------
/testing/dump/template.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/testing/dump/template.bson
--------------------------------------------------------------------------------
/testing/dump/xmldata.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/testing/dump/xmldata.bson
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/attribute_group/basic.xml:
--------------------------------------------------------------------------------
1 | entry0
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/group/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/import/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/include/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/2_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/notation/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/redefine/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/target_namespace/element/basic.xml:
--------------------------------------------------------------------------------
1 | a23
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/manage_occurs/attr_use_prohibited.xsd:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/select/id_str_options_empty.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/ul/elem_str_ch_true.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/extension/attribute_group/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDhash/README.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/utils/XSDhash/README.txt
--------------------------------------------------------------------------------
/utils/XSDhash/tests.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/utils/XSDhash/tests.xlsx
--------------------------------------------------------------------------------
/mgi/tests/data/accent_attr.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | test
4 |
--------------------------------------------------------------------------------
/mgi/tests/data/number_attr.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | test
4 |
--------------------------------------------------------------------------------
/modules/registry/resources/html/name_pid.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/static/img/debug-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/debug-loader.gif
--------------------------------------------------------------------------------
/static/img/loader-circle.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/loader-circle.gif
--------------------------------------------------------------------------------
/static/resources/img/box.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/box.gif
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/default/buttons/add.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/attribute/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/complex_type/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/12.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/7.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/12.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/simple_type/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/form.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/input/val_str_pl_empty_tt_str.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/group/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/import/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/mgi/tests/data/number.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 42
4 |
--------------------------------------------------------------------------------
/modules/curator/resources/html/BLOBHoster.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_set.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_set.bson
--------------------------------------------------------------------------------
/static/img/Orange_Number_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/Orange_Number_1.png
--------------------------------------------------------------------------------
/static/img/Orange_Number_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/Orange_Number_2.png
--------------------------------------------------------------------------------
/static/img/Orange_Number_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/Orange_Number_3.png
--------------------------------------------------------------------------------
/static/img/content-wrapper.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/content-wrapper.gif
--------------------------------------------------------------------------------
/static/img/footer-wrapper.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/footer-wrapper.gif
--------------------------------------------------------------------------------
/static/img/gradient-light.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/gradient-light.gif
--------------------------------------------------------------------------------
/static/img/header-wrapper-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/header-wrapper-2.gif
--------------------------------------------------------------------------------
/static/img/navigation-arrow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/navigation-arrow.gif
--------------------------------------------------------------------------------
/static/img/subnav-wrapper-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/subnav-wrapper-2.gif
--------------------------------------------------------------------------------
/static/img/subnav-wrapper.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/subnav-wrapper.gif
--------------------------------------------------------------------------------
/static/resources/img/check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/check.png
--------------------------------------------------------------------------------
/static/resources/img/expand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/expand.png
--------------------------------------------------------------------------------
/static/resources/img/header.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/header.gif
--------------------------------------------------------------------------------
/static/resources/img/help.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/help.gif
--------------------------------------------------------------------------------
/static/resources/img/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/icons.png
--------------------------------------------------------------------------------
/static/resources/img/model.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/model.png
--------------------------------------------------------------------------------
/static/resources/img/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/search.png
--------------------------------------------------------------------------------
/testing/dump/result_xslt.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/testing/dump/result_xslt.bson
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/default/buttons/delete.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/default/test/sample_with_data.html:
--------------------------------------------------------------------------------
1 |
2 | {{ content | safe }}
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/list/li.html:
--------------------------------------------------------------------------------
1 |
2 | {{ content | safe }}
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/attribute_group/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/4_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/6_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/li/use_str_text_none.html:
--------------------------------------------------------------------------------
1 |
2 | lorem ipsum
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/template/sample_with_data.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/ul/elem_empty_ch_false.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/ul/elem_none_ch_false.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/key/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/attribute/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/include/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/notation/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/redefine/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/simple_type/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/conf/mongodb.conf:
--------------------------------------------------------------------------------
1 | net:
2 | bindIp: 127.0.0.1
3 | security:
4 | authorization: enabled
5 | storage:
6 | dbPath: ../data/db
7 |
--------------------------------------------------------------------------------
/modules/registry/resources/html/relevant_date.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_xslt.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_xslt.bson
--------------------------------------------------------------------------------
/static/img/navigation-arrow-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/navigation-arrow-2.gif
--------------------------------------------------------------------------------
/static/img/separator-vertical.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/separator-vertical.gif
--------------------------------------------------------------------------------
/static/resources/img/collapse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/collapse.png
--------------------------------------------------------------------------------
/static/resources/img/edit-big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/edit-big.png
--------------------------------------------------------------------------------
/static/resources/img/help-big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/help-big.png
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/table/tr.html:
--------------------------------------------------------------------------------
1 |
2 | | {{ name | safe }} |
3 | {{ content | safe }} |
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/8.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/input/val_empty_pl_empty_tt_empty.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/input/val_str_pl_str_tt_empty.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/li/use_none_text_str.html:
--------------------------------------------------------------------------------
1 |
2 | lorem ipsum
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/keyref/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/attribute_group/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/complex_type/basic.html:
--------------------------------------------------------------------------------
1 | UNSUPPORTED ELEMENT FOUND (No root element detected)
--------------------------------------------------------------------------------
/modules/diffusion/resources/html/ExcelUploader.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_identify.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_identify.bson
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_my_set.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_my_set.bson
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_record.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_record.bson
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_registry.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_registry.bson
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_settings.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_settings.bson
--------------------------------------------------------------------------------
/static/img/content-two-columns.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/content-two-columns.gif
--------------------------------------------------------------------------------
/static/img/glyphicons-halflings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/glyphicons-halflings.png
--------------------------------------------------------------------------------
/static/img/navigation-wrapper-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/navigation-wrapper-2.gif
--------------------------------------------------------------------------------
/static/resources/img/ajax-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/ajax-loader.gif
--------------------------------------------------------------------------------
/static/resources/img/indicator.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/indicator.gif
--------------------------------------------------------------------------------
/static/resources/img/mgi_diagram.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/mgi_diagram.jpg
--------------------------------------------------------------------------------
/static/resources/img/navigation.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/navigation.gif
--------------------------------------------------------------------------------
/static/resources/img/search-big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/search-big.png
--------------------------------------------------------------------------------
/templates/explore/query_builder/yes_no.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/testing/dump/template_version.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/testing/dump/template_version.bson
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/default/ul.html:
--------------------------------------------------------------------------------
1 |
2 | {{ content | safe }}
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/all/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/8_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/8.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/occurs/compliant.xml:
--------------------------------------------------------------------------------
1 |
2 | str0
3 | str1
4 | str2
5 |
6 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/input/val_str_pl_empty_tt_empty.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/li/use_str_text_str.html:
--------------------------------------------------------------------------------
1 |
2 | lorem ipsum
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/ul/elem_str_ch_false.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_my_set_bad.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_my_set_bad.bson
--------------------------------------------------------------------------------
/scripts/deployment/resources/bddMGI.js:
--------------------------------------------------------------------------------
1 | use mgi
2 | db.createUser({
3 | user: "mgi_user",
4 | pwd: "mgi_password",
5 | roles: ["readWrite"]})
6 | exit
--------------------------------------------------------------------------------
/static/css/nmrr/admin.css:
--------------------------------------------------------------------------------
1 | .toppadded {
2 | padding-top: 0.5em;
3 | }
4 |
5 | .tabbed {
6 | height: 2em;
7 | padding-top: 0.5em;
8 | }
--------------------------------------------------------------------------------
/static/resources/img/debug-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/debug-loader.gif
--------------------------------------------------------------------------------
/static/resources/img/loader-circle.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/loader-circle.gif
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/default/warning.html:
--------------------------------------------------------------------------------
1 |
2 | {{ message }}
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/sequence/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/complex_type/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/manage_occurs/max_occurs_parsable.xsd:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/manage_occurs/min_occurs_parsable.xsd:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/xml_data/element/complex.xml:
--------------------------------------------------------------------------------
1 |
2 | str0
3 | str1
4 | str2
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/collapse.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/input/val_empty_pl_str_tt_str.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/input/val_str_pl_str_tt_str.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/curator/resources/html/RemoteBLOBHosterDisplay.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_settings_bad.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_settings_bad.bson
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_templ_mf_xslt.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_templ_mf_xslt.bson
--------------------------------------------------------------------------------
/static/img/glyphicons-halflings-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/img/glyphicons-halflings-white.png
--------------------------------------------------------------------------------
/static/resources/img/Orange_Number_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/Orange_Number_1.png
--------------------------------------------------------------------------------
/static/resources/img/Orange_Number_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/Orange_Number_2.png
--------------------------------------------------------------------------------
/static/resources/img/Orange_Number_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/Orange_Number_3.png
--------------------------------------------------------------------------------
/static/resources/img/content-wrapper.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/content-wrapper.gif
--------------------------------------------------------------------------------
/static/resources/img/footer-wrapper.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/footer-wrapper.gif
--------------------------------------------------------------------------------
/static/resources/img/gradient-light.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/gradient-light.gif
--------------------------------------------------------------------------------
/static/resources/img/header-wrapper-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/header-wrapper-2.gif
--------------------------------------------------------------------------------
/static/resources/img/navigation-arrow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/navigation-arrow.gif
--------------------------------------------------------------------------------
/static/resources/img/subnav-wrapper-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/subnav-wrapper-2.gif
--------------------------------------------------------------------------------
/static/resources/img/subnav-wrapper.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/subnav-wrapper.gif
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/default/buttons/collapse.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/xml/element.html:
--------------------------------------------------------------------------------
1 | <{{ name }}{% if attributes %} {{ attributes | safe }}{% endif %}>{{ content | safe }}{{ name }}>
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/manage_occurs/max_occurs_unbounded.xsd:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/xml_data/complex_type/filled.xml:
--------------------------------------------------------------------------------
1 |
2 | str0
3 | str1
4 | str2
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/input/val_empty_pl_empty_tt_str.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/builtin/resources/css/checkboxes.css:
--------------------------------------------------------------------------------
1 | .col {
2 | float: left;
3 | padding: 0 1em 0 1em;
4 | }
5 |
6 | .col span {
7 | display: block;
8 | }
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_metadata_format.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_metadata_format.bson
--------------------------------------------------------------------------------
/static/resources/img/navigation-arrow-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/navigation-arrow-2.gif
--------------------------------------------------------------------------------
/static/resources/img/separator-vertical.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/separator-vertical.gif
--------------------------------------------------------------------------------
/templates/explore/query_builder/string_select.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_content/restriction/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | default
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/all/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/input/val_empty_pl_str_tt_empty.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/utils/buttons/add_shown.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_my_metadata_format.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_my_metadata_format.bson
--------------------------------------------------------------------------------
/static/libs/fancytree/skin-bootstrap/vline.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/fancytree/skin-bootstrap/vline.gif
--------------------------------------------------------------------------------
/static/resources/img/content-two-columns.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/content-two-columns.gif
--------------------------------------------------------------------------------
/static/resources/img/glyphicons-halflings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/glyphicons-halflings.png
--------------------------------------------------------------------------------
/static/resources/img/navigation-wrapper-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/navigation-wrapper-2.gif
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/element/unbounded.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/sequence/unbounded.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence_absent/element/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence_absent/sequence/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/diffusion/forms.py:
--------------------------------------------------------------------------------
1 | from django import forms
2 |
3 |
4 | class ExcelUploaderForm(forms.Form):
5 | file = forms.FileField(label='Select Excel File')
6 |
--------------------------------------------------------------------------------
/static/libs/fancytree/skin-bootstrap-n/vline.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/fancytree/skin-bootstrap-n/vline.gif
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/table/table.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{ content | safe }}
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/choice/sequence/unbounded.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/choice/unbounded.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/element/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence_absent/element/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence_absent/sequence/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/sequence_absent/element/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/utils/buttons/remove_shown.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/oai_pmh/tests/dump/oai_my_metadata_format_bad.bson:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/oai_pmh/tests/dump/oai_my_metadata_format_bad.bson
--------------------------------------------------------------------------------
/static/libs/fancytree/skin-bootstrap/vline-rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/fancytree/skin-bootstrap/vline-rtl.gif
--------------------------------------------------------------------------------
/static/resources/img/glyphicons-halflings-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/img/glyphicons-halflings-white.png
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/no_root_ok.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/sequence_absent/element/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/sequence_absent/sequence/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/sequence_absent/sequence/unbounded.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/builtin/resources/js/autocomplete.js:
--------------------------------------------------------------------------------
1 | configureAutocomplete = function(moduleOptions) {
2 | $('body').find('.mod_autocomplete input').autocomplete(moduleOptions);
3 | }
--------------------------------------------------------------------------------
/static/libs/fancytree/skin-bootstrap-n/vline-rtl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/fancytree/skin-bootstrap-n/vline-rtl.gif
--------------------------------------------------------------------------------
/static/libs/font-awesome/4.4.0/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/font-awesome/4.4.0/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/static/resources/css/lib/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/animated-overlay.gif
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/no_root_nok.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/default/form-error.html:
--------------------------------------------------------------------------------
1 |
2 | Unexpected error while generating the form: ({{ message | safe }})
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/choice/element/unbounded.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/multiple/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/simple_type/unbounded.xml:
--------------------------------------------------------------------------------
1 |
2 | child1
3 | child1
4 | child0
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/choice/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/attribute/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/form_error.html:
--------------------------------------------------------------------------------
1 |
2 | Unexpected error while generating the form: (Sample error message)
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/sequence/element/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/utils/buttons/add_hidden.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exporter/curator/urls.py:
--------------------------------------------------------------------------------
1 | from django.conf.urls import patterns, url, include
2 |
3 | urlpatterns = patterns('',
4 | url('', include('exporter.curator.json.urls')),
5 | )
6 |
7 |
--------------------------------------------------------------------------------
/modules/builtin/resources/html/textarea.html:
--------------------------------------------------------------------------------
1 |
2 | {% if label %}
3 |
4 | {% endif %}
5 |
6 |
--------------------------------------------------------------------------------
/templates/explore/query_builder/enum.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_content/extension/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/restriction/multiple/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/group/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/import/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/include/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/multiple/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/notation/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/redefine/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/element/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/api/tests/data/1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 1
4 | 1.0
5 | test1
6 | a
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/list/ul.html:
--------------------------------------------------------------------------------
1 |
2 | {{ content | safe }}
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/complex_content/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/restriction/enumeration/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/restriction/simple_type/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/attribute/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/complex_type/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/import/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/simple_type/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_content/restriction/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/xml_data/element/simple.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/restriction/multiple/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/group/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/import/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/sequence/element/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/api/tests/data/2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 2
4 | 2.0
5 | test2
6 | b
7 |
8 |
--------------------------------------------------------------------------------
/api/tests/data/3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 3
4 | 3.0
5 | test3
6 | c
7 |
8 |
--------------------------------------------------------------------------------
/explore/tests/data/1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 1
4 | 1.0
5 | test1
6 | a
7 |
--------------------------------------------------------------------------------
/static/libs/font-awesome/4.4.0/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/font-awesome/4.4.0/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/static/libs/font-awesome/4.4.0/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/font-awesome/4.4.0/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/static/libs/font-awesome/4.4.0/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/font-awesome/4.4.0/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/templates/explore/query_builder/and_or_not.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/unique/basic.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/attribute_group/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/include/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/tests.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/utils/XSDParser/tests/data/parser/schema/namespace/tests.xlsx
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/sequence/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/element_type/common_type.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/restriction/enumeration/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/restriction/simple_type/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/attribute/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/include/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/multiple/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/notation/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/redefine/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/simple_type/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/utils/buttons/remove_hidden.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/admin_mdcs/templatetags/dict_key_extras.py:
--------------------------------------------------------------------------------
1 | from django import template
2 |
3 | register = template.Library()
4 |
5 | @register.filter(name='get')
6 | def get(d, k):
7 | return d.get(k, None)
--------------------------------------------------------------------------------
/explore/tests/data/2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 2
4 | 2.0
5 | test2
6 | b
7 |
8 |
--------------------------------------------------------------------------------
/explore/tests/data/3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 3
4 | 3.0
5 | test3
6 | c
7 |
8 |
--------------------------------------------------------------------------------
/explore/tests/data/encoding.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 1
4 | 1.0
5 | été123
6 | a
7 |
--------------------------------------------------------------------------------
/scripts/deployment/resources/bddAdmin.js:
--------------------------------------------------------------------------------
1 | use admin
2 | db.createUser({
3 | user: "admin",
4 | pwd: "admin",
5 | roles: [ { role: "userAdminAnyDatabase", db: "admin"},"backup","restore"]})
6 | exit
--------------------------------------------------------------------------------
/static/libs/font-awesome/4.4.0/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/font-awesome/4.4.0/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/unique/basic.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/notation/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/multiple/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 | entry3
6 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/unique/basic.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/attribute_group/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/complex_type/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/sequence/sequence/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/simple_content/restriction/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/mgi/tests/data/a.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/modules/builtin/resources/css/textarea.css:
--------------------------------------------------------------------------------
1 | .mod_textarea {
2 | margin-bottom: 0.5em;
3 | }
4 |
5 | .mod_textarea textarea {
6 | width: 100%;
7 | height: 10em;
8 | resize: vertical;
9 | }
--------------------------------------------------------------------------------
/modules/curator/resources/html/BLOBHosterDisplay.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Uploaded File: {{filename}}
4 |
5 |
6 | Handle: {{handle}}
7 |
8 |
--------------------------------------------------------------------------------
/static/libs/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/static/libs/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/simple_content/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/attribute/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/occurs/noncompliant.xml:
--------------------------------------------------------------------------------
1 |
2 | str0
3 | str1
4 | str2
5 | str3
6 | str4
7 | str5
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element_absent/unique/basic.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/libs/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/static/libs/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/bootstrap/3.3.5/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/not_well_formed.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
2 |
3 | child0
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/sequence/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 | entry3
6 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/restriction/multiple/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/sequence/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_type/simple_content/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/schema/namespace/tests.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/utils/XSDParser/tests/data/renderer/list/schema/namespace/tests.xlsx
--------------------------------------------------------------------------------
/modules/builtin/resources/html/autocomplete.html:
--------------------------------------------------------------------------------
1 |
2 | {% if label %}
3 |
4 | {% endif %}
5 |
6 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/restriction/enumeration/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/restriction/simple_type/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_type/attribute/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/extension/attribute/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/sequence/sequence/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/curator/forms.py:
--------------------------------------------------------------------------------
1 | from django import forms
2 |
3 |
4 | class BLOBHosterForm(forms.Form):
5 | file = forms.FileField(label='')
6 |
7 |
8 | class URLForm(forms.Form):
9 | url = forms.URLField(label='')
--------------------------------------------------------------------------------
/static/resources/css/lib/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/css/lib/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/Tests.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/utils/XSDParser/tests/data/parser/extension/explicit-implicit/Tests.xlsx
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/group/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 | entry3
6 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_content/restriction/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/restriction/enumeration/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/restriction/multiple/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/restriction/simple_type/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/builtin/resources/html/input_button.html:
--------------------------------------------------------------------------------
1 |
2 | {% if label %}
3 |
4 | {% endif %}
5 |
6 |
7 |
--------------------------------------------------------------------------------
/modules/examples/resources/css/list_to_graph.css:
--------------------------------------------------------------------------------
1 | .chart div {
2 | font: 10px sans-serif;
3 | background-color: steelblue;
4 | text-align: right;
5 | padding: 3px;
6 | margin: 1px;
7 | color: white;
8 | }
9 |
--------------------------------------------------------------------------------
/scripts/tests/launch_quality.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | pylint --load-plugins pylint_django -f parseable admin_mdcs/ mgi/ api/ oai_pmh/ user_dashboard/ compose/ explore/ utils/ curate/ modules/ exporter/ testing/ | tee pylint.out
--------------------------------------------------------------------------------
/static/libs/jquery-ui/smoothness/1.11.4/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/jquery-ui/smoothness/1.11.4/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/static/libs/jquery-ui/smoothness/1.11.4/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/jquery-ui/smoothness/1.11.4/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/static/libs/jquery-ui/smoothness/1.11.4/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/jquery-ui/smoothness/1.11.4/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/static/libs/jquery-ui/smoothness/1.11.4/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/jquery-ui/smoothness/1.11.4/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/static/libs/jquery-ui/smoothness/1.11.4/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/jquery-ui/smoothness/1.11.4/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/any_attribute/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/simple_content/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/multiple/basic.xml:
--------------------------------------------------------------------------------
1 |
2 | entry0
3 | entry1
4 | entry2
5 | entry3
6 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/simple_content/restriction/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDflattener/README.txt:
--------------------------------------------------------------------------------
1 | python test.py > log.txt
2 |
3 | to pass test_includes_URL:
4 | - time-unit-type.xsd and uncertainty.xsd should be in the data base
5 | - URL from time-type.xsd should match dependencies id
--------------------------------------------------------------------------------
/exporter/curator/json/urls.py:
--------------------------------------------------------------------------------
1 | from django.conf.urls import patterns, url
2 |
3 | urlpatterns = patterns('',
4 | url('', 'exporter.curator.json.models.JSONExporter', {'name':'JSON', 'available_for_all':True}),
5 | )
6 |
7 |
--------------------------------------------------------------------------------
/exporter/diffusion/csv/urls.py:
--------------------------------------------------------------------------------
1 | from django.conf.urls import patterns, url
2 |
3 | urlpatterns = patterns('',
4 | url('', 'exporter.diffusion.csv.models.CSVExporter', {'name':'CSV', 'available_for_all':False}),
5 | )
6 |
7 |
--------------------------------------------------------------------------------
/exporter/diffusion/pop/urls.py:
--------------------------------------------------------------------------------
1 | from django.conf.urls import patterns, url
2 |
3 | urlpatterns = patterns('',
4 | url('', 'exporter.diffusion.pop.models.POPExporter', {'name':'POP', 'available_for_all':False}),
5 | )
6 |
7 |
--------------------------------------------------------------------------------
/mgi/__init__.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import
2 |
3 | # This will make sure the app is always imported when
4 | # Django starts so that shared_task will use this app.
5 | from .celery import app as celery_app # noqa
--------------------------------------------------------------------------------
/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/list/attributes.html:
--------------------------------------------------------------------------------
1 | attributes:
2 |
3 | {% for attribute_html in attributes_html %}
4 | {{attribute_html|safe}}
5 | {% endfor %}
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/complex_type/simple_content/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/oai_pmh/xml/error.xml:
--------------------------------------------------------------------------------
1 | {% extends "oai_pmh/xml/base.xml" %}
2 |
3 | {% block content %}
4 | {% for error in errors %}
5 | {{ error.message }}
6 | {% endfor %}
7 | {% endblock %}
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_content/extension/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exporter/diffusion/graph/urls.py:
--------------------------------------------------------------------------------
1 | from django.conf.urls import patterns, url
2 |
3 | urlpatterns = patterns('',
4 | url('', 'exporter.diffusion.graph.models.GRAPHExporter', {'name':'GRAPH', 'available_for_all':False}),
5 | )
6 |
7 |
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/1.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/3.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_type/restriction/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/simple_content/extension/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/1_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/3_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/5_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_content/extension/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/libs/jquery-ui/smoothness/1.11.4/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/attribute/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/7_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/simple_content/extension/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/simple_type/restriction/basic.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/extension/attribute/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/explore/tests/data/1-attr.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 1
4 | 1.0
5 | test1
6 | a
7 |
8 |
--------------------------------------------------------------------------------
/explore/tests/data/2-attr.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 2
4 | 2.0
5 | test2
6 | b
7 |
8 |
--------------------------------------------------------------------------------
/explore/tests/data/3-attr.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 3
4 | 3.0
5 | test3
6 | c
7 |
8 |
--------------------------------------------------------------------------------
/static/inc/controllers/js/nmrr/oai_pmh_explore.js:
--------------------------------------------------------------------------------
1 | getRegistries = function(numInstance){
2 | var values = [];
3 | $('#id_my_registries input:checked').each(function() {
4 | values.push(this.value);
5 | });
6 |
7 | return values;
8 | }
--------------------------------------------------------------------------------
/explore/tests/data/encoding-attr.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 2
4 | 2.0
5 | été123
6 | b
7 |
--------------------------------------------------------------------------------
/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/usnistgov/MaterialsResourceRegistry/HEAD/static/resources/lib/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/modules/no_module.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/mgi/tests/data/list.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 1
4 | 2
5 | 3
6 | é
7 |
8 | test
9 | 1
10 | 1é
11 |
12 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/choice/any/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/2.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/element/4.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_type/restriction/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/select/id_none_options_list.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exporter/urls.py:
--------------------------------------------------------------------------------
1 | from django.conf.urls import patterns, url, include
2 |
3 | urlpatterns = patterns('',
4 | url('', include('exporter.builtin.urls')),
5 | url('', include('exporter.curator.urls')),
6 | url('', include('exporter.diffusion.urls')),
7 | )
8 |
9 |
--------------------------------------------------------------------------------
/static/resources/xsd/new_base_template.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/8_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/any/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/simple_type/restriction/basic.reload.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/Required Software.md:
--------------------------------------------------------------------------------
1 | # Required Software
2 |
3 | This document provides a list of all software that are required to run the MRR.
4 |
5 | Python 2.7.x
6 |
7 | MongoDB 3.x
8 |
9 | SQLite3 (prefer PostgreSQL 9.x in production)
10 |
11 | Redis server 3.x
12 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/2-reload1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | a
5 | b
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/1_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/3_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/5_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/6_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/6_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence_absent/any/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/default/select/id_str_options_list.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/oai_pmh/admin/form_my_metadata_format_edit.html:
--------------------------------------------------------------------------------
1 |
2 | {{metadataformat_form.id}}
3 |
4 | | {{metadataformat_form.metadataPrefix.label}} |
5 | {{metadataformat_form.metadataPrefix}} |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/invalid.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/7_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/8_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/xml_data/attribute/schema.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/unit/main/test_main_render_element.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
2 |
3 |
4 | class RenderElementTestSuite(TestCase):
5 | def setUp(self):
6 | pass
7 |
8 | def test_element_not_db_element(self):
9 | pass
--------------------------------------------------------------------------------
/modules/builtin/resources/html/popup.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/modules/exceptions.py:
--------------------------------------------------------------------------------
1 | class ModuleError(Exception):
2 | """
3 | Exception raised by module system
4 | """
5 | def __init__(self, message):
6 | self.message = message
7 |
8 | def __str__(self):
9 | return repr(self.message)
10 |
--------------------------------------------------------------------------------
/static/inc/controllers/js/nmrr/nmrr_curate.js:
--------------------------------------------------------------------------------
1 | editForm = function(){
2 | console.log('editForm');
3 | if (document.referrer.indexOf('&useForm=true') != -1){
4 | window.location = document.referrer;
5 | }else{
6 | window.location = document.referrer + '&useForm=true';
7 | }
8 | }
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/xpath/ref_import/reference.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/admin_mdcs/templatetags/dictionary_extras.py:
--------------------------------------------------------------------------------
1 | from django import template
2 |
3 | register = template.Library()
4 |
5 | #Allow us to access to dictionary data, within a view, with the [] accessor
6 | @register.filter(name='access')
7 | def access(value, arg):
8 | return value[arg]
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence_absent/element/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/modules/builtin/resources/js/options.js:
--------------------------------------------------------------------------------
1 | $('body').on('change', '.mod_options select', function(event) {
2 | // Collect data
3 | var data = {
4 | 'data': $(this).val()
5 | }
6 |
7 | var module = $(this).parent().parent().parent()
8 | saveModuleData(module, data);
9 | });
--------------------------------------------------------------------------------
/templates/explore/query_builder/numeric_select.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/key/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/4-reload1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | a
5 | b
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/2_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/4_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/simple_type/list/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/unit/main/test_main_render_sequence.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
2 |
3 |
4 | class RenderSequenceTestSuite(TestCase):
5 | def setUp(self):
6 | pass
7 |
8 | def test_element_not_db_element(self):
9 | pass
10 |
--------------------------------------------------------------------------------
/exporter/diffusion/urls.py:
--------------------------------------------------------------------------------
1 | from django.conf.urls import patterns, url, include
2 |
3 | urlpatterns = patterns('',
4 | url('', include('exporter.diffusion.csv.urls')),
5 | # url('', include('exporter.diffusion.graph.urls')),
6 | url('', include('exporter.diffusion.pop.urls')),
7 | )
8 |
9 |
--------------------------------------------------------------------------------
/modules/builtin/resources/js/textarea.js:
--------------------------------------------------------------------------------
1 | $('body').on('blur', '.mod_textarea textarea', function(event) {
2 | // Collect data
3 | var data = {
4 | 'data': $(this).val()
5 | }
6 |
7 | var module = $(this).parent().parent().parent();
8 | saveModuleData(module, data);
9 | });
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/key/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/6-reload1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | a
5 | b
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/6-reload2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | a
5 | b
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/attribute_group/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/2_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/unit/main/test_main_render_restriction.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
2 |
3 |
4 | class RenderRestictionTestSuite(TestCase):
5 | def setUp(self):
6 | pass
7 |
8 | def test_element_not_db_element(self):
9 | pass
10 |
--------------------------------------------------------------------------------
/modules/builtin/resources/js/input.js:
--------------------------------------------------------------------------------
1 | $('body').on('blur', '.mod_input input[type="text"]', function(event) {
2 | // Collect data
3 | var data = {
4 | 'data': $(this).val()
5 | }
6 |
7 | var module = $(this).parent().parent().parent()
8 | saveModuleData(module, data);
9 | });
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/choice/any/unbounded.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/unique/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/1-reload1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | a
5 | b
6 | c
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/4_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/13_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/9_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/unit/main/test_main_render_extension.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
2 |
3 |
4 | class RenderExtensionTestSuite(TestCase):
5 | def setUp(self):
6 | pass
7 |
8 | def test_element_not_db_element(self):
9 | pass
10 |
11 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/unit/main/test_main_render_simple_type.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
2 |
3 |
4 | class RenderSimpleTypeTestSuite(TestCase):
5 | def setUp(self):
6 | pass
7 |
8 | def test_element_not_db_element(self):
9 | pass
10 |
11 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/unique/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/11_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/include/15_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence/any/unbounded.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/unit/main/test_main_render_attribute.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
2 |
3 |
4 | class RenderAttributeTestSuite(TestCase):
5 | def setUp(self):
6 | pass
7 |
8 | def test_element_not_db_element(self):
9 | pass
10 |
11 |
12 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/unit/main/test_main_render_complex_type.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
2 |
3 |
4 | class RenderComplexTypeTestSuite(TestCase):
5 | def setUp(self):
6 | pass
7 |
8 | def test_element_not_db_element(self):
9 | pass
10 |
11 |
--------------------------------------------------------------------------------
/modules/curator/resources/js/blobhoster.js:
--------------------------------------------------------------------------------
1 | var blobHosterPopupOptions = {
2 | title: "Upload File",
3 | }
4 |
5 | saveBlobHosterData = function() {
6 | return new FormData(openPopUp.find('.blobhoster-form')[0]);
7 | }
8 |
9 | configurePopUp('/curator/blob-hoster', blobHosterPopupOptions, saveBlobHosterData);
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/simple_type/basic.html:
--------------------------------------------------------------------------------
1 |
2 | -
3 | root
4 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/8-reload1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | a
5 | b
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/8-reload2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | a
5 | b
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence_absent/any/unbounded.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/renderer/list/unit/main/test_main_render_simple_content.py:
--------------------------------------------------------------------------------
1 | from django.test.testcases import TestCase
2 |
3 |
4 | class RenderSimpleContentTestSuite(TestCase):
5 | def setUp(self):
6 | pass
7 |
8 | def test_element_not_db_element(self):
9 | pass
10 |
11 |
--------------------------------------------------------------------------------
/exporter/builtin/urls.py:
--------------------------------------------------------------------------------
1 | from django.conf.urls import patterns, url
2 |
3 | urlpatterns = patterns('',
4 | url('', 'exporter.builtin.models.BasicExporter', {'name':'XML', 'available_for_all':True}),
5 | url('', 'exporter.builtin.models.XSLTExporter', {'name':'XSLT', 'available_for_all':False}),
6 | )
7 |
8 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element/keyref/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/3-reload1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | a
5 | b
6 | c
7 |
8 |
9 |
--------------------------------------------------------------------------------
/modules/builtin/resources/html/input.html:
--------------------------------------------------------------------------------
1 |
2 | {% if label %}
3 |
4 | {% endif %}
5 | {% if disabled %}
6 |
7 | {% else %}
8 |
9 | {% endif %}
10 |
--------------------------------------------------------------------------------
/modules/builtin/resources/js/sync_input.js:
--------------------------------------------------------------------------------
1 | async_input = function(input, callback){
2 | // Collect data
3 | var data = {
4 | 'data': $(input).val()
5 | }
6 |
7 | var module = $(input).parent().parent().parent();
8 | saveModuleData(module, data, async=false);
9 | callback(input);
10 | }
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/complex_type/attribute/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/keyref/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/4.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/5-reload1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | a
5 | b
6 | c
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/5-reload2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | a
5 | b
6 | c
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/renderer/list/element/simple_type/basic.html:
--------------------------------------------------------------------------------
1 |
2 | -
3 | root
4 |
8 |
9 |
--------------------------------------------------------------------------------
/scripts/tests/launch_tests_coverage.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | coverage run --source=mgi,api,oai_pmh,user_dashboard,compose,explore,utils/XSDhash,utils/XSDParser,admin_mdcs/ ./manage.py test mgi/ api/ oai_pmh/ user_dashboard/ compose/ explore/ utils/XSDhash/ utils/XSDParser/ admin_mdcs/ --liveserver=localhost:8082 --no-selenium
3 |
4 |
--------------------------------------------------------------------------------
/utils/XSDParser/templates/renderer/default/inputs/select.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/7.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/8.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/group/basic.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/sequence_absent/element/unbounded.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/element_type/no_type/one_child_annot.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MDCS element type testing
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/utils/xpath/name.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/utils/XMLValidation/tests/data/import-external.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/element_absent/key/unbounded.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/extension/explicit-implicit/3.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/11_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/utils/XSDParser/tests/data/parser/schema/namespace/import/13_inc.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------