Difference between revisions of "Teacher Reporting"

From Sugar Labs
Jump to navigation Jump to search
Line 1: Line 1:
 
{{TOCright}}
 
{{TOCright}}
 
==Description==
 
==Description==
A custom [http://moodle.org/ Moodle] [http://docs.moodle.org/en/Quiz_module quiz module] which, in addition to the standard Moodle quiz features, analyzes the questions posed to the student for various qualities, such as compliance with [http://wiki.sugarlabs.org/go/User:Gdk/4th_Grade_Maths Curriculum Standards].
+
A custom [http://moodle.org/ Moodle] [http://docs.moodle.org/en/Quiz_module quiz module] which, in addition to the standard Moodle quiz features, analyzes the questions posed to the student for various qualities, such as compliance with [[User:Gdk/4th_Grade_Maths | Curriculum Standards]].
  
 
==Group Members==
 
==Group Members==
* '''Project Manager:''' [http://wiki.sugarlabs.org/go/User:Wwdillingham Wesley Dillingham]  
+
* '''Project Manager:''' [[User:Wwdillingham | Wesley Dillingham]]  
* '''Additional Group Members:''' [http://wiki.sugarlabs.org/go/User:jrgreen118 Jeremiah Green]
+
* '''Additional Group Members:''' [[User:jrgreen118 | Jeremiah Green]]
 
<br>
 
<br>
  
Line 16: Line 16:
 
*Expand upon the PHP of the Moodle Quiz Module to parse questions involving mathematical operations for characteristics contained in the [http://www.doe.mass.edu/frameworks/current.html Massachusetts Curriculum Framework for Mathematics.]  
 
*Expand upon the PHP of the Moodle Quiz Module to parse questions involving mathematical operations for characteristics contained in the [http://www.doe.mass.edu/frameworks/current.html Massachusetts Curriculum Framework for Mathematics.]  
  
*Run Moodle with the modified quiz module on an XO running [http://wiki.laptop.org/go/School_server XS], The '''X'''O school '''S'''erver.
+
*Run Moodle with the modified quiz module on an XO running [[olpc:School_server | XS]], The '''X'''O school '''S'''erver.
  
 
==Milestones==
 
==Milestones==
 
===Week 8===
 
===Week 8===
 
*Create Moodle data flow diagram to give an understanding of how the Moodle Server and corresponding database interact with Student and Teachers machines.
 
*Create Moodle data flow diagram to give an understanding of how the Moodle Server and corresponding database interact with Student and Teachers machines.
*Have [http://download.moodle.org/ Moodle's latest stable release] functioning in an XS School Server [http://wiki.laptop.org/go/XS-on-XO VirtualBox] OSE Virtual Machine
+
*Have [http://download.moodle.org/ Moodle's latest stable release] functioning in an XS School Server [[olpc:XS-on-XO | VirtualBox]] OSE Virtual Machine
  
 
===Week 9===
 
===Week 9===
*Have Moodle's latest stable release functioning on an XO running XS using the techniques outlined [http://wiki.laptop.org/go/XS-on-XO here.]
+
*Have Moodle's latest stable release functioning on an XO running XS using the techniques outlined [[olpc:XS-on-XO | here]].
 
*Have PHP calls successfully querying mock student results from Moodle's MySQL database running on XS.
 
*Have PHP calls successfully querying mock student results from Moodle's MySQL database running on XS.
 
*Parse mathematical-operation-based and tally percentage of success with each individual operation (+,-,/,* etc).
 
*Parse mathematical-operation-based and tally percentage of success with each individual operation (+,-,/,* etc).

Revision as of 17:54, 1 May 2009

Description

A custom Moodle quiz module which, in addition to the standard Moodle quiz features, analyzes the questions posed to the student for various qualities, such as compliance with Curriculum Standards.

Group Members


Data Flow Diagram

Teacher Reporting Diagram.jpg


Goals

  • Run Moodle with the modified quiz module on an XO running XS, The XO school Server.

Milestones

Week 8

  • Create Moodle data flow diagram to give an understanding of how the Moodle Server and corresponding database interact with Student and Teachers machines.
  • Have Moodle's latest stable release functioning in an XS School Server VirtualBox OSE Virtual Machine

Week 9

  • Have Moodle's latest stable release functioning on an XO running XS using the techniques outlined here.
  • Have PHP calls successfully querying mock student results from Moodle's MySQL database running on XS.
  • Parse mathematical-operation-based and tally percentage of success with each individual operation (+,-,/,* etc).
  • Parse mathematical operation and check for compliance with standard 4.P.3 Determine values of variables in simple equations, e.g., 4106 – x = 37, 5 = y + 3, and s – y = 3.

Week 10

Documentation & Resources

Post XS School Server Installation Configuration:

yum groupinstall "GNOME Desktop Environment"

edit /etc/inittab and change runlevel from 3 to 5 to startup in Gnome

yum install mysql-server php php-mysql php-mbstring php-gd php-xmlrpc php-imap cvs

service mysqld start
mysqladmin -u root password 'mySecurePassword'
mysql -u root -p
mysql> CREATE DATABASE moodle CHARSET 'utf8';
mysql> exit;
chkconfig mysqld on
--starts sql server; adds root admin user; logs into server and creates DB; 
--turns the service on on boot.

cd /var/www
cvs -z3 -d:pserver:anonymous@eu.cvs.moodle.org:/cvsroot/moodle co -r MOODLE_19_STABLE moodle
--download and install/update with the latest version of moodle

mkdir moodledata
chown -R apache:apache moodle
chown -R apache:apache moodledata
--make directory in /var/www/ and change permissions.

edit the file /etc/httpd/conf/httpd.conf
change DocumentRoot "/var/www/html" to DocumentRoot "/var/www/moodle"
change <Directory "/var/www/html"> to <Directory "/var/www/moodle">
then you must restart the apache server by issuing the command:
service httpd restart

Installing MySQL:
ScreenInstalling.png

Starting MySQL Database:
ScreenStartingMysql.png

Logging in to MySQL Database:
ScreenLoginSqlServ.png

Creating Database:
ScreenCreateDB.png