diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15ee4f97..500e2aa2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,15 +57,15 @@ jobs: mkdir -p ~/bench-cache (cd && tar czf ~/bench-cache/bench.tgz frappe-bench) fi - - name: add community app to bench + - name: add school app to bench working-directory: /home/runner/frappe-bench - run: bench get-app community $GITHUB_WORKSPACE + run: bench get-app school $GITHUB_WORKSPACE - name: create bench site working-directory: /home/runner/frappe-bench run: bench new-site --mariadb-root-password root --admin-password admin frappe.local - - name: install community app + - name: install school app working-directory: /home/runner/frappe-bench - run: bench --verbose --site frappe.local install-app community + run: bench --verbose --site frappe.local install-app school - name: setup requirements working-directory: /home/runner/frappe-bench run: bench setup requirements --dev @@ -77,5 +77,5 @@ jobs: run: bench --site frappe.local build - name: run tests working-directory: /home/runner/frappe-bench - run: bench --site frappe.local run-tests --app community + run: bench --site frappe.local run-tests --app school diff --git a/.gitignore b/.gitignore index 222921e1..6b0bb2e7 100644 --- a/.gitignore +++ b/.gitignore @@ -3,8 +3,8 @@ *.egg-info *.swp tags -community/docs/current -community/public/dist +school/docs/current +school/public/dist __pycache__/ *.py[cod] *$py.class diff --git a/MANIFEST.in b/MANIFEST.in index 6f4d9265..75d82839 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,15 +4,15 @@ include *.json include *.md include *.py include *.txt -recursive-include community *.css -recursive-include community *.csv -recursive-include community *.html -recursive-include community *.ico -recursive-include community *.js -recursive-include community *.json -recursive-include community *.md -recursive-include community *.png -recursive-include community *.py -recursive-include community *.svg -recursive-include community *.txt -recursive-exclude community *.pyc \ No newline at end of file +recursive-include school *.css +recursive-include school *.csv +recursive-include school *.html +recursive-include school *.ico +recursive-include school *.js +recursive-include school *.json +recursive-include school *.md +recursive-include school *.png +recursive-include school *.py +recursive-include school *.svg +recursive-include school *.txt +recursive-exclude school *.pyc \ No newline at end of file diff --git a/README.md b/README.md index 4f9647cf..b4c00699 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## Community +## School This app helps people organize and manage their own communities. @@ -7,16 +7,16 @@ The App has following components: 1. Hackathons 1. LMS -Community is built on the [Frappe Framework](https://github.com/frappe/frappe), a full-stack web app framework built with Python & JavaScript. +School is built on the [Frappe Framework](https://github.com/frappe/frappe), a full-stack web app framework built with Python & JavaScript. ## Development Setup **Step 1:** Clone the repo ``` -$ git clone https://github.com/fossunited/community.git +$ git clone https://github.com/frappe/school.git -$ cd community +$ cd school ``` **Step 2:** Run docker-compose @@ -59,15 +59,15 @@ To setup the repository locally follow the steps mentioned below: 1. Install bench and setup a frappe-bench directory by following the [Installation Steps](https://frappeframework.com/docs/user/en/installation). 1. Start the server by running bench start. -1. In a separate terminal window, create a new site by running bench new-site community.test. -1. Run bench get-app https://github.com/fossunited/community. -1. Run bench --site community.test install-app community. -1. Map your site to localhost with the command ```bench --site community.test add-to-hosts``` -1. Now open the URL http://community.test:8000/ in your browser, you should see the app running. +1. In a separate terminal window, create a new site by running bench new-site school.test. +1. Run bench get-app https://github.com/frappe/school. +1. Run bench --site school.test install-app school. +1. Map your site to localhost with the command ```bench --site school.test add-to-hosts``` +1. Now open the URL http://school.test:8000/ in your browser, you should see the app running. ### Contribution Guidelines (for The Hard Way) -1. Go to the apps/community directory of your installation and execute git pull --unshallow to ensure that you have the full git repository. Also fork the fossunited/community repository on GitHub. +1. Go to the apps/school directory of your installation and execute git pull --unshallow to ensure that you have the full git repository. Also fork the frappe/school repository on GitHub. 1. Check out a working branch in git (e.g. git checkout -b my-new-branch). 1. Make your proposed changes to the source 1. Run your local version (e.g. bench start in your bench installation). Make sure that your changes work the way you want them to. diff --git a/docker-compose.yml b/docker-compose.yml index 48dde0f9..c2525759 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,9 +11,9 @@ services: bench: image: anandology/frappe-bench:2021.10 volumes: - - .:/opt/frappe-bench/apps/community + - .:/opt/frappe-bench/apps/school environment: - - FRAPPE_APPS=community + - FRAPPE_APPS=school - FRAPPE_ALLOW_TESTS=true - FRAPPE_SITE_NAME=frappe.localhost depends_on: diff --git a/community/__init__.py b/school/__init__.py similarity index 100% rename from community/__init__.py rename to school/__init__.py diff --git a/community/community/__init__.py b/school/community/__init__.py similarity index 100% rename from community/community/__init__.py rename to school/community/__init__.py diff --git a/community/community/doctype/__init__.py b/school/community/doctype/__init__.py similarity index 100% rename from community/community/doctype/__init__.py rename to school/community/doctype/__init__.py diff --git a/community/community/doctype/community_event/__init__.py b/school/community/doctype/community_event/__init__.py similarity index 100% rename from community/community/doctype/community_event/__init__.py rename to school/community/doctype/community_event/__init__.py diff --git a/community/community/doctype/community_event/community_event.js b/school/community/doctype/community_event/community_event.js similarity index 100% rename from community/community/doctype/community_event/community_event.js rename to school/community/doctype/community_event/community_event.js diff --git a/community/community/doctype/community_event/community_event.json b/school/community/doctype/community_event/community_event.json similarity index 100% rename from community/community/doctype/community_event/community_event.json rename to school/community/doctype/community_event/community_event.json diff --git a/community/community/doctype/community_event/community_event.py b/school/community/doctype/community_event/community_event.py similarity index 100% rename from community/community/doctype/community_event/community_event.py rename to school/community/doctype/community_event/community_event.py diff --git a/community/community/doctype/community_event/test_community_event.py b/school/community/doctype/community_event/test_community_event.py similarity index 100% rename from community/community/doctype/community_event/test_community_event.py rename to school/community/doctype/community_event/test_community_event.py diff --git a/community/community/doctype/community_event_volunteer/__init__.py b/school/community/doctype/community_event_volunteer/__init__.py similarity index 100% rename from community/community/doctype/community_event_volunteer/__init__.py rename to school/community/doctype/community_event_volunteer/__init__.py diff --git a/community/community/doctype/community_event_volunteer/community_event_volunteer.json b/school/community/doctype/community_event_volunteer/community_event_volunteer.json similarity index 100% rename from community/community/doctype/community_event_volunteer/community_event_volunteer.json rename to school/community/doctype/community_event_volunteer/community_event_volunteer.json diff --git a/community/community/doctype/community_event_volunteer/community_event_volunteer.py b/school/community/doctype/community_event_volunteer/community_event_volunteer.py similarity index 100% rename from community/community/doctype/community_event_volunteer/community_event_volunteer.py rename to school/community/doctype/community_event_volunteer/community_event_volunteer.py diff --git a/community/community/doctype/community_participant/__init__.py b/school/community/doctype/community_participant/__init__.py similarity index 100% rename from community/community/doctype/community_participant/__init__.py rename to school/community/doctype/community_participant/__init__.py diff --git a/community/community/doctype/community_participant/community_participant.js b/school/community/doctype/community_participant/community_participant.js similarity index 100% rename from community/community/doctype/community_participant/community_participant.js rename to school/community/doctype/community_participant/community_participant.js diff --git a/community/community/doctype/community_participant/community_participant.json b/school/community/doctype/community_participant/community_participant.json similarity index 100% rename from community/community/doctype/community_participant/community_participant.json rename to school/community/doctype/community_participant/community_participant.json diff --git a/community/community/doctype/community_participant/community_participant.py b/school/community/doctype/community_participant/community_participant.py similarity index 100% rename from community/community/doctype/community_participant/community_participant.py rename to school/community/doctype/community_participant/community_participant.py diff --git a/community/community/doctype/community_participant/test_community_participant.py b/school/community/doctype/community_participant/test_community_participant.py similarity index 100% rename from community/community/doctype/community_participant/test_community_participant.py rename to school/community/doctype/community_participant/test_community_participant.py diff --git a/community/community/doctype/community_speaker/__init__.py b/school/community/doctype/community_speaker/__init__.py similarity index 100% rename from community/community/doctype/community_speaker/__init__.py rename to school/community/doctype/community_speaker/__init__.py diff --git a/community/community/doctype/community_speaker/community_speaker.js b/school/community/doctype/community_speaker/community_speaker.js similarity index 100% rename from community/community/doctype/community_speaker/community_speaker.js rename to school/community/doctype/community_speaker/community_speaker.js diff --git a/community/community/doctype/community_speaker/community_speaker.json b/school/community/doctype/community_speaker/community_speaker.json similarity index 100% rename from community/community/doctype/community_speaker/community_speaker.json rename to school/community/doctype/community_speaker/community_speaker.json diff --git a/community/community/doctype/community_speaker/community_speaker.py b/school/community/doctype/community_speaker/community_speaker.py similarity index 100% rename from community/community/doctype/community_speaker/community_speaker.py rename to school/community/doctype/community_speaker/community_speaker.py diff --git a/community/community/doctype/community_speaker/test_community_speaker.py b/school/community/doctype/community_speaker/test_community_speaker.py similarity index 100% rename from community/community/doctype/community_speaker/test_community_speaker.py rename to school/community/doctype/community_speaker/test_community_speaker.py diff --git a/community/community/doctype/community_sponsor/__init__.py b/school/community/doctype/community_sponsor/__init__.py similarity index 100% rename from community/community/doctype/community_sponsor/__init__.py rename to school/community/doctype/community_sponsor/__init__.py diff --git a/community/community/doctype/community_sponsor/community_sponsor.js b/school/community/doctype/community_sponsor/community_sponsor.js similarity index 100% rename from community/community/doctype/community_sponsor/community_sponsor.js rename to school/community/doctype/community_sponsor/community_sponsor.js diff --git a/community/community/doctype/community_sponsor/community_sponsor.json b/school/community/doctype/community_sponsor/community_sponsor.json similarity index 100% rename from community/community/doctype/community_sponsor/community_sponsor.json rename to school/community/doctype/community_sponsor/community_sponsor.json diff --git a/community/community/doctype/community_sponsor/community_sponsor.py b/school/community/doctype/community_sponsor/community_sponsor.py similarity index 100% rename from community/community/doctype/community_sponsor/community_sponsor.py rename to school/community/doctype/community_sponsor/community_sponsor.py diff --git a/community/community/doctype/community_sponsor/test_community_sponsor.py b/school/community/doctype/community_sponsor/test_community_sponsor.py similarity index 100% rename from community/community/doctype/community_sponsor/test_community_sponsor.py rename to school/community/doctype/community_sponsor/test_community_sponsor.py diff --git a/community/community/doctype/community_talk/__init__.py b/school/community/doctype/community_talk/__init__.py similarity index 100% rename from community/community/doctype/community_talk/__init__.py rename to school/community/doctype/community_talk/__init__.py diff --git a/community/community/doctype/community_talk/community_talk.js b/school/community/doctype/community_talk/community_talk.js similarity index 100% rename from community/community/doctype/community_talk/community_talk.js rename to school/community/doctype/community_talk/community_talk.js diff --git a/community/community/doctype/community_talk/community_talk.json b/school/community/doctype/community_talk/community_talk.json similarity index 100% rename from community/community/doctype/community_talk/community_talk.json rename to school/community/doctype/community_talk/community_talk.json diff --git a/community/community/doctype/community_talk/community_talk.py b/school/community/doctype/community_talk/community_talk.py similarity index 100% rename from community/community/doctype/community_talk/community_talk.py rename to school/community/doctype/community_talk/community_talk.py diff --git a/community/community/doctype/community_talk/test_community_talk.py b/school/community/doctype/community_talk/test_community_talk.py similarity index 100% rename from community/community/doctype/community_talk/test_community_talk.py rename to school/community/doctype/community_talk/test_community_talk.py diff --git a/community/community/doctype/tshirt_sizes/__init__.py b/school/community/doctype/tshirt_sizes/__init__.py similarity index 100% rename from community/community/doctype/tshirt_sizes/__init__.py rename to school/community/doctype/tshirt_sizes/__init__.py diff --git a/community/community/doctype/tshirt_sizes/test_tshirt_sizes.py b/school/community/doctype/tshirt_sizes/test_tshirt_sizes.py similarity index 100% rename from community/community/doctype/tshirt_sizes/test_tshirt_sizes.py rename to school/community/doctype/tshirt_sizes/test_tshirt_sizes.py diff --git a/community/community/doctype/tshirt_sizes/tshirt_sizes.js b/school/community/doctype/tshirt_sizes/tshirt_sizes.js similarity index 100% rename from community/community/doctype/tshirt_sizes/tshirt_sizes.js rename to school/community/doctype/tshirt_sizes/tshirt_sizes.js diff --git a/community/community/doctype/tshirt_sizes/tshirt_sizes.json b/school/community/doctype/tshirt_sizes/tshirt_sizes.json similarity index 100% rename from community/community/doctype/tshirt_sizes/tshirt_sizes.json rename to school/community/doctype/tshirt_sizes/tshirt_sizes.json diff --git a/community/community/doctype/tshirt_sizes/tshirt_sizes.py b/school/community/doctype/tshirt_sizes/tshirt_sizes.py similarity index 100% rename from community/community/doctype/tshirt_sizes/tshirt_sizes.py rename to school/community/doctype/tshirt_sizes/tshirt_sizes.py diff --git a/community/community/utils.py b/school/community/utils.py similarity index 100% rename from community/community/utils.py rename to school/community/utils.py diff --git a/community/community/web_form/__init__.py b/school/community/web_form/__init__.py similarity index 100% rename from community/community/web_form/__init__.py rename to school/community/web_form/__init__.py diff --git a/community/community/web_form/join_request/__init__.py b/school/community/web_form/join_request/__init__.py similarity index 100% rename from community/community/web_form/join_request/__init__.py rename to school/community/web_form/join_request/__init__.py diff --git a/community/community/web_form/join_request/join_request.js b/school/community/web_form/join_request/join_request.js similarity index 100% rename from community/community/web_form/join_request/join_request.js rename to school/community/web_form/join_request/join_request.js diff --git a/community/community/web_form/join_request/join_request.json b/school/community/web_form/join_request/join_request.json similarity index 100% rename from community/community/web_form/join_request/join_request.json rename to school/community/web_form/join_request/join_request.json diff --git a/community/community/web_form/join_request/join_request.py b/school/community/web_form/join_request/join_request.py similarity index 100% rename from community/community/web_form/join_request/join_request.py rename to school/community/web_form/join_request/join_request.py diff --git a/community/community/web_form/project_update/__init__.py b/school/community/web_form/project_update/__init__.py similarity index 100% rename from community/community/web_form/project_update/__init__.py rename to school/community/web_form/project_update/__init__.py diff --git a/community/community/web_form/project_update/project_update.js b/school/community/web_form/project_update/project_update.js similarity index 100% rename from community/community/web_form/project_update/project_update.js rename to school/community/web_form/project_update/project_update.js diff --git a/community/community/web_form/project_update/project_update.json b/school/community/web_form/project_update/project_update.json similarity index 100% rename from community/community/web_form/project_update/project_update.json rename to school/community/web_form/project_update/project_update.json diff --git a/community/community/web_form/project_update/project_update.py b/school/community/web_form/project_update/project_update.py similarity index 100% rename from community/community/web_form/project_update/project_update.py rename to school/community/web_form/project_update/project_update.py diff --git a/community/community/web_template/__init__.py b/school/community/web_template/__init__.py similarity index 100% rename from community/community/web_template/__init__.py rename to school/community/web_template/__init__.py diff --git a/community/community/widgets/Avatar.html b/school/community/widgets/Avatar.html similarity index 100% rename from community/community/widgets/Avatar.html rename to school/community/widgets/Avatar.html diff --git a/community/conference/__init__.py b/school/conference/__init__.py similarity index 100% rename from community/conference/__init__.py rename to school/conference/__init__.py diff --git a/community/conference/doctype/__init__.py b/school/conference/doctype/__init__.py similarity index 100% rename from community/conference/doctype/__init__.py rename to school/conference/doctype/__init__.py diff --git a/community/conference/doctype/community_conference/__init__.py b/school/conference/doctype/community_conference/__init__.py similarity index 100% rename from community/conference/doctype/community_conference/__init__.py rename to school/conference/doctype/community_conference/__init__.py diff --git a/community/conference/doctype/community_conference/community_conference.js b/school/conference/doctype/community_conference/community_conference.js similarity index 100% rename from community/conference/doctype/community_conference/community_conference.js rename to school/conference/doctype/community_conference/community_conference.js diff --git a/community/conference/doctype/community_conference/community_conference.json b/school/conference/doctype/community_conference/community_conference.json similarity index 100% rename from community/conference/doctype/community_conference/community_conference.json rename to school/conference/doctype/community_conference/community_conference.json diff --git a/community/conference/doctype/community_conference/community_conference.py b/school/conference/doctype/community_conference/community_conference.py similarity index 100% rename from community/conference/doctype/community_conference/community_conference.py rename to school/conference/doctype/community_conference/community_conference.py diff --git a/community/conference/doctype/community_conference/test_community_conference.py b/school/conference/doctype/community_conference/test_community_conference.py similarity index 100% rename from community/conference/doctype/community_conference/test_community_conference.py rename to school/conference/doctype/community_conference/test_community_conference.py diff --git a/community/conference/doctype/community_conference_participant/__init__.py b/school/conference/doctype/community_conference_participant/__init__.py similarity index 100% rename from community/conference/doctype/community_conference_participant/__init__.py rename to school/conference/doctype/community_conference_participant/__init__.py diff --git a/community/conference/doctype/community_conference_participant/community_conference_participant.js b/school/conference/doctype/community_conference_participant/community_conference_participant.js similarity index 100% rename from community/conference/doctype/community_conference_participant/community_conference_participant.js rename to school/conference/doctype/community_conference_participant/community_conference_participant.js diff --git a/community/conference/doctype/community_conference_participant/community_conference_participant.json b/school/conference/doctype/community_conference_participant/community_conference_participant.json similarity index 100% rename from community/conference/doctype/community_conference_participant/community_conference_participant.json rename to school/conference/doctype/community_conference_participant/community_conference_participant.json diff --git a/community/conference/doctype/community_conference_participant/community_conference_participant.py b/school/conference/doctype/community_conference_participant/community_conference_participant.py similarity index 100% rename from community/conference/doctype/community_conference_participant/community_conference_participant.py rename to school/conference/doctype/community_conference_participant/community_conference_participant.py diff --git a/community/conference/doctype/community_conference_participant/test_community_conference_participant.py b/school/conference/doctype/community_conference_participant/test_community_conference_participant.py similarity index 100% rename from community/conference/doctype/community_conference_participant/test_community_conference_participant.py rename to school/conference/doctype/community_conference_participant/test_community_conference_participant.py diff --git a/community/conference/doctype/community_conference_request/__init__.py b/school/conference/doctype/community_conference_request/__init__.py similarity index 100% rename from community/conference/doctype/community_conference_request/__init__.py rename to school/conference/doctype/community_conference_request/__init__.py diff --git a/community/conference/doctype/community_conference_request/community_conference_request.js b/school/conference/doctype/community_conference_request/community_conference_request.js similarity index 100% rename from community/conference/doctype/community_conference_request/community_conference_request.js rename to school/conference/doctype/community_conference_request/community_conference_request.js diff --git a/community/conference/doctype/community_conference_request/community_conference_request.json b/school/conference/doctype/community_conference_request/community_conference_request.json similarity index 100% rename from community/conference/doctype/community_conference_request/community_conference_request.json rename to school/conference/doctype/community_conference_request/community_conference_request.json diff --git a/community/conference/doctype/community_conference_request/community_conference_request.py b/school/conference/doctype/community_conference_request/community_conference_request.py similarity index 100% rename from community/conference/doctype/community_conference_request/community_conference_request.py rename to school/conference/doctype/community_conference_request/community_conference_request.py diff --git a/community/conference/doctype/community_conference_request/test_community_conference_request.py b/school/conference/doctype/community_conference_request/test_community_conference_request.py similarity index 100% rename from community/conference/doctype/community_conference_request/test_community_conference_request.py rename to school/conference/doctype/community_conference_request/test_community_conference_request.py diff --git a/community/config/__init__.py b/school/config/__init__.py similarity index 100% rename from community/config/__init__.py rename to school/config/__init__.py diff --git a/community/config/desktop.py b/school/config/desktop.py similarity index 100% rename from community/config/desktop.py rename to school/config/desktop.py diff --git a/community/config/docs.py b/school/config/docs.py similarity index 100% rename from community/config/docs.py rename to school/config/docs.py diff --git a/community/event_management/__init__.py b/school/event_management/__init__.py similarity index 100% rename from community/event_management/__init__.py rename to school/event_management/__init__.py diff --git a/community/event_management/doctype/__init__.py b/school/event_management/doctype/__init__.py similarity index 100% rename from community/event_management/doctype/__init__.py rename to school/event_management/doctype/__init__.py diff --git a/community/event_management/doctype/attendee/__init__.py b/school/event_management/doctype/attendee/__init__.py similarity index 100% rename from community/event_management/doctype/attendee/__init__.py rename to school/event_management/doctype/attendee/__init__.py diff --git a/community/event_management/doctype/attendee/attendee.js b/school/event_management/doctype/attendee/attendee.js similarity index 100% rename from community/event_management/doctype/attendee/attendee.js rename to school/event_management/doctype/attendee/attendee.js diff --git a/community/event_management/doctype/attendee/attendee.json b/school/event_management/doctype/attendee/attendee.json similarity index 100% rename from community/event_management/doctype/attendee/attendee.json rename to school/event_management/doctype/attendee/attendee.json diff --git a/community/event_management/doctype/attendee/attendee.py b/school/event_management/doctype/attendee/attendee.py similarity index 100% rename from community/event_management/doctype/attendee/attendee.py rename to school/event_management/doctype/attendee/attendee.py diff --git a/community/event_management/doctype/attendee/test_attendee.py b/school/event_management/doctype/attendee/test_attendee.py similarity index 100% rename from community/event_management/doctype/attendee/test_attendee.py rename to school/event_management/doctype/attendee/test_attendee.py diff --git a/community/event_management/doctype/event_details/__init__.py b/school/event_management/doctype/event_details/__init__.py similarity index 100% rename from community/event_management/doctype/event_details/__init__.py rename to school/event_management/doctype/event_details/__init__.py diff --git a/community/event_management/doctype/event_details/event_details.js b/school/event_management/doctype/event_details/event_details.js similarity index 100% rename from community/event_management/doctype/event_details/event_details.js rename to school/event_management/doctype/event_details/event_details.js diff --git a/community/event_management/doctype/event_details/event_details.json b/school/event_management/doctype/event_details/event_details.json similarity index 100% rename from community/event_management/doctype/event_details/event_details.json rename to school/event_management/doctype/event_details/event_details.json diff --git a/community/event_management/doctype/event_details/event_details.py b/school/event_management/doctype/event_details/event_details.py similarity index 100% rename from community/event_management/doctype/event_details/event_details.py rename to school/event_management/doctype/event_details/event_details.py diff --git a/community/event_management/doctype/event_details/test_event_details.py b/school/event_management/doctype/event_details/test_event_details.py similarity index 100% rename from community/event_management/doctype/event_details/test_event_details.py rename to school/event_management/doctype/event_details/test_event_details.py diff --git a/community/event_management/doctype/event_ticket/__init__.py b/school/event_management/doctype/event_ticket/__init__.py similarity index 100% rename from community/event_management/doctype/event_ticket/__init__.py rename to school/event_management/doctype/event_ticket/__init__.py diff --git a/community/event_management/doctype/event_ticket/event_ticket.js b/school/event_management/doctype/event_ticket/event_ticket.js similarity index 100% rename from community/event_management/doctype/event_ticket/event_ticket.js rename to school/event_management/doctype/event_ticket/event_ticket.js diff --git a/community/event_management/doctype/event_ticket/event_ticket.json b/school/event_management/doctype/event_ticket/event_ticket.json similarity index 100% rename from community/event_management/doctype/event_ticket/event_ticket.json rename to school/event_management/doctype/event_ticket/event_ticket.json diff --git a/community/event_management/doctype/event_ticket/event_ticket.py b/school/event_management/doctype/event_ticket/event_ticket.py similarity index 100% rename from community/event_management/doctype/event_ticket/event_ticket.py rename to school/event_management/doctype/event_ticket/event_ticket.py diff --git a/community/event_management/doctype/event_ticket/test_event_ticket.py b/school/event_management/doctype/event_ticket/test_event_ticket.py similarity index 100% rename from community/event_management/doctype/event_ticket/test_event_ticket.py rename to school/event_management/doctype/event_ticket/test_event_ticket.py diff --git a/community/event_management/doctype/exhibitor/__init__.py b/school/event_management/doctype/exhibitor/__init__.py similarity index 100% rename from community/event_management/doctype/exhibitor/__init__.py rename to school/event_management/doctype/exhibitor/__init__.py diff --git a/community/event_management/doctype/exhibitor/exhibitor.js b/school/event_management/doctype/exhibitor/exhibitor.js similarity index 100% rename from community/event_management/doctype/exhibitor/exhibitor.js rename to school/event_management/doctype/exhibitor/exhibitor.js diff --git a/community/event_management/doctype/exhibitor/exhibitor.json b/school/event_management/doctype/exhibitor/exhibitor.json similarity index 100% rename from community/event_management/doctype/exhibitor/exhibitor.json rename to school/event_management/doctype/exhibitor/exhibitor.json diff --git a/community/event_management/doctype/exhibitor/exhibitor.py b/school/event_management/doctype/exhibitor/exhibitor.py similarity index 100% rename from community/event_management/doctype/exhibitor/exhibitor.py rename to school/event_management/doctype/exhibitor/exhibitor.py diff --git a/community/event_management/doctype/exhibitor/test_exhibitor.py b/school/event_management/doctype/exhibitor/test_exhibitor.py similarity index 100% rename from community/event_management/doctype/exhibitor/test_exhibitor.py rename to school/event_management/doctype/exhibitor/test_exhibitor.py diff --git a/community/event_management/doctype/host/__init__.py b/school/event_management/doctype/host/__init__.py similarity index 100% rename from community/event_management/doctype/host/__init__.py rename to school/event_management/doctype/host/__init__.py diff --git a/community/event_management/doctype/host/host.js b/school/event_management/doctype/host/host.js similarity index 100% rename from community/event_management/doctype/host/host.js rename to school/event_management/doctype/host/host.js diff --git a/community/event_management/doctype/host/host.json b/school/event_management/doctype/host/host.json similarity index 100% rename from community/event_management/doctype/host/host.json rename to school/event_management/doctype/host/host.json diff --git a/community/event_management/doctype/host/host.py b/school/event_management/doctype/host/host.py similarity index 100% rename from community/event_management/doctype/host/host.py rename to school/event_management/doctype/host/host.py diff --git a/community/event_management/doctype/host/test_host.py b/school/event_management/doctype/host/test_host.py similarity index 100% rename from community/event_management/doctype/host/test_host.py rename to school/event_management/doctype/host/test_host.py diff --git a/community/event_management/doctype/speaker/__init__.py b/school/event_management/doctype/speaker/__init__.py similarity index 100% rename from community/event_management/doctype/speaker/__init__.py rename to school/event_management/doctype/speaker/__init__.py diff --git a/community/event_management/doctype/speaker/speaker.js b/school/event_management/doctype/speaker/speaker.js similarity index 100% rename from community/event_management/doctype/speaker/speaker.js rename to school/event_management/doctype/speaker/speaker.js diff --git a/community/event_management/doctype/speaker/speaker.json b/school/event_management/doctype/speaker/speaker.json similarity index 100% rename from community/event_management/doctype/speaker/speaker.json rename to school/event_management/doctype/speaker/speaker.json diff --git a/community/event_management/doctype/speaker/speaker.py b/school/event_management/doctype/speaker/speaker.py similarity index 100% rename from community/event_management/doctype/speaker/speaker.py rename to school/event_management/doctype/speaker/speaker.py diff --git a/community/event_management/doctype/speaker/test_speaker.py b/school/event_management/doctype/speaker/test_speaker.py similarity index 100% rename from community/event_management/doctype/speaker/test_speaker.py rename to school/event_management/doctype/speaker/test_speaker.py diff --git a/community/event_management/doctype/talk/__init__.py b/school/event_management/doctype/talk/__init__.py similarity index 100% rename from community/event_management/doctype/talk/__init__.py rename to school/event_management/doctype/talk/__init__.py diff --git a/community/event_management/doctype/talk/talk.js b/school/event_management/doctype/talk/talk.js similarity index 100% rename from community/event_management/doctype/talk/talk.js rename to school/event_management/doctype/talk/talk.js diff --git a/community/event_management/doctype/talk/talk.json b/school/event_management/doctype/talk/talk.json similarity index 100% rename from community/event_management/doctype/talk/talk.json rename to school/event_management/doctype/talk/talk.json diff --git a/community/event_management/doctype/talk/talk.py b/school/event_management/doctype/talk/talk.py similarity index 100% rename from community/event_management/doctype/talk/talk.py rename to school/event_management/doctype/talk/talk.py diff --git a/community/event_management/doctype/talk/test_talk.py b/school/event_management/doctype/talk/test_talk.py similarity index 100% rename from community/event_management/doctype/talk/test_talk.py rename to school/event_management/doctype/talk/test_talk.py diff --git a/community/event_management/web_form/__init__.py b/school/event_management/web_form/__init__.py similarity index 100% rename from community/event_management/web_form/__init__.py rename to school/event_management/web_form/__init__.py diff --git a/community/event_management/web_form/attendee_registration/__init__.py b/school/event_management/web_form/attendee_registration/__init__.py similarity index 100% rename from community/event_management/web_form/attendee_registration/__init__.py rename to school/event_management/web_form/attendee_registration/__init__.py diff --git a/community/event_management/web_form/attendee_registration/attendee_registration.js b/school/event_management/web_form/attendee_registration/attendee_registration.js similarity index 100% rename from community/event_management/web_form/attendee_registration/attendee_registration.js rename to school/event_management/web_form/attendee_registration/attendee_registration.js diff --git a/community/event_management/web_form/attendee_registration/attendee_registration.json b/school/event_management/web_form/attendee_registration/attendee_registration.json similarity index 100% rename from community/event_management/web_form/attendee_registration/attendee_registration.json rename to school/event_management/web_form/attendee_registration/attendee_registration.json diff --git a/community/event_management/web_form/attendee_registration/attendee_registration.py b/school/event_management/web_form/attendee_registration/attendee_registration.py similarity index 100% rename from community/event_management/web_form/attendee_registration/attendee_registration.py rename to school/event_management/web_form/attendee_registration/attendee_registration.py diff --git a/community/event_management/web_form/exhibitor_registration/__init__.py b/school/event_management/web_form/exhibitor_registration/__init__.py similarity index 100% rename from community/event_management/web_form/exhibitor_registration/__init__.py rename to school/event_management/web_form/exhibitor_registration/__init__.py diff --git a/community/event_management/web_form/exhibitor_registration/exhibitor_registration.js b/school/event_management/web_form/exhibitor_registration/exhibitor_registration.js similarity index 100% rename from community/event_management/web_form/exhibitor_registration/exhibitor_registration.js rename to school/event_management/web_form/exhibitor_registration/exhibitor_registration.js diff --git a/community/event_management/web_form/exhibitor_registration/exhibitor_registration.json b/school/event_management/web_form/exhibitor_registration/exhibitor_registration.json similarity index 100% rename from community/event_management/web_form/exhibitor_registration/exhibitor_registration.json rename to school/event_management/web_form/exhibitor_registration/exhibitor_registration.json diff --git a/community/event_management/web_form/exhibitor_registration/exhibitor_registration.py b/school/event_management/web_form/exhibitor_registration/exhibitor_registration.py similarity index 100% rename from community/event_management/web_form/exhibitor_registration/exhibitor_registration.py rename to school/event_management/web_form/exhibitor_registration/exhibitor_registration.py diff --git a/community/event_management/web_form/purpose_a_talk/__init__.py b/school/event_management/web_form/purpose_a_talk/__init__.py similarity index 100% rename from community/event_management/web_form/purpose_a_talk/__init__.py rename to school/event_management/web_form/purpose_a_talk/__init__.py diff --git a/community/event_management/web_form/purpose_a_talk/purpose_a_talk.js b/school/event_management/web_form/purpose_a_talk/purpose_a_talk.js similarity index 100% rename from community/event_management/web_form/purpose_a_talk/purpose_a_talk.js rename to school/event_management/web_form/purpose_a_talk/purpose_a_talk.js diff --git a/community/event_management/web_form/purpose_a_talk/purpose_a_talk.json b/school/event_management/web_form/purpose_a_talk/purpose_a_talk.json similarity index 100% rename from community/event_management/web_form/purpose_a_talk/purpose_a_talk.json rename to school/event_management/web_form/purpose_a_talk/purpose_a_talk.json diff --git a/community/event_management/web_form/purpose_a_talk/purpose_a_talk.py b/school/event_management/web_form/purpose_a_talk/purpose_a_talk.py similarity index 100% rename from community/event_management/web_form/purpose_a_talk/purpose_a_talk.py rename to school/event_management/web_form/purpose_a_talk/purpose_a_talk.py diff --git a/community/event_management/web_form/speaker_registration/__init__.py b/school/event_management/web_form/speaker_registration/__init__.py similarity index 100% rename from community/event_management/web_form/speaker_registration/__init__.py rename to school/event_management/web_form/speaker_registration/__init__.py diff --git a/community/event_management/web_form/speaker_registration/speaker_registration.js b/school/event_management/web_form/speaker_registration/speaker_registration.js similarity index 100% rename from community/event_management/web_form/speaker_registration/speaker_registration.js rename to school/event_management/web_form/speaker_registration/speaker_registration.js diff --git a/community/event_management/web_form/speaker_registration/speaker_registration.json b/school/event_management/web_form/speaker_registration/speaker_registration.json similarity index 100% rename from community/event_management/web_form/speaker_registration/speaker_registration.json rename to school/event_management/web_form/speaker_registration/speaker_registration.json diff --git a/community/event_management/web_form/speaker_registration/speaker_registration.py b/school/event_management/web_form/speaker_registration/speaker_registration.py similarity index 100% rename from community/event_management/web_form/speaker_registration/speaker_registration.py rename to school/event_management/web_form/speaker_registration/speaker_registration.py diff --git a/community/event_management/web_template/__init__.py b/school/event_management/web_template/__init__.py similarity index 100% rename from community/event_management/web_template/__init__.py rename to school/event_management/web_template/__init__.py diff --git a/community/event_management/web_template/exhibitor_section/__init__.py b/school/event_management/web_template/exhibitor_section/__init__.py similarity index 100% rename from community/event_management/web_template/exhibitor_section/__init__.py rename to school/event_management/web_template/exhibitor_section/__init__.py diff --git a/community/event_management/web_template/exhibitor_section/exhibitor_section.html b/school/event_management/web_template/exhibitor_section/exhibitor_section.html similarity index 100% rename from community/event_management/web_template/exhibitor_section/exhibitor_section.html rename to school/event_management/web_template/exhibitor_section/exhibitor_section.html diff --git a/community/event_management/web_template/exhibitor_section/exhibitor_section.json b/school/event_management/web_template/exhibitor_section/exhibitor_section.json similarity index 100% rename from community/event_management/web_template/exhibitor_section/exhibitor_section.json rename to school/event_management/web_template/exhibitor_section/exhibitor_section.json diff --git a/community/event_management/web_template/host_section/__init__.py b/school/event_management/web_template/host_section/__init__.py similarity index 100% rename from community/event_management/web_template/host_section/__init__.py rename to school/event_management/web_template/host_section/__init__.py diff --git a/community/event_management/web_template/host_section/host_section.html b/school/event_management/web_template/host_section/host_section.html similarity index 100% rename from community/event_management/web_template/host_section/host_section.html rename to school/event_management/web_template/host_section/host_section.html diff --git a/community/event_management/web_template/host_section/host_section.json b/school/event_management/web_template/host_section/host_section.json similarity index 100% rename from community/event_management/web_template/host_section/host_section.json rename to school/event_management/web_template/host_section/host_section.json diff --git a/community/event_management/web_template/speaker_section/__init__.py b/school/event_management/web_template/speaker_section/__init__.py similarity index 100% rename from community/event_management/web_template/speaker_section/__init__.py rename to school/event_management/web_template/speaker_section/__init__.py diff --git a/community/event_management/web_template/speaker_section/speaker_section.html b/school/event_management/web_template/speaker_section/speaker_section.html similarity index 100% rename from community/event_management/web_template/speaker_section/speaker_section.html rename to school/event_management/web_template/speaker_section/speaker_section.html diff --git a/community/event_management/web_template/speaker_section/speaker_section.json b/school/event_management/web_template/speaker_section/speaker_section.json similarity index 100% rename from community/event_management/web_template/speaker_section/speaker_section.json rename to school/event_management/web_template/speaker_section/speaker_section.json diff --git a/community/event_management/web_template/talk_section/__init__.py b/school/event_management/web_template/talk_section/__init__.py similarity index 100% rename from community/event_management/web_template/talk_section/__init__.py rename to school/event_management/web_template/talk_section/__init__.py diff --git a/community/event_management/web_template/talk_section/talk_section.html b/school/event_management/web_template/talk_section/talk_section.html similarity index 100% rename from community/event_management/web_template/talk_section/talk_section.html rename to school/event_management/web_template/talk_section/talk_section.html diff --git a/community/event_management/web_template/talk_section/talk_section.json b/school/event_management/web_template/talk_section/talk_section.json similarity index 100% rename from community/event_management/web_template/talk_section/talk_section.json rename to school/event_management/web_template/talk_section/talk_section.json diff --git a/community/fixtures/custom_field.json b/school/fixtures/custom_field.json similarity index 100% rename from community/fixtures/custom_field.json rename to school/fixtures/custom_field.json diff --git a/community/hackathon/README.md b/school/hackathon/README.md similarity index 100% rename from community/hackathon/README.md rename to school/hackathon/README.md diff --git a/community/hackathon/__init__.py b/school/hackathon/__init__.py similarity index 100% rename from community/hackathon/__init__.py rename to school/hackathon/__init__.py diff --git a/community/hackathon/doctype/__init__.py b/school/hackathon/doctype/__init__.py similarity index 100% rename from community/hackathon/doctype/__init__.py rename to school/hackathon/doctype/__init__.py diff --git a/community/hackathon/doctype/community_hackathon/__init__.py b/school/hackathon/doctype/community_hackathon/__init__.py similarity index 100% rename from community/hackathon/doctype/community_hackathon/__init__.py rename to school/hackathon/doctype/community_hackathon/__init__.py diff --git a/community/hackathon/doctype/community_hackathon/community_hackathon.js b/school/hackathon/doctype/community_hackathon/community_hackathon.js similarity index 100% rename from community/hackathon/doctype/community_hackathon/community_hackathon.js rename to school/hackathon/doctype/community_hackathon/community_hackathon.js diff --git a/community/hackathon/doctype/community_hackathon/community_hackathon.json b/school/hackathon/doctype/community_hackathon/community_hackathon.json similarity index 100% rename from community/hackathon/doctype/community_hackathon/community_hackathon.json rename to school/hackathon/doctype/community_hackathon/community_hackathon.json diff --git a/community/hackathon/doctype/community_hackathon/community_hackathon.py b/school/hackathon/doctype/community_hackathon/community_hackathon.py similarity index 100% rename from community/hackathon/doctype/community_hackathon/community_hackathon.py rename to school/hackathon/doctype/community_hackathon/community_hackathon.py diff --git a/community/hackathon/doctype/community_hackathon/test_community_hackathon.py b/school/hackathon/doctype/community_hackathon/test_community_hackathon.py similarity index 100% rename from community/hackathon/doctype/community_hackathon/test_community_hackathon.py rename to school/hackathon/doctype/community_hackathon/test_community_hackathon.py diff --git a/community/hackathon/doctype/community_project/__init__.py b/school/hackathon/doctype/community_project/__init__.py similarity index 100% rename from community/hackathon/doctype/community_project/__init__.py rename to school/hackathon/doctype/community_project/__init__.py diff --git a/community/hackathon/doctype/community_project/community_project.js b/school/hackathon/doctype/community_project/community_project.js similarity index 100% rename from community/hackathon/doctype/community_project/community_project.js rename to school/hackathon/doctype/community_project/community_project.js diff --git a/community/hackathon/doctype/community_project/community_project.json b/school/hackathon/doctype/community_project/community_project.json similarity index 100% rename from community/hackathon/doctype/community_project/community_project.json rename to school/hackathon/doctype/community_project/community_project.json diff --git a/community/hackathon/doctype/community_project/community_project.py b/school/hackathon/doctype/community_project/community_project.py similarity index 100% rename from community/hackathon/doctype/community_project/community_project.py rename to school/hackathon/doctype/community_project/community_project.py diff --git a/community/hackathon/doctype/community_project/test_community_project.py b/school/hackathon/doctype/community_project/test_community_project.py similarity index 100% rename from community/hackathon/doctype/community_project/test_community_project.py rename to school/hackathon/doctype/community_project/test_community_project.py diff --git a/community/hackathon/doctype/community_project_evaluation/__init__.py b/school/hackathon/doctype/community_project_evaluation/__init__.py similarity index 100% rename from community/hackathon/doctype/community_project_evaluation/__init__.py rename to school/hackathon/doctype/community_project_evaluation/__init__.py diff --git a/community/hackathon/doctype/community_project_evaluation/community_project_evaluation.js b/school/hackathon/doctype/community_project_evaluation/community_project_evaluation.js similarity index 100% rename from community/hackathon/doctype/community_project_evaluation/community_project_evaluation.js rename to school/hackathon/doctype/community_project_evaluation/community_project_evaluation.js diff --git a/community/hackathon/doctype/community_project_evaluation/community_project_evaluation.json b/school/hackathon/doctype/community_project_evaluation/community_project_evaluation.json similarity index 100% rename from community/hackathon/doctype/community_project_evaluation/community_project_evaluation.json rename to school/hackathon/doctype/community_project_evaluation/community_project_evaluation.json diff --git a/community/hackathon/doctype/community_project_evaluation/community_project_evaluation.py b/school/hackathon/doctype/community_project_evaluation/community_project_evaluation.py similarity index 100% rename from community/hackathon/doctype/community_project_evaluation/community_project_evaluation.py rename to school/hackathon/doctype/community_project_evaluation/community_project_evaluation.py diff --git a/community/hackathon/doctype/community_project_evaluation/test_community_project_evaluation.py b/school/hackathon/doctype/community_project_evaluation/test_community_project_evaluation.py similarity index 100% rename from community/hackathon/doctype/community_project_evaluation/test_community_project_evaluation.py rename to school/hackathon/doctype/community_project_evaluation/test_community_project_evaluation.py diff --git a/community/hackathon/doctype/community_project_like/__init__.py b/school/hackathon/doctype/community_project_like/__init__.py similarity index 100% rename from community/hackathon/doctype/community_project_like/__init__.py rename to school/hackathon/doctype/community_project_like/__init__.py diff --git a/community/hackathon/doctype/community_project_like/community_project_like.js b/school/hackathon/doctype/community_project_like/community_project_like.js similarity index 100% rename from community/hackathon/doctype/community_project_like/community_project_like.js rename to school/hackathon/doctype/community_project_like/community_project_like.js diff --git a/community/hackathon/doctype/community_project_like/community_project_like.json b/school/hackathon/doctype/community_project_like/community_project_like.json similarity index 100% rename from community/hackathon/doctype/community_project_like/community_project_like.json rename to school/hackathon/doctype/community_project_like/community_project_like.json diff --git a/community/hackathon/doctype/community_project_like/community_project_like.py b/school/hackathon/doctype/community_project_like/community_project_like.py similarity index 100% rename from community/hackathon/doctype/community_project_like/community_project_like.py rename to school/hackathon/doctype/community_project_like/community_project_like.py diff --git a/community/hackathon/doctype/community_project_like/test_community_project_like.py b/school/hackathon/doctype/community_project_like/test_community_project_like.py similarity index 100% rename from community/hackathon/doctype/community_project_like/test_community_project_like.py rename to school/hackathon/doctype/community_project_like/test_community_project_like.py diff --git a/community/hackathon/doctype/community_project_member/__init__.py b/school/hackathon/doctype/community_project_member/__init__.py similarity index 100% rename from community/hackathon/doctype/community_project_member/__init__.py rename to school/hackathon/doctype/community_project_member/__init__.py diff --git a/community/hackathon/doctype/community_project_member/community_project_member.js b/school/hackathon/doctype/community_project_member/community_project_member.js similarity index 100% rename from community/hackathon/doctype/community_project_member/community_project_member.js rename to school/hackathon/doctype/community_project_member/community_project_member.js diff --git a/community/hackathon/doctype/community_project_member/community_project_member.json b/school/hackathon/doctype/community_project_member/community_project_member.json similarity index 100% rename from community/hackathon/doctype/community_project_member/community_project_member.json rename to school/hackathon/doctype/community_project_member/community_project_member.json diff --git a/community/hackathon/doctype/community_project_member/community_project_member.py b/school/hackathon/doctype/community_project_member/community_project_member.py similarity index 100% rename from community/hackathon/doctype/community_project_member/community_project_member.py rename to school/hackathon/doctype/community_project_member/community_project_member.py diff --git a/community/hackathon/doctype/community_project_member/test_community_project_member.py b/school/hackathon/doctype/community_project_member/test_community_project_member.py similarity index 100% rename from community/hackathon/doctype/community_project_member/test_community_project_member.py rename to school/hackathon/doctype/community_project_member/test_community_project_member.py diff --git a/community/hackathon/doctype/community_project_update/__init__.py b/school/hackathon/doctype/community_project_update/__init__.py similarity index 100% rename from community/hackathon/doctype/community_project_update/__init__.py rename to school/hackathon/doctype/community_project_update/__init__.py diff --git a/community/hackathon/doctype/community_project_update/community_project_update.js b/school/hackathon/doctype/community_project_update/community_project_update.js similarity index 100% rename from community/hackathon/doctype/community_project_update/community_project_update.js rename to school/hackathon/doctype/community_project_update/community_project_update.js diff --git a/community/hackathon/doctype/community_project_update/community_project_update.json b/school/hackathon/doctype/community_project_update/community_project_update.json similarity index 100% rename from community/hackathon/doctype/community_project_update/community_project_update.json rename to school/hackathon/doctype/community_project_update/community_project_update.json diff --git a/community/hackathon/doctype/community_project_update/community_project_update.py b/school/hackathon/doctype/community_project_update/community_project_update.py similarity index 100% rename from community/hackathon/doctype/community_project_update/community_project_update.py rename to school/hackathon/doctype/community_project_update/community_project_update.py diff --git a/community/hackathon/doctype/community_project_update/test_community_project_update.py b/school/hackathon/doctype/community_project_update/test_community_project_update.py similarity index 100% rename from community/hackathon/doctype/community_project_update/test_community_project_update.py rename to school/hackathon/doctype/community_project_update/test_community_project_update.py diff --git a/community/hackathon/images/community-hackathon.png b/school/hackathon/images/community-hackathon.png similarity index 100% rename from community/hackathon/images/community-hackathon.png rename to school/hackathon/images/community-hackathon.png diff --git a/community/hackathon/images/hackathons-portal.png b/school/hackathon/images/hackathons-portal.png similarity index 100% rename from community/hackathon/images/hackathons-portal.png rename to school/hackathon/images/hackathons-portal.png diff --git a/community/hackathon/images/project-1.png b/school/hackathon/images/project-1.png similarity index 100% rename from community/hackathon/images/project-1.png rename to school/hackathon/images/project-1.png diff --git a/community/hackathon/images/project-2.png b/school/hackathon/images/project-2.png similarity index 100% rename from community/hackathon/images/project-2.png rename to school/hackathon/images/project-2.png diff --git a/community/hackathon/images/project-details.png b/school/hackathon/images/project-details.png similarity index 100% rename from community/hackathon/images/project-details.png rename to school/hackathon/images/project-details.png diff --git a/community/hackathon/images/project-join-request.png b/school/hackathon/images/project-join-request.png similarity index 100% rename from community/hackathon/images/project-join-request.png rename to school/hackathon/images/project-join-request.png diff --git a/community/hackathon/images/project-portal.png b/school/hackathon/images/project-portal.png similarity index 100% rename from community/hackathon/images/project-portal.png rename to school/hackathon/images/project-portal.png diff --git a/community/hackathon/web_form/__init__.py b/school/hackathon/web_form/__init__.py similarity index 100% rename from community/hackathon/web_form/__init__.py rename to school/hackathon/web_form/__init__.py diff --git a/community/hackathon/web_form/join_request/__init__.py b/school/hackathon/web_form/join_request/__init__.py similarity index 100% rename from community/hackathon/web_form/join_request/__init__.py rename to school/hackathon/web_form/join_request/__init__.py diff --git a/community/hackathon/web_form/join_request/join_request.js b/school/hackathon/web_form/join_request/join_request.js similarity index 100% rename from community/hackathon/web_form/join_request/join_request.js rename to school/hackathon/web_form/join_request/join_request.js diff --git a/community/hackathon/web_form/join_request/join_request.json b/school/hackathon/web_form/join_request/join_request.json similarity index 100% rename from community/hackathon/web_form/join_request/join_request.json rename to school/hackathon/web_form/join_request/join_request.json diff --git a/community/hackathon/web_form/join_request/join_request.py b/school/hackathon/web_form/join_request/join_request.py similarity index 100% rename from community/hackathon/web_form/join_request/join_request.py rename to school/hackathon/web_form/join_request/join_request.py diff --git a/community/hackathon/web_form/project/__init__.py b/school/hackathon/web_form/project/__init__.py similarity index 100% rename from community/hackathon/web_form/project/__init__.py rename to school/hackathon/web_form/project/__init__.py diff --git a/community/hackathon/web_form/project/project.js b/school/hackathon/web_form/project/project.js similarity index 100% rename from community/hackathon/web_form/project/project.js rename to school/hackathon/web_form/project/project.js diff --git a/community/hackathon/web_form/project/project.json b/school/hackathon/web_form/project/project.json similarity index 100% rename from community/hackathon/web_form/project/project.json rename to school/hackathon/web_form/project/project.json diff --git a/community/hackathon/web_form/project/project.py b/school/hackathon/web_form/project/project.py similarity index 100% rename from community/hackathon/web_form/project/project.py rename to school/hackathon/web_form/project/project.py diff --git a/community/hackathon/web_form/project_update/__init__.py b/school/hackathon/web_form/project_update/__init__.py similarity index 100% rename from community/hackathon/web_form/project_update/__init__.py rename to school/hackathon/web_form/project_update/__init__.py diff --git a/community/hackathon/web_form/project_update/project_update.js b/school/hackathon/web_form/project_update/project_update.js similarity index 100% rename from community/hackathon/web_form/project_update/project_update.js rename to school/hackathon/web_form/project_update/project_update.js diff --git a/community/hackathon/web_form/project_update/project_update.json b/school/hackathon/web_form/project_update/project_update.json similarity index 100% rename from community/hackathon/web_form/project_update/project_update.json rename to school/hackathon/web_form/project_update/project_update.json diff --git a/community/hackathon/web_form/project_update/project_update.py b/school/hackathon/web_form/project_update/project_update.py similarity index 100% rename from community/hackathon/web_form/project_update/project_update.py rename to school/hackathon/web_form/project_update/project_update.py diff --git a/community/hooks.py b/school/hooks.py similarity index 71% rename from community/hooks.py rename to school/hooks.py index e994461d..92966398 100644 --- a/community/hooks.py +++ b/school/hooks.py @@ -2,29 +2,29 @@ from __future__ import unicode_literals from . import __version__ as app_version -app_name = "community" -app_title = "Community" -app_publisher = "FOSS United" -app_description = "Community App" +app_name = "school" +app_title = "School" +app_publisher = "Frappe" +app_description = "School" app_icon = "octicon octicon-file-directory" app_color = "grey" -app_email = "jannat@erpnext.com" +app_email = "school@frappe.io" app_license = "AGPL" # Includes in
# ------------------ # include js, css files in header of desk.html -# app_include_css = "/assets/community/css/community.css" -# app_include_js = "/assets/community/js/community.js" +# app_include_css = "/assets/school/css/school.css" +# app_include_js = "/assets/school/js/school.js" # include js, css files in header of web template -web_include_css = "community.bundle.css" -# web_include_css = "/assets/community/css/community.css" +web_include_css = "school.bundle.css" +# web_include_css = "/assets/school/css/school.css" web_include_js = "website.bundle.js" # include custom scss in every website theme (without file extension ".scss") -# website_theme_scss = "community/public/scss/website" +# website_theme_scss = "school/public/scss/website" # include js, css files in header of web form # webform_include_js = {"doctype": "public/js/doctype.js"} @@ -59,14 +59,14 @@ web_include_js = "website.bundle.js" # Installation # ------------ -# before_install = "community.install.before_install" -# after_install = "community.install.after_install" +# before_install = "school.install.before_install" +# after_install = "school.install.after_install" # Desk Notifications # ------------------ # See frappe.core.notifications.get_notification_config -# notification_config = "community.notifications.get_notification_config" +# notification_config = "school.notifications.get_notification_config" # Permissions # ----------- @@ -85,8 +85,8 @@ web_include_js = "website.bundle.js" # Override standard doctype classes override_doctype_class = { - "User": "community.overrides.user.CustomUser", - "Web Template": "community.overrides.web_template.CustomWebTemplate" + "User": "school.overrides.user.CustomUser", + "Web Template": "school.overrides.web_template.CustomWebTemplate" } # Document Events @@ -110,20 +110,20 @@ fixtures = ["Custom Field"] # Testing # ------- -# before_tests = "community.install.before_tests" +# before_tests = "school.install.before_tests" # Overriding Methods # ------------------------------ # # override_whitelisted_methods = { -# "frappe.desk.doctype.event.event.get_events": "community.event.get_events" +# "frappe.desk.doctype.event.event.get_events": "school.event.get_events" # } # # each overriding function accepts a `data` argument; # generated from the base implementation of the doctype dashboard, # along with any modifications made in other Frappe apps # override_doctype_dashboards = { -# "Task": "community.task.get_dashboard_data" +# "Task": "school.task.get_dashboard_data" # } # exempt linked doctypes from being automatically cancelled @@ -149,40 +149,40 @@ website_redirects = [ ] update_website_context = [ - 'community.widgets.update_website_context', + 'school.widgets.update_website_context', ] jinja = { "methods": [ - "community.page_renderers.get_profile_url" + "school.page_renderers.get_profile_url" ], "filters": [] } ## Specify the additional tabs to be included in the user profile page. -## Each entry must be a subclass of community.community.plugins.ProfileTab +## Each entry must be a subclass of school.school.plugins.ProfileTab # profile_tabs = [] ## Specify the extension to be used to control what scripts and stylesheets ## to be included in lesson pages. The specified value must be be a -## subclass of community.community.plugins.PageExtension -# community_lesson_page_extension = None +## subclass of school.plugins.PageExtension +# school_lesson_page_extension = None -#community_lesson_page_extensions = [ -# "community.plugins.LiveCodeExtension" +#school_lesson_page_extensions = [ +# "school.plugins.LiveCodeExtension" #] ## Markdown Macros for Lessons -community_markdown_macro_renderers = { - "Exercise": "community.plugins.exercise_renderer", - "Quiz": "community.plugins.quiz_renderer", - "YouTubeVideo": "community.plugins.youtube_video_renderer", - "Video": "community.plugins.video_renderer" +school_markdown_macro_renderers = { + "Exercise": "school.plugins.exercise_renderer", + "Quiz": "school.plugins.quiz_renderer", + "YouTubeVideo": "school.plugins.youtube_video_renderer", + "Video": "school.plugins.video_renderer" } # page_renderer to manage profile pages page_renderer = [ - "community.page_renderers.ProfileRedirectPage", - "community.page_renderers.ProfilePage" + "school.page_renderers.ProfileRedirectPage", + "school.page_renderers.ProfilePage" ] # set this to "/" to have profiles on the top-level diff --git a/community/lms/__init__.py b/school/lms/__init__.py similarity index 100% rename from community/lms/__init__.py rename to school/lms/__init__.py diff --git a/community/lms/api.py b/school/lms/api.py similarity index 100% rename from community/lms/api.py rename to school/lms/api.py diff --git a/community/lms/dashboard_chart/course_enrollments/course_enrollments.json b/school/lms/dashboard_chart/course_enrollments/course_enrollments.json similarity index 100% rename from community/lms/dashboard_chart/course_enrollments/course_enrollments.json rename to school/lms/dashboard_chart/course_enrollments/course_enrollments.json diff --git a/community/lms/doctype/__init__.py b/school/lms/doctype/__init__.py similarity index 100% rename from community/lms/doctype/__init__.py rename to school/lms/doctype/__init__.py diff --git a/community/lms/doctype/chapter_reference/__init__.py b/school/lms/doctype/chapter_reference/__init__.py similarity index 100% rename from community/lms/doctype/chapter_reference/__init__.py rename to school/lms/doctype/chapter_reference/__init__.py diff --git a/community/lms/doctype/chapter_reference/chapter_reference.json b/school/lms/doctype/chapter_reference/chapter_reference.json similarity index 100% rename from community/lms/doctype/chapter_reference/chapter_reference.json rename to school/lms/doctype/chapter_reference/chapter_reference.json diff --git a/community/lms/doctype/chapter_reference/chapter_reference.py b/school/lms/doctype/chapter_reference/chapter_reference.py similarity index 100% rename from community/lms/doctype/chapter_reference/chapter_reference.py rename to school/lms/doctype/chapter_reference/chapter_reference.py diff --git a/community/lms/doctype/course_chapter/__init__.py b/school/lms/doctype/course_chapter/__init__.py similarity index 100% rename from community/lms/doctype/course_chapter/__init__.py rename to school/lms/doctype/course_chapter/__init__.py diff --git a/community/lms/doctype/course_chapter/course_chapter.js b/school/lms/doctype/course_chapter/course_chapter.js similarity index 100% rename from community/lms/doctype/course_chapter/course_chapter.js rename to school/lms/doctype/course_chapter/course_chapter.js diff --git a/community/lms/doctype/course_chapter/course_chapter.json b/school/lms/doctype/course_chapter/course_chapter.json similarity index 100% rename from community/lms/doctype/course_chapter/course_chapter.json rename to school/lms/doctype/course_chapter/course_chapter.json diff --git a/community/lms/doctype/course_chapter/course_chapter.py b/school/lms/doctype/course_chapter/course_chapter.py similarity index 100% rename from community/lms/doctype/course_chapter/course_chapter.py rename to school/lms/doctype/course_chapter/course_chapter.py diff --git a/community/lms/doctype/course_chapter/test_course_chapter.py b/school/lms/doctype/course_chapter/test_course_chapter.py similarity index 100% rename from community/lms/doctype/course_chapter/test_course_chapter.py rename to school/lms/doctype/course_chapter/test_course_chapter.py diff --git a/community/lms/doctype/course_lesson/__init__.py b/school/lms/doctype/course_lesson/__init__.py similarity index 100% rename from community/lms/doctype/course_lesson/__init__.py rename to school/lms/doctype/course_lesson/__init__.py diff --git a/community/lms/doctype/course_lesson/course_lesson.js b/school/lms/doctype/course_lesson/course_lesson.js similarity index 100% rename from community/lms/doctype/course_lesson/course_lesson.js rename to school/lms/doctype/course_lesson/course_lesson.js diff --git a/community/lms/doctype/course_lesson/course_lesson.json b/school/lms/doctype/course_lesson/course_lesson.json similarity index 100% rename from community/lms/doctype/course_lesson/course_lesson.json rename to school/lms/doctype/course_lesson/course_lesson.json diff --git a/community/lms/doctype/course_lesson/course_lesson.py b/school/lms/doctype/course_lesson/course_lesson.py similarity index 100% rename from community/lms/doctype/course_lesson/course_lesson.py rename to school/lms/doctype/course_lesson/course_lesson.py diff --git a/community/lms/doctype/course_lesson/test_course_lesson.py b/school/lms/doctype/course_lesson/test_course_lesson.py similarity index 100% rename from community/lms/doctype/course_lesson/test_course_lesson.py rename to school/lms/doctype/course_lesson/test_course_lesson.py diff --git a/community/lms/doctype/exercise/__init__.py b/school/lms/doctype/exercise/__init__.py similarity index 100% rename from community/lms/doctype/exercise/__init__.py rename to school/lms/doctype/exercise/__init__.py diff --git a/community/lms/doctype/exercise/exercise.js b/school/lms/doctype/exercise/exercise.js similarity index 100% rename from community/lms/doctype/exercise/exercise.js rename to school/lms/doctype/exercise/exercise.js diff --git a/community/lms/doctype/exercise/exercise.json b/school/lms/doctype/exercise/exercise.json similarity index 100% rename from community/lms/doctype/exercise/exercise.json rename to school/lms/doctype/exercise/exercise.json diff --git a/community/lms/doctype/exercise/exercise.py b/school/lms/doctype/exercise/exercise.py similarity index 100% rename from community/lms/doctype/exercise/exercise.py rename to school/lms/doctype/exercise/exercise.py diff --git a/community/lms/doctype/exercise/test_exercise.py b/school/lms/doctype/exercise/test_exercise.py similarity index 100% rename from community/lms/doctype/exercise/test_exercise.py rename to school/lms/doctype/exercise/test_exercise.py diff --git a/community/lms/doctype/exercise_submission/__init__.py b/school/lms/doctype/exercise_submission/__init__.py similarity index 100% rename from community/lms/doctype/exercise_submission/__init__.py rename to school/lms/doctype/exercise_submission/__init__.py diff --git a/community/lms/doctype/exercise_submission/exercise_submission.js b/school/lms/doctype/exercise_submission/exercise_submission.js similarity index 100% rename from community/lms/doctype/exercise_submission/exercise_submission.js rename to school/lms/doctype/exercise_submission/exercise_submission.js diff --git a/community/lms/doctype/exercise_submission/exercise_submission.json b/school/lms/doctype/exercise_submission/exercise_submission.json similarity index 100% rename from community/lms/doctype/exercise_submission/exercise_submission.json rename to school/lms/doctype/exercise_submission/exercise_submission.json diff --git a/community/lms/doctype/exercise_submission/exercise_submission.py b/school/lms/doctype/exercise_submission/exercise_submission.py similarity index 100% rename from community/lms/doctype/exercise_submission/exercise_submission.py rename to school/lms/doctype/exercise_submission/exercise_submission.py diff --git a/community/lms/doctype/exercise_submission/test_exercise_submission.py b/school/lms/doctype/exercise_submission/test_exercise_submission.py similarity index 100% rename from community/lms/doctype/exercise_submission/test_exercise_submission.py rename to school/lms/doctype/exercise_submission/test_exercise_submission.py diff --git a/community/lms/doctype/invite_request/__init__.py b/school/lms/doctype/invite_request/__init__.py similarity index 100% rename from community/lms/doctype/invite_request/__init__.py rename to school/lms/doctype/invite_request/__init__.py diff --git a/community/lms/doctype/invite_request/invite_request.js b/school/lms/doctype/invite_request/invite_request.js similarity index 100% rename from community/lms/doctype/invite_request/invite_request.js rename to school/lms/doctype/invite_request/invite_request.js diff --git a/community/lms/doctype/invite_request/invite_request.json b/school/lms/doctype/invite_request/invite_request.json similarity index 100% rename from community/lms/doctype/invite_request/invite_request.json rename to school/lms/doctype/invite_request/invite_request.json diff --git a/community/lms/doctype/invite_request/invite_request.py b/school/lms/doctype/invite_request/invite_request.py similarity index 100% rename from community/lms/doctype/invite_request/invite_request.py rename to school/lms/doctype/invite_request/invite_request.py diff --git a/community/lms/doctype/invite_request/test_invite_request.py b/school/lms/doctype/invite_request/test_invite_request.py similarity index 96% rename from community/lms/doctype/invite_request/test_invite_request.py rename to school/lms/doctype/invite_request/test_invite_request.py index 20fe531d..16888eee 100644 --- a/community/lms/doctype/invite_request/test_invite_request.py +++ b/school/lms/doctype/invite_request/test_invite_request.py @@ -2,7 +2,7 @@ # Copyright (c) 2021, FOSS United and Contributors # See license.txt from __future__ import unicode_literals -from community.lms.doctype.invite_request.invite_request import create_invite_request, update_invite +from school.lms.doctype.invite_request.invite_request import create_invite_request, update_invite import frappe import unittest diff --git a/community/lms/doctype/lesson_reference/__init__.py b/school/lms/doctype/lesson_reference/__init__.py similarity index 100% rename from community/lms/doctype/lesson_reference/__init__.py rename to school/lms/doctype/lesson_reference/__init__.py diff --git a/community/lms/doctype/lesson_reference/lesson_reference.json b/school/lms/doctype/lesson_reference/lesson_reference.json similarity index 100% rename from community/lms/doctype/lesson_reference/lesson_reference.json rename to school/lms/doctype/lesson_reference/lesson_reference.json diff --git a/community/lms/doctype/lesson_reference/lesson_reference.py b/school/lms/doctype/lesson_reference/lesson_reference.py similarity index 100% rename from community/lms/doctype/lesson_reference/lesson_reference.py rename to school/lms/doctype/lesson_reference/lesson_reference.py diff --git a/community/lms/doctype/lms_batch/__init__.py b/school/lms/doctype/lms_batch/__init__.py similarity index 100% rename from community/lms/doctype/lms_batch/__init__.py rename to school/lms/doctype/lms_batch/__init__.py diff --git a/community/lms/doctype/lms_batch/lms_batch.js b/school/lms/doctype/lms_batch/lms_batch.js similarity index 100% rename from community/lms/doctype/lms_batch/lms_batch.js rename to school/lms/doctype/lms_batch/lms_batch.js diff --git a/community/lms/doctype/lms_batch/lms_batch.json b/school/lms/doctype/lms_batch/lms_batch.json similarity index 100% rename from community/lms/doctype/lms_batch/lms_batch.json rename to school/lms/doctype/lms_batch/lms_batch.json diff --git a/community/lms/doctype/lms_batch/lms_batch.py b/school/lms/doctype/lms_batch/lms_batch.py similarity index 95% rename from community/lms/doctype/lms_batch/lms_batch.py rename to school/lms/doctype/lms_batch/lms_batch.py index b2f8096b..a7fbcb68 100644 --- a/community/lms/doctype/lms_batch/lms_batch.py +++ b/school/lms/doctype/lms_batch/lms_batch.py @@ -6,8 +6,8 @@ from __future__ import unicode_literals import frappe from frappe.model.document import Document from frappe import _ -from community.lms.doctype.lms_batch_membership.lms_batch_membership import create_membership -from community.query import find, find_all +from school.lms.doctype.lms_batch_membership.lms_batch_membership import create_membership +from school.query import find, find_all class LMSBatch(Document): def validate(self): diff --git a/community/lms/doctype/lms_batch/test_lms_batch.py b/school/lms/doctype/lms_batch/test_lms_batch.py similarity index 100% rename from community/lms/doctype/lms_batch/test_lms_batch.py rename to school/lms/doctype/lms_batch/test_lms_batch.py diff --git a/community/lms/doctype/lms_batch_membership/__init__.py b/school/lms/doctype/lms_batch_membership/__init__.py similarity index 100% rename from community/lms/doctype/lms_batch_membership/__init__.py rename to school/lms/doctype/lms_batch_membership/__init__.py diff --git a/community/lms/doctype/lms_batch_membership/lms_batch_membership.js b/school/lms/doctype/lms_batch_membership/lms_batch_membership.js similarity index 100% rename from community/lms/doctype/lms_batch_membership/lms_batch_membership.js rename to school/lms/doctype/lms_batch_membership/lms_batch_membership.js diff --git a/community/lms/doctype/lms_batch_membership/lms_batch_membership.json b/school/lms/doctype/lms_batch_membership/lms_batch_membership.json similarity index 100% rename from community/lms/doctype/lms_batch_membership/lms_batch_membership.json rename to school/lms/doctype/lms_batch_membership/lms_batch_membership.json diff --git a/community/lms/doctype/lms_batch_membership/lms_batch_membership.py b/school/lms/doctype/lms_batch_membership/lms_batch_membership.py similarity index 100% rename from community/lms/doctype/lms_batch_membership/lms_batch_membership.py rename to school/lms/doctype/lms_batch_membership/lms_batch_membership.py diff --git a/community/lms/doctype/lms_batch_membership/test_lms_batch_membership.py b/school/lms/doctype/lms_batch_membership/test_lms_batch_membership.py similarity index 100% rename from community/lms/doctype/lms_batch_membership/test_lms_batch_membership.py rename to school/lms/doctype/lms_batch_membership/test_lms_batch_membership.py diff --git a/community/lms/doctype/lms_certification/__init__.py b/school/lms/doctype/lms_certification/__init__.py similarity index 100% rename from community/lms/doctype/lms_certification/__init__.py rename to school/lms/doctype/lms_certification/__init__.py diff --git a/community/lms/doctype/lms_certification/lms_certification.js b/school/lms/doctype/lms_certification/lms_certification.js similarity index 100% rename from community/lms/doctype/lms_certification/lms_certification.js rename to school/lms/doctype/lms_certification/lms_certification.js diff --git a/community/lms/doctype/lms_certification/lms_certification.json b/school/lms/doctype/lms_certification/lms_certification.json similarity index 100% rename from community/lms/doctype/lms_certification/lms_certification.json rename to school/lms/doctype/lms_certification/lms_certification.json diff --git a/community/lms/doctype/lms_certification/lms_certification.py b/school/lms/doctype/lms_certification/lms_certification.py similarity index 100% rename from community/lms/doctype/lms_certification/lms_certification.py rename to school/lms/doctype/lms_certification/lms_certification.py diff --git a/community/lms/doctype/lms_certification/test_lms_certification.py b/school/lms/doctype/lms_certification/test_lms_certification.py similarity index 100% rename from community/lms/doctype/lms_certification/test_lms_certification.py rename to school/lms/doctype/lms_certification/test_lms_certification.py diff --git a/community/lms/doctype/lms_course/__init__.py b/school/lms/doctype/lms_course/__init__.py similarity index 100% rename from community/lms/doctype/lms_course/__init__.py rename to school/lms/doctype/lms_course/__init__.py diff --git a/community/lms/doctype/lms_course/lms_course.js b/school/lms/doctype/lms_course/lms_course.js similarity index 100% rename from community/lms/doctype/lms_course/lms_course.js rename to school/lms/doctype/lms_course/lms_course.js diff --git a/community/lms/doctype/lms_course/lms_course.json b/school/lms/doctype/lms_course/lms_course.json similarity index 97% rename from community/lms/doctype/lms_course/lms_course.json rename to school/lms/doctype/lms_course/lms_course.json index dd5d9fab..86b7e5d1 100644 --- a/community/lms/doctype/lms_course/lms_course.json +++ b/school/lms/doctype/lms_course/lms_course.json @@ -1,7 +1,7 @@ { "actions": [ { - "action": "community.lms.doctype.lms_course.lms_course.reindex_exercises", + "action": "school.lms.doctype.lms_course.lms_course.reindex_exercises", "action_type": "Server Action", "group": "Reindex", "label": "Reindex Exercises" diff --git a/community/lms/doctype/lms_course/lms_course.py b/school/lms/doctype/lms_course/lms_course.py similarity index 99% rename from community/lms/doctype/lms_course/lms_course.py rename to school/lms/doctype/lms_course/lms_course.py index 3c559211..e14bc38e 100644 --- a/community/lms/doctype/lms_course/lms_course.py +++ b/school/lms/doctype/lms_course/lms_course.py @@ -7,7 +7,7 @@ import frappe from frappe.model.document import Document import json from ...utils import slugify -from community.query import find, find_all +from school.query import find, find_all from frappe.utils import flt, cint from ...utils import slugify diff --git a/community/lms/doctype/lms_course/test_lms_course.py b/school/lms/doctype/lms_course/test_lms_course.py similarity index 100% rename from community/lms/doctype/lms_course/test_lms_course.py rename to school/lms/doctype/lms_course/test_lms_course.py diff --git a/community/lms/doctype/lms_course_enrollment/__init__.py b/school/lms/doctype/lms_course_enrollment/__init__.py similarity index 100% rename from community/lms/doctype/lms_course_enrollment/__init__.py rename to school/lms/doctype/lms_course_enrollment/__init__.py diff --git a/community/lms/doctype/lms_course_enrollment/lms_course_enrollment.js b/school/lms/doctype/lms_course_enrollment/lms_course_enrollment.js similarity index 100% rename from community/lms/doctype/lms_course_enrollment/lms_course_enrollment.js rename to school/lms/doctype/lms_course_enrollment/lms_course_enrollment.js diff --git a/community/lms/doctype/lms_course_enrollment/lms_course_enrollment.json b/school/lms/doctype/lms_course_enrollment/lms_course_enrollment.json similarity index 100% rename from community/lms/doctype/lms_course_enrollment/lms_course_enrollment.json rename to school/lms/doctype/lms_course_enrollment/lms_course_enrollment.json diff --git a/community/lms/doctype/lms_course_enrollment/lms_course_enrollment.py b/school/lms/doctype/lms_course_enrollment/lms_course_enrollment.py similarity index 100% rename from community/lms/doctype/lms_course_enrollment/lms_course_enrollment.py rename to school/lms/doctype/lms_course_enrollment/lms_course_enrollment.py diff --git a/community/lms/doctype/lms_course_enrollment/test_lms_course_enrollment.py b/school/lms/doctype/lms_course_enrollment/test_lms_course_enrollment.py similarity index 100% rename from community/lms/doctype/lms_course_enrollment/test_lms_course_enrollment.py rename to school/lms/doctype/lms_course_enrollment/test_lms_course_enrollment.py diff --git a/community/lms/doctype/lms_course_interest/__init__.py b/school/lms/doctype/lms_course_interest/__init__.py similarity index 100% rename from community/lms/doctype/lms_course_interest/__init__.py rename to school/lms/doctype/lms_course_interest/__init__.py diff --git a/community/lms/doctype/lms_course_interest/lms_course_interest.js b/school/lms/doctype/lms_course_interest/lms_course_interest.js similarity index 100% rename from community/lms/doctype/lms_course_interest/lms_course_interest.js rename to school/lms/doctype/lms_course_interest/lms_course_interest.js diff --git a/community/lms/doctype/lms_course_interest/lms_course_interest.json b/school/lms/doctype/lms_course_interest/lms_course_interest.json similarity index 100% rename from community/lms/doctype/lms_course_interest/lms_course_interest.json rename to school/lms/doctype/lms_course_interest/lms_course_interest.json diff --git a/community/lms/doctype/lms_course_interest/lms_course_interest.py b/school/lms/doctype/lms_course_interest/lms_course_interest.py similarity index 100% rename from community/lms/doctype/lms_course_interest/lms_course_interest.py rename to school/lms/doctype/lms_course_interest/lms_course_interest.py diff --git a/community/lms/doctype/lms_course_interest/test_lms_course_interest.py b/school/lms/doctype/lms_course_interest/test_lms_course_interest.py similarity index 100% rename from community/lms/doctype/lms_course_interest/test_lms_course_interest.py rename to school/lms/doctype/lms_course_interest/test_lms_course_interest.py diff --git a/community/lms/doctype/lms_course_mentor_mapping/__init__.py b/school/lms/doctype/lms_course_mentor_mapping/__init__.py similarity index 100% rename from community/lms/doctype/lms_course_mentor_mapping/__init__.py rename to school/lms/doctype/lms_course_mentor_mapping/__init__.py diff --git a/community/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.js b/school/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.js similarity index 100% rename from community/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.js rename to school/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.js diff --git a/community/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json b/school/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json similarity index 100% rename from community/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json rename to school/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json diff --git a/community/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.py b/school/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.py similarity index 100% rename from community/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.py rename to school/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.py diff --git a/community/lms/doctype/lms_course_mentor_mapping/test_lms_course_mentor_mapping.py b/school/lms/doctype/lms_course_mentor_mapping/test_lms_course_mentor_mapping.py similarity index 100% rename from community/lms/doctype/lms_course_mentor_mapping/test_lms_course_mentor_mapping.py rename to school/lms/doctype/lms_course_mentor_mapping/test_lms_course_mentor_mapping.py diff --git a/community/lms/doctype/lms_course_progress/__init__.py b/school/lms/doctype/lms_course_progress/__init__.py similarity index 100% rename from community/lms/doctype/lms_course_progress/__init__.py rename to school/lms/doctype/lms_course_progress/__init__.py diff --git a/community/lms/doctype/lms_course_progress/lms_course_progress.js b/school/lms/doctype/lms_course_progress/lms_course_progress.js similarity index 100% rename from community/lms/doctype/lms_course_progress/lms_course_progress.js rename to school/lms/doctype/lms_course_progress/lms_course_progress.js diff --git a/community/lms/doctype/lms_course_progress/lms_course_progress.json b/school/lms/doctype/lms_course_progress/lms_course_progress.json similarity index 100% rename from community/lms/doctype/lms_course_progress/lms_course_progress.json rename to school/lms/doctype/lms_course_progress/lms_course_progress.json diff --git a/community/lms/doctype/lms_course_progress/lms_course_progress.py b/school/lms/doctype/lms_course_progress/lms_course_progress.py similarity index 100% rename from community/lms/doctype/lms_course_progress/lms_course_progress.py rename to school/lms/doctype/lms_course_progress/lms_course_progress.py diff --git a/community/lms/doctype/lms_course_progress/test_lms_course_progress.py b/school/lms/doctype/lms_course_progress/test_lms_course_progress.py similarity index 100% rename from community/lms/doctype/lms_course_progress/test_lms_course_progress.py rename to school/lms/doctype/lms_course_progress/test_lms_course_progress.py diff --git a/community/lms/doctype/lms_course_review/__init__.py b/school/lms/doctype/lms_course_review/__init__.py similarity index 100% rename from community/lms/doctype/lms_course_review/__init__.py rename to school/lms/doctype/lms_course_review/__init__.py diff --git a/community/lms/doctype/lms_course_review/lms_course_review.js b/school/lms/doctype/lms_course_review/lms_course_review.js similarity index 100% rename from community/lms/doctype/lms_course_review/lms_course_review.js rename to school/lms/doctype/lms_course_review/lms_course_review.js diff --git a/community/lms/doctype/lms_course_review/lms_course_review.json b/school/lms/doctype/lms_course_review/lms_course_review.json similarity index 100% rename from community/lms/doctype/lms_course_review/lms_course_review.json rename to school/lms/doctype/lms_course_review/lms_course_review.json diff --git a/community/lms/doctype/lms_course_review/lms_course_review.py b/school/lms/doctype/lms_course_review/lms_course_review.py similarity index 100% rename from community/lms/doctype/lms_course_review/lms_course_review.py rename to school/lms/doctype/lms_course_review/lms_course_review.py diff --git a/community/lms/doctype/lms_course_review/test_lms_course_review.py b/school/lms/doctype/lms_course_review/test_lms_course_review.py similarity index 100% rename from community/lms/doctype/lms_course_review/test_lms_course_review.py rename to school/lms/doctype/lms_course_review/test_lms_course_review.py diff --git a/community/lms/doctype/lms_mentor_request/__init__.py b/school/lms/doctype/lms_mentor_request/__init__.py similarity index 100% rename from community/lms/doctype/lms_mentor_request/__init__.py rename to school/lms/doctype/lms_mentor_request/__init__.py diff --git a/community/lms/doctype/lms_mentor_request/lms_mentor_request.js b/school/lms/doctype/lms_mentor_request/lms_mentor_request.js similarity index 100% rename from community/lms/doctype/lms_mentor_request/lms_mentor_request.js rename to school/lms/doctype/lms_mentor_request/lms_mentor_request.js diff --git a/community/lms/doctype/lms_mentor_request/lms_mentor_request.json b/school/lms/doctype/lms_mentor_request/lms_mentor_request.json similarity index 100% rename from community/lms/doctype/lms_mentor_request/lms_mentor_request.json rename to school/lms/doctype/lms_mentor_request/lms_mentor_request.json diff --git a/community/lms/doctype/lms_mentor_request/lms_mentor_request.py b/school/lms/doctype/lms_mentor_request/lms_mentor_request.py similarity index 100% rename from community/lms/doctype/lms_mentor_request/lms_mentor_request.py rename to school/lms/doctype/lms_mentor_request/lms_mentor_request.py diff --git a/community/lms/doctype/lms_mentor_request/test_lms_mentor_request.py b/school/lms/doctype/lms_mentor_request/test_lms_mentor_request.py similarity index 100% rename from community/lms/doctype/lms_mentor_request/test_lms_mentor_request.py rename to school/lms/doctype/lms_mentor_request/test_lms_mentor_request.py diff --git a/community/lms/doctype/lms_option/__init__.py b/school/lms/doctype/lms_option/__init__.py similarity index 100% rename from community/lms/doctype/lms_option/__init__.py rename to school/lms/doctype/lms_option/__init__.py diff --git a/community/lms/doctype/lms_option/lms_option.json b/school/lms/doctype/lms_option/lms_option.json similarity index 100% rename from community/lms/doctype/lms_option/lms_option.json rename to school/lms/doctype/lms_option/lms_option.json diff --git a/community/lms/doctype/lms_option/lms_option.py b/school/lms/doctype/lms_option/lms_option.py similarity index 100% rename from community/lms/doctype/lms_option/lms_option.py rename to school/lms/doctype/lms_option/lms_option.py diff --git a/community/lms/doctype/lms_quiz/__init__.py b/school/lms/doctype/lms_quiz/__init__.py similarity index 100% rename from community/lms/doctype/lms_quiz/__init__.py rename to school/lms/doctype/lms_quiz/__init__.py diff --git a/community/lms/doctype/lms_quiz/lms_quiz.js b/school/lms/doctype/lms_quiz/lms_quiz.js similarity index 100% rename from community/lms/doctype/lms_quiz/lms_quiz.js rename to school/lms/doctype/lms_quiz/lms_quiz.js diff --git a/community/lms/doctype/lms_quiz/lms_quiz.json b/school/lms/doctype/lms_quiz/lms_quiz.json similarity index 100% rename from community/lms/doctype/lms_quiz/lms_quiz.json rename to school/lms/doctype/lms_quiz/lms_quiz.json diff --git a/community/lms/doctype/lms_quiz/lms_quiz.py b/school/lms/doctype/lms_quiz/lms_quiz.py similarity index 100% rename from community/lms/doctype/lms_quiz/lms_quiz.py rename to school/lms/doctype/lms_quiz/lms_quiz.py diff --git a/community/lms/doctype/lms_quiz/test_lms_quiz.py b/school/lms/doctype/lms_quiz/test_lms_quiz.py similarity index 100% rename from community/lms/doctype/lms_quiz/test_lms_quiz.py rename to school/lms/doctype/lms_quiz/test_lms_quiz.py diff --git a/community/lms/doctype/lms_quiz_question/__init__.py b/school/lms/doctype/lms_quiz_question/__init__.py similarity index 100% rename from community/lms/doctype/lms_quiz_question/__init__.py rename to school/lms/doctype/lms_quiz_question/__init__.py diff --git a/community/lms/doctype/lms_quiz_question/lms_quiz_question.json b/school/lms/doctype/lms_quiz_question/lms_quiz_question.json similarity index 100% rename from community/lms/doctype/lms_quiz_question/lms_quiz_question.json rename to school/lms/doctype/lms_quiz_question/lms_quiz_question.json diff --git a/community/lms/doctype/lms_quiz_question/lms_quiz_question.py b/school/lms/doctype/lms_quiz_question/lms_quiz_question.py similarity index 100% rename from community/lms/doctype/lms_quiz_question/lms_quiz_question.py rename to school/lms/doctype/lms_quiz_question/lms_quiz_question.py diff --git a/community/lms/doctype/lms_quiz_result/__init__.py b/school/lms/doctype/lms_quiz_result/__init__.py similarity index 100% rename from community/lms/doctype/lms_quiz_result/__init__.py rename to school/lms/doctype/lms_quiz_result/__init__.py diff --git a/community/lms/doctype/lms_quiz_result/lms_quiz_result.json b/school/lms/doctype/lms_quiz_result/lms_quiz_result.json similarity index 100% rename from community/lms/doctype/lms_quiz_result/lms_quiz_result.json rename to school/lms/doctype/lms_quiz_result/lms_quiz_result.json diff --git a/community/lms/doctype/lms_quiz_result/lms_quiz_result.py b/school/lms/doctype/lms_quiz_result/lms_quiz_result.py similarity index 100% rename from community/lms/doctype/lms_quiz_result/lms_quiz_result.py rename to school/lms/doctype/lms_quiz_result/lms_quiz_result.py diff --git a/community/lms/doctype/lms_quiz_submission/__init__.py b/school/lms/doctype/lms_quiz_submission/__init__.py similarity index 100% rename from community/lms/doctype/lms_quiz_submission/__init__.py rename to school/lms/doctype/lms_quiz_submission/__init__.py diff --git a/community/lms/doctype/lms_quiz_submission/lms_quiz_submission.js b/school/lms/doctype/lms_quiz_submission/lms_quiz_submission.js similarity index 100% rename from community/lms/doctype/lms_quiz_submission/lms_quiz_submission.js rename to school/lms/doctype/lms_quiz_submission/lms_quiz_submission.js diff --git a/community/lms/doctype/lms_quiz_submission/lms_quiz_submission.json b/school/lms/doctype/lms_quiz_submission/lms_quiz_submission.json similarity index 100% rename from community/lms/doctype/lms_quiz_submission/lms_quiz_submission.json rename to school/lms/doctype/lms_quiz_submission/lms_quiz_submission.json diff --git a/community/lms/doctype/lms_quiz_submission/lms_quiz_submission.py b/school/lms/doctype/lms_quiz_submission/lms_quiz_submission.py similarity index 100% rename from community/lms/doctype/lms_quiz_submission/lms_quiz_submission.py rename to school/lms/doctype/lms_quiz_submission/lms_quiz_submission.py diff --git a/community/lms/doctype/lms_quiz_submission/test_lms_quiz_submission.py b/school/lms/doctype/lms_quiz_submission/test_lms_quiz_submission.py similarity index 100% rename from community/lms/doctype/lms_quiz_submission/test_lms_quiz_submission.py rename to school/lms/doctype/lms_quiz_submission/test_lms_quiz_submission.py diff --git a/community/lms/doctype/lms_section/lms_section.py b/school/lms/doctype/lms_section/lms_section.py similarity index 100% rename from community/lms/doctype/lms_section/lms_section.py rename to school/lms/doctype/lms_section/lms_section.py diff --git a/community/lms/doctype/lms_settings/__init__.py b/school/lms/doctype/lms_settings/__init__.py similarity index 100% rename from community/lms/doctype/lms_settings/__init__.py rename to school/lms/doctype/lms_settings/__init__.py diff --git a/community/lms/doctype/lms_settings/lms_settings.js b/school/lms/doctype/lms_settings/lms_settings.js similarity index 100% rename from community/lms/doctype/lms_settings/lms_settings.js rename to school/lms/doctype/lms_settings/lms_settings.js diff --git a/community/lms/doctype/lms_settings/lms_settings.json b/school/lms/doctype/lms_settings/lms_settings.json similarity index 100% rename from community/lms/doctype/lms_settings/lms_settings.json rename to school/lms/doctype/lms_settings/lms_settings.json diff --git a/community/lms/doctype/lms_settings/lms_settings.py b/school/lms/doctype/lms_settings/lms_settings.py similarity index 100% rename from community/lms/doctype/lms_settings/lms_settings.py rename to school/lms/doctype/lms_settings/lms_settings.py diff --git a/community/lms/doctype/lms_settings/test_lms_settings.py b/school/lms/doctype/lms_settings/test_lms_settings.py similarity index 100% rename from community/lms/doctype/lms_settings/test_lms_settings.py rename to school/lms/doctype/lms_settings/test_lms_settings.py diff --git a/community/lms/md.py b/school/lms/md.py similarity index 96% rename from community/lms/md.py rename to school/lms/md.py index 14d27813..5acb6322 100644 --- a/community/lms/md.py +++ b/school/lms/md.py @@ -7,7 +7,7 @@ Macros can be added to the markdown text in the following format. These macros will be rendered using a pluggable mechanism. -Apps can provide a hook community_markdown_macro_renderers, a +Apps can provide a hook school_markdown_macro_renderers, a dictionary mapping the macro name to the function that to render that macro. The function will get the argument passed to the macro as argument. @@ -59,7 +59,7 @@ def _remove_quotes(value): def get_macro_registry(): - d = frappe.get_hooks("community_markdown_macro_renderers") or {} + d = frappe.get_hooks("school_markdown_macro_renderers") or {} return {name: frappe.get_attr(klass[0]) for name, klass in d.items()} def render_macro(macro_name, macro_argument): diff --git a/community/lms/models.py b/school/lms/models.py similarity index 100% rename from community/lms/models.py rename to school/lms/models.py diff --git a/community/lms/report/__init__.py b/school/lms/report/__init__.py similarity index 100% rename from community/lms/report/__init__.py rename to school/lms/report/__init__.py diff --git a/community/lms/report/course_progress_summary/__init__.py b/school/lms/report/course_progress_summary/__init__.py similarity index 100% rename from community/lms/report/course_progress_summary/__init__.py rename to school/lms/report/course_progress_summary/__init__.py diff --git a/community/lms/report/course_progress_summary/course_progress_summary.js b/school/lms/report/course_progress_summary/course_progress_summary.js similarity index 100% rename from community/lms/report/course_progress_summary/course_progress_summary.js rename to school/lms/report/course_progress_summary/course_progress_summary.js diff --git a/community/lms/report/course_progress_summary/course_progress_summary.json b/school/lms/report/course_progress_summary/course_progress_summary.json similarity index 100% rename from community/lms/report/course_progress_summary/course_progress_summary.json rename to school/lms/report/course_progress_summary/course_progress_summary.json diff --git a/community/lms/report/course_progress_summary/course_progress_summary.py b/school/lms/report/course_progress_summary/course_progress_summary.py similarity index 100% rename from community/lms/report/course_progress_summary/course_progress_summary.py rename to school/lms/report/course_progress_summary/course_progress_summary.py diff --git a/community/lms/test_utils.py b/school/lms/test_utils.py similarity index 100% rename from community/lms/test_utils.py rename to school/lms/test_utils.py diff --git a/community/lms/utils.py b/school/lms/utils.py similarity index 100% rename from community/lms/utils.py rename to school/lms/utils.py diff --git a/community/lms/web_form/__init__.py b/school/lms/web_form/__init__.py similarity index 100% rename from community/lms/web_form/__init__.py rename to school/lms/web_form/__init__.py diff --git a/community/lms/web_form/add_a_new_batch/__init__.py b/school/lms/web_form/add_a_new_batch/__init__.py similarity index 100% rename from community/lms/web_form/add_a_new_batch/__init__.py rename to school/lms/web_form/add_a_new_batch/__init__.py diff --git a/community/lms/web_form/add_a_new_batch/add_a_new_batch.js b/school/lms/web_form/add_a_new_batch/add_a_new_batch.js similarity index 100% rename from community/lms/web_form/add_a_new_batch/add_a_new_batch.js rename to school/lms/web_form/add_a_new_batch/add_a_new_batch.js diff --git a/community/lms/web_form/add_a_new_batch/add_a_new_batch.json b/school/lms/web_form/add_a_new_batch/add_a_new_batch.json similarity index 100% rename from community/lms/web_form/add_a_new_batch/add_a_new_batch.json rename to school/lms/web_form/add_a_new_batch/add_a_new_batch.json diff --git a/community/lms/web_form/add_a_new_batch/add_a_new_batch.py b/school/lms/web_form/add_a_new_batch/add_a_new_batch.py similarity index 100% rename from community/lms/web_form/add_a_new_batch/add_a_new_batch.py rename to school/lms/web_form/add_a_new_batch/add_a_new_batch.py diff --git a/community/lms/web_form/profile/__init__.py b/school/lms/web_form/profile/__init__.py similarity index 100% rename from community/lms/web_form/profile/__init__.py rename to school/lms/web_form/profile/__init__.py diff --git a/community/lms/web_form/profile/profile.js b/school/lms/web_form/profile/profile.js similarity index 100% rename from community/lms/web_form/profile/profile.js rename to school/lms/web_form/profile/profile.js diff --git a/community/lms/web_form/profile/profile.json b/school/lms/web_form/profile/profile.json similarity index 100% rename from community/lms/web_form/profile/profile.json rename to school/lms/web_form/profile/profile.json diff --git a/community/lms/web_form/profile/profile.py b/school/lms/web_form/profile/profile.py similarity index 100% rename from community/lms/web_form/profile/profile.py rename to school/lms/web_form/profile/profile.py diff --git a/community/lms/web_template/__init__.py b/school/lms/web_template/__init__.py similarity index 100% rename from community/lms/web_template/__init__.py rename to school/lms/web_template/__init__.py diff --git a/community/lms/web_template/course_cards/__init__.py b/school/lms/web_template/course_cards/__init__.py similarity index 100% rename from community/lms/web_template/course_cards/__init__.py rename to school/lms/web_template/course_cards/__init__.py diff --git a/community/lms/web_template/course_cards/course_cards.html b/school/lms/web_template/course_cards/course_cards.html similarity index 100% rename from community/lms/web_template/course_cards/course_cards.html rename to school/lms/web_template/course_cards/course_cards.html diff --git a/community/lms/web_template/course_cards/course_cards.json b/school/lms/web_template/course_cards/course_cards.json similarity index 100% rename from community/lms/web_template/course_cards/course_cards.json rename to school/lms/web_template/course_cards/course_cards.json diff --git a/community/lms/web_template/courses_enrolled/__init__.py b/school/lms/web_template/courses_enrolled/__init__.py similarity index 100% rename from community/lms/web_template/courses_enrolled/__init__.py rename to school/lms/web_template/courses_enrolled/__init__.py diff --git a/community/lms/web_template/courses_enrolled/courses_enrolled.html b/school/lms/web_template/courses_enrolled/courses_enrolled.html similarity index 100% rename from community/lms/web_template/courses_enrolled/courses_enrolled.html rename to school/lms/web_template/courses_enrolled/courses_enrolled.html diff --git a/community/lms/web_template/courses_enrolled/courses_enrolled.json b/school/lms/web_template/courses_enrolled/courses_enrolled.json similarity index 100% rename from community/lms/web_template/courses_enrolled/courses_enrolled.json rename to school/lms/web_template/courses_enrolled/courses_enrolled.json diff --git a/community/lms/web_template/courses_mentored/__init__.py b/school/lms/web_template/courses_mentored/__init__.py similarity index 100% rename from community/lms/web_template/courses_mentored/__init__.py rename to school/lms/web_template/courses_mentored/__init__.py diff --git a/community/lms/web_template/courses_mentored/courses_mentored.html b/school/lms/web_template/courses_mentored/courses_mentored.html similarity index 100% rename from community/lms/web_template/courses_mentored/courses_mentored.html rename to school/lms/web_template/courses_mentored/courses_mentored.html diff --git a/community/lms/web_template/courses_mentored/courses_mentored.json b/school/lms/web_template/courses_mentored/courses_mentored.json similarity index 100% rename from community/lms/web_template/courses_mentored/courses_mentored.json rename to school/lms/web_template/courses_mentored/courses_mentored.json diff --git a/community/lms/widgets/BreadCrumb.html b/school/lms/widgets/BreadCrumb.html similarity index 70% rename from community/lms/widgets/BreadCrumb.html rename to school/lms/widgets/BreadCrumb.html index f0f9dec6..e9b849b6 100644 --- a/community/lms/widgets/BreadCrumb.html +++ b/school/lms/widgets/BreadCrumb.html @@ -1,10 +1,10 @@ - + diff --git a/community/templates/emails/community_course_membership.html b/school/templates/emails/community_course_membership.html similarity index 93% rename from community/templates/emails/community_course_membership.html rename to school/templates/emails/community_course_membership.html index d432fe39..2eb87af5 100644 --- a/community/templates/emails/community_course_membership.html +++ b/school/templates/emails/community_course_membership.html @@ -15,4 +15,4 @@ {% endif %}{{_("Regards")}},
- {{ _("Team Community") }}
If you are not any more interested to mentor the course {{ course }}, you can cancel your application.
Thanks and Regards,
-Team Community.
+Team School.
diff --git a/community/templates/emails/mentor_request_status_update_email.html b/school/templates/emails/mentor_request_status_update_email.html similarity index 88% rename from community/templates/emails/mentor_request_status_update_email.html rename to school/templates/emails/mentor_request_status_update_email.html index 04e65712..db3ba35a 100644 --- a/community/templates/emails/mentor_request_status_update_email.html +++ b/school/templates/emails/mentor_request_status_update_email.html @@ -4,5 +4,5 @@Your request to join us as a mentor for the course {{ course }} has been {{ status }}.
Thanks and Regards,
-Team Community.
+Team School.
diff --git a/community/templates/exercise.html b/school/templates/exercise.html similarity index 100% rename from community/templates/exercise.html rename to school/templates/exercise.html diff --git a/community/templates/livecode/extension_footer.html b/school/templates/livecode/extension_footer.html similarity index 98% rename from community/templates/livecode/extension_footer.html rename to school/templates/livecode/extension_footer.html index 7079acb2..19fbac1b 100644 --- a/community/templates/livecode/extension_footer.html +++ b/school/templates/livecode/extension_footer.html @@ -104,7 +104,7 @@ var name = $(e).data("name"); let code = editor.codemirror.doc.getValue(); - frappe.call("community.lms.api.submit_solution", { + frappe.call("school.lms.api.submit_solution", { "exercise": name, "code": code }).then(r => { diff --git a/community/templates/livecode/extension_header.html b/school/templates/livecode/extension_header.html similarity index 100% rename from community/templates/livecode/extension_header.html rename to school/templates/livecode/extension_header.html diff --git a/community/templates/pages/__init__.py b/school/templates/pages/__init__.py similarity index 100% rename from community/templates/pages/__init__.py rename to school/templates/pages/__init__.py diff --git a/community/templates/quiz.html b/school/templates/quiz.html similarity index 100% rename from community/templates/quiz.html rename to school/templates/quiz.html diff --git a/community/test_widgets.py b/school/test_widgets.py similarity index 100% rename from community/test_widgets.py rename to school/test_widgets.py diff --git a/community/widgets.py b/school/widgets.py similarity index 100% rename from community/widgets.py rename to school/widgets.py diff --git a/community/www/__init__.py b/school/www/__init__.py similarity index 100% rename from community/www/__init__.py rename to school/www/__init__.py diff --git a/community/www/__pycache__/__init__.py b/school/www/__pycache__/__init__.py similarity index 100% rename from community/www/__pycache__/__init__.py rename to school/www/__pycache__/__init__.py diff --git a/community/www/batch/__init__.py b/school/www/batch/__init__.py similarity index 100% rename from community/www/batch/__init__.py rename to school/www/batch/__init__.py diff --git a/community/www/batch/__pycache__/__init__.py b/school/www/batch/__pycache__/__init__.py similarity index 100% rename from community/www/batch/__pycache__/__init__.py rename to school/www/batch/__pycache__/__init__.py diff --git a/community/www/batch/join.html b/school/www/batch/join.html similarity index 95% rename from community/www/batch/join.html rename to school/www/batch/join.html index 57796295..e1c9f77d 100644 --- a/community/www/batch/join.html +++ b/school/www/batch/join.html @@ -49,7 +49,7 @@ frappe.ready(() => { $("#confirm").click((e) => { frappe.call({ - "method": "community.lms.doctype.lms_batch_membership.lms_batch_membership.create_membership", + "method": "school.lms.doctype.lms_batch_membership.lms_batch_membership.create_membership", "args": { "batch": {{ batch.name }}, "course": {{ batch.course }} diff --git a/community/www/batch/join.py b/school/www/batch/join.py similarity index 100% rename from community/www/batch/join.py rename to school/www/batch/join.py diff --git a/community/www/batch/learn.html b/school/www/batch/learn.html similarity index 96% rename from community/www/batch/learn.html rename to school/www/batch/learn.html index 82fba2fd..1adf85bd 100644 --- a/community/www/batch/learn.html +++ b/school/www/batch/learn.html @@ -71,7 +71,7 @@