User:Aa/EduBlog/EduBlog analysis: Difference between revisions

From OLPC
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
=== Moodle Theming ===
= Moodle Theming =


== Goals ==
== Goals ==
Line 12: Line 12:
Suggestion: Modify one of the existing themes at: [http://moodle.org/mod/data/view.php?d=26] (keep it lightweight)
Suggestion: Modify one of the existing themes at: [http://moodle.org/mod/data/view.php?d=26] (keep it lightweight)


=== Authentication ===
= Authentication =
== Goals ==
== Goals ==
Implement a easy to deploy, secure, and transparent authentication system (In that priority order) for Moodle running on school servers.
Implement an easy to deploy, secure, and transparent authentication system (In that priority order) for Moodle running on school servers.


== Comments ==
== Comments ==
Line 23: Line 23:




=== Course management, permissions ===
= Course management, permissions =
== Goals ==
== Goals ==
Maintain an intuitive blogging and administrative workflow inside Moodle.
Maintain an intuitive blogging and administrative workflow inside Moodle.
Line 47: Line 47:


Currently OUBlog doesn't support blogs based on context (user, course, moodle installation). This should be added, as it enables usage of EduBlog alongside standard Moodle in a more intuitive fashion.
Currently OUBlog doesn't support blogs based on context (user, course, moodle installation). This should be added, as it enables usage of EduBlog alongside standard Moodle in a more intuitive fashion.
== Wordpress theming ==


= Wordpress theming =
== Write modifications ==

= Write modifications =

Revision as of 20:31, 3 October 2008

Moodle Theming

Goals

Provide a streamlined interface matching the Sugar experience. A secondary goal is to reduce network traffic and rendering costs on the laptop.

Comments

The current theme included in EduBlog's moodle is lacking. Hiding the trace only makes it harder to navigate for administrators and future usage. UI cleanness should be achieved by proper configuration. Themes are kept in folders in moodle/theme and are picked up automatically by the system.

See more information on themes and a couple of tutorials.

Suggestion: Modify one of the existing themes at: [1] (keep it lightweight)

Authentication

Goals

Implement an easy to deploy, secure, and transparent authentication system (In that priority order) for Moodle running on school servers.

Comments

Speak to server-devel about planned password-less XS Moodle authentication system. Giving kids passwords is not a good idea... A public key authentication system using the XOs and Moodle's keys would be ideal.

More down-to-earth, though highly insecure, is the possibility of using MAC addresses for authentication (run a lookup of the IP's MAC address in the server's ARP cache and validate it against a list of allowed addresses). This is especially insecure in the case of teacher's machines that have higher permissions.


Course management, permissions

Goals

Maintain an intuitive blogging and administrative workflow inside Moodle.

Comments

Users can be uploaded en masse through the "Upload Users" option in the administrative interface. This should be the method of manually adding kids and their authentication information to the database. The required input is a file in CSV format described here: [2].

Currently, the blog menu in the course context has the following links:

 View my entries
 Blog preferences
 View course entries
 View site entries

Which are probably best laid out as:

 View my blog
 View my class blog
 View my school blog
 Blog preferences

The code for the blog block is in moodle/blocks/blog_menu/block_blog_menu.php and could be used to make a similar block for oublogs.

Currently OUBlog doesn't support blogs based on context (user, course, moodle installation). This should be added, as it enables usage of EduBlog alongside standard Moodle in a more intuitive fashion.

Wordpress theming

Write modifications