author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20
values | license stringclasses 3
values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
701,852 | 20.04.2017 13:48:52 | -43,200 | fe1cac72d80d529fd68e23e0cbdb751681af350a | Move coverage report into scripts to fail if coverage requirements are not met. | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -21,9 +21,10 @@ script:\n- flake8 --config=../.flake8\n- coverage run --rcfile=../.coveragerc manage.py test --pattern \"test_*.py\" -v 3\n- 'if [ \"$TRAVIS_PULL_REQUEST\" != \"false\" ]; then manage.py test... | Python | MIT License | uccser/cs-unplugged | Move coverage report into scripts to fail if coverage requirements are not met. |
701,852 | 20.04.2017 13:51:33 | -43,200 | 7532f03b3cc111936f8d4a1ac5283726c588fe65 | comment out after script for now. | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -23,8 +23,7 @@ script:\n- 'if [ \"$TRAVIS_PULL_REQUEST\" != \"false\" ]; then manage.py test --pattern \"test_*.py\" --reverse -v 0; fi'\n- coverage report --rcfile=../.coveragerc\n-after_script:\n- True\n+#... | Python | MIT License | uccser/cs-unplugged | comment out after script for now. |
701,852 | 20.04.2017 14:00:06 | -43,200 | 2c0d7159e6e3962ed267e9770a748b781532ce62 | add coveralls coverage | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -9,7 +9,6 @@ python:\n# Install dependencies\ninstall:\n- - pip install flake8 coverage coveralls\n- pip install -r requirements/base.txt\n- pip install -r requirements/test.txt\n@@ -23,8 +22,8 @@ script:\n-... | Python | MIT License | uccser/cs-unplugged | add coveralls coverage |
701,852 | 20.04.2017 14:00:56 | -43,200 | b46c373f064a53b95790b7d200a5e3c4f8946e92 | remove reporting out of scripts to be handled by coveralls. | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -20,7 +20,6 @@ script:\n- flake8 --config=../.flake8\n- coverage run --rcfile=../.coveragerc manage.py test --pattern \"test_*.py\" -v 3\n- 'if [ \"$TRAVIS_PULL_REQUEST\" != \"false\" ]; then manage.py test ... | Python | MIT License | uccser/cs-unplugged | remove reporting out of scripts to be handled by coveralls. |
701,852 | 20.04.2017 14:15:08 | -43,200 | 089e1d130157a5e023417352555e524b337e9334 | configure manage.py to be executable. | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -13,13 +13,14 @@ install:\n- pip install -r requirements/test.txt\nbefore_script:\n- cd csunplugged/\n+ - cd csunplugged/\n+ - chmod +x manage.py\n# Runs test suite\nscript:\n- flake8 --config=../.flake8\n- ... | Python | MIT License | uccser/cs-unplugged | configure manage.py to be executable. |
701,852 | 20.04.2017 16:49:42 | -43,200 | 1312c556062186c474e9350e07bfaec0ca458069 | Allow language specification of base test. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/tests/BaseTest.py",
"new_path": "csunplugged/tests/BaseTest.py",
"diff": "@@ -7,6 +7,7 @@ class BaseTest(SimpleTestCase):\ndef __init__(self, *args, **kwargs):\nsuper().__init__(*args, **kwargs)\n+ self.language = None\n@classmethod\ndef setUpClass... | Python | MIT License | uccser/cs-unplugged | Allow language specification of base test. |
701,852 | 21.04.2017 11:14:11 | -43,200 | fd77d431fee62b68fe9d6999aa6855cf87967bb2 | Update docstrings due to changes in methods. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/tests/BaseTest.py",
"new_path": "csunplugged/tests/BaseTest.py",
"diff": "@@ -23,7 +23,7 @@ class BaseTest(SimpleTestCase):\ndef setUp(self):\n'''Called before each test.\n- Sets the language to English, and creates a new client.\n+ Sets the langua... | Python | MIT License | uccser/cs-unplugged | Update docstrings due to changes in methods. |
701,852 | 21.04.2017 11:35:21 | -43,200 | 7415dd91b3beffeb19800afedc66c562ba70ed07 | Create user once for class when testing. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/tests/BaseTest.py",
"new_path": "csunplugged/tests/BaseTest.py",
"diff": "@@ -10,16 +10,16 @@ class BaseTest(SimpleTestCase):\nself.language = None\n@classmethod\n- def setUpClass(self):\n+ def setUpClass(cls):\n'''Called before tests in class.\n''... | Python | MIT License | uccser/cs-unplugged | Create user once for class when testing. |
701,852 | 21.04.2017 12:35:06 | -43,200 | bd57295297bf0d1e0c052b1e0f3e52220523fe22 | flake8 fixes for unused variable, reverting to previous code. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/tests/topics/views/test_index_view.py",
"new_path": "csunplugged/tests/topics/views/test_index_view.py",
"diff": "@@ -15,13 +15,14 @@ class IndexViewTest(BaseTestWithDB):\nself.assertEqual(response.status_code, 200)\ndef test_index_with_one_topic(s... | Python | MIT License | uccser/cs-unplugged | flake8 fixes for unused variable, reverting to previous code. |
701,852 | 25.05.2017 09:24:37 | -43,200 | bf916b2a83d03e45467b8fc0c957bc16bed392e2 | Select repo sources to avoid issues with CDN returning 503s. | [
{
"change_type": "MODIFY",
"old_path": "infrastructure/nginx/Dockerfile",
"new_path": "infrastructure/nginx/Dockerfile",
"diff": "FROM nginx:latest\n+# Populate sources with closest neighbours\n+# Resolves issues with failing builds, should be removed in future\n+RUN apt-get update \\\n+ && apt-get ... | Python | MIT License | uccser/cs-unplugged | Select repo sources to avoid issues with CDN returning 503s. |
701,852 | 25.05.2017 10:37:43 | -43,200 | e437023a3f82c72f46732e977f68de6b6d72e120 | Remove printing of the Nodejs install script. | [
{
"change_type": "MODIFY",
"old_path": "infrastructure/nginx/Dockerfile",
"new_path": "infrastructure/nginx/Dockerfile",
"diff": "@@ -14,7 +14,6 @@ RUN apt-get update \\\ngnupg2 \\\npython \\\nbuild-essential \\\n- && curl -sL https://deb.nodesource.com/setup_6.x \\\n&& curl -sL https://deb.nodesour... | Python | MIT License | uccser/cs-unplugged | Remove printing of the Nodejs install script. |
701,852 | 19.06.2017 15:51:27 | -43,200 | 20d98f1961babeaf4be50dfd6bffc16728c5c95a | Minor whitespacing fixes. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/design-a-bee-bot/design-a-bee-bot.md",
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/design-a-bee-bot/design-a-bee-bot.md",
"diff": "## Require... | Python | MIT License | uccser/cs-unplugged | Minor whitespacing fixes. |
701,852 | 19.06.2017 16:35:37 | -43,200 | e73710b7dd93af8734ea9ec092ef686cd21d531e | Add configuration for geometry programming challenges. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/programming-challenges.yaml",
"diff": "+draw-a-square-without-loop:\n+ challenge-set-number: 1\n+ challenge-number: 1\n+ difficulty-level: 1\n+ programming-languages:\n+ ... | Python | MIT License | uccser/cs-unplugged | Add configuration for geometry programming challenges. |
701,852 | 19.06.2017 16:50:39 | -43,200 | 36a4ad50cd48c7c4646508606ad3a45f9c5c98ba | tidy and fix. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/catch-the-mouse-random/catch-the-mouse-random.md",
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/catch-the-mouse-random/catch-the-mouse-random.md",... | Python | MIT License | uccser/cs-unplugged | tidy and fix. |
701,852 | 19.06.2017 17:14:21 | -43,200 | ab192c4c11f3d80fa22d44429f71dfa4f32a5d4a | Added programming exercises on squares. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/draw-square-with-loop/draw-square-with-loop.md",
"diff": "+# Draw a square (with a loop)\n+\n+##Requirement:\n+\n+Write a program that draws a square, starting from point... | Python | MIT License | uccser/cs-unplugged | Added programming exercises on squares. |
701,852 | 20.06.2017 11:59:15 | -43,200 | 166cad09ec9681287cb9e4de1ebcdc86ff0f9acd | Pentagon programming challenges. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/draw-pentagon-with-loop/draw-pentagon-with-loop.md",
"diff": "+# Draw a pentagon (with a loop)\n+\n+## Requirement:\n+\n+Write a program that draws a pentagon (5 sides po... | Python | MIT License | uccser/cs-unplugged | Pentagon programming challenges. |
701,852 | 20.06.2017 12:45:55 | -43,200 | 0bb8a5983297bb25aefd6e4e51c878d1bfb3089e | Circle programming challenges. | [
{
"change_type": "ADD",
"old_path": "csunplugged/static/img/topics/programming-challenges/circle_red.png",
"new_path": "csunplugged/static/img/topics/programming-challenges/circle_red.png",
"diff": "Binary files /dev/null and b/csunplugged/static/img/topics/programming-challenges/circle_red.png diff... | Python | MIT License | uccser/cs-unplugged | Circle programming challenges. |
701,852 | 20.06.2017 12:59:06 | -43,200 | 407127dc377c55ede053c26b72e7cfd46eae8050 | Regular polygon programming exercises. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/calculate-inside-angles-of-regular-polygons/calculate-inside-angles-of-regular-polygons.md",
"diff": "+# Calculate the inside angles of regular polygons\n+\n+## Requireme... | Python | MIT License | uccser/cs-unplugged | Regular polygon programming exercises. |
701,852 | 20.06.2017 14:04:29 | -43,200 | a643d76d86d65d648eff55866eaa5c918f5a3b0d | Angle porgramming challenges. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/draw-different-types-of-angles/scratch-expected.md",
"diff": "+Click on the green flag to see the expected output of your program.\n+\n+{iframe link=\"https://scratch.mit... | Python | MIT License | uccser/cs-unplugged | Angle porgramming challenges. |
701,852 | 20.06.2017 17:34:22 | -43,200 | 966d9fcef20a77edb91ae77a617d4ef40f99b4b6 | Url fixes and other minor changes. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/catch-the-mouse-random/scratch-expected.md",
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/catch-the-mouse-random/scratch-expected.md",
"diff":... | Python | MIT License | uccser/cs-unplugged | Url fixes and other minor changes. |
701,852 | 21.06.2017 14:40:57 | -43,200 | 82226d4ce7d0e5c124651dac9f5da94879137c71 | PR fixes and test. | [
{
"change_type": "RENAME",
"old_path": "csunplugged/tests/topics/loaders/assets/programming_challenges/basic-config.yaml",
"new_path": "csunplugged/tests/topics/loaders/assets/programming_challenges/basic-config-1.yaml",
"diff": ""
},
{
"change_type": "ADD",
"old_path": null,
"new_pa... | Python | MIT License | uccser/cs-unplugged | PR fixes and test. |
701,852 | 21.06.2017 15:42:38 | -43,200 | a02aa06fe578f935fd597e74a7a5a6ee97340b44 | Update configuration for Numeracy programming challenges. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/learning-outcomes.yaml",
"new_path": "csunplugged/topics/content/en/learning-outcomes.yaml",
"diff": "@@ -226,6 +226,11 @@ programming-describe-variable-output:\ncurriculum-areas:\n- programming\n+programming-describe-function:\n+... | Python | MIT License | uccser/cs-unplugged | Update configuration for Numeracy programming challenges. |
701,852 | 21.06.2017 16:37:27 | -43,200 | e273cbb5652e684e2714f0ce3e5b8aace5f11153 | Numeracy go-up programming challenges. | [
{
"change_type": "ADD",
"old_path": "csunplugged/static/img/topics/programming-challenges/numeracy-go-up-list.png",
"new_path": "csunplugged/static/img/topics/programming-challenges/numeracy-go-up-list.png",
"diff": "Binary files /dev/null and b/csunplugged/static/img/topics/programming-challenges/n... | Python | MIT License | uccser/cs-unplugged | Numeracy go-up programming challenges. |
701,852 | 21.06.2017 16:46:52 | -43,200 | ea899be3255ab9b6804287049a824cb3f36fce79 | Exponents programming challenge. | [
{
"change_type": "DELETE",
"old_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/calculate-exponents/add-in-parts-1-digit-number.md",
"new_path": null,
"diff": "-# Title\n-\n-## Requirement:\n-\n-## Testing examples:\n"
},
{
"change_type": "MODIFY",
"old... | Python | MIT License | uccser/cs-unplugged | Exponents programming challenge. |
701,852 | 21.06.2017 16:58:04 | -43,200 | 328dfaba99337f29b25e43dd2a67b7a2759735a4 | check if divisor programming challenges. | [
{
"change_type": "DELETE",
"old_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/check-if-divisor-series/add-in-parts-1-digit-number.md",
"new_path": null,
"diff": "-# Title\n-\n-## Requirement:\n-\n-## Testing examples:\n"
},
{
"change_type": "MODIFY",
... | Python | MIT License | uccser/cs-unplugged | check if divisor programming challenges. |
701,852 | 22.06.2017 14:45:03 | -43,200 | aef06989b266e7d09e08be82b317c8483fcb032a | Markdown file formatting and PR fixxes. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/catch-the-mouse-random/scratch-expected.md",
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/catch-the-mouse-random/scratch-expected.md",
"diff":... | Python | MIT License | uccser/cs-unplugged | Markdown file formatting and PR fixxes. |
701,852 | 26.06.2017 10:24:37 | -43,200 | 6a54538353a97185375cfcdd3a8b472a84307698 | Added support for https apt-gets for nginx for travis. | [
{
"change_type": "MODIFY",
"old_path": "infrastructure/nginx/Dockerfile",
"new_path": "infrastructure/nginx/Dockerfile",
"diff": "@@ -9,6 +9,8 @@ RUN apt-get update \\\n# Install Node.js and other dependencies\nRUN apt-get update \\\n+ && apt-get install -y \\\n+ apt-transport-https \\\n&& apt-get i... | Python | MIT License | uccser/cs-unplugged | Added support for https apt-gets for nginx for travis. |
701,852 | 26.06.2017 10:50:53 | -43,200 | d475846c15118418396ed268dabf6bcdb6a99699 | travis build try removing broken packages. | [
{
"change_type": "MODIFY",
"old_path": "infrastructure/nginx/Dockerfile",
"new_path": "infrastructure/nginx/Dockerfile",
"diff": "@@ -8,9 +8,8 @@ RUN apt-get update \\\n&& mv sources.list /etc/apt/sources.list\n# Install Node.js and other dependencies\n-RUN apt-get update \\\n- && apt-get install -y... | Python | MIT License | uccser/cs-unplugged | travis build try removing broken packages. |
701,852 | 26.06.2017 11:15:53 | -43,200 | 416117a607996696fc88c1d78fe24aea1b1e5985 | include necessary packages. | [
{
"change_type": "MODIFY",
"old_path": "infrastructure/nginx/Dockerfile",
"new_path": "infrastructure/nginx/Dockerfile",
"diff": "@@ -14,6 +14,8 @@ RUN apt-get autoremove \\\ncurl \\\ngnupg2 \\\npython \\\n+ g++ \\\n+ libc-dev \\\nbuild-essential \\\n&& curl -sL https://deb.nodesource.com/setup_6.x ... | Python | MIT License | uccser/cs-unplugged | include necessary packages. |
701,852 | 26.06.2017 11:23:45 | -43,200 | 11dc6e3323c1d98d871878fbf6bd055d8f426bf6 | fix libc to libc6 | [
{
"change_type": "MODIFY",
"old_path": "infrastructure/nginx/Dockerfile",
"new_path": "infrastructure/nginx/Dockerfile",
"diff": "@@ -15,7 +15,7 @@ RUN apt-get autoremove \\\ngnupg2 \\\npython \\\ng++ \\\n- libc-dev \\\n+ libc6-dev \\\nbuild-essential \\\n&& curl -sL https://deb.nodesource.com/setup... | Python | MIT License | uccser/cs-unplugged | fix libc to libc6 |
701,852 | 26.06.2017 11:30:39 | -43,200 | 19a91e07e92024bed0895195cb07e02627c7d200 | It appears that automatic installation of requirements does not occur anymore. | [
{
"change_type": "MODIFY",
"old_path": "infrastructure/nginx/Dockerfile",
"new_path": "infrastructure/nginx/Dockerfile",
"diff": "@@ -15,6 +15,7 @@ RUN apt-get autoremove \\\ngnupg2 \\\npython \\\ng++ \\\n+ libc6 \\\nlibc6-dev \\\nbuild-essential \\\n&& curl -sL https://deb.nodesource.com/setup_6.x ... | Python | MIT License | uccser/cs-unplugged | It appears that automatic installation of requirements does not occur anymore. |
701,852 | 26.06.2017 11:36:15 | -43,200 | c290a3456246e109a4b4918e215f493f05925d7e | Something seems up with these dependencies. | [
{
"change_type": "MODIFY",
"old_path": "infrastructure/nginx/Dockerfile",
"new_path": "infrastructure/nginx/Dockerfile",
"diff": "@@ -16,7 +16,6 @@ RUN apt-get autoremove \\\npython \\\ng++ \\\nlibc6 \\\n- libc6-dev \\\nbuild-essential \\\n&& curl -sL https://deb.nodesource.com/setup_6.x | bash - \\... | Python | MIT License | uccser/cs-unplugged | Something seems up with these dependencies. |
701,852 | 26.06.2017 12:06:57 | -43,200 | e041ab34242a33d20e59f56db29140e8954c7e96 | Tell nginx to fix broken dependencies if possible. | [
{
"change_type": "MODIFY",
"old_path": "infrastructure/nginx/Dockerfile",
"new_path": "infrastructure/nginx/Dockerfile",
"diff": "@@ -8,14 +8,13 @@ RUN apt-get update \\\n&& mv sources.list /etc/apt/sources.list\n# Install Node.js and other dependencies\n-RUN apt-get autoremove \\\n- && apt-get upda... | Python | MIT License | uccser/cs-unplugged | Tell nginx to fix broken dependencies if possible. |
701,852 | 26.06.2017 13:39:45 | -43,200 | 02362f48e46b568ddc7114d04b0de0653301d17a | Enable security updates. | [
{
"change_type": "MODIFY",
"old_path": "infrastructure/nginx/Dockerfile",
"new_path": "infrastructure/nginx/Dockerfile",
"diff": "@@ -5,13 +5,13 @@ FROM nginx:latest\nRUN apt-get update \\\n&& apt-get install -y netselect-apt --no-install-suggests \\\n&& netselect-apt stretch \\\n+ && echo deb http:... | Python | MIT License | uccser/cs-unplugged | Enable security updates. |
701,852 | 27.06.2017 10:55:43 | -43,200 | 164f70d05aa70e86897a2647fbbf5ce2ceda1f16 | Add modulo numbers configuration. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/learning-outcomes.yaml",
"new_path": "csunplugged/topics/content/en/learning-outcomes.yaml",
"diff": "@@ -303,6 +303,11 @@ programming-identify-list-store-data:\ncurriculum-areas:\n- programming\n+programming-show-item-specified-p... | Python | MIT License | uccser/cs-unplugged | Add modulo numbers configuration. |
701,852 | 27.06.2017 10:58:01 | -43,200 | 628db2fcaebfbd41e84e12a0d254f4c210d101a2 | Add programming challenges to modulo lesson. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/unplugged-programming/numeracy-unit-plan/lessons/lessons.yaml",
"new_path": "csunplugged/topics/content/en/unplugged-programming/numeracy-unit-plan/lessons/lessons.yaml",
"diff": "@@ -11,9 +11,12 @@ modulo:\nclassroom-resources:\n... | Python | MIT License | uccser/cs-unplugged | Add programming challenges to modulo lesson. |
701,852 | 27.06.2017 13:04:49 | -43,200 | 0648cda6ebe7ddad55cbd8b1ed0495f11157d4ca | Fixed some mistakes with incorrect scratch porgramming loading. | [
{
"change_type": "RENAME",
"old_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/modulo-add-hours-12-hour-clock-without-mod/modulo-add-hours-12-hour-without-mod.md",
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/modulo-add-hours... | Python | MIT License | uccser/cs-unplugged | Fixed some mistakes with incorrect scratch porgramming loading. |
701,852 | 27.06.2017 14:50:58 | -43,200 | a7701554b8eadd5fe538faac641325ac8f190ac0 | Style fix modulo programming challenge markdown files. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/modulo-add-hours-12-hour-clock/modulo-add-hours-12-hour-clock.md",
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/modulo-add-hours-12-hour-clock/mod... | Python | MIT License | uccser/cs-unplugged | Style fix modulo programming challenge markdown files. |
701,852 | 27.06.2017 15:04:22 | -43,200 | d231b7c3d248c9cb6c6fffcfb7e6d61b2c5ff4fe | Modulo programming description added. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/unplugged-programming/numeracy-unit-plan/lessons/lessons.yaml",
"new_path": "csunplugged/topics/content/en/unplugged-programming/numeracy-unit-plan/lessons/lessons.yaml",
"diff": "@@ -20,3 +20,4 @@ modulo:\n- modulo-add-months\n- ... | Python | MIT License | uccser/cs-unplugged | Modulo programming description added. |
701,852 | 27.06.2017 15:12:54 | -43,200 | ffc8c52c66ed124a7640b5a86d2eb3c5075da136 | Fix incorrect recommended blocks panels. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/modulo-add-hours-12-hour-clock-without-mod/scratch-expected.md",
"new_path": "csunplugged/topics/content/en/unplugged-programming/programming-challenges/modulo-add-hours-12-hour-clock-witho... | Python | MIT License | uccser/cs-unplugged | Fix incorrect recommended blocks panels. |
701,852 | 20.07.2017 11:29:09 | -43,200 | 9b99802484db736fc7a7e2748b98e6d024cf9bb5 | Lesson configurations and lesson 2 content. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/learning-outcomes.yaml",
"new_path": "csunplugged/topics/content/en/learning-outcomes.yaml",
"diff": "@@ -342,6 +342,22 @@ search-algorithms-explore-probability-value-random-set:\nsearch-algorithms-explain-range-unsorted-lists:\nt... | Python | MIT License | uccser/cs-unplugged | Lesson configurations and lesson 2 content. |
701,852 | 20.07.2017 13:25:23 | -43,200 | c7aa40a2090d6b1239bf50614df2585a642e3261 | Formatting and link fix. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/searching-algorithms/sequential-and-binary-search-unit-plan/lessons/divide-and-conquer-ct-links.md",
"new_path": "csunplugged/topics/content/en/searching-algorithms/sequential-and-binary-search-unit-plan/lessons/divide-and-conquer-ct-... | Python | MIT License | uccser/cs-unplugged | Formatting and link fix. |
701,852 | 27.07.2017 18:09:26 | -43,200 | 981bdac9c552b0dcdeac5a3bbb975d9386e2eb24 | Fix pango to clear wheezyprint error. | [
{
"change_type": "MODIFY",
"old_path": "Dockerfile-local",
"new_path": "Dockerfile-local",
"diff": "@@ -10,19 +10,36 @@ ARG DEBIAN_FRONTEND=noninteractive\nENV DJANGO_PRODUCTION=False\n+# Install custom Pango version\n+\n+# Install FreeType2 then HarfBuzz then reinstall FreeType2\n+RUN apt-get updat... | Python | MIT License | uccser/cs-unplugged | Fix pango to clear wheezyprint error. |
701,852 | 27.07.2017 22:00:25 | -43,200 | 066331ac46ba165831f6b537f0720469e212470f | Tidy pango install script. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/pango-install.sh",
"new_path": "csunplugged/pango-install.sh",
"diff": "#!/bin/bash\ncd /pango-install/\n-# Install libffi\n-# echo 'Obtaining libffi'\n-# wget ftp://sourceware.org/pub/libffi/libffi-3.2.1.tar.gz\n-# tar -xf libffi-3.2.1.tar.gz\n-# ... | Python | MIT License | uccser/cs-unplugged | Tidy pango install script. |
701,852 | 31.07.2017 18:41:14 | -43,200 | 1fef775c332b99faafef853578ac377a9a4692e0 | Added learning-outcomes cirriculum areas. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/content/en/learning-outcomes.yaml",
"new_path": "csunplugged/topics/content/en/learning-outcomes.yaml",
"diff": "@@ -332,31 +332,48 @@ programming-show-item-specified-position-list:\nsearch-algorithms-identify-unsorted-lists:\ntext: Identify... | Python | MIT License | uccser/cs-unplugged | Added learning-outcomes cirriculum areas. |
701,852 | 02.08.2017 16:49:38 | -43,200 | 00ad5eccd5243d10fb91f021ce43668595ca9406 | Setup for dockerhub repos and travis and docker multi stage build. | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -12,10 +12,11 @@ install:\njobs:\ninclude:\n- stage: build\n- script: ./csu start\n+ script: ./infrastructure/docker-build.sh\n- stage: test\n- script: ./csu dev test\n+ script: ./csu start\n+ - script: ./cs... | Python | MIT License | uccser/cs-unplugged | Setup for dockerhub repos and travis and docker multi stage build. |
701,852 | 02.08.2017 17:08:30 | -43,200 | d9f36dff5c360ad332c0ee3b25518f2d4bb004f6 | Trying to figure out multiple sequential scripts within a stage. | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -15,11 +15,12 @@ jobs:\nscript: ./infrastructure/docker-build.sh\n- stage: test\n- script: ./csu start\n- - script: ./csu dev test\n- - script: ./csu dev test_backwards\n- - script: ./csu dev style\n- - scri... | Python | MIT License | uccser/cs-unplugged | Trying to figure out multiple sequential scripts within a stage. |
701,852 | 04.08.2017 18:03:53 | -43,200 | 00b14f9c4daa8e66479afc6f1bb02c41b483a8f1 | Change to use our base-docker files and parallelise scripts. | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -16,11 +16,11 @@ jobs:\n- stage: test\nscript:\n- - ./csu start\n- - ./csu dev test\n- - ./csu dev test_backwards\n- - ./csu dev style\n- - ./csu dev docs\n+ - script: ./csu start\n+ - script: ./csu dev test... | Python | MIT License | uccser/cs-unplugged | Change to use our base-docker files and parallelise scripts. |
701,852 | 04.08.2017 18:17:50 | -43,200 | a2473f1e130525fcdf5b82783a3eefddca768945 | Add continuous integration commands to csu script. | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -11,16 +11,11 @@ install:\n- sudo docker-compose --version\njobs:\ninclude:\n- - stage: build\n- script: ./infrastructure/docker-build.sh\n-\n- stage: test\n- script:\n- - script: ./csu start\n- - script: ./... | Python | MIT License | uccser/cs-unplugged | Add continuous integration commands to csu script. |
701,852 | 04.08.2017 18:23:22 | -43,200 | 52f4e508efb043479d3b5a7d6a4ee360855ab731 | fix issue in travis file. | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -12,7 +12,7 @@ install:\njobs:\ninclude:\n- stage: test\n- - script: ./csu ci test_with_coverage\n+ script: ./csu ci test_with_coverage\n- script: ./csu ci test_backwards\n- script: ./csu ci style\n- script:... | Python | MIT License | uccser/cs-unplugged | fix issue in travis file. |
701,852 | 04.08.2017 19:39:59 | -43,200 | 73cecc859653e6e777f41de5788b7b00de94a0c2 | Fix test_backwards to ensure correct error status. | [
{
"change_type": "MODIFY",
"old_path": "csu",
"new_path": "csu",
"diff": "@@ -240,10 +240,12 @@ function test_coverage_help {\n# Run test suite backwards for CI testing\nfunction test_suite_backwards {\nprintf \"Running test suite backwards...\\n\"\n- if [ \"$TRAVIS_PULL_REQUEST\" != \"false\" ]\n- ... | Python | MIT License | uccser/cs-unplugged | Fix test_backwards to ensure correct error status. |
701,852 | 04.08.2017 19:49:00 | -43,200 | 3fe7c975dfae64d54d1cc45c0932067cc750acea | try a sequential build to test speed. | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -9,15 +9,12 @@ python:\ninstall:\n- sudo docker --version\n- sudo docker-compose --version\n-jobs:\n- include:\n- - stage: test\n- script: ./csu ci test_with_coverage\n- - script: ./csu ci test_backwards\n- ... | Python | MIT License | uccser/cs-unplugged | try a sequential build to test speed. |
701,852 | 04.08.2017 20:54:04 | -43,200 | ad82a72984814a3c920466bebfa5c271918b6f61 | Tidy travis config, and remove unncessary line from prod deploy. | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -9,14 +9,13 @@ python:\ninstall:\n- sudo docker --version\n- sudo docker-compose --version\n-script:\n+before_script:\n- ./csu start\n+script:\n- ./csu ci test_with_coverage\n- ./csu ci test_backwards\n- ./c... | Python | MIT License | uccser/cs-unplugged | Tidy travis config, and remove unncessary line from prod deploy. |
701,845 | 08.08.2017 16:28:34 | -43,200 | 8cb2d66ad40a43ada3f0f5a7f958b88ce0e90778 | Made csu script more script-y | [
{
"change_type": "MODIFY",
"old_path": "csu",
"new_path": "csu",
"diff": "# - When 'start' is run open website in default browser without creating\n# new terminal prompt.\n-# Constants\n+set -e\n+\nRED='\\033[0;31m'\nGREEN='\\033[0;32m'\nNC='\\033[0m' # No Color\n-# Print out help information\n-func... | Python | MIT License | uccser/cs-unplugged | Made csu script more script-y |
701,845 | 08.08.2017 20:13:49 | -43,200 | caa2a95026510c47ac25994f3a8fec08dc2caefc | Fix some incorrect command names | [
{
"change_type": "MODIFY",
"old_path": "csu",
"new_path": "csu",
"diff": "@@ -91,13 +91,13 @@ defhelp restart 'Stop and then restart development environment.'\n# Run Django migrate and updatedata commands\ncmd_update() {\n- cmd_static\n+ dev_static\necho \"\"\n- cmd_migrate\n+ dev_migrate\necho \"\"... | Python | MIT License | uccser/cs-unplugged | Fix some incorrect command names |
701,852 | 09.08.2017 17:03:48 | -43,200 | f1e5a58a0758beb0ea1086f01c574c15a1862dd9 | Removed aliases to functions as they weren't working, made ci commands functions as they may change in future. | [
{
"change_type": "MODIFY",
"old_path": "csu",
"new_path": "csu",
"diff": "@@ -193,7 +193,6 @@ dev_style() {\n! (( pep8_status || pydocstyle_status ))\n}\ndefhelp -dev style 'Run style checks.'\n-alias ci_style=dev_style\n# Run test suite\ndev_test_suite() {\n@@ -229,7 +228,6 @@ dev_test_backwards() ... | Python | MIT License | uccser/cs-unplugged | Removed aliases to functions as they weren't working, made ci commands functions as they may change in future. |
701,852 | 06.09.2017 12:29:28 | -43,200 | 28e0b42455e4c8061826607519c4b20b09b48453 | Update Django the correct way, remove requirements from base.txt. | [
{
"change_type": "MODIFY",
"old_path": "Dockerfile",
"new_path": "Dockerfile",
"diff": "# This Dockerfile is based off the Google App Engine Python runtime image\n# https://github.com/GoogleCloudPlatform/python-runtime\n-FROM uccser/django:1.11.4\n+FROM uccser/django:1.11.5\n# Add metadata to Docker... | Python | MIT License | uccser/cs-unplugged | Update Django the correct way, remove requirements from base.txt. |
701,855 | 09.10.2017 12:57:02 | -46,800 | 86a922e01cd0d2fac6ef191132c7cc080424a1e1 | Add csu command to reboot django container after exception occurs. | [
{
"change_type": "MODIFY",
"old_path": "csu",
"new_path": "csu",
"diff": "@@ -182,6 +182,13 @@ dev_shell() {\n}\ndefhelp -dev shell \"Open shell to Django folder.\"\n+# Reboot Django Docker container\n+dev_reboot_django() {\n+ echo \"Rebooting Django Docker container...\"\n+ docker-compose up -d dja... | Python | MIT License | uccser/cs-unplugged | Add csu command to reboot django container after exception occurs. |
701,855 | 16.10.2017 18:28:18 | -46,800 | e120e1f1cb80ff24fefa27097ef7611e1560ff37 | Modify models to store translated content (fixes
Register new database columns for translated content using
django-modeltranslation.
Add abstract base class for models with translatable content.
This class has a repeated CharField which stores the available
languages for that content. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/config/settings/base.py",
"new_path": "csunplugged/config/settings/base.py",
"diff": "@@ -36,6 +36,7 @@ DJANGO_APPS = [\n]\nTHIRD_PARTY_APPS = [\n\"django_bootstrap_breadcrumbs\",\n+ \"modeltranslation\",\n]\n# Apps specific for this project go her... | Python | MIT License | uccser/cs-unplugged | Modify models to store translated content (fixes #614)
Register new database columns for translated content using
django-modeltranslation.
Add abstract base class for models with translatable content.
This class has a repeated CharField which stores the available
languages for that content. |
701,855 | 16.10.2017 18:56:48 | -46,800 | 4b744c370719eaf8207360a9471cf9eec7422171 | Update GlossaryTerm model to handle translated content | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/models.py",
"new_path": "csunplugged/topics/models.py",
"diff": "@@ -15,7 +15,7 @@ class TranslatableModel(models.Model):\ndef translation_available(self):\nreturn get_language() in self.languages\n-class GlossaryTerm(models.Model):\n+class ... | Python | MIT License | uccser/cs-unplugged | Update GlossaryTerm model to handle translated content (#614) |
701,855 | 17.10.2017 12:31:31 | -46,800 | 1d8b68163e823e23b02c3e0207a83e43115f0570 | Cleanup and style fixes for internationalization of models/loaders.
Relevant to | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/management/commands/_AgeGroupsLoader.py",
"new_path": "csunplugged/topics/management/commands/_AgeGroupsLoader.py",
"diff": "\"\"\"Custom loader for loading age group.\"\"\"\n-import os.path\n-\nfrom django.db import transaction\nfrom utils.... | Python | MIT License | uccser/cs-unplugged | Cleanup and style fixes for internationalization of models/loaders.
Relevant to #614, #615 |
701,855 | 17.10.2017 12:38:26 | -46,800 | 5cfe57384eed44f42ec874fb00a3fd1371bc8c94 | Update ResourceLoader to reflect changes in the BaseLoader class.
This is essentially a patch, until the resources application can be
modified for internationalization. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/resources/management/commands/_ResourcesLoader.py",
"new_path": "csunplugged/resources/management/commands/_ResourcesLoader.py",
"diff": "@@ -12,14 +12,14 @@ from resources.models import Resource\nclass ResourcesLoader(BaseLoader):\n\"\"\"Custom lo... | Python | MIT License | uccser/cs-unplugged | Update ResourceLoader to reflect changes in the BaseLoader class.
This is essentially a patch, until the resources application can be
modified for internationalization. |
701,855 | 17.10.2017 14:54:22 | -46,800 | 54fc511d47b939f1924454c1343b0cd7a5669361 | Implement translation of heading tree in Lesson/UnitPlan loaders.
Relevant to | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/config/settings/base.py",
"new_path": "csunplugged/config/settings/base.py",
"diff": "@@ -214,3 +214,5 @@ AUTH_PASSWORD_VALIDATORS = [\n\"NAME\": \"django.contrib.auth.password_validation.NumericPasswordValidator\",\n},\n]\n+\n+MODELTRANSLATION_CUS... | Python | MIT License | uccser/cs-unplugged | Implement translation of heading tree in Lesson/UnitPlan loaders.
Relevant to #614, #615 |
701,855 | 17.10.2017 15:42:27 | -46,800 | aa2752502fd17bb5ce7d63523d29722e8c877da2 | Add canterbury.ac.nz domains to allowed hosts in local settings | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/config/settings/local.py",
"new_path": "csunplugged/config/settings/local.py",
"diff": "@@ -55,6 +55,8 @@ INSTALLED_APPS += [\"debug_toolbar\", ] # noqa: F405\nINTERNAL_IPS = [\"127.0.0.1\", \"10.0.2.2\", ]\n+ALLOWED_HOSTS = ['.canterbury.ac.nz', '... | Python | MIT License | uccser/cs-unplugged | Add canterbury.ac.nz domains to allowed hosts in local settings |
701,855 | 17.10.2017 16:12:54 | -46,800 | 531419cb4cc724c26543583aa09618a8abba82b1 | Database migrations for new translation fields | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "csunplugged/topics/migrations/0082_auto_20171017_0306.py",
"diff": "+# -*- coding: utf-8 -*-\n+# Generated by Django 1.11.5 on 2017-10-17 03:06\n+from __future__ import unicode_literals\n+\n+import django.contrib.postgres.fields\n+import django.... | Python | MIT License | uccser/cs-unplugged | Database migrations for new translation fields |
701,855 | 17.10.2017 17:51:14 | -46,800 | 462ad789f557a2fb7d53b19219d647a3705a2fc3 | Fix help string for test_suite command in ./csu script. | [
{
"change_type": "MODIFY",
"old_path": "csu",
"new_path": "csu",
"diff": "@@ -207,7 +207,7 @@ dev_test_suite() {\necho \"Running test suite...\"\ndocker-compose exec django /docker_venv/bin/coverage run --rcfile=/cs-unplugged/.coveragerc ./manage.py test --settings=config.settings.testing --pattern ... | Python | MIT License | uccser/cs-unplugged | Fix help string for test_suite command in ./csu script. |
701,855 | 18.10.2017 11:21:42 | -46,800 | 8e0e76dcdb4603d998fe731f3e138dcb75859566 | Omit prod/local settings files from code coverage checks | [
{
"change_type": "MODIFY",
"old_path": ".coveragerc",
"new_path": ".coveragerc",
"diff": "@@ -14,6 +14,10 @@ omit =\n*/migrations/*\n# Omit database proxy file used with Google Cloud SQL Proxy\ncsunplugged/config/settings/database_proxy.py\n+ # Omit settings files for local and production environmen... | Python | MIT License | uccser/cs-unplugged | Omit prod/local settings files from code coverage checks |
701,855 | 18.10.2017 14:15:07 | -46,800 | 019b713fa38ba323a2b9304c8dd3830326f0eb9f | Update default structure directory on BaseLoader | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/utils/BaseLoader.py",
"new_path": "csunplugged/utils/BaseLoader.py",
"diff": "@@ -24,7 +24,7 @@ from utils.errors.CouldNotFindConfigFileError import CouldNotFindConfigFileError\nclass BaseLoader():\n\"\"\"Base loader class for individual loaders.\"... | Python | MIT License | uccser/cs-unplugged | Update default structure directory on BaseLoader |
701,855 | 18.10.2017 14:19:49 | -46,800 | 048c5417f6331478cfd905513317d664433afd83 | Add missing translation tags to base.html | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/templates/base.html",
"new_path": "csunplugged/templates/base.html",
"diff": "<ul class=\"list-unstyled\">\n<li>\n<a href=\"https://twitter.com/UCCSEd\">\n- Twitter\n+ {% trans \"Twitter\" %}\n</a>\n</li>\n<li>\n<a href=\"https://www.youtube.com/us... | Python | MIT License | uccser/cs-unplugged | Add missing translation tags to base.html |
701,855 | 18.10.2017 19:07:48 | -46,800 | 86f0f887dcb11996c7fd2a11eda429d41f72f40c | Add makemessages and compilemessages commands to csu script | [
{
"change_type": "MODIFY",
"old_path": "csu",
"new_path": "csu",
"diff": "@@ -132,6 +132,20 @@ dev_makeresources() {\n}\ndefhelp -dev makeresources 'Run Django makeresources command.'\n+# Run Django makemessages command\n+dev_makemessages() {\n+ echo \"Creating message files...\"\n+ docker-compose e... | Python | MIT License | uccser/cs-unplugged | Add makemessages and compilemessages commands to csu script |
701,855 | 19.10.2017 14:22:42 | -46,800 | 9109527f5c55c8a4db130b8ed941274d3e7d7659 | Add missing lesson content fields to TranslationOptions | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "csunplugged/topics/migrations/0083_auto_20171019_0024.py",
"diff": "+# -*- coding: utf-8 -*-\n+# Generated by Django 1.11.5 on 2017-10-19 00:24\n+from __future__ import unicode_literals\n+\n+from django.db import migrations, models\n+\n+\n+class... | Python | MIT License | uccser/cs-unplugged | Add missing lesson content fields to TranslationOptions (#614) |
701,855 | 19.10.2017 14:26:19 | -46,800 | 415e7f04d09d32a53b9cd05d7d41b4cd2743ad5b | Extract translatable strings from database using vinaigrette | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/config/settings/base.py",
"new_path": "csunplugged/config/settings/base.py",
"diff": "@@ -37,6 +37,7 @@ DJANGO_APPS = [\nTHIRD_PARTY_APPS = [\n\"django_bootstrap_breadcrumbs\",\n\"modeltranslation\",\n+ \"vinaigrette\",\n]\n# Apps specific for this... | Python | MIT License | uccser/cs-unplugged | Extract translatable strings from database using vinaigrette (#612) |
701,855 | 19.10.2017 18:12:34 | -46,800 | 5d3215e348cf0991edec71813bd0327ac3ccef5f | I18n of resource models/loaders | [
{
"change_type": "RENAME",
"old_path": "csunplugged/resources/content/resources.yaml",
"new_path": "csunplugged/resources/content/structure/resources.yaml",
"diff": ""
},
{
"change_type": "MODIFY",
"old_path": "csunplugged/resources/management/commands/_ResourcesLoader.py",
"new_path... | Python | MIT License | uccser/cs-unplugged | I18n of resource models/loaders (#612, #613, #614, #615) |
701,855 | 20.10.2017 15:01:18 | -46,800 | 3c222c46d1c6b06531fb8a26216ac8f6301d2934 | Modify reboot_django command to restart even if already running | [
{
"change_type": "MODIFY",
"old_path": "csu",
"new_path": "csu",
"diff": "@@ -199,7 +199,7 @@ defhelp -dev shell \"Open shell to Django folder.\"\n# Reboot Django Docker container\ndev_reboot_django() {\necho \"Rebooting Django Docker container...\"\n- docker-compose up -d django\n+ docker-compose r... | Python | MIT License | uccser/cs-unplugged | Modify reboot_django command to restart even if already running |
701,855 | 20.10.2017 15:03:22 | -46,800 | 771321405c56c23bec4aa6b05d2a058a12d43568 | Fix minor translation error in topics template | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/templates/topics/topic.html",
"new_path": "csunplugged/templates/topics/topic.html",
"diff": "<div class=\"link-box-container\">\n<a class=\"link-box link-box-md-6\" href=\"{% url 'topics:unit_plan' topic.slug unit_plan.slug %}\">\n<h3 id=\"{{ unit... | Python | MIT License | uccser/cs-unplugged | Fix minor translation error in topics template |
701,855 | 24.10.2017 23:06:21 | -46,800 | fcb2e916fef86abc48348b590cd1252a94432fd0 | Bug fixes found while updating loader tests | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/management/commands/_ClassroomResourcesLoader.py",
"new_path": "csunplugged/topics/management/commands/_ClassroomResourcesLoader.py",
"diff": "from django.db import transaction\nfrom utils.BaseLoader import BaseLoader\n-from utils.errors imp... | Python | MIT License | uccser/cs-unplugged | Bug fixes found while updating loader tests |
701,855 | 24.10.2017 23:41:04 | -46,800 | 161d359e919bb37729a53d272e902ef0cf01894b | Remove unneeded Lorem Ipsum - round 2 | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/tests/topics/loaders/assets/unit_plan/en/missing-name/missing-name.md",
"new_path": "csunplugged/tests/topics/loaders/assets/unit_plan/en/missing-name/missing-name.md",
"diff": "@@ -51,4 +51,3 @@ ullamcorper. Suspendisse placerat dolor a dui. Vesti... | Python | MIT License | uccser/cs-unplugged | Remove unneeded Lorem Ipsum - round 2 |
701,855 | 25.10.2017 12:07:57 | -46,800 | ce68783f68d55e25a9d73e2a03f2cd082927b2ab | Modify glossary request to include current language | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/static/js/website.js",
"new_path": "csunplugged/static/js/website.js",
"diff": "@@ -19,10 +19,9 @@ function open_glossary_definition() {\n// TODO: Allow code to work for different languages\n$(\"#glossary-modal-term\").text(\"Loading glossary defin... | Python | MIT License | uccser/cs-unplugged | Modify glossary request to include current language |
701,855 | 25.10.2017 13:31:46 | -46,800 | accad8e26c24ef374a2e313897c824ead39f2448 | Style fixes after merge develop->translation | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/management/commands/_CurriculumIntegrationsLoader.py",
"new_path": "csunplugged/topics/management/commands/_CurriculumIntegrationsLoader.py",
"diff": "\"\"\"Custom loader for loading curriculum integrations.\"\"\"\n-import os.path\n-\nfrom d... | Python | MIT License | uccser/cs-unplugged | Style fixes after merge develop->translation |
701,855 | 27.10.2017 00:50:45 | -46,800 | bbb5ee42b5b368a2d2923802d6908fc6aca6cfc5 | Continuing refactor of loaders, WIP | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "csunplugged/topics/content/de/binary-art.md",
"diff": "+# Binary Art\n+\n+{image file-path=\"img/topics/binary_grids.png\"}\n+\n+- Write a secret message by colouring in the grids\n+- Write your name in binary art\n+- Write your birthdate in bin... | Python | MIT License | uccser/cs-unplugged | Continuing refactor of loaders, WIP |
701,855 | 30.10.2017 13:00:18 | -46,800 | 8998fece3b2ed6b60a26921bfd28fcc20958f659 | Fix loading of computational thinking links translations | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/topics/management/commands/_UnitPlanLoader.py",
"new_path": "csunplugged/topics/management/commands/_UnitPlanLoader.py",
"diff": "@@ -59,7 +59,7 @@ class UnitPlanLoader(TranslatableModelLoader):\nremove_title=False,\n)\nfor language, content in ct_... | Python | MIT License | uccser/cs-unplugged | Fix loading of computational thinking links translations |
701,855 | 30.10.2017 15:02:37 | -46,800 | 0439b1102abbe89e248154772c798cabcc8d9ad2 | Update topic view tests to reflect i18n view changes | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/tests/topics/TopicsTestDataGenerator.py",
"new_path": "csunplugged/tests/topics/TopicsTestDataGenerator.py",
"diff": "@@ -83,6 +83,7 @@ class TopicsTestDataGenerator:\nname=\"Area {}\".format(number),\nnumber=number,\nparent=parent,\n+ languages=['... | Python | MIT License | uccser/cs-unplugged | Update topic view tests to reflect i18n view changes |
701,855 | 30.10.2017 22:23:04 | -46,800 | 541d57c4c75bd6d8196fe5a74e4b2a4a504bb188 | Change ConfigFile->YAMLFile in custom exception classes
These exceptions apply to all yaml files. These used to be only
config files, but are now also used for files storing translatable
strings. | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/tests/topics/loaders/test_age_groups_loader.py",
"new_path": "csunplugged/tests/topics/loaders/test_age_groups_loader.py",
"diff": "@@ -6,9 +6,9 @@ from tests.topics.TopicsTestDataGenerator import TopicsTestDataGenerator\nfrom topics.models import ... | Python | MIT License | uccser/cs-unplugged | Change ConfigFile->YAMLFile in custom exception classes
These exceptions apply to all yaml files. These used to be only
config files, but are now also used for files storing translatable
strings. |
701,855 | 01.11.2017 21:34:21 | -46,800 | 5a281e615fd7aa779cef3ff3c812a6c0bb7828fa | Initial commit of Crowdin config file | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "crowdin_content.yaml",
"diff": "+#\n+# Your crowdin's credentials\n+#\n+\"project_identifier\": \"cs-unplugged\"\n+\"api_key_env\": CROWDIN_API_KEY\n+\"base_path\": \"\"\n+#\"base_url\" : \"\"\n+\n+#\n+# Choose file structure in crowdin\n+# e.g.... | Python | MIT License | uccser/cs-unplugged | Initial commit of Crowdin config file |
701,855 | 03.11.2017 18:51:55 | -46,800 | 1b64a99b375b7afe993196bacdf4f89f9d2fc33d | Add TextBoxDrawer utility class for resource text overlays | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "csunplugged/utils/TextBoxDrawer.py",
"diff": "+\"\"\"Module for TextBoxDrawer class.\"\"\"\n+\n+from PIL import ImageFont\n+import xml.etree.ElementTree as ET\n+\n+\n+class TextBox(object):\n+ \"\"\"Class to store position/dimensions of a text b... | Python | MIT License | uccser/cs-unplugged | Add TextBoxDrawer utility class for resource text overlays |
701,855 | 05.11.2017 12:55:56 | -46,800 | a7102c122f161fc1bc1306b424d2fcd323d7d32b | Modify multiline text rendering to more closely mimic AI textbox | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/utils/TextBoxDrawer.py",
"new_path": "csunplugged/utils/TextBoxDrawer.py",
"diff": "\"\"\"Module for TextBoxDrawer class.\"\"\"\nfrom PIL import ImageFont\n-import xml.etree.ElementTree as ET\n-\n+from lxml import etree as ET\nclass TextBox(object)... | Python | MIT License | uccser/cs-unplugged | Modify multiline text rendering to more closely mimic AI textbox |
701,855 | 05.11.2017 19:36:32 | -46,800 | d48722cda8ebfebe3510bad97ea6bd6e8dcd6cee | Improvements to TextBoxDrawer
Extraction of color/font/size information from svg
I18n: support for different language fonts, and bidi support
Fix line breaking to use language-independent algorithm | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/utils/TextBoxDrawer.py",
"new_path": "csunplugged/utils/TextBoxDrawer.py",
"diff": "\"\"\"Module for TextBoxDrawer class.\"\"\"\n+from django.utils.translation import get_language, get_language_bidi\nfrom PIL import ImageFont\nfrom lxml import etre... | Python | MIT License | uccser/cs-unplugged | Improvements to TextBoxDrawer
- Extraction of color/font/size information from svg
- I18n: support for different language fonts, and bidi support
- Fix line breaking to use language-independent algorithm |
701,855 | 05.11.2017 19:40:49 | -46,800 | 92c01be43b80247ce2233851dd74b041bb9d44b0 | Modify Barcode Checksum Poster resource to dynamically overlay text | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/resources/views/BarcodeChecksumPosterResourceGenerator.py",
"new_path": "csunplugged/resources/views/BarcodeChecksumPosterResourceGenerator.py",
"diff": "\"\"\"Class for Barcode Checksum Poster resource generator.\"\"\"\n-from PIL import Image\n+fr... | Python | MIT License | uccser/cs-unplugged | Modify Barcode Checksum Poster resource to dynamically overlay text |
701,855 | 05.11.2017 19:42:40 | -46,800 | b3e394a5db4c106e400451bfe786cdf76c7c95e8 | Add sample fonts for development of TextBoxDrawer
These fonts are not intended for production, and are for prototyping
i18n features of the resource generation process. | [
{
"change_type": "ADD",
"old_path": "csunplugged/static/fonts/DejaVuSans.ttf",
"new_path": "csunplugged/static/fonts/DejaVuSans.ttf",
"diff": "Binary files /dev/null and b/csunplugged/static/fonts/DejaVuSans.ttf differ\n"
},
{
"change_type": "ADD",
"old_path": "csunplugged/static/fonts/N... | Python | MIT License | uccser/cs-unplugged | Add sample fonts for development of TextBoxDrawer
These fonts are not intended for production, and are for prototyping
i18n features of the resource generation process. |
701,855 | 05.11.2017 19:48:13 | -46,800 | baea8641a3225f24cb608d3663895a377d4867b8 | Add sample assets for prototype of dynamic text field rendering | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/locale/de/LC_MESSAGES/django.po",
"new_path": "csunplugged/locale/de/LC_MESSAGES/django.po",
"diff": "@@ -21,3 +21,25 @@ msgstr \"\"\n#: topics/templates/topics/index.html:3\nmsgid \"Topics\"\nmsgstr \"Thema\"\n+\n+#: resources/views/BarcodeChecksu... | Python | MIT License | uccser/cs-unplugged | Add sample assets for prototype of dynamic text field rendering |
701,855 | 05.11.2017 19:51:05 | -46,800 | 6fbfed212d55b4aabe133172878d42fc1ab821b2 | Update requirements for implementation of dynamic text field rendering | [
{
"change_type": "MODIFY",
"old_path": "requirements/base.txt",
"new_path": "requirements/base.txt",
"diff": "@@ -7,6 +7,7 @@ wheel==0.30.0\n# Resources\nPillow==4.3.0\nyattag==1.9.2\n+tinycss==0.4\n# Markdown\nverto==0.6.1\n@@ -17,3 +18,11 @@ PyYAML==3.12\n# System tools\ntqdm==4.19.4\n+\n+# XML Pa... | Python | MIT License | uccser/cs-unplugged | Update requirements for implementation of dynamic text field rendering |
701,860 | 06.11.2017 15:03:41 | -46,800 | bf4dde90b58e5c9f6704384ecc30a52df3bc77b7 | Add animations for 'Sending rocket to Mars' (fixes | [
{
"change_type": "ADD",
"old_path": "csunplugged/static/img/topics/kidbots-rocket-2.gif",
"new_path": "csunplugged/static/img/topics/kidbots-rocket-2.gif",
"diff": "Binary files /dev/null and b/csunplugged/static/img/topics/kidbots-rocket-2.gif differ\n"
},
{
"change_type": "DELETE",
"ol... | Python | MIT License | uccser/cs-unplugged | Add animations for 'Sending rocket to Mars' (fixes #664) |
701,855 | 06.11.2017 15:21:39 | -46,800 | e8ba0da699e0620d9853d20c1505c695a536d319 | Modify extraction of SVG elements to be more tolerant to possible situations | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/utils/TextBoxDrawer.py",
"new_path": "csunplugged/utils/TextBoxDrawer.py",
"diff": "@@ -83,7 +83,11 @@ class TextBoxDrawer(object):\n\"\"\"\ntext_layer = self.svg.find('{http://www.w3.org/2000/svg}g[@id=\"text\"]')\ntext_elem = text_layer.find('{{h... | Python | MIT License | uccser/cs-unplugged | Modify extraction of SVG elements to be more tolerant to possible situations |
701,860 | 06.11.2017 17:46:23 | -46,800 | 70ba6bd717658b9edd28dd2be7f6c0489343b5de | Add animations needed for 'The Great Treasure Hunt (Unsorted)' (fixes | [
{
"change_type": "ADD",
"old_path": "csunplugged/static/img/topics/linear_search.gif",
"new_path": "csunplugged/static/img/topics/linear_search.gif",
"diff": "Binary files /dev/null and b/csunplugged/static/img/topics/linear_search.gif differ\n"
},
{
"change_type": "ADD",
"old_path": "cs... | Python | MIT License | uccser/cs-unplugged | Add animations needed for 'The Great Treasure Hunt (Unsorted)' (fixes #665) |
701,860 | 06.11.2017 18:30:56 | -46,800 | 9955aaa9a9676e60f0666e997897f2c9f0fb86b5 | Add image in The Great Treasure Hunt Unsorted lesson. (fixes | [
{
"change_type": "ADD",
"old_path": "csunplugged/static/img/topics/child_searches_book.png",
"new_path": "csunplugged/static/img/topics/child_searches_book.png",
"diff": "Binary files /dev/null and b/csunplugged/static/img/topics/child_searches_book.png differ\n"
}
] | Python | MIT License | uccser/cs-unplugged | Add image in The Great Treasure Hunt Unsorted lesson. (fixes #665) |
701,855 | 06.11.2017 19:16:06 | -46,800 | 1f0b1137e208f95511a43a1defe5bf6a85868eb1 | Add support for text box rotation in resource text overlay | [
{
"change_type": "MODIFY",
"old_path": "csunplugged/utils/TextBoxDrawer.py",
"new_path": "csunplugged/utils/TextBoxDrawer.py",
"diff": "\"\"\"Module for TextBoxDrawer class.\"\"\"\nfrom django.utils.translation import get_language, get_language_bidi\n-from PIL import ImageFont\n+from PIL import Imag... | Python | MIT License | uccser/cs-unplugged | Add support for text box rotation in resource text overlay |
701,860 | 07.11.2017 11:39:20 | -46,800 | f1a82f8255ab9eda92a77443dddc1b8205937f00 | Add documentation for media, especially animations. | [
{
"change_type": "MODIFY",
"old_path": "docs/source/developer/index.rst",
"new_path": "docs/source/developer/index.rst",
"diff": "@@ -12,6 +12,7 @@ The following pages are for those wanting to develop the CS Unplugged system.\nwebsite_design\ngeneral\ntopics\n+ media\nresources\ndev\ndeployment\n"
... | Python | MIT License | uccser/cs-unplugged | Add documentation for media, especially animations. |
701,860 | 07.11.2017 11:42:18 | -46,800 | d2e6891d91565be43d215a2f723219371a0b7202 | Fix link for ezgif | [
{
"change_type": "MODIFY",
"old_path": "docs/source/developer/media.rst",
"new_path": "docs/source/developer/media.rst",
"diff": "@@ -29,7 +29,7 @@ In this case, the animation must follow the rather convuluted SWF > MP4 > GIF pi\n1. The animation is exported in a .swf format in Adobe Animate.\n2. Th... | Python | MIT License | uccser/cs-unplugged | Fix link for ezgif |
701,860 | 07.11.2017 12:02:31 | -46,800 | 578ce2460a537775127af7ac025d1db37ef1cc8e | fix documentation based on requested changes | [
{
"change_type": "MODIFY",
"old_path": "docs/source/developer/media.rst",
"new_path": "docs/source/developer/media.rst",
"diff": "-Media Application\n+Media\n##############################################################################\n.. warning::\n@@ -15,8 +15,7 @@ Media Application\nAnimations\... | Python | MIT License | uccser/cs-unplugged | fix documentation based on requested changes |
701,860 | 07.11.2017 12:45:17 | -46,800 | d8cd20da3a21eae3deb5cdb1e5ff75b6191a1695 | add documentation fixes based on requested changes again | [
{
"change_type": "MODIFY",
"old_path": "docs/source/developer/media.rst",
"new_path": "docs/source/developer/media.rst",
"diff": "@@ -29,11 +29,3 @@ In this case, the animation must follow the rather convuluted SWF > MP4 > GIF pi\n1. The animation is exported in a .swf format in Adobe Animate.\n2. T... | Python | MIT License | uccser/cs-unplugged | add documentation fixes based on requested changes again |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.