Skip to content

ffedoroff/XBlock

 
 

Repository files navigation

Part of edX code.

XBlock Courseware Components build-status coverage-status

XBlock is the Open edX component architecture for building courseware.

This repo contains the core code for implementing XBlocks.

Background

Open edX courseware is built out of components that are combined hierarchically. These include components like the video player, LON-CAPA problems, as well as compound components like learning sequences. The API for these components is called XBlocks.

How does this differ from existing industry standards like Learning Tools Interoperability (LTI) and SCORM? On a high level, XBlocks is a Python language-level API, and it provides sensible defaults for things like storing data. XBlocks could be wrapped up in LTI, and one could make an LTI XBlock. The core reason to write an XBlock is that it is deployable. You can give us the code to an XBlock, and we can embed it in our courseware. LTI would require you to give us a virtual machine image which ran it.

Installation

This code runs and is tested on Python 2.7 and 3.5.

  1. Get a local copy of this repo.
  2. (Optional) Create and activate a virtualenv to work in.
  3. Install the requirements and register the XBlock entry points with (you may need to sudo this if you don't use virtualenv):

    $ make requirements

Testing

To run the test suite:

$ tox

This will run the XBlock core and runtime unit tests, and print coverage reports.

Style Testing

We use two tools - pylint and pep8 - to manage the code quality and style of all Python files in this repo. Our goal is to maintain zero reported pylint and pep8 violations at all times.

To run these tools on a single file:

$ pylint path/to/file.py

$ pep8 path/to/file.py

To run these tools on the whole project:

$ pylint .

$ pep8 .

We do not abide by all pylint and pep8 violations. You can check out which violations we ignore by viewing the contents of pylintrc and setup.cfg. Before making a pull request, you should ensure that your branch does not add any new quality violations by checking your code with these tools.

You can run these tests automatically before pushing code to github (and running the validation in Travis) by activating the pre-push script

cd .git/hooks ln -s ../../script/pre-push cd -

Using the XBlock-SDK -------------------

The XBlock-SDK exists in a separate repository. The SDK contains useful tools for developing your own XBlocks, such as a template XBlock generator, sample XBlocks that demonstrate XBlock functionality.

You can find it in its own repository: https://github.com/edx/xblock-sdk

Documentation

The docs for the XBlock API is on Read The Docs: https://xblock.readthedocs.org .

Reading the code

There are distinct layers to this code. In the docstrings, we've tried to make clear which layer the code lives in, though sometimes the lines are blurred:

  1. XBlock The sample XBlock code. This is the most important, it is the code that most third parties will be writing, and demonstrates the XBlock interfaces.
  2. Runtime The runtime code that we think will be common to all runtimes. This is the behind-the-scenes code edX will write to make XBlocks work. This layer may not be real code here, but we'll need to write real code to perform these functions.

Making your own XBlock

Making an XBlock can be as simple as creating a Python class with a few specific methods.

Instructions for constructing a new XBlock along with examples can be found in the XBlock SDK: https://github.com/edx/xblock-sdk

License

The code in this repository is licensed the Apache 2.0 license unless otherwise noted.

Please see LICENSE.txt for details.

How to Contribute

Contributions are very welcome. The easiest way is to fork this repo, and then make a pull request from your fork. The first time you make a pull request, you may be asked to sign a Contributor Agreement.

Please refer to our contributor guidelines <https://github.com/edx/edx-platform/ blob/master/CONTRIBUTING.rst> in the main edx-platform repo for important additional information.

Reporting Security Issues

Please do not report security issues in public. Please email security@edx.org

Packaging

To package a new release:

  1. Describe the release in CHANGELOG.rst
  2. Update the version number in xblock/VERSION.txt.
  3. Tag the commit to be released:

    git tag v1.2.17
  4. Push the tag and wait for Travis to upload to PyPI:

    git push --tags

Getting Help

If you need help, you can find online resources, including discussions, at the Open edX Getting Help page.

About

XBlock courseware component architecture

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.1%
  • Other 0.9%