diff options
-rw-r--r-- | CHANGELOG.txt | 7 | ||||
-rw-r--r-- | INSTALL.txt | 26 | ||||
-rw-r--r-- | README.txt | 20 | ||||
-rw-r--r-- | db/install.xml | 1 | ||||
-rw-r--r-- | version.php | 2 |
5 files changed, 34 insertions, 22 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 74d6298..31a74c4 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,10 @@ +Version +New setting to select the default comparison method +MathJax will be used for TeX rendering if MathJax isinstalled unsing +Additionnal HTML in HEAD (will not work if Mathjax is installed using a +theme) +Version + Version 0.0.4 Improvements - Export and import to Moodle XML format diff --git a/INSTALL.txt b/INSTALL.txt index da45f38..3a7ed3f 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -9,12 +9,9 @@ REQUIREMENTS To install the algebra based question type you will need the following: -1) Already installed copy of Moodle 2.1 or higher. It may work with other - Moodle versions but this is the only one I have tested it with. - -2) PHP5: The code uses exceptions and so requires PHP version 5 at a - minimum. I used this since Moodle 2.1 will require it so it should - not be an unusual requirement for long. I used PHP 5.3.5. +1) Already installed copy of Moodle 2.3 or higher. It was tested with Moodle +2.3 and 2.4. + 3) If you want to use the SAGE XML-RPC server you will also need XML-RPC support in PHP5. Most installations include this but the MAMP 1.7.1 @@ -29,20 +26,17 @@ To install the algebra based question type you will need the following: INSTALLING -1) Copy the contents of the "moodle" directory into your top level moodle - directory. Note that all the files are 'new' so there should be no files - overwritten. ('cp -iR' are good options to use). +1) Copy the contents of the "algebra" directory into the question/type + subdirectory of your moodle directory. -2) Go to Site Administration > Notifications and your database should be - configured. You are now ready to write algebra based questions which - use the 'Evaluate' and 'Equivalent' comarison methods. +2) Go to Site Administration > Notifications and follow the usual procedure + to upgrade a Moodle plugin. You are now ready to write algebra based questions + which use the 'Evaluate' and 'Equivalent' comparison methods. 3) To run the SAGE XML-RPC server you will need an installed copy of SAGE (http://www.sagemath.org/). Edit the first line of the 'sage-server.py' file to point to your installed copy of the sage executable. Then simply execute the sage-server.py script. It will run a very simple XML-RPC server. If the machine you run your moodle server on is different from - the machine running your SAGE webserver you will need to edit line 191- - 193 of the file question/type/algebra/question.php to point to the - XML-RPC server. The same applies if you edit the network port. (This - mechanism obviously needs to be improved!) + the machine running your SAGE webserver you will need to enter the full + url @@ -1,9 +1,7 @@ MOODLE ALGEBRA QUESTION TYPE -Updated to Moodle 2.0 by Stefan Raffeiner <stefan.raffeiner (at) gmail.com> -Updated to Moodle 2.1 by Jean-Michel Vedrine <vedrine (at) univ-st-etienne.fr> +Created by Roger Moore -README BY ROGER MOORE: -MOODLE ALGEBRA QUESTION TYPE +ORIGINAL README BY ROGER MOORE: These files implement a algebra based question type for Moodle. Installation instructions are found in the file INSTALL. @@ -20,4 +18,16 @@ to me. Enjoy, -Roger Moore <rwmoore (at) ualberta.ca> +Roger Moore <rwmoore@ualberta.ca> + +ADDITIONAL README + +Updated to Moodle 2.0 by Stefan Raffeiner <stefan.raffeiner@gmail.com> +Updated to Moodle 2.1 by Jean-Michel Védrine <vedrine@univ-st-etienne.fr> + +This plugin is now maintained by Jean-Michel Védrine. It was verified to work with Moodle +2.3 and 2.4. For support use the Moodle quiz forum at https://moodle.org/mod/forum/view.php?id=737 + +Enjoy. + +Jean-Michel Védrine <vedrine@univ-st-etienne.fr> diff --git a/db/install.xml b/db/install.xml index 1927ae2..edab580 100644 --- a/db/install.xml +++ b/db/install.xml @@ -2,6 +2,7 @@ <XMLDB PATH="question/type/algebra/db" VERSION="20080516" COMMENT="XMLDB file for Moodle question/type/algebra question type" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../lib/xmldb/xmldb.xsd" +> <TABLES> <TABLE NAME="qtype_algebra" COMMENT="Options for algebra questions" NEXT="qtype_algebra_variables"> <FIELDS> diff --git a/version.php b/version.php index 78e2a2f..79ec9b8 100644 --- a/version.php +++ b/version.php @@ -26,5 +26,5 @@ $plugin->component = 'qtype_algebra'; $plugin->version = 2012061701; $plugin->requires = 2012061700; - +$plugin->release = '1.0'; $plugin->maturity = MATURITY_STABLE; |