Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
tips:openedx [2022/10/12 09:34] – [openedx] igor | tips:openedx [2022/10/19 08:32] (current) – removed sscipioni | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== openedx ====== | ||
- | |||
- | https:// | ||
- | ==== Installazione ==== | ||
- | Requisiti: docker, libyaml-dev | ||
- | |||
- | < | ||
- | $ systemctl start docker | ||
- | $ pip install tutor[full] | ||
- | $ tutor local quickstart | ||
- | </ | ||
- | |||
- | Account amministratore: | ||
- | < | ||
- | $ tutor local createuser --staff --superuser admin admin@mail.test | ||
- | </ | ||
- | |||
- | Installare il modulo per mostrare quiz dentro a un video: | ||
- | < | ||
- | $ tutor local stop | ||
- | $ tutor config save --set OPENEDX_EXTRA_PIP_REQUIREMENTS=" | ||
- | $ tutor images build openedx | ||
- | $ tutor local start -d | ||
- | </ | ||
- | |||
- | Aprire nel browser: | ||
- | * local.overhang.io | ||
- | * studio.local.overhang.io | ||
- | |||
- | Abilitare il modulo in-video-quiz | ||
- | * Andare sull' | ||
- | * Aprire il menù Settings > Advanced settings | ||
- | * Nel campo Advanced module list scrivere [" | ||
- | |||
- | === Aggiungere un quiz dentro a un video === | ||
- | |||
- | * Nell' | ||
- | * Clicca Preview | ||
- | * Per ogni componente apri Staff Debug Info e copia la stringa ID alfanumerica | ||
- | * Torna sull' | ||
- | * Vai su Add New Component > Advanced > In-Video Quiz XBlock | ||
- | * Nel campo Video Location inserisci l'ID del video | ||
- | * Nel campo Problem timestamp definisci il JSON che associa il timemap (in secondi) all'ID del componente quiz da mostrare, esempio: {" | ||
- | |||
- | |||
- | Mostrare lista corsi: | ||
- | < | ||
- | $ tutor local run cms ./manage.py cms dump_course_ids | ||
- | </ | ||
- | Eliminare un corso: | ||
- | < | ||
- | $ tutor local run cms ./manage.py cms delete_course [id corso] | ||
- | </ | ||
- | |||
- | ==== Installare xblock-in-video-quiz e xblock-adventure ==== | ||
- | < | ||
- | $ tutor local stop | ||
- | $ nano $(tutor config printroot)/ | ||
- | </ | ||
- | Aggiungere al file le seguenti righe: | ||
- | < | ||
- | OPENEDX_EXTRA_PIP_REQUIREMENTS: | ||
- | - git+https:// | ||
- | - git+https:// | ||
- | - git+https:// | ||
- | - git+https:// | ||
- | </ | ||
- | Salvare la configurazione: | ||
- | < | ||
- | $ tutor config save | ||
- | $ tutor images build openedx | ||
- | $ tutor local start -d | ||
- | </ | ||
- | |||
- | ==== Aggiungere immagini a un quiz ==== | ||
- | < | ||
- | ( ) <img src=" | ||
- | (x) <img src=" | ||
- | ( ) <img src=" | ||
- | </ | ||
- | |||
- | === Quiz a immagini disposte orizzontalmente === | ||
- | Creare un quiz, passare alla modalità Advanced (xml) e aggiungere lo stile css: | ||
- | < | ||
- | |||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | <choice correct=" | ||
- | <choice correct=" | ||
- | <choice correct=" | ||
- | </ | ||
- | < | ||
- | .xmodule_display.xmodule_ProblemBlock div.problem .choicegroup .field { | ||
- | float: left; | ||
- | margin-right: | ||
- | } | ||
- | </ | ||
- | </ | ||
- | </ | ||
- | |||
- | </ | ||
- | |||
- | ==== In-video quiz con immagini e non scrollabile ==== | ||
- | |||
- | < | ||
- | |||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | <choice correct=" | ||
- | <choice correct=" | ||
- | <choice correct=" | ||
- | </ | ||
- | < | ||
- | .xmodule_display.xmodule_ProblemBlock div.problem .choicegroup .field { | ||
- | float: left; | ||
- | margin-right: | ||
- | } | ||
- | .xmodule_display.xmodule_ProblemBlock h3.hd-3 { | ||
- | display: none; | ||
- | } | ||
- | .xmodule_display.xmodule_ProblemBlock div.problem-progress { | ||
- | display: none; | ||
- | } | ||
- | .xmodule_display.xmodule_ProblemBlock div.problem { | ||
- | padding-top: | ||
- | } | ||
- | .xmodule_display.xmodule_ProblemBlock div.problem p { | ||
- | font-size: 1.35em; | ||
- | font-weight: | ||
- | } | ||
- | .xmodule_display.xmodule_ProblemBlock div.problem .choicetextgroup .indicator-container { | ||
- | display: none; | ||
- | } | ||
- | </ | ||
- | </ | ||
- | </ | ||
- | |||
- | </ | ||