<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.moodle.org/25/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ebugnet</id>
	<title>MoodleDocs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.moodle.org/25/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ebugnet"/>
	<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/Special:Contributions/Ebugnet"/>
	<updated>2026-04-19T03:06:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Git_for_Administrators&amp;diff=96524</id>
		<title>Git for Administrators</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Git_for_Administrators&amp;diff=96524"/>
		<updated>2012-03-19T13:42:54Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: link to french page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Installing Moodle}}&lt;br /&gt;
The recommended way (now all Moodle development has moved to this versioning system) is Git. This page describes how to maintain a copy of Moodle on your production server which can easily be upgraded using Git. If you have customisations of Moodle core code, you are advised to follow the instructions in the [[Development:Quick Git start guide for Moodle development|Quick Git start guide for Moodle development]].&lt;br /&gt;
&lt;br /&gt;
To get the most of of Git it is worth making the effort to understand its basic concepts - see the See also section below. It can be a bit of a learning curve, especially if you are used to CVS or Subversion. &lt;br /&gt;
&lt;br /&gt;
== Getting hold of Git ==&lt;br /&gt;
&lt;br /&gt;
Support for Git was, up until recently, mostly confined to Linux but builds are now available for most popular operating systems:&lt;br /&gt;
* List of downloads from Git site - http://git-scm.com/download&lt;br /&gt;
&lt;br /&gt;
== Obtaining the code from Git ==&lt;br /&gt;
&lt;br /&gt;
The command line version of Git is discussed here. Graphical clients are little more than wrappers around the command line version, so you should be able to deduce the correct parameters quite easily. &lt;br /&gt;
&lt;br /&gt;
You can find the official Moodle git repository at git://git.moodle.org/moodle.git (with an official clone at git://github.com/moodle/moodle.git). To initialize your local checkout, use&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ git clone git://git.moodle.org/moodle.git                       (1)&lt;br /&gt;
$ cd moodle&lt;br /&gt;
$ git branch -a                                                   (2)&lt;br /&gt;
$ git branch --track MOODLE_22_STABLE origin/MOODLE_22_STABLE      (3)&lt;br /&gt;
$ git checkout MOODLE_22_STABLE                                    (4)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* The command (1) initializes the new local repository as a clone of the &#039;upstream&#039; (i.e. the remote server based) moodle.git repository. The upstream repository is called &#039;origin&#039; by default. It creates a new directory named &#039;&#039;moodle&#039;&#039;, where it downloads all the files. This operation can take a while as it is actually getting the entire history of all Moodle versions&lt;br /&gt;
* The command (2) lists all available branches.&lt;br /&gt;
* Use the command (3) to create a new local branch called MOODLE_22_STABLE and set it to track the remote branch MOODLE_22_STABLE from the upstream repository.&lt;br /&gt;
* The command (4) actually switches to the newly created local branch. &lt;br /&gt;
&lt;br /&gt;
Note that Git has a huge number of options for each command and it&#039;s actually possible to do the above process with a single command (left as an exercise!!).&lt;br /&gt;
&lt;br /&gt;
==Git from behind a firewall==&lt;br /&gt;
&lt;br /&gt;
Git uses a proprietary protocol and it may be blocked by your firewall (port 9418). If this is a problem, you can use Github&#039;s http version &amp;lt;nowiki&amp;gt;https://github.com/moodle/moodle.git&amp;lt;/nowiki&amp;gt;. It&#039;s a bit slower, so use the Git protocol if you can.&lt;br /&gt;
&lt;br /&gt;
== Updating your installation ==&lt;br /&gt;
&lt;br /&gt;
The Moodle development team performs integration and testing of fixed bugs every Monday and Tuesday. On Wednesday you can install all patches by updating your code. Check the [http://git.moodle.org/gw?p=moodle.git;a=summary shortlog] to see if the official repository has been already updated or not.&lt;br /&gt;
&lt;br /&gt;
To update your code to the latest version (on the MOODLE_22_STABLE branch) &#039;&#039;&#039;all&#039;&#039;&#039; you have to do is:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd /path/to/your/moodle/&lt;br /&gt;
$ git pull&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
If this is a production site you should still consider the [[Upgrade]] instructions (e.g. take backups).&lt;br /&gt;
&lt;br /&gt;
== Installing a contributed extension from its Git repository ==&lt;br /&gt;
&lt;br /&gt;
This is one way to handle adding plugins from other Git repositories into your Moodle repository. Another way is to use Git Submodules. However, at the time of writing, this is one of Git&#039;s rougher features and should be regarded as an advanced option. &lt;br /&gt;
&lt;br /&gt;
For example, let us say we want to install the [[Book module]] form its Git repository into our Moodle 2.2.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd /path/to/your/moodle/&lt;br /&gt;
$ cd mod                                                          (1)&lt;br /&gt;
$ git clone git://github.com/skodak/moodle-mod_book.git book      (2)&lt;br /&gt;
$ cd book&lt;br /&gt;
$ git checkout -b MOODLE_22_STABLE origin/MOODLE_22_STABLE        (3)&lt;br /&gt;
$ git branch -d master                                            (4)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The command (1) changes the current directory into the &#039;&#039;mod&#039;&#039; folder of your local Moodle clone. The command (2) creates a new subdirectory &#039;&#039;book&#039;&#039; and makes a local clone of Petr Škoda&#039;s vanilla Book repository. The command (3) creates a new local branch that will track the remote branch with a Book version for Moodle 2.1. The command (4) deletes the &#039;&#039;master&#039;&#039; that was created automatically by git-clone in (2) as we do not want it in this production checkout.&lt;br /&gt;
&lt;br /&gt;
Now it is wise to put the new directory mod/book/ to the list of ignored files of the main Moodle clone, otherwise a status of the main clone will keep reminding you that the new code has not been checked in.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd /path/to/your/moodle/&lt;br /&gt;
$ echo /mod/book/ &amp;gt;&amp;gt; .git/info/exclude&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To update your Moodle installation now, you must visit both Git repositories and pull changes from upstream.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd /path/to/your/moodle/&lt;br /&gt;
$ git pull&lt;br /&gt;
$ cd mod/book&lt;br /&gt;
$ git pull&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Writing a shell script with these lines in the root of Moodle installation is a very good idea. Otherwise it is easy to forget what Git repositories are there within the main Moodle repository.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
; Moodle Docs&lt;br /&gt;
* [[Git FAQ]]&lt;br /&gt;
* [[CVS for Administrators]]&lt;br /&gt;
* [[Moodle versions]]&lt;br /&gt;
* For some screenshots see [[User:Frank_Ralf/Git]] (still work in progress)&lt;br /&gt;
&lt;br /&gt;
; Moodle forum discussions&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=168094 GIT help needed]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=165236 Best way to manage CONTRIB code with GIT]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=167063 Handy Git tip for tracking 3rd-party modules and plugins]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=167730 Moodle Git repositories]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=183693 Git and CVS]&lt;br /&gt;
&lt;br /&gt;
; External resources &lt;br /&gt;
* [http://www.kernel.org/pub/software/scm/git/docs/everyday.html Everyday GIT With 20 Commands Or So]&lt;br /&gt;
* [http://gitref.org/ Git Reference]&lt;br /&gt;
* [http://progit.org/book/ Pro Git book]&lt;br /&gt;
* [http://eigenjoy.com/2008/05/15/git-from-the-bottom-up/ Git from the bottom up]&lt;br /&gt;
&lt;br /&gt;
[[Category:Git]]&lt;br /&gt;
&lt;br /&gt;
[[ja:管理者用Git]]&lt;br /&gt;
[[fr:Git_pour_administrateurs]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Capabilities/moodle/calendar:managegroupentries&amp;diff=35221</id>
		<title>Capabilities/moodle/calendar:managegroupentries</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Capabilities/moodle/calendar:managegroupentries&amp;diff=35221"/>
		<updated>2008-04-25T06:40:49Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: link to fr&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Moodle 1.9}}*This allows a user to add, update or delete calendar group entries in the context this capability applies to (system, course category or course).&lt;br /&gt;
&lt;br /&gt;
[[Category:Capabilities|Calendar]]&lt;br /&gt;
[[Category:Calendar]]&lt;br /&gt;
[[Category:Groups]]&lt;br /&gt;
&lt;br /&gt;
[[fr:Capabilities/moodle/calendar:managegroupentries]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Capabilities/moodle/calendar:manageownentries&amp;diff=35220</id>
		<title>Capabilities/moodle/calendar:manageownentries</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Capabilities/moodle/calendar:manageownentries&amp;diff=35220"/>
		<updated>2008-04-25T06:38:48Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: link to fr&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*This allows a user to add, edit or delete their own events in the calendar&lt;br /&gt;
&lt;br /&gt;
[[Category:Capabilities|Calendar]]&lt;br /&gt;
[[Category:Calendar]]&lt;br /&gt;
&lt;br /&gt;
[[fr:Capabilities/moodle/calendar:manageownentries]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Calendar_export&amp;diff=35207</id>
		<title>Calendar export</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Calendar_export&amp;diff=35207"/>
		<updated>2008-04-24T16:19:25Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Calendar}}&lt;br /&gt;
{{Moodle 1.8}}Moodle allows administrators, teachers and students to easily export calendars for backing up or inserting in calendar software.&lt;br /&gt;
&lt;br /&gt;
There are two methods for exporting a calendar in Moodle.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To back up a calendar == [[Image:MoodleCalendarExport.jpg|thumb|150px|right|Moodle Calendar &amp;quot;Export calendar&amp;quot; and &amp;quot;iCal&amp;quot; buttons]]&lt;br /&gt;
&lt;br /&gt;
* Click the &amp;quot;Export calendar&amp;quot; button located on the bottom of the calendar page &lt;br /&gt;
* Select the items you wish to back up (select &amp;quot;All events&amp;quot; to back up the entire calendar) &lt;br /&gt;
* Click &amp;quot;Export&amp;quot; when you are ready to export 	&lt;br /&gt;
&lt;br /&gt;
Note: you can only export calendar events up to the next 60 days.&lt;br /&gt;
		&lt;br /&gt;
== To copy a calendar ==  &lt;br /&gt;
&lt;br /&gt;
For use on a device such as a PDA, or to import a Moodle calendar into software such as Apple iCal, Microsoft Outlook, or Mozilla Thunderbird:&lt;br /&gt;
	&lt;br /&gt;
* Click on the orange &amp;quot;iCal&amp;quot; button located on the bottom of the calendar page&lt;br /&gt;
* Alternatively, when using &amp;quot;Export calendar&amp;quot; clicking on &amp;quot;Get calendar URL&amp;quot; will provide you with a URL which can be used with other calendar software to sync with a Moodle calendar&lt;br /&gt;
&lt;br /&gt;
Note: you cannot select individual items to include in the exported file with iCal, all events will be included.&lt;br /&gt;
&lt;br /&gt;
You can then import the exported calendar into your desired software. &lt;br /&gt;
&lt;br /&gt;
== Importing a Moodle calendar into Mozilla Thunderbird/Lightning == &lt;br /&gt;
&lt;br /&gt;
* Enter into calendar mode by clicking the Calendar icon at the bottom-right of the client&lt;br /&gt;
* Click Calendar -&amp;gt; Import... then locate the exported iCal file&lt;br /&gt;
&lt;br /&gt;
Note: changing an event in Thunderbird/Lightning will not change the event in a Moodle calendar as well, you must do that yourself.&lt;br /&gt;
&lt;br /&gt;
==Subscribing to a calendar in Outlook 2007==&lt;br /&gt;
If you use an Outlook 2007 calendar, you can have your Moodle calendar events overlaid on top (or placed side by side) by following these steps:&lt;br /&gt;
&lt;br /&gt;
#Go to the calendar view in your Moodle install and find the orange ical icon at the bottom and right click it, choosing &amp;quot;copy link location&amp;quot;.&lt;br /&gt;
#Open Outlook 2007 and go to Tools-&amp;gt;account settings-&amp;gt;internet calendars-&amp;gt;new.&lt;br /&gt;
#Paste in the address you copied from Moodle.&lt;br /&gt;
#Click OK and close.&lt;br /&gt;
#You should now see another calendar available on the left hand calendar bar, underneath &#039;My Calendars&#039;. Enable this and Outlook will update the calendar every time it opens.&lt;br /&gt;
#Right-click on the tabs to choose between &#039;side by side mode&#039; and &#039;overlay mode&#039;.&lt;br /&gt;
&lt;br /&gt;
[[ca:Exportaci%C3%B3_d%27un_calendari]]&lt;br /&gt;
[[fr:Exportation_du_calendrier]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Calendar_permissions&amp;diff=35206</id>
		<title>Calendar permissions</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Calendar_permissions&amp;diff=35206"/>
		<updated>2008-04-24T16:19:15Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Calendar}}&lt;br /&gt;
{{Moodle 1.7}}Roles and capabilities in Moodle 1.7 onwards enable possibilities such as non-admin users being given permission to add site events to the calendar. The following capabilities are related to the calendar:&lt;br /&gt;
&lt;br /&gt;
*[[Capabilities/moodle/calendar:manageentries|moodle/calendar:manageentries]]&lt;br /&gt;
*[[Capabilities/moodle/calendar:manageownentries|moodle/calendar:manageownentries]]&lt;br /&gt;
*[[Capabilities/moodle/calendar:managegroupentries|moodle/calendar:managegroupentries]] (Moodle 1.9 onwards)&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*[[Calendar editor role]]&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=72015 Can a student post a course event?] forum discussion&lt;br /&gt;
&lt;br /&gt;
[[Category:Calendar]]&lt;br /&gt;
[[Category:Roles]]&lt;br /&gt;
[[ca:Permisos_del_calendari]]&lt;br /&gt;
[[fr:Permissions_du_calendrier]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Calendar_preferences&amp;diff=35205</id>
		<title>Calendar preferences</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Calendar_preferences&amp;diff=35205"/>
		<updated>2008-04-24T16:18:38Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Calendar}}&lt;br /&gt;
&lt;br /&gt;
To enter a Moodle calendar&#039;s preferences, click on the &amp;quot;Preferences&amp;quot; button located at the top-right of the calendar. [[Image:MoodleCalendarPreferenceButton.jpg|thumb|150px|right|Moodle Calendar &amp;quot;Preferences&amp;quot; Button]]&lt;br /&gt;
&lt;br /&gt;
Once you have made changes (i.e. changed the default values) remember to click the &amp;quot;Save changes&amp;quot; button at the bottom of the Preferences page, otherwise the changed settings will not be saved. Default values for each of the preferences are listed below. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Time display format == &lt;br /&gt;
&lt;br /&gt;
Either 12-hour (am/pm) or 24-hour time display formatting can be set. The default setting formats the time display according to the language settings you use on the site (US-English will format the time display to 12-hour).&lt;br /&gt;
&lt;br /&gt;
== First day of week == &lt;br /&gt;
&lt;br /&gt;
The day that a calendar weeks will start with when being displayed. Default is set to &amp;quot;Sunday&amp;quot;.&lt;br /&gt;
[[Image:MoodleCalendarPreferencePage.jpg|thumb|150px|right|Moodle Calendar Preferences Page]]&lt;br /&gt;
== Maximum upcoming events == &lt;br /&gt;
&lt;br /&gt;
The maximum number of upcoming events displayed on the calendar at one time. A larger number will mean that upcoming events displays will take up a large amount of space on a screen. Default is set to 10.&lt;br /&gt;
&lt;br /&gt;
== Upcoming events look-ahead == &lt;br /&gt;
&lt;br /&gt;
The maximum number of days in the future that an event has to occur in order to be displayed as an upcoming event. Events that start on a date beyond the value set will not be displayed as an upcoming event. Default is set to 21.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If the number of upcoming events exceeds the maximum number of upcoming events allowed (see above) then the ones that exceed this limit will &#039;&#039;&#039;not&#039;&#039;&#039; be displayed. To allow for more upcoming events to be displayed at one time, set Maximum upcoming events to a higher value.&lt;br /&gt;
&lt;br /&gt;
== Remember filter settings == &lt;br /&gt;
&lt;br /&gt;
If the value is set to &amp;quot;Yes&amp;quot; then your last event filter settings will be automatically restores each time you login. Default is set to &amp;quot;No&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Other Settings == &lt;br /&gt;
&lt;br /&gt;
Various other settings for the Moodle calendar can be located at Appearance -&amp;gt; Themes -&amp;gt; Calendar in the Site Administration panel. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Settings will be dependent on the site theme used.&lt;br /&gt;
&lt;br /&gt;
[[ca:Prefer%C3%A8ncies_del_calendari]]&lt;br /&gt;
[[fr:Pr%C3%A9f%C3%A9rences_du_calendrier]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Adding/editing_a_calendar_event&amp;diff=35204</id>
		<title>Adding/editing a calendar event</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Adding/editing_a_calendar_event&amp;diff=35204"/>
		<updated>2008-04-24T16:17:56Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Calendar}}&lt;br /&gt;
&lt;br /&gt;
To add a calendar event&lt;br /&gt;
* Click month on Calendar to get an expanded month view&lt;br /&gt;
* In Calendar view click the New Event button&lt;br /&gt;
* On a New Event page select the type of event&lt;br /&gt;
** A &#039;&#039;&#039;User Event&#039;&#039;&#039; will only be visible by the user currently logged in (i.e. the one creating the event);&lt;br /&gt;
** A &#039;&#039;&#039;Group Event&#039;&#039;&#039; will be visible to a particular Group on the course (chosen from a drop-down list);&lt;br /&gt;
** A &#039;&#039;&#039;Course Event&#039;&#039;&#039; will be visible to participants on the course in question. Only users with editing rights on a course can add course events;&lt;br /&gt;
** A &#039;&#039;&#039;Site Event&#039;&#039;&#039; is a &amp;quot;global&amp;quot; event - visible in every course and on the calendar on the home page. Only Administrators can add site events.&lt;br /&gt;
* Set the event properties&lt;br /&gt;
* Click Save changes&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*[http://www.youtube.com/watch?v=Rwst4lSNniw Video on using the Moodle calendar]&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=51583 Importing a global calendar from outlook] forum discussion&lt;br /&gt;
&lt;br /&gt;
[[ca:Afegir/editar_esdeveniments]]&lt;br /&gt;
[[fr:Ajouter/modifier_un_%C3%A9v%C3%A9nement]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Using_Wiki&amp;diff=18276</id>
		<title>Using Wiki</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Using_Wiki&amp;diff=18276"/>
		<updated>2006-11-30T08:55:35Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Wiki}}&lt;br /&gt;
&lt;br /&gt;
==Adding pages==&lt;br /&gt;
&lt;br /&gt;
A useful way of adding pages and maintaining a structured contents page (as opposed to the alphabetical &#039;&#039;&#039;Page Index&#039;&#039;&#039;) is to add initial wiki pages from the front page:&lt;br /&gt;
* Click the edit tab on the front page of the wiki&lt;br /&gt;
* Type the desired page title in square brackets on any part of the page e.g. [Surds]&lt;br /&gt;
* Save the page&lt;br /&gt;
The page will now display Surds? with the question mark being a hyperlink to the new empty page.  &lt;br /&gt;
* Click on the question mark and add content to the new page.  The question mark will then disappear.&lt;br /&gt;
&lt;br /&gt;
== CamelCase notation ==&lt;br /&gt;
&lt;br /&gt;
*What is a CamelCase notation?  Your very first CamelCase notation you will create will look like: &amp;lt;nowiki&amp;gt;[Create wiki page]&amp;lt;/nowiki&amp;gt;. Anything inside the square brackets is the page name. When this is placed on the first wiki page, a &amp;quot;?&amp;quot; that is a link appears. Clicking on the link in this example will take us to a new blank page called &amp;quot;Create wiki page&amp;quot;.  &lt;br /&gt;
*CamelCase notation allows pages to be linked, indexes created for catagories, and all sorts of other organizational tools to make connections.&lt;br /&gt;
*CamelCase describes what WikiWords look like. Multiple words, joined together without spaces, separated by changes in case. The uppercase and lowercase letters show up like the humps of camels.  This linking scheme is often also called BumpyText because it could look like CaMeL_CaSe.&lt;br /&gt;
In return you will get in trouble, if you need to have words displayed in CamelCase in your text. Moodle will automatically turn those words into anchors with a link pointing to a new side. You may turn of this CamelCase functionality in the menu “Edit this Wiki”. I’m not sure this is the exact name of the menu, as I have only access to the Danish version of Moodle. It might be “Update this wiki” or something like that?&lt;br /&gt;
&lt;br /&gt;
==Deleting pages==&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Open the wiki &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Use the Administration drop down menu in the upper right corner of your screen to delete pages &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Wiki search==&lt;br /&gt;
Wiki search ignores hyperlinks so it is wise to add a &amp;quot;Keywords:&amp;quot; line which contains the words of the the page title separated by commas, and any other entries that you wish to be found by the search.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Wiki]]&lt;br /&gt;
&lt;br /&gt;
[[fr:Afficher un wiki]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Wiki_settings&amp;diff=18275</id>
		<title>Wiki settings</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Wiki_settings&amp;diff=18275"/>
		<updated>2006-11-30T08:54:42Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Wiki}}&lt;br /&gt;
==Adding a wiki page==&lt;br /&gt;
There are several ways to add a new wiki page.  In later versions of Moodle, the course participant&#039;s privilages can effect adding or editing wiki pages.  &lt;br /&gt;
&lt;br /&gt;
===Add a wiki activity===&lt;br /&gt;
When the teacher selects &#039;&#039;&#039;Wiki&#039;&#039;&#039; from the [[Adding resources and activities|Add an Activity&lt;br /&gt;
]] pull down menus in a course, they will be asked to create the first page.&lt;br /&gt;
&lt;br /&gt;
===Add by using search===&lt;br /&gt;
Any participant (with correct privilages) of an existing wiki can enter the name of the page they would like to create in the Search box on a wiki page.  For example they might enter the name &amp;quot;Roses&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
: If the page already exists &lt;br /&gt;
::they will be taken to the page &amp;quot;Roses&amp;quot;&lt;br /&gt;
: If the page does not exist, they will see:&lt;br /&gt;
:: &#039;&#039;&#039;There is no page titled &amp;quot;Roses&amp;quot;&#039;&#039;&#039; &lt;br /&gt;
::They can create this page by clicking on the &amp;quot;create this page&amp;quot; link &lt;br /&gt;
::and begin editing the new page called &amp;quot;Roses&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===From a wiki page===&lt;br /&gt;
&lt;br /&gt;
Participants in a wiki can also create a new wiki page by editing an existing page and adding a wiki link to the page they want to create - e.g. &amp;lt;nowiki&amp;gt;[[Roses]]&amp;lt;/nowiki&amp;gt;- using brackets.&lt;br /&gt;
&lt;br /&gt;
After either selecting &#039;&#039;&#039;Save page&#039;&#039; or &#039;&#039;&#039;Show preview&#039;&#039;&#039;, the participant will then see a clickable link to &amp;quot;Roses&amp;quot;; they or someone else can click on it and begin to edit that page.&lt;br /&gt;
&lt;br /&gt;
==Editing a wiki==&lt;br /&gt;
Editing a wiki is simple.&lt;br /&gt;
* Click on the &#039;&#039;&#039;edit&#039;&#039;&#039; tag at the top of the wiki page&lt;br /&gt;
* Edit the text&lt;br /&gt;
* Use wiki tags for formatting and creating links that are needed&lt;br /&gt;
* Then save the page, or preview the page before saving&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* Go to [[Help:Editing]] to learn more about the wiki formatting tags&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Wiki]]&lt;br /&gt;
&lt;br /&gt;
[[fr:Ajouter/modifier un wiki]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Using_Choice&amp;diff=18181</id>
		<title>Using Choice</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Using_Choice&amp;diff=18181"/>
		<updated>2006-11-24T12:31:31Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Choices}}&lt;br /&gt;
&lt;br /&gt;
You will see the choice name and description as well as the options you can vote for. Clicking Save my choice saves the answer you have chosen. You can also &#039;View x responses&#039; (where &#039;x&#039; is the number of responses given to the choice).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:Choice_7b.gif|frame|left|time to vote]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Choice]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[fr:Afficher un sondage]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Choice_settings&amp;diff=18180</id>
		<title>Choice settings</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Choice_settings&amp;diff=18180"/>
		<updated>2006-11-24T12:30:28Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Choices}}&lt;br /&gt;
&lt;br /&gt;
==Select choice==&lt;br /&gt;
&lt;br /&gt;
Log in as the course teacher and turn on editing. Then select &#039;&#039;Choice&#039;&#039; from the drop down &#039;&#039;Add an activity&#039;&#039; menu.&lt;br /&gt;
&lt;br /&gt;
[[image:Choice_1.gif|frame|left|choose &#039;&#039;choice&#039;&#039; from the menu]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Choice name==&lt;br /&gt;
&lt;br /&gt;
A short name of the choice (e.g. &amp;quot;Favourite colour&amp;quot;). This will be displayed on the course&#039;s homepage.&lt;br /&gt;
[[image:Choice_2.gif|frame|left|this will become a link on the course page]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Choice text==&lt;br /&gt;
&lt;br /&gt;
Type the description of the choice activity here. It should contain the question that you want your students to answer. An example of the choice text could be &amp;quot;What is your favourite colour?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[image:Choice_3.gif|frame|left|what do you want the students to tell you?]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Choice 1 ~ Choice 10==&lt;br /&gt;
&lt;br /&gt;
Here is where you specify the options that participants have to choose from. In our example, the numbered options could be e.g. &amp;quot;blue&amp;quot;, &amp;quot;green&amp;quot;, &amp;quot;red&amp;quot;, &amp;quot;yellow&amp;quot;, etc.&lt;br /&gt;
&lt;br /&gt;
You can fill in any number of these: if you leave some of the options blank, they will not be displayed.&lt;br /&gt;
&lt;br /&gt;
[[image:Choice_4.gif|frame|left|up to ten responses]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Limit the number of responses allowed==&lt;br /&gt;
&lt;br /&gt;
This option allows you to limit the number of participants who can select each particular option.&lt;br /&gt;
&lt;br /&gt;
Once Limits have been enabled, each option can be assigned a limit. When the limit is reached then no-one else can select that option. A limit of zero (0) means that no-one can select that option.&lt;br /&gt;
&lt;br /&gt;
If Limits are disabled then any number of participants can select any of the options.&lt;br /&gt;
&lt;br /&gt;
==Restrict answering to this time period==&lt;br /&gt;
&lt;br /&gt;
This setting allows you to define a time window within which participants are allowed to make a choice.&lt;br /&gt;
&lt;br /&gt;
To set an open-ended close date just set the time very far in the future.&lt;br /&gt;
&lt;br /&gt;
If you don&#039;t need this at all then uncheck the box.&lt;br /&gt;
&lt;br /&gt;
[[image:Choice_5.gif|frame|left|this is optional, of course]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Display Mode==&lt;br /&gt;
&lt;br /&gt;
This setting allows you to choose how the choices will be displayed to the participants: horizontally, or vertically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hint&#039;&#039;&#039;: In most cases, if there are only a few choices with little text, they may be positioned horizontally. However, if there are more than 5-6 choices or if the text of the choices is longer than 2-3 words, it should be better to display them vertically. (red arrow, below)&lt;br /&gt;
&lt;br /&gt;
[[image:Choice_6.gif|frame|left|just a few more parameters]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Publish results==&lt;br /&gt;
&lt;br /&gt;
This setting determines whether (and when) the students will be able to view the results of the choice activity. They may:&lt;br /&gt;
&lt;br /&gt;
* never see the results of the choice&lt;br /&gt;
* see the results only after they have given the answer themselves&lt;br /&gt;
* see the results only after the closing date of the choice&lt;br /&gt;
* always see the results&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;(teal arrow, above)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Privacy of results==&lt;br /&gt;
&lt;br /&gt;
If the choice results are shown to students, this setting determines whether the results will be anonymous.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;(orange arrow, above)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Allow choice to be updated==&lt;br /&gt;
&lt;br /&gt;
If this is set to &amp;quot;Yes&amp;quot;, students can change their mind after they have voted. If it&#039;s set to &amp;quot;No&amp;quot;, students cannot change their choice.&lt;br /&gt;
&#039;&#039;&#039;&lt;br /&gt;
(lime green arrow, above)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Show column for unanswered==&lt;br /&gt;
&lt;br /&gt;
If set to &amp;quot;Yes&amp;quot;, this will display a column showing how many participants have not answered the choice activity yet. If set to &amp;quot;No&amp;quot;, the results will only include the participants who have already voted.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;(purple arrow, above)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Group mode==&lt;br /&gt;
&lt;br /&gt;
The group mode can be one of three levels: &lt;br /&gt;
&lt;br /&gt;
* No groups &lt;br /&gt;
&lt;br /&gt;
There are no sub groups, everyone is part of one big community &lt;br /&gt;
&lt;br /&gt;
* Separate groups &lt;br /&gt;
&lt;br /&gt;
Each group can only see their own group, others are invisible &lt;br /&gt;
&lt;br /&gt;
* Visible groups &lt;br /&gt;
&lt;br /&gt;
Each group works in their own group, but can also see other groups &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The group mode can be defined at two levels:&lt;br /&gt;
&lt;br /&gt;
* Course level &lt;br /&gt;
&lt;br /&gt;
The group mode defined at the course level is the default mode for all activities defined within that course&lt;br /&gt;
&lt;br /&gt;
* Activity level &lt;br /&gt;
&lt;br /&gt;
Each activity that supports groups can also define its own grouping mode. If the course is set to [[Force group mode|&amp;quot;force group mode&amp;quot;]] then the setting for each activity is ignored.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;(pink arrow, above)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Visible to students==&lt;br /&gt;
&lt;br /&gt;
You can hide the activity from students by selecting &amp;quot;Hide&amp;quot; here. It is useful if you wouldn&#039;t like to make the activity available immediately.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;(black arrow, above)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[course/groups|Groups]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category: Choice]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[fr:Ajouter/modifier un sondage]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Label&amp;diff=15629</id>
		<title>Label</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Label&amp;diff=15629"/>
		<updated>2006-09-10T08:15:47Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Resources}}&lt;br /&gt;
&lt;br /&gt;
When you are adding or editing a label, you have to fill in the following fields:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Label text&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Visible to students&#039;&#039;&#039; - You can hide the resource from students by selecting &amp;quot;Hide&amp;quot; here. It is useful if you wouldn&#039;t like to make the activity available immediately.&lt;br /&gt;
&lt;br /&gt;
[[Image:Label_0.gif|frame|left|choose &#039;&#039;Insert a label&#039;&#039; from the resource menu]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:Label_1.gif|frame|left|add text, links and/or images]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:Label_2.gif|frame|left|view label]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Use a label to display an external web page within a label ==&lt;br /&gt;
&lt;br /&gt;
An exciting possibility for labels allows external or internal pages to be displayed in the middle of the moodle screen (instead of just putting a link to them)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How&#039;&#039;&#039;: &lt;br /&gt;
* Create a label&lt;br /&gt;
* Display raw HTML code (use the editor button &amp;lt;&amp;gt;)&lt;br /&gt;
* Insert code like:   &amp;lt;iframe width=&amp;quot;100%&amp;quot; height=&amp;quot;200&amp;quot; align=&amp;quot;middle&amp;quot; src=&amp;quot;http://www.google.com&amp;quot; border=&amp;quot;0&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Additionally, labels allow more flexible formatting of moodle resources e.g. place links to resources in a table so that many can be offered in the same line, thus reducing the need to scroll through a course page.&lt;br /&gt;
&lt;br /&gt;
The actual resources still need to exist in the course, perhaps in an admin topic at the very bottom.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*[[Tips and tricks|Teachers&#039; Tips and Tricks]]&lt;br /&gt;
*[[Flash|Using Flash]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
&lt;br /&gt;
[[ja:ラベル]]&lt;br /&gt;
[[fr:Étiquette]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=Label&amp;diff=15628</id>
		<title>Label</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=Label&amp;diff=15628"/>
		<updated>2006-09-10T08:13:47Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: /* Use a label to display an external web page within a label */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Resources}}&lt;br /&gt;
&lt;br /&gt;
When you are adding or editing a label, you have to fill in the following fields:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Label text&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Visible to students&#039;&#039;&#039; - You can hide the resource from students by selecting &amp;quot;Hide&amp;quot; here. It is useful if you wouldn&#039;t like to make the activity available immediately.&lt;br /&gt;
&lt;br /&gt;
[[Image:Label_0.gif|frame|left|choose &#039;&#039;Insert a label&#039;&#039; from the resource menu]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:Label_1.gif|frame|left|add text, links and/or images]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:Label_2.gif|frame|left|view label]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Use a label to display an external web page within a label ==&lt;br /&gt;
&lt;br /&gt;
An exciting possibility for labels allows external or internal pages to be displayed in the middle of the moodle screen (instead of just putting a link to them)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How&#039;&#039;&#039;: &lt;br /&gt;
* Create a label&lt;br /&gt;
* Display raw HTML code (use the editor button &amp;lt;&amp;gt;)&lt;br /&gt;
* Insert code like:   &amp;lt;iframe width=&amp;quot;100%&amp;quot; height=&amp;quot;200&amp;quot; align=&amp;quot;middle&amp;quot; src=&amp;quot;http://www.google.com&amp;quot; border=&amp;quot;0&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Additionally, labels allow more flexible formatting of moodle resources e.g. place links to resources in a table so that many can be offered in the same line, thus reducing the need to scroll through a course page.&lt;br /&gt;
&lt;br /&gt;
The actual resources still need to exist in the course, perhaps in an admin topic at the very bottom.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*[[Tips and tricks|Teachers&#039; Tips and Tricks]]&lt;br /&gt;
*[[Flash|Using Flash]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
&lt;br /&gt;
[[ja:ラベル]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/25/en/index.php?title=The_Good_Teacher&amp;diff=15550</id>
		<title>The Good Teacher</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/25/en/index.php?title=The_Good_Teacher&amp;diff=15550"/>
		<updated>2006-09-07T14:22:10Z</updated>

		<summary type="html">&lt;p&gt;Ebugnet: /* THE GOOD TEACHER */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== THE GOOD TEACHER ==&lt;br /&gt;
&lt;br /&gt;
=== Act 1: The Pretty Good Teacher wants to be a better one ===&lt;br /&gt;
&lt;br /&gt;
Once upon a time, there was a Pretty Good Teacher. Her students and her peers recognized that she was a Pretty Good Teacher.  Humble as she was, though, she also felt that she was a Pretty Good Teacher, and she was proud to be one.&lt;br /&gt;
&lt;br /&gt;
Still, like all good teachers, she wanted to be an even better teacher.&lt;br /&gt;
&lt;br /&gt;
She spoke with colleagues and they gave her many helpful tips (although she suspected that some of them were holding back a little).&lt;br /&gt;
&lt;br /&gt;
She talked to her students, and their insights were often quite interesting and thought-provoking.&lt;br /&gt;
&lt;br /&gt;
She went to her principal and he gave her some good advice. (Really, he did.)&lt;br /&gt;
&lt;br /&gt;
She read journals and books, joined a ListServ, visited web pages, signed up for courses, attended workshops and conferences, and generally sought knowledge wherever she could find it. She was very motivated.&lt;br /&gt;
&lt;br /&gt;
Little by little, she began to try new strategies and techniques in her classroom. For example: &lt;br /&gt;
* She began to take multiple intelligences into account in her lesson plans.&lt;br /&gt;
* She started using cooperative learning in her classroom.&lt;br /&gt;
* She integrated more project-based learning into her instruction.&lt;br /&gt;
* She even started using an LCD projector.&lt;br /&gt;
&lt;br /&gt;
Sometimes, it was a bit overwhelming. Exhausting, in fact. Not everything worked out the way she intended. But she perservered, because she wanted her students to learn as much as possible.&lt;br /&gt;
&lt;br /&gt;
Still, she felt that something was missing. She wanted to do things with her students that she had never been able to do before. Things that were fun, things that were exciting, things that students actually enjoyed doing. Mostly, things that made her students WANT to learn.&lt;br /&gt;
&lt;br /&gt;
But she couldn&#039;t say what those things were.&lt;br /&gt;
&lt;br /&gt;
=== Act 2: The Pretty Good Teacher meets Mr. Dougis ===&lt;br /&gt;
&lt;br /&gt;
One day, she read an article in her local newspaper about Mr. Dougis, a teacher who was doing great things on the Internet with his students. It sounded exciting and she wondered if this were not what she had been looking for.&lt;br /&gt;
&lt;br /&gt;
She knew the school where he taught, and she left him a telephone message. Would he mind her dropping by one day to chat?&lt;br /&gt;
&lt;br /&gt;
The next day, she received an answer. She could drop by any Thursday to see what was up. But it had to be a Thursday.&lt;br /&gt;
&lt;br /&gt;
She went to her principal and explained to him that she needed a substitute teacher for next Thursday. She told him why and he gladly gave her a professional day in order investigate. Really, he did.&lt;br /&gt;
&lt;br /&gt;
She went to see Mr. Dougis. He greeted her with a friendly smile.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Welcome,&amp;quot; he said, and smiled. &amp;quot;It&#039;s good that you came today. Thursdays, we Moodle.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The Pretty Good Teacher looked around. There were about twenty-five students sitting at computers. They looked about thirteen years old. Most did not notice her, because they were engrossed in what they were doing.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What are they working on?&amp;quot; she asked.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Well,&amp;quot; said Mr. Dougis, &amp;quot;a couple of things. Some of them are working together to create a glossary of terms used in the current events articles we read each week.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;They know how to do that?&amp;quot; she asked. She thought that creating an online glossary must be a bit complicated for this age.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Sure,&amp;quot; said Mr. Dougis. &amp;quot;It&#039;s not hard to do that in Moodle.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Oh yes, Moodle,&amp;quot; she said, &amp;quot;I read about Moodle in the newspaper article. What is it?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;It&#039;s the software we use in our virtual classroom&amp;quot;, he said, as he guided her to a monitor.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;See how the students are simply filling in a form to create entries in the glossary?&amp;quot; he asked. &amp;quot;That&#039;s Moodle.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
It did not look like the students were having any trouble.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;And some of the other students,&amp;quot; he said, &amp;quot;are having an online debate about the way the current war on terrorism is being conducted. It&#039;s turning into a pretty heated discussion,&amp;quot; he chuckled.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;How do you have an online debate?&amp;quot; she asked.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;They are using a discussion forum to talk with each other and are even rating each others&#039; posts according to criteria we developed together,&amp;quot; he said.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Can they really handle that at such a young age?&amp;quot; she asked.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Some are still learning about how to deal with constructive criticism and how not to take everything that is posted personally,&amp;quot; he relpied. &amp;quot;But we are getting there. With a little guidance and encouragement...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;No, I mean the technology,&amp;quot; she interrupted.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Of course!&amp;quot;  replied Mr. Dougis. &amp;quot;In Moodle, forums are easy to use.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And throughout the day, that is how it went. Moodle this and Moodle that. The Pretty Good Teacher had to admit that even the younger students seemed to be proficient Moodlers. And almost all the students seemed engaged and interested in their work.&lt;br /&gt;
&lt;br /&gt;
She was impressed, but wondered if all were really as it seemed.&lt;br /&gt;
&lt;br /&gt;
During Mr. Dougis&#039; break, they talked over a cup of coffee and a piece of cake.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Tell me more about Moodle,&amp;quot; she said.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Well,&amp;quot; he began, &amp;quot;I use Moodle to compliment and enhance my classroom instruction. I might, for example, just upload a Power Point presentation to the site for my students to review or post links to a good web site. Or we might do something more social, more collaborative, as you have seen today.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;So, Moodle helps you do some things differently?&amp;quot; she asked.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Not just different,&amp;quot; he emphatically corrected, &amp;quot;better.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;How so?&amp;quot; She really wanted to know.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Let&#039;s say,&amp;quot; said Mr. Dougis, &amp;quot;that we are discussing the effects of global warming. I can send my students to the library to do traditional research and we can discuss what they find out in class. And I can have the students make posters to display what they have learned. We can break into groups create lists of top ten easy ways to fight global warming. And we can have a debate in class about the effects of global warming, too.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;That sounds fine,&amp;quot; said the Pretty Good Teacher. &amp;quot;What is wrong with that?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;There is nothing wrong with that,&amp;quot; replied Mr. Dougis, &amp;quot;but we can, for example, also go to Moodle and create a survey about global warming to administer to students here at our school and to students at our online partner schools in Canada and South Africa in order to see to what extent we all agree on the issue. We can design the survey together, invite our partners to take it, and have a discussion with them about where we see eye to eye and where we don&#039;t. And that is potentially a rich, valuable educational experience that we could not have without Moodle, don&#039;t you agree?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The Pretty Good Teacher did agree. She wanted this Moodle thing for her students.&lt;br /&gt;
&lt;br /&gt;
Mr. Dougis showed her how to go to any one of several sites and set up a Moodle classroom. That weekend, the Pretty Good Teacher started learning the basics of Moodle. She even got in touch with the moodle comunity at moodle.org where she found other teachers like herself and lots of people interested in the moodle thing.&lt;br /&gt;
&lt;br /&gt;
=== Act 3: The Pretty Good Teacher starts Moodling ===&lt;br /&gt;
&lt;br /&gt;
By the next Friday, she and her students were in the school computer lab. She showed them how to use a discussion forum and urged the students to discuss the novel they were currently reading.&lt;br /&gt;
&lt;br /&gt;
Some students had a good bit to say about it. Others had very little to say. Some comments were insightful. Others were quite foolish.&lt;br /&gt;
&lt;br /&gt;
The Pretty Good Teacher was disappointed. Was Moodle not really all Mr. Dougis had claimed?&lt;br /&gt;
&lt;br /&gt;
A few days later, she tried again. She set up a chat room and told the students to chat about anything, but to pretend they were characters from the novel. A few students did a really good job, but many students did not seem to take the assignment seriously. And the chat room became very confusing when everyone spoke at the same time. Frankly, the lesson was a flop.&lt;br /&gt;
&lt;br /&gt;
Some of her students must have been talking about Moodle in a less than complimentary way, because the Pretty Good Teacher had to endure some snide comments about it in the staff room. Some of her so-called colleagues actually seemed happy to see her struggle a little. It was incomprehensible to her, but it was undeniable. And she didn&#039;t like looking foolish.&lt;br /&gt;
&lt;br /&gt;
Now the Pretty Good Teacher was quite sure that Moodle was not as wonderful as Mr. Dougis seemed to think it was. Annoyed, she sent him an email, telling him so.&lt;br /&gt;
&lt;br /&gt;
=== Act 4: Mr Dougis you&#039;ve got an email ===&lt;br /&gt;
&lt;br /&gt;
She received a quick reply. &amp;quot;You sound upset,&amp;quot; wrote Mr. Dougis.&lt;br /&gt;
&lt;br /&gt;
The Pretty Good Teacher returned, &amp;quot;I am upset. I am not so sure that Moodle is right for my students.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
An exchange of emails ensued.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Maybe,&amp;quot; he responded. &amp;quot;But let me ask you this: Did your students do what you asked them to do?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What do you mean?&amp;quot; asked the Pretty Good Teacher.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Well, when you asked them to discuss the novel in the forum, did they do that?&amp;quot; he asked.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Yes, I suppose most of them did,&amp;quot; she replied.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;And when you asked them to chat about the novel,&amp;quot; he continued, &amp;quot;did they do that?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;The majority of them did,&amp;quot; she answered.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;So, why are you unhappy?&amp;quot; asked Mr. Dougis.&lt;br /&gt;
&lt;br /&gt;
It was a good question.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Well,&amp;quot; she wrote, &amp;quot;the students did not seem very excited about the lessons and I am not sure that they learned much, either.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Does that ever happen in your traditional classroom?&amp;quot; asked Mr. Dougis.&lt;br /&gt;
&lt;br /&gt;
Now she was offended. &amp;quot;Almost never,&amp;quot; came her indignant response.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Why not?&amp;quot; asked Mr. Dougis playing with fire.&lt;br /&gt;
&lt;br /&gt;
First she planned a very icy and angry response. But after 5 minutes or so, she cooled down and started thinking about it seriously. Normally, her lessons had something like a beginning, a middle and an end. They were well thought out and the students understood just what she expected of them. So that is what she wrote in her response to Mr. Dougis&#039; question.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Can you honestly say the same of your two Moodle lessons?&amp;quot; he wrote back. Mr. Dougis was definitively a daredevil. &lt;br /&gt;
&lt;br /&gt;
She knew he was right. She had expected Moodle to work some sort of magic on her students, but she had not really designed the kind of good, effective lessons she normally planned.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What would you advise your students to do in a situation like this?&amp;quot; asked Mr. Dougis.&lt;br /&gt;
&lt;br /&gt;
She decided to give Moodle another chance.&lt;br /&gt;
&lt;br /&gt;
=== Act 5: The Pretty Good Teacher strikes back ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This time, she asked herself, &amp;quot;What do I want my students to learn?&amp;quot; And she wrote down her objectives.&lt;br /&gt;
&lt;br /&gt;
Then she asked herself, &amp;quot;What resources will we need to make the lesson work?&amp;quot; and she collected and organized her resources.&lt;br /&gt;
&lt;br /&gt;
Finally, she asked herself, &amp;quot;What is it I want my students to actually do in order to be successful?&amp;quot; And she designed her activities.&lt;br /&gt;
&lt;br /&gt;
The Pretty Good Teacher wanted her students to recognize and identify the importance of conflict in the novel.&lt;br /&gt;
&lt;br /&gt;
She located a couple of good online resources to give students the information they needed to do this and she posted her own notes to help them better understand what they found on the web sites.&lt;br /&gt;
&lt;br /&gt;
In addition, she wanted them to create a web page for each major conflict in the novel, describing the conflict and suggesting several possible ways the conflict could be resolved. Then she set up a wiki where her students could do this.&lt;br /&gt;
&lt;br /&gt;
Before going to the lab, she discussed the lesson with her students and showed them how to work in a wiki. She used her cool, new LCD projector for that.&lt;br /&gt;
&lt;br /&gt;
She posted clear instructions about the lesson to the web site, reinforcing what she had said in class (and unconsciously stating a contract with her students).&lt;br /&gt;
&lt;br /&gt;
The next day, they went to the lab.&lt;br /&gt;
&lt;br /&gt;
The Pretty Good Teacher was gratified to see how much better the lesson went. While a few of the students did have a little trouble the first few minutes getting used to the wiki, most of them actually caught on very quickly, and it was a pleasure to see how they helped each other get up and running.&lt;br /&gt;
&lt;br /&gt;
After about forty-five minutes, almost all students had contributed to the wiki. Some of their web pages were surpisingly good.&lt;br /&gt;
&lt;br /&gt;
As the Pretty Good Teacher circulated around the lab, she encouraged the students and complimented their work. Of course, she also had to remind a couple of students that playing card games on the computer was not part of the lesson.&lt;br /&gt;
&lt;br /&gt;
While she could not say that the lesson was perfect, the Pretty Good Teacher was pleased. The students had not only learned a lot, they seemed to enjoy doing so.&lt;br /&gt;
&lt;br /&gt;
That evening, she went back to the wiki to reread some of the pages. She was surprised to see that some students had continued to work on their pages from home. They had added graphics and links and some shocking, but enthusiastic, text formatting. She had not assigned this as homework, they just wanted to do it. &lt;br /&gt;
&lt;br /&gt;
And the Pretty Good Teacher smiled a little.&lt;br /&gt;
&lt;br /&gt;
=== Act 6: The next day ===&lt;br /&gt;
&lt;br /&gt;
When class met the next day, several of the students were quite excited about Moodle. One said, &amp;quot;When my father asked me what we had done in school, I showed him the wiki. He thought it was great!&amp;quot; It was obvious that she was proud of the work she and her classmates had done.&lt;br /&gt;
&lt;br /&gt;
The Pretty Good Teacher was feeling pretty good.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Can we go back to the lab today?&amp;quot; one student asked.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;No,&amp;quot; she replied, &amp;quot;not today, but we can go back next week. Do you all want to do that?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
When they said yes, she was not very surprised.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;In the meantime,&amp;quot; she suggested, &amp;quot;maybe we should think of a name for our online classroom.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
They thought of several good posibilities and decided to vote to pick the best one. The Pretty Good Teacher said, &amp;quot;We do not have to vote right now. I will post a choice to our new web site and you can take a few days to decide.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Almost everyone agreed that this was a sensible idea. But a couple of students looked unhappy about it.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What&#039;s wrong?&amp;quot; the Pretty Good Teacher asked one of them as the class was leaving.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;We don&#039;t have the Internet at my house, so I can&#039;t vote,&amp;quot; said the student.&lt;br /&gt;
&lt;br /&gt;
The Pretty Good Teacher hadn&#039;t thought of that. But she had an Internet connection in her classroom. And there were quite a few online computers in the school&#039;s media center.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Why don&#039;t you stop here right after school and use our computer when you want to Moodle?&amp;quot; she suggested. &amp;quot;Or I can write you a pass to the media center during class one day when we have a few extra minutes.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The student smiled. &amp;quot;Thanks! I&#039;ll stop by after school&amp;quot;, she said and headed to her next class.&lt;br /&gt;
&lt;br /&gt;
When she returned at the end of the day, she had a friend with her. &amp;quot;You&#039;re not in my class,&amp;quot; teased the Pretty Good Teacher. &amp;quot;I know,&amp;quot; said the friend, &amp;quot;but it sounds like fun.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And the Pretty Good Teacher was pretty happy.&lt;br /&gt;
&lt;br /&gt;
=== Act 7: She kept on moodling ===&lt;br /&gt;
&lt;br /&gt;
And so it went. Over time, Moodle came to be an important part of the class. Soon, the Pretty Good Teacher was posting lesson plans to Moodle. Not very exciting, but the parents seemed to appreciate it. After a while, she began setting up little practice quizzes to help students prepare for tests. Together with another class, the students collaborated on articles for the school newspaper. They submitted rough drafts of papers for peer review and discussed class matters online. Some students even used the chat room for occasional online study sessions. And once they discovered instant messaging and blogs, things really got crazy. &lt;br /&gt;
&lt;br /&gt;
After a few months, Moodling became second nature to them. It felt natural. It was fun.&lt;br /&gt;
&lt;br /&gt;
And other teachers at the school began to Moodle. Sometimes, they met with their wireless laptops at a local cafe for &amp;quot;Moodle and Coffee&amp;quot; sessions. The teachers began to look forward to spending this time together--even a couple of the teachers who had made negative remarks in the staff room.&lt;br /&gt;
&lt;br /&gt;
=== Act 8: Unexpected role-reversal===&lt;br /&gt;
&lt;br /&gt;
One day, the Pretty Good Teacher ran into Mr. Dougis at the grocery store. She told him how well things were going. And she thanked him for Moodle.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Glad to share,&amp;quot; he said, and smiled. &lt;br /&gt;
&lt;br /&gt;
&amp;quot;Know what I like best?&amp;quot; she said. &amp;quot;It is cool that we can do a weekly podcast for our new partner class in Australia! My students love that podcasting module!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;So there&#039;s a podcasting module? I didn&#039;t know that,&amp;quot; said her Moodle mentor.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Really, well, we should set up a forum where we can share on a regular basis,&amp;quot; she replied, secretly thrilled at this unexpected role-reversal.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Yes, that&#039;s a great idea. Let&#039;s do that,&amp;quot; answered Mr. Dougis, who was clearly pleased. &amp;quot;You know, it sounds like you have become a Very Good Teacher.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
And he was right. She had, indeed, become a Very Good Teacher.&lt;br /&gt;
&lt;br /&gt;
=== Epilogue ===&lt;br /&gt;
&lt;br /&gt;
She had to convince the school faculty council and the school director, but she finally succeeded in getting some free days for her trip to the next MoodleMoot. Her school administrators even covered the expenses of her trip, writing it off as &amp;quot;professional development&amp;quot; and wishing her well as she represented them to other schools attending the Moot. Once there she, the Good Teacher, gave a speech to other Moodlers about her Moodling experiences.  &lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
&lt;br /&gt;
[[es:La buena maestra]]&lt;br /&gt;
[[fr:Le bon professeur]]&lt;br /&gt;
[[ja:良い先生]]&lt;/div&gt;</summary>
		<author><name>Ebugnet</name></author>
	</entry>
</feed>