- 14 Mar, 2017 2 commits
-
-
Jillian Vogel committed
-
Amended headings to ensure accessibility. * Amended templates - h2 elements to h3, h3 to h4 and associated CSS. * Bumped version to 2.6.8
Matthew Harrington committed
-
- 24 Feb, 2017 2 commits
-
-
Add management command to manually migrate course_id field.
Matjaz Gregoric committed -
Matjaz Gregoric committed
-
- 23 Feb, 2017 1 commit
-
-
Normally the value of deprecated Answer.course_id will be copied into the new Answer.course_key field by a migration, but if your answer table is very large, you might want to use this management command to perform the copying in batches instead.
Matjaz Gregoric committed
-
- 10 Feb, 2017 1 commit
-
-
Override layout of choice label in Apros theme
Tim Krones committed
-
- 09 Feb, 2017 1 commit
-
-
Tim Krones committed
-
- 02 Feb, 2017 1 commit
-
-
Do not show completion checkmark when hide_feedback is enabled
Matjaz Gregoric committed
-
- 31 Jan, 2017 1 commit
-
-
This makes the Completion block consistent with the Answer block. When 'pb_hide_feedback_if_attempts_remain' is set to True in XBLOCK_SETTINGS, once the user submits an answer to an Answer (freeform long answer), the green checkmark is not visible after refreshing the page, even though the given answer/text is still visible. This commit makes Completion blocks consistent with that behaviour.
Matjaz Gregoric committed
-
- 27 Jan, 2017 2 commits
-
-
Fix display of MCQ/MRQ choices with long text.
Tim Krones committed -
Tim Krones committed
-
- 25 Jan, 2017 1 commit
-
-
Copy course_id into course_key and remove temporary transition code
Matjaz Gregoric committed
-
- 24 Jan, 2017 2 commits
-
-
Tim Krones committed
-
Tim Krones committed
-
- 13 Jan, 2017 2 commits
-
-
Matjaz Gregoric committed
-
Now that all data has been migrated to the new course_key column, we can remove the temporary transition code.
Matjaz Gregoric committed
-
- 12 Jan, 2017 2 commits
-
-
Previous migration populates any null course_key fields, so we can now change the column to not allow NULL values. We make the deprecated course_id nullable, to be able to start ignoring it later.
Matjaz Gregoric committed -
The migration copies content of the Answer.course_id column into the new extended Answer.course_key column. It skips Answer records that already have the course_key column set.
Matjaz Gregoric committed
-
- 22 Dec, 2016 2 commits
-
-
Updates README to note tag compatibility with edx-platform
Jillian Vogel committed -
releases, and adds Open edX installation instructions.
Jillian Vogel committed
-
- 12 Dec, 2016 1 commit
-
-
Use django Q objects instead of raw SQL query
Matjaz Gregoric committed
-
- 07 Dec, 2016 2 commits
-
-
Matjaz Gregoric committed
-
Matjaz Gregoric committed
-
- 01 Dec, 2016 1 commit
-
-
YONK-476: fixed review step not showing tip and result icon
Braden MacDonald committed
-
- 28 Nov, 2016 2 commits
-
-
Zia Fazal committed
-
Add documentation about Completion block.
Braden MacDonald committed
-
- 25 Nov, 2016 4 commits
-
-
Tim Krones committed
-
Introduce Answer.course_key and deprecate course_id.
Matjaz Gregoric committed -
Matjaz Gregoric committed
-
This introduces a new 255-char course_key field to the Answer model. The old 50-char course_id field is still present, but is deprecated and will be removed in next release. We cannot simply extend the existing course_id field because we have some large problem_builder_answer tables in production and the migration to extend the column would lock the table causing issues in production. The code is updated so that it uses the new course_key column, but falls back to course_id. In next release, a data migration to copy course_id data to course_key will be provided and the course_id column dropped.
Matjaz Gregoric committed
-
- 24 Nov, 2016 7 commits
-
-
Remove migration that extends course_id column
Matjaz Gregoric committed -
Migration locks the table, which is not desired since the production table on edx.org is quite large. The course_id field will be extended in a multiple steps instead. For more info see: - https://github.com/edx/edx-platform/pull/14013 - https://github.com/open-craft/problem-builder/pull/131
Matjaz Gregoric committed -
Implement Completion XBlock
Tim Krones committed -
Tim Krones committed
-
Tim Krones committed
-
Tim Krones committed
-
Tim Krones committed
-
- 17 Nov, 2016 1 commit
-
-
Extend course_id field to 255 characters.
Matjaz Gregoric committed
-
- 16 Nov, 2016 2 commits
-
-
Matjaz Gregoric committed
-
It stores course keys, which can be longer than 50 characters. Standard field size for course key fields in edx-platform is 255 characters, so extend our course_id field to 255 chars.
Matjaz Gregoric committed
-