├── .github └── workflows │ ├── auto-add-to-project.yml │ ├── publish_pypi.yml │ └── sync.yml ├── .gitignore ├── .gitlab-ci.yml ├── CHANGELOG.md ├── LICENSE.txt ├── Makefile ├── README.rst ├── changelog.d └── scriv.ini ├── openedxscorm ├── __about__.py ├── __init__.py ├── locale │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_419 │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── pt_PT │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── scormxblock.py ├── static │ ├── css │ │ └── scormxblock.css │ ├── html │ │ ├── popup.html │ │ ├── scormxblock.html │ │ └── studio.html │ └── js │ │ ├── src │ │ ├── scorm.js │ │ ├── scormxblock.js │ │ └── studio.js │ │ └── vendor │ │ └── renderjson.js ├── storage.py └── tests.py ├── package.json ├── screenshots ├── lms-fullscreen.png ├── studio.png └── youtube.png └── setup.py /.github/workflows/auto-add-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/.github/workflows/auto-add-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/.github/workflows/publish_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/README.rst -------------------------------------------------------------------------------- /changelog.d/scriv.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/changelog.d/scriv.ini -------------------------------------------------------------------------------- /openedxscorm/__about__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /openedxscorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/__init__.py -------------------------------------------------------------------------------- /openedxscorm/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /openedxscorm/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openedxscorm/locale/es_419/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/locale/es_419/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /openedxscorm/locale/es_419/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/locale/es_419/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openedxscorm/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /openedxscorm/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openedxscorm/locale/pt_PT/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/locale/pt_PT/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /openedxscorm/locale/pt_PT/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/locale/pt_PT/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openedxscorm/scormxblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/scormxblock.py -------------------------------------------------------------------------------- /openedxscorm/static/css/scormxblock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/static/css/scormxblock.css -------------------------------------------------------------------------------- /openedxscorm/static/html/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/static/html/popup.html -------------------------------------------------------------------------------- /openedxscorm/static/html/scormxblock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/static/html/scormxblock.html -------------------------------------------------------------------------------- /openedxscorm/static/html/studio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/static/html/studio.html -------------------------------------------------------------------------------- /openedxscorm/static/js/src/scorm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/static/js/src/scorm.js -------------------------------------------------------------------------------- /openedxscorm/static/js/src/scormxblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/static/js/src/scormxblock.js -------------------------------------------------------------------------------- /openedxscorm/static/js/src/studio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/static/js/src/studio.js -------------------------------------------------------------------------------- /openedxscorm/static/js/vendor/renderjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/static/js/vendor/renderjson.js -------------------------------------------------------------------------------- /openedxscorm/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/storage.py -------------------------------------------------------------------------------- /openedxscorm/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/openedxscorm/tests.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/lms-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/screenshots/lms-fullscreen.png -------------------------------------------------------------------------------- /screenshots/studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/screenshots/studio.png -------------------------------------------------------------------------------- /screenshots/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/screenshots/youtube.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overhangio/openedx-scorm-xblock/HEAD/setup.py --------------------------------------------------------------------------------