Aquesta pàgina forma part de la documentació de Moodle en català, tot i que no ha estat traduïda encara. Podeu contribuir obertament a les tasques de traducció. Podeu consultar la Guia d'edició de la documentació i també participar ens els debats del fòrum de traductors de la documentació a moodle.org

Question Engine 2: diferència entre les revisions

De MoodleDocs
Salta a:navegació, cerca
Cap resum de modificació
mCap resum de modificació
 
(9 revisions intermèdies per 2 usuaris que no es mostren)
Línia 1: Línia 1:
{{Template:Question_engine_2}}
There are some long-standing problems at the heart of the Moodle quiz module. Some design decisions that made sense when the quiz was started in the Moodle 1.1 days that are creaking at the seams now, because the quiz and question system has expanded so much.
There are some long-standing problems at the heart of the Moodle quiz module. Some design decisions that made sense when the quiz was started in the Moodle 1.1 days that are creaking at the seams now, because the quiz and question system has expanded so much.


Línia 14: Línia 15:
* [[Development:Question Engine 2:Rationale|Why this change is needed?]]
* [[Development:Question Engine 2:Rationale|Why this change is needed?]]
* [[Development:Question Engine 2:How the question engine currently works|How the question engine currently works]] - this may help you understand the new design.
* [[Development:Question Engine 2:How the question engine currently works|How the question engine currently works]] - this may help you understand the new design.
* [[Development:Question Engine 2:Overview|Overview of the new system]] <- '''If you only have time to read on bit, read this!'''
* [[Development:Question Engine 2:Overview|Overview of the new system]] <- '''If you only have time to read one bit, read this!'''
* [[Development:Question Engine 2:Design|Detailed design]]
* [[Development:Question Engine 2:Design|Detailed design]]
* [[Development:Developing a Question Interaction Model]]
* Developer documentation that will apply once the new system is finished:
* [[Development:Developing a Question Type]]
** [[Development:Overview of the Moodle question engine|Overview of the Moodle question engine]]
** [[Development:Developing a Question Behaviour|Developing a Question Behaviour]]
** [[Development:Developing a Question Type|Developing a Question Type]]
** [[Development:Using the question engine from module|Using the question engine from a module]]
* [[Development:Question Engine 2:Implementation plan|Implementation plan]]
* [[Development:Question Engine 2:Implementation plan|Implementation plan]]


==See also==
==See also==


* Tracker issue: MDL-20636
* Work in progress is down-loadable from github: http://timhunt.github.com/Moodle-Question-Engine-2/
* The place to discuss this is the [http://moodle.org/mod/forum/view.php?f=121 quiz forum]. You might like to use [http://moodle.org/mod/forum/discuss.php?d=134156 this thread].
* The place to discuss this is the [http://moodle.org/mod/forum/view.php?f=121 quiz forum]. You might like to use [http://moodle.org/mod/forum/discuss.php?d=134156 this thread].
* There is also a [http://moodle.org/mod/forum/discuss.php?d=114527#p502692 Thread in Lesson forum].
* There is also a [http://moodle.org/mod/forum/discuss.php?d=114527#p502692 Thread in Lesson forum].
Línia 27: Línia 33:
* [[Development:Question_database_structure|Existing question engine developer docs]].
* [[Development:Question_database_structure|Existing question engine developer docs]].
* [[Development:Goals_of_an_online_assessment_system|Overview of high-level goals for the Moodle question engine]].
* [[Development:Goals_of_an_online_assessment_system|Overview of high-level goals for the Moodle question engine]].
 
* [[Development:Question Engine 2:Developing the Multianswer (Cloze) Question Type|Developing the Multianswer (Cloze)  Question Type]]
{{CategoryDeveloper}}
[[Category:Quiz]]

Revisió de 11:46, 9 nov 2010

Plantilla:Question engine 2 There are some long-standing problems at the heart of the Moodle quiz module. Some design decisions that made sense when the quiz was started in the Moodle 1.1 days that are creaking at the seams now, because the quiz and question system has expanded so much.

The main problems are

  • The database structure is not normalised. This leads to robustness issues, particularly on overloaded MySQL servers.
  • As features like adaptive mode and each attempt builds on last were added, the code has evolved into spaghetti.
  • And we want to add yet more things like certainty based marking.
  • It is more work than it should be create a new question type, and (judging by forum threads) the API is confusing.
  • It is difficult to use questions in other modules like lesson.

These are explained in more detail in Why this change is needed? below.

This is a large proposal, so I have broken it down into sections. The Design is the key part. The other sections support that.

See also