<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.moodle.org/310/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ichklaus</id>
	<title>MoodleDocs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.moodle.org/310/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ichklaus"/>
	<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/Special:Contributions/Ichklaus"/>
	<updated>2026-04-18T01:34:43Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Apache&amp;diff=140745</id>
		<title>Apache</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Apache&amp;diff=140745"/>
		<updated>2022-12-05T11:14:05Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: /* Hiding internal paths */ possbile content-blocking by rewrite-rules&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Installing Moodle}}&lt;br /&gt;
&#039;&#039;&#039;This article refers to the &#039;Apache HTTP server&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The Apache HTTP server is the software that (along with the PHP scripting language) &#039;runs&#039; Moodle. Note that there are alternatives (e.g. IIS on Windows, Nginx on Linux, MacOS) but the Apache HTTP Server is very popular on all platforms. &lt;br /&gt;
&lt;br /&gt;
== Installing Apache ==&lt;br /&gt;
Installers are available for most platforms from http://httpd.apache.org/download.cgi. The official installation instructions are here: http://httpd.apache.org/docs/2.0/install.html. If you are running Linux then you are recommended to use the packaged version if you can. For example, in Debian/Ubuntu it is simply:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install apache2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See the documentation for your particular platform for the instructions. Apache is straightforward to build from source if you have to and the PHP documentation contains an article on building both Apache and PHP together - although you should rarely need to do that.&lt;br /&gt;
&lt;br /&gt;
==Performance==&lt;br /&gt;
&lt;br /&gt;
See [[Performance recommendations]]&lt;br /&gt;
&lt;br /&gt;
==Slasharguments==&lt;br /&gt;
&lt;br /&gt;
The function &#039;&#039;slash arguments&#039;&#039; is required for various features in Moodle to work correctly, as described in [[Using slash arguments]].&lt;br /&gt;
&lt;br /&gt;
To turn it on, add this line to your &#039;&#039;httpd.conf&#039;&#039;, or to a &#039;&#039;.htaccess&#039;&#039; file in your local directory:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;apacheconf&amp;quot;&amp;gt;&lt;br /&gt;
AcceptPathInfo On&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note:&#039;&#039; When using &amp;quot;.htaccess&amp;quot; in your local Moodle install folder, you may need to include/enable &amp;quot;AllowOverride Directive&amp;quot; in &amp;quot;httpd.conf&amp;quot;, first.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note:&#039;&#039; Using .htaccess file will cause performance hit on your server!&lt;br /&gt;
&lt;br /&gt;
If you are using Ionos (formerly 1&amp;amp;1) shared webhosting, the above does not work, there is a known bug when using PHP as CGI.  The solution is to create a php.ini file in the moodle directory with this content:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;ini&amp;quot;&amp;gt;&lt;br /&gt;
cgi.fix_pathinfo = 0&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also Ionos requires that this php.ini be in every directory that a script executes.  Use the procedure below to link a php.ini in every subdirectory back to your original php.ini file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd your_moodle_directory&lt;br /&gt;
find -type d -exec ln -s $PWD/php.ini {}/php.ini \;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: [https://www.ionos.com/help/hosting/using-php-for-web-projects/applying-php-settings-to-all-subdirectories/ Ionos php.ini Help] &lt;br /&gt;
&lt;br /&gt;
This may affect other shared hosting providers as well.&lt;br /&gt;
&lt;br /&gt;
== Handling 40x errors  ==&lt;br /&gt;
&lt;br /&gt;
This enables missing files to be themed by Moodle&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ErrorDocument 404 /error/index.php&lt;br /&gt;
 &lt;br /&gt;
# This sends any 403 from apache through to the same page, but also&lt;br /&gt;
# overrides the http status with 404 instead for better security.&lt;br /&gt;
ErrorDocument 403 /error/index.php?code=404&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hiding internal paths ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
RewriteEngine On&lt;br /&gt;
 &lt;br /&gt;
# RewriteRule &amp;quot;(\/vendor\/)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(\/node_modules\/)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(^|/)\.(?!well-known\/)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(composer\.json)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(\.lock)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(\/environment.xml)&amp;quot; - [F]&lt;br /&gt;
# Options -Indexes&lt;br /&gt;
# RewriteRule &amp;quot;(\/install.xml)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(\/README)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(\/readme)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(\/moodle_readme)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(\/upgrade\.txt)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(phpunit\.xml\.dist)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(\/tests\/behat\/)&amp;quot; - [F]&lt;br /&gt;
# RewriteRule &amp;quot;(\/fixtures\/)&amp;quot; - [F]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Note:&#039;&#039; Please pay attention that above rules may block loading desired/required content, e.g. SCORM-packages containing a &amp;quot;vendor&amp;quot;-directory.&lt;br /&gt;
&lt;br /&gt;
==SSL==&lt;br /&gt;
&lt;br /&gt;
Moodle has an option to enable HTTPS for the whole site or for just the login pages; either option requires that your web server is configured for SSL.&lt;br /&gt;
&lt;br /&gt;
* Whole site HTTPS is enabled by changing http://&amp;lt;url&amp;gt; to https:// &amp;lt;url&amp;gt; in your config.php &#039;wwwroot&#039; parameter.&lt;br /&gt;
* Login only HTTPS is enabled by setting the &#039;loginhttps&#039; parameter, where the wwwroot schema should remain as http://&lt;br /&gt;
&lt;br /&gt;
NOTE: Login only https was deprecated and removed from Moodle 3.4: https://tracker.moodle.org/browse/MDL-42834&lt;br /&gt;
&lt;br /&gt;
Login only https is available in Moodle 3.3 and earlier in the admin interface via Administration&amp;gt;Security&amp;gt;HTTP Security and checking the button. (Note the warning and see ssl section below)&lt;br /&gt;
&lt;br /&gt;
Prior to Moodle 2.3 It was not advised to run the whole site over HTTPS due to legacy restrictions with client-side caching. This is no longer the case assuming client browsers support the &#039;Cache-Control: public&#039; method, which all supported browsers for this version of Moodle do.&lt;br /&gt;
&lt;br /&gt;
To use HTTPS you will need to obtain an SSL certificate, you have two options:&lt;br /&gt;
&lt;br /&gt;
* Generate a self-signed certificate. This is fine on (say) an Intranet but unsuitable for the public internet, but users will we warned the certificated is untrusted when used publicly.&lt;br /&gt;
* Purchase a certificate from a vendor. There is a surprising range of prices and value-added services available. Some hosting companies even provide free certificates. &lt;br /&gt;
&lt;br /&gt;
Debian provides instructions for installing a self-signed certificate [https://wiki.debian.org/Self-Signed_Certificate on their wiki] and includes general information on configuring Apache for SSL.&lt;br /&gt;
If you purchase a vendor certificate you will normally receive instructions for installing it.&lt;br /&gt;
&lt;br /&gt;
A basic Apache SSL configuration can be summarised as:&lt;br /&gt;
&lt;br /&gt;
 Listen 443&lt;br /&gt;
 NameVirtualHost *:443&lt;br /&gt;
 &amp;lt;VirtualHost *:443&amp;gt;&lt;br /&gt;
     SSLEngine On&lt;br /&gt;
     SSLCertificateFile /path/to/your/certificate.crt&lt;br /&gt;
     SSLCertificateKeyFile /path/to/your/certificate.key&lt;br /&gt;
     ...&lt;br /&gt;
 &amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [http://httpd.apache.org/ The Apache HTTP Server Project homepage]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Apache_HTTP_Server Wikipedia article on the Apache HTTP Server]&lt;br /&gt;
* [http://httpd.apache.org/docs/2.0/misc/perf-tuning.html Apache Performance Tuning article at the official homepage]&lt;br /&gt;
* [https://els.earlham.edu/cayaraa/weblog/1468.html Making Moodle work with SSL]&lt;br /&gt;
* [http://www.krufix.de/ Using the same Moodle twice in local network and Internet via SSL-Proxy] (in German)&lt;br /&gt;
&lt;br /&gt;
[[pl:Apache]]&lt;br /&gt;
[[ja:Apache]]&lt;br /&gt;
[[de:Apache]]&lt;br /&gt;
[[es:Apache]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Installations_30000_plus&amp;diff=139409</id>
		<title>Installations 30000 plus</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Installations_30000_plus&amp;diff=139409"/>
		<updated>2021-01-22T08:38:16Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: /* Germany */ mebis and Lernraum Berlin&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Large Installations}}&lt;br /&gt;
&lt;br /&gt;
==Austria==&lt;br /&gt;
&lt;br /&gt;
* Federal Ministry of Education - [http://www.eduhi.at/ education highway]: [http://www.edumoodle.at Free Moodle for Austrian schools.]&lt;br /&gt;
(Nov/2009)&lt;br /&gt;
 - 26.000 courses&lt;br /&gt;
 - 230.000 users&lt;br /&gt;
 - 1.711 schools&lt;br /&gt;
 - 2 hosting centers, about 15 servers, shared moodle sources&lt;br /&gt;
&lt;br /&gt;
==Brazil==&lt;br /&gt;
&lt;br /&gt;
Moodle 2.x:&lt;br /&gt;
&lt;br /&gt;
* [https://moodle.ufsc.br Universidade Federal de Santa Catarina - Apoio aos cursos presenciais]&lt;br /&gt;
&lt;br /&gt;
Moodle 1.9:&lt;br /&gt;
&lt;br /&gt;
* [https://moodle.eadesaf.serpro.gov.br Escola de Administração Fazendária - ESAF]  Hospeda mais de 1.770 cursos, com 69.883 Estudantes e 1.869 Tutores (em 01/08/2010), atendendo a vários segmentos do serviço público do Brasil.&lt;br /&gt;
* [http://aprender.unb.br Universidade de Brasília] - 66,587 users (04/30/2009)&lt;br /&gt;
&lt;br /&gt;
404 Not Found:&lt;br /&gt;
&lt;br /&gt;
* [http://ead.mackenzie.br/mackenzievirtual/ Universidade Presbiteriana Mackenzie] - 43,237 users (25/06/2009)&lt;br /&gt;
&lt;br /&gt;
==Costa Rica==&lt;br /&gt;
&lt;br /&gt;
* [http://mediacionvirtual.ucr.ac.cr/ Universidad de Costa Rica (UCR).] -  ~5,000 curse sites - ~45,000 users (May 2018).&lt;br /&gt;
&lt;br /&gt;
==Czech Republic==&lt;br /&gt;
&lt;br /&gt;
* [http://dl.cuni.cz/ Charles University in Prague] - ~50,000 Users (July 2014)&lt;br /&gt;
&lt;br /&gt;
==Germany==&lt;br /&gt;
* [https://www.mebis.bayern.de/infoportal/lernplattform/lernplattform-schnelleinstieg/ &amp;quot;mebis&amp;quot; for Schools in Bavaria] More than 800 000 Users (January 2021)&lt;br /&gt;
* [https://www.lernraum-berlin.de/ &amp;quot;Lernraum Berlin&amp;quot; for Schools in Berlin] More than 100 000 Users (January 2021)&lt;br /&gt;
* [https://moodle.fernuni-hagen.de/ FernUniversität Hagen] - ~75 000 Users (June 2013)&lt;br /&gt;
* [https://www.moodle.tum.de/ Technische Universität München] (April 2015): ~60 000 Users, ~2500 courses per semester, Moodle 2.8.5.&lt;br /&gt;
&lt;br /&gt;
==Italy==&lt;br /&gt;
&lt;br /&gt;
* [http://elearning.uniroma1.it/ InfoSapienza - University of Rome La Sapienza] InfoSapienza&#039;s Moodle hosts more than 700 courses for about 48.000 students from about 25 faculties, ranging from enginering scientific courses to literature and medicine. (April, 9th 2009)&lt;br /&gt;
* [http://www.aulaweb.unige.it/ AulaWeb - University of Genoa] AulaWeb is an university-wide installation of Moodle, organized in virtual instances, one for each laurea degree. In July 2013, it has over 34000 users, 1670 courses and 20 sites (in virtual hosting).&lt;br /&gt;
&lt;br /&gt;
==Norway==&lt;br /&gt;
* [https://kslaring.no/ KS Learning] KS Learning is the national component for sharing knowledge and competence building for employees in Local and Regional authorities in Norway. It is currently used by over 114000 employees, and over 100 Local and Regional authorities are in the process of making use of the solution.&lt;br /&gt;
&lt;br /&gt;
* [http://www.laerdal.com Laerdal Medical] Laerdal Medical has set up two Moodle installations for The Norwegian Resuscitation Council and The Swedish Resuscitation Council respectively. Together we now host 102 000 users in 5 different courses in the area of Resuscitation and Acute Care. It is estimated that by the end of 2013 the sites will have close to 200 000 users. (October, 17th 2012)&lt;br /&gt;
&lt;br /&gt;
==Saudi Arabia==&lt;br /&gt;
* [http://computerworld.co.nz/news.nsf/news/catalyst-delivers-major-saudi-arabian-training-project NCEL] - the Saudi Arabian National Centre for E-learning and Distance Learning, an agency established by the Saudi Arabian government runs a Moodle site with 2 million users supported by the Moodle Partner [http://catalyst.net.nz/node/23540 Catalyst IT]&lt;br /&gt;
&lt;br /&gt;
==South Africa==&lt;br /&gt;
&lt;br /&gt;
* [http://www.liberty.co.za Liberty Life] in Johannesburg runs an instance of Moodle as its institutional LMS, the Wealth Learning University, with 41,000+ registered users as of January 2012. &lt;br /&gt;
&lt;br /&gt;
==Spain==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ehu.es Universidad del Pais Vasco - Euskal Herriko Unibertsitatea (UPV/EHU)]: . 34.000 users and 1.650 teachers (different) in aprox. 3.650 courses. Our University have 50.000 students, 3.500 teachers. We started with Moodle 1.6 (four years ago) as a test pilot project for a small number of courses. Currently we are using version 1.9 (since 2009, February) with LDAP authentication.&lt;br /&gt;
&lt;br /&gt;
* [http://agora.xtec.cat Departament d&#039;Enseyament de la Generalitat de Catalunya]: . 400.000 users and 1.400 schools. We started with Moodle 1.6 (four years ago) as a test pilot project for a small number of courses. Currently we are using version 1.9 (since 2009, February) with LDAP authentication.&lt;br /&gt;
&lt;br /&gt;
* [http://odissea.xtec.cat Departament d&#039;Enseyament de la Generalitat de Catalunya]: . 47.000 users and 2.400 courses. Online teacher formation platform.&lt;br /&gt;
&lt;br /&gt;
* [https://aules.edu.gva.es Aules], from [http://www.edu.gva.es Conselleria de Educación de la Generalitat Valenciana]: project launched in september 2019, where each Valencian teacher can create their own courses with automatic student enrollment. 127000 users, 34000 courses, 50000 daily users (december 2019, [https://portal.edu.gva.es/cvtic/es/aules-en-cifras/ source]).&lt;br /&gt;
&lt;br /&gt;
==Taiwan==&lt;br /&gt;
&lt;br /&gt;
* [http://moodle.mcu.edu.tw Ming Chuan University]&lt;br /&gt;
 - More then 63,000 users&lt;br /&gt;
 - 33,000 users login in one day(Max)&lt;br /&gt;
&lt;br /&gt;
==United Kingdom==&lt;br /&gt;
&lt;br /&gt;
* The UK&#039;s [http://www.open.ac.uk/ Open University], a world leading institution and innovator in distance learning based in Milton Keynes, Buckinghamshire is one of the world&#039;s largest Moodle users with over 100,000 students on their main installation, and two other public Moodles: http://www.open.edu/openlearnworks/ and https://learn5.open.ac.uk/&lt;br /&gt;
&lt;br /&gt;
==United States==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sfsu.edu San Francisco State University (SFSU)] - 89,543 users (02/07/2008). Among these 89K users, about 35,430 users are considered as currently active.&lt;br /&gt;
&lt;br /&gt;
* [http://www.oit.umn.edu/moodle University of Minnesota (UofM)]&lt;br /&gt;
** For AY12-13 (Moodle 2.2) Approximately 145,000 user accounts in 16,784 course sites&lt;br /&gt;
** For AY13-14 (Moodle 2.4) Approximately 83,500 user accounts in 13,302 course sites&lt;br /&gt;
&lt;br /&gt;
* [http://moodle.pcsb.org Pinellas County Schools] - 71,864 registered users who have logged in and created profiles. Over 9,000 course sites that are used for everything from K12 virtual instruction to teacher professional development.&lt;br /&gt;
&lt;br /&gt;
* [https://moodle.straighterline.com StraighterLine] - 130,000 registered student users who have enrolled in courses. Courses offered include only college-level general-education courses. &lt;br /&gt;
&lt;br /&gt;
==Uruguay==&lt;br /&gt;
&lt;br /&gt;
* [http://eva.universidad.edu.uy Universidad de la República (UdelaR).] -  5,000 curse sites - 100,180 users (08/18/2014).&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=User:Klaus_Steitz&amp;diff=133126</id>
		<title>User:Klaus Steitz</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=User:Klaus_Steitz&amp;diff=133126"/>
		<updated>2019-02-12T08:40:28Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Moodle Service Owner and administrator at Technische Universität Darmstadt (https://moodle.tu-darmstadt.de)&lt;br /&gt;
and staff at the e-learning team since 2007 (http://www.e-learning.tu-darmstadt.de)&lt;br /&gt;
&lt;br /&gt;
[[de:Benutzer:Klaus Steitz]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=question/type/ddmarker&amp;diff=117739</id>
		<title>question/type/ddmarker</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=question/type/ddmarker&amp;diff=117739"/>
		<updated>2015-03-27T12:16:48Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questions}}Drag and drop marker questions allow for multiple markers to be placed onto an image and the positioning of each marker to be assessed.&lt;br /&gt;
&lt;br /&gt;
[[File:markerexample.png]]&lt;br /&gt;
&lt;br /&gt;
Drag and drop marker questions differ from Drag and drop onto image questions in that there are no predefined areas on the underlying image that are visible to the student. &lt;br /&gt;
&lt;br /&gt;
This is a question type created and maintained by the Open University.&lt;br /&gt;
&lt;br /&gt;
== More documentation ==&lt;br /&gt;
&lt;br /&gt;
More [http://labspace.open.ac.uk/mod/oucontent/view.php?id=470268&amp;amp;section=5.5.1 documentation is available] on the Open University&#039;s [http://www.open.edu/openlearn/ OpenLearn site].&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [http://moodle.org/plugins/browse.php?list=set&amp;amp;id=10 Other Moodle plugins from the Open University]&lt;br /&gt;
* [http://moodle.org/plugins/browse.php?list=category&amp;amp;id=29 Other third-party question type plugins]&lt;br /&gt;
* [http://labspace.open.ac.uk/course/view.php?id=3484 eAssessment at the Open University with open source software]&lt;br /&gt;
* [http://www.somerandomthoughts.com/blog/2012/02/20/review-question-type-drag-and-drop-marker-for-moodle-2/ Review of this question type]&lt;br /&gt;
* [http://www.youtube.com/watch?v=Tvl4GuGvtxc Video tutorial: How to Create a Question Using the Drag and Drop with Markers Question Type]&lt;br /&gt;
[[Category:Contributed code]]&lt;br /&gt;
&lt;br /&gt;
[[de:question/type/ddmarker]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Drag_and_drop_into_text&amp;diff=117705</id>
		<title>Drag and drop into text</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Drag_and_drop_into_text&amp;diff=117705"/>
		<updated>2015-03-26T16:14:57Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questions}}A drag and drop question type where missing words have to be dragged into gaps in a paragraph of text.&lt;br /&gt;
&lt;br /&gt;
[[File:danddqruntimem2.jpg]]&lt;br /&gt;
&lt;br /&gt;
This is a question type created and maintained by the [[:Category:Open University|Open University]].&lt;br /&gt;
&lt;br /&gt;
==Moodle versions available==&lt;br /&gt;
This question type is available for Moodle 2.1 to 2.8 from the [https://moodle.org/plugins/pluginversions.php?plugin=qtype_ddwtos Moodle plugins database]].&lt;br /&gt;
&lt;br /&gt;
==General==&lt;br /&gt;
&lt;br /&gt;
[[File:OU drag and drop into text general.png|400px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question name&#039;&#039;&#039;: A descriptive name is sensible. This name will not be shown to students.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question text&#039;&#039;&#039;: You may use the full functionality of the editor to state the question.&lt;br /&gt;
&lt;br /&gt;
The Question text is written with two sets of square brackets &amp;lt;nowiki&amp;gt;&#039;[[n]]&#039;  &amp;lt;/nowiki&amp;gt; indicating the positioning of gaps and a number &#039;n&#039; inside the brackets indicating the correct choice from a list which follows the question.&lt;br /&gt;
&lt;br /&gt;
It is allowed to place the drop zones in lists and tables.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;General feedback&#039;&#039;&#039;: The Open University recommends that all questions should have this box completed with the correct answer and a fully worked explanation. The contents of this box will be shown to all students irrespective of whether their response was correct or incorrect. The Open University do not recommend that authors rely on using the machine generated &#039;Right answer&#039; (from the interactive Computer Machine Assessment definition form).&lt;br /&gt;
&lt;br /&gt;
[[File:OU drag and drop into text choices.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Limited formatting of text using &amp;lt;nowiki&amp;gt; &amp;lt;sub&amp;gt;, &amp;lt;sup&amp;gt;, &amp;lt;b&amp;gt;, &amp;lt;i&amp;gt;, &amp;lt;em&amp;gt; and &amp;lt;strong&amp;gt; &amp;lt;/nowiki&amp;gt; is allowed.&lt;br /&gt;
&lt;br /&gt;
Choices that are within the same Group are colour coded and may only be dropped in a gap with the corresponding colour.&lt;br /&gt;
&lt;br /&gt;
Choices that are marked as &#039;infinite&#039; may be used in multiple locations.&lt;br /&gt;
&lt;br /&gt;
It is not possible to have drag boxes containing multiple lines. If you want to drag long sentences - don&#039;t. Give each a label and drag the label.&lt;br /&gt;
&lt;br /&gt;
The resulting question when run in &#039;interactive with multiple tries&#039; style looks as follows:&lt;br /&gt;
&lt;br /&gt;
[[File:OU drag and drop into text look at runtime.png|400px]]&lt;br /&gt;
&lt;br /&gt;
===Accessibility===&lt;br /&gt;
&lt;br /&gt;
Drag and drop questions are keyboard accessible. Use the &amp;lt;tab&amp;gt; key to move between the gaps and the &amp;lt;space&amp;gt; key to cycle around the possible choices for each gap.&lt;br /&gt;
&lt;br /&gt;
===Scoring===&lt;br /&gt;
&lt;br /&gt;
All gaps are weighted identically; in the above example each gap is worth 25% of the marks. Only gaps that are filled correctly gain marks. There is no negative marking of gaps that are filled incorrectly.&lt;br /&gt;
&lt;br /&gt;
[[File:OU drag and drop into text combined feedback.png|400px]]&lt;br /&gt;
&lt;br /&gt;
The display of Combined feedback is governed by the Specific feedback setting on the iCMA definition form.&lt;br /&gt;
&lt;br /&gt;
In interactive with multiple tries mode Combined feedback is shown after every try as well as when the question completes.&lt;br /&gt;
&lt;br /&gt;
The option ‘Show the number of correct responses’ is over-ridden in interactive with multiple tries mode by the same settings in the ‘Settings for multiple tries’ section of the editing form.&lt;br /&gt;
&lt;br /&gt;
[[File:OU drag and drop into text multiple tries.png|400px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Penalty for each incorrect try&#039;&#039;&#039;: The available mark is reduced by the penalty for second and subsequent tries. In the example above a correct answer at the second try will score 0.6666667 of the available marks and a correct answer at the third try will score 0.3333334 of the available marks.&lt;br /&gt;
&lt;br /&gt;
If the question is used in &#039;interactive with multiple tries&#039; behaviour the marking is modified as follows:&lt;br /&gt;
&lt;br /&gt;
# The mark is reduced for each try by the penalty factor.&lt;br /&gt;
# Allowance is made for when a correct choice is first chosen providing it remains chosen in subsequent tries.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hint&#039;&#039;&#039;: You can complete as many of these boxes as you wish. If you wish to give the student three tries at a question you will need to provide two hints. At runtime when the hints are exhausted the question will finish and the student will be given the general feedback and the question score will be calculated.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Clear incorrect responses&#039;&#039;&#039;: When ‘Try again’ is clicked incorrect choices are cleared.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Show the number of correct responses&#039;&#039;&#039;: Include in the feedback a statement of how many choices are correct.&lt;br /&gt;
&lt;br /&gt;
==FAQ==&lt;br /&gt;
===Is there a wildcard for blanks to be empty?===&lt;br /&gt;
The only way to do this is to make a drag item that looks empty, and make students drag that into the boxes that should be empty. As the code ignores drag items that comprise only spaces, you will need to try to use something like a non-breaking space.&lt;br /&gt;
&lt;br /&gt;
== More documentation ==&lt;br /&gt;
* See the [http://www.open.edu/openlearnworks/mod/oucontent/view.php?id=52747&amp;amp;section=2.3.1 original page]] at the O U site.&lt;br /&gt;
* More [http://www.open.edu/openlearnworks/course/view.php?id=1581 documentation is available] in the [http://www.open.edu/openlearnworks/mod/oucontent/view.php?id=52747 Open University&#039;s reference manual].&lt;br /&gt;
* Nice YouTube video clip: https://www.youtube.com/watch?v=ohoTEfiNGA4&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [http://moodle.org/plugins/browse.php?list=set&amp;amp;id=10 Other Moodle plugins from the Open University]&lt;br /&gt;
* [http://moodle.org/plugins/browse.php?list=category&amp;amp;id=29 Other third-party question type plugins]&lt;br /&gt;
* [http://labspace.open.ac.uk/course/view.php?id=3484 eAssessment at the Open University with open source software]&lt;br /&gt;
&lt;br /&gt;
[[Category:Contributed code]]&lt;br /&gt;
[[Category:Open University]]&lt;br /&gt;
&lt;br /&gt;
[[de:question/type/ddwtos]]&lt;br /&gt;
[[es:Tipo de pregunta arrastrar y soltar al texto]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Moodle_myths&amp;diff=111669</id>
		<title>Moodle myths</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Moodle_myths&amp;diff=111669"/>
		<updated>2014-04-09T14:44:27Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: Corrected Becta-Links to Total Cost of Ownership of open-source software&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{About Moodle}}&lt;br /&gt;
==Once Moodle is stable, it will be put under licence. If it were any good, they’d already be charging for it==&lt;br /&gt;
Martin Dougiamas is [http://moodle.org/mod/forum/discuss.php?d=41253 on record] that Moodle will always be free and under the GPL. Even if it weren&#039;t, the community could take the latest GPL code and continue development from there. One of the reasons why Moodle&#039;s so good is that it&#039;s open source code, and so the world wide educational community can contribute to making it better still. &lt;br /&gt;
&lt;br /&gt;
In other cases where such things have happened, the community quickly &amp;quot;forked&amp;quot; the tool and continued it, with ongoing improvements, as an open-source project. What is out there up to this point will stay out there - legally - even if something in the future did not. Nobody can &amp;quot;buy&amp;quot; Moodle, and any coopting without the consent of the global community wouldn&#039;t get very far.&lt;br /&gt;
&lt;br /&gt;
==Moodle needs a full time, php developer on your staff- or at least a lot of technical support to run it in house==&lt;br /&gt;
There are &#039;&#039;plenty&#039;&#039; of institutions running Moodle as is, without any php developers in sight. You don&#039;t need to know any programming if you just want to run an out of the box, as a full featured, rich Moodle site. &lt;br /&gt;
&lt;br /&gt;
That said, PHP is actually a fairly easy language to pick up, and the Moodle code is well documented, so if you did want to help with [[Developer|development]], it&#039;s a fairly gentle learning curve. We have [[Development:Developer documentation|documentation]] and a process to help you.&lt;br /&gt;
&lt;br /&gt;
It is also fair to say you need a certain amount of technical know-how to run any program on the web securely.  But this has more to do with getting a web-server, SQL database and scripting language up and integrated than running a Moodle instance itself. If you can run your own webserver, you should be OK to run Moodle on it. &lt;br /&gt;
&lt;br /&gt;
You don&#039;t actually have to run Moodle in house. There are well respected [[Moodle Partners]] who&#039;ll run Moodle for you. Some of the more enlightened educational consortia (Regional Broadband Consortia in the UK), or some local non-profit authorities may provide Moodle hosting. Moodle will work on plenty of commercially [[Web Hosts|hosted]] webspaces too.&lt;br /&gt;
&lt;br /&gt;
==Moodle won’t be compatible with our other systems/software==&lt;br /&gt;
Moodle will run on FreeBSD, Linux, Mac OS X, Solaris, Windows and many others. It&#039;s compatible with a huge range of databases through ADODB integration. There&#039;s a whole host of authentication and enrollment mechanisms, including LDAP and arbitrary external databases. Moodle will allow teachers to integrate content in a wide range of different formats, including SCORM, Flash, MP3s and RSS feeds. On the [[Roadmap]] for future releases is a Web API which will allow easy integration with other web-based applications. &lt;br /&gt;
&lt;br /&gt;
Finally, remember that this is open source software, with a well documented data and file structure. If Moodle&#039;s not compatible with a particular application at the moment, then you can pay a developer to code up that integration, or develop it in-house.&lt;br /&gt;
&lt;br /&gt;
==Moodle just doesn’t have the commercial experience we’re looking for==&lt;br /&gt;
Check out the [http://moodle.com partners]. Moodle is in use throughout the world by corporate clients for in-house training, including flight schools, pilot and mechanic certification, health professionals and all other varieties of professional development. Remember, Moodle is a tool (an application). The PEOPLE that make up the Moodle world-wide community have experience across the board in every industry and every sort of education setting. In fact, you&#039;ll be hard-pressed to find a more committed group of educators and [[Trainer|trainers]] in one place on the web than on moodle.org. Further evidence of the commercial applications of Moodle are supported by the fact that Microsoft Corporation funded the modification of Moodle to work on their SQL Server platform (if you choose to use that instead of mySQL) and that the support for features ranging from clustering to built-in payment mechanisms is growing with each version.&lt;br /&gt;
&lt;br /&gt;
==You can’t just use Moodle out of the box – the basic Moodle install just isn’t that sophisticated==&lt;br /&gt;
Have a look at the [[Features|feature list]], all of which comes as standard with every Moodle download. Additional themes, blocks and activities are easy to integrate and the vast majority are free, open source code too.  In fact, one of your problems will be to determine which combination of sophisticated features are best going to meet your needs right out of the box.  &lt;br /&gt;
&lt;br /&gt;
You can do a full install on a Windows or Mac OS based personal computer in the time it takes to download a 50MB file, run an install program (less than 10 minutes), and type [[Localhost]]. This install includes a webserver, the database, and the Moodle installation. While this basic install is not appropriate for an enterprise installation, the simplicity of the install along with all its features is a testament to the robustness of the platform.&lt;br /&gt;
&lt;br /&gt;
==There’s no documentation, training or technical support available – you’re on your own==&lt;br /&gt;
There&#039;s excellent documentation [https://docs.moodle.org/en/Main_Page online], provided by the user and developer community. Being online and digital, this resource is updated daily and keeps abreast of Moodle developments as they happen - with far more details than any book could provide, and certainly more than any commercial vendor offers for their product.&lt;br /&gt;
&lt;br /&gt;
There are lots of [[Moodle manuals|books on Moodle]]. A few examples: Jason Cole and Helen Foster have written an excellent introduction to Moodle for teachers, available as a [http://www.amazon.com/gp/product/0596008635/ proper book] from O&#039;Reilly. Additionally, [http://www.packtpub.com/ Packt Publishing] has several other books on Moodle teaching and administration available.&lt;br /&gt;
&lt;br /&gt;
Most users find the Moodle interface intuitive which helps reduce the training requirements.   Many organizations offer Moodle training to their members on line and in face to face settings.  Some Moodle Partners [http://moodle.com/training/ moodle.com] also specialize in training.&lt;br /&gt;
&lt;br /&gt;
High quality, timely technical support is available from the user and developer community in the Using Moodle course on [http://moodle.org moodle.org]. Some LAs and RBCs (Local Authorities and Regional Broadband Consortia in the UK) support Moodle in their areas. Commercial support contracts are available from authorized Moodle Partners [http://moodle.com/support/ moodle.com].&lt;br /&gt;
&lt;br /&gt;
==The Total Cost of Ownership is actually higher for Moodle than it would be with a wholly commercial platform==&lt;br /&gt;
Stop and think for a moment about [http://en.wikipedia.org/wiki/Total_cost_of_ownership TCO]. With both Moodle and commercial platforms, you&#039;ll still need to pay for hosting, support, training and content, one way or another: with Moodle, more of these costs &#039;&#039;can&#039;&#039; be brought in-house, because the code&#039;s open source and Moodle&#039;s great at providing the tools teachers need to write online activities themselves, but that doesn&#039;t mean you have to.&lt;br /&gt;
&lt;br /&gt;
The difference is that with Moodle, there are &#039;&#039;&#039;no&#039;&#039;&#039; licence fees to pay. None, nada, zero. If you must spend money, please help us by making the software better, to improve Moodle for the common good. None of your money needs to go to meet shareholder dividends or pay back the venture capitalists. Furthermore, you&#039;re not exposed to the risks of commercial suppliers unilaterally increasing their licence fees, or going out of business. You are also not &#039;&#039;&#039;restricted&#039;&#039;&#039; by license agreements - you can use it however you like. There isn&#039;t an &amp;quot;Enterprise&amp;quot; version that costs many times more than the basic (but has the features you actually) need - Moodle comes with &#039;&#039;&#039;everything&#039;&#039;&#039; you need.&lt;br /&gt;
&lt;br /&gt;
It&#039;s that Moodle offers significant savings over other applications. For example when the UK government agency [http://en.wikipedia.org/wiki/Becta Becta] examined the [http://eprints.lse.ac.uk/39826/1/Total_cost_of_ownership_of_open_source_software_%28LSERO%29.pdf Total Cost of Ownership of open-source software] on desktops in UK schools, they found significant savings compared to commercial alternatives. The savings on support costs were particularly impressive. It&#039;s likely that these savings would have been greater still had they examined web-based applications like Moodle.&lt;br /&gt;
&lt;br /&gt;
==Moodle is just no good for an institution as large as mine==&lt;br /&gt;
Does that mean you have more than 30,000 on line students? [http://aprender.unb.br Universidade de Brasília] has 34,000 users, [http://www.sfsu.edu San Francisco State University (SFSU)] has 34,000 active users,  The Austrian Federal Ministry of Education has over 110,000 on [http://www.edumoodle.at/moodle/ their site] and the UK&#039;s Open University has well over 180,000 users. There are plenty of other less than 30,000 user [[Large_installations|institution systems]] officially using Moodle.  &lt;br /&gt;
&lt;br /&gt;
Moodle works for large institutions who also have a large numbers of users.&lt;br /&gt;
&lt;br /&gt;
==Moodle is just not designed to cope with my specific group of learners or customers==&lt;br /&gt;
Moodle&#039;s being used successfully from elementary education, including early years provision, up to higher education, in all subject areas including art, languages, the humanities and mathematics. It&#039;s also established itself in the world of life-long learning, teachers&#039; CPD, corporate and government training environments.&lt;br /&gt;
&lt;br /&gt;
==We have all our stuff on *******, it’s just not worth the hassle of switching to Moodle==&lt;br /&gt;
The switch may not be that much of a hassle, as Moodle will happily import content in a wide range of standard formats, including SCORM, Blackboard and WebCT questions. There are an increasing number of Further and Higher Education institutions that are making the move.&lt;br /&gt;
&lt;br /&gt;
Pedagogically, there&#039;s much to be gained from moving to a VLE which puts social, collaborative learning at the centre, and acknowledges the vital role that learners have to play, as well as providing teachers with the tools that they need to build effective on-line learning communities, rather than just presenting resources and activities. &lt;br /&gt;
&lt;br /&gt;
From a financial perspective, the costs involved in switching to Moodle should be quickly recouped through savings in licence fees.&lt;br /&gt;
&lt;br /&gt;
==Moodle is free and therefore can&#039;t really be as good as something produced by a large company which earns millions in Licence fees every year==&lt;br /&gt;
The fact that Moodle is both free and Free (as in Free Speech) means you are certainly not buying something on blind faith that it will fit your needs, as with most commercial products.&lt;br /&gt;
&lt;br /&gt;
For example, the efforts of the Moodle core team are entirely public. Anyone can watch progress in our issue [[Tracker]], download recently written code and take part in their conversations in the forums. This means that anyone who wants to (and there are literally hundreds that do) can assist in developing either the core code, custom plugins and modules, integrations and themes, or by reporting bugs that appear. A licence fee to a commercial product will not give you access to over 150 contributed code extensions that are in Moodle&#039;s [http://moodle.org/mod/data/view.php?id=6009 modules and plugins database].  Nor will the fee have such a public and transparent issue reporting system as [http://tracker.moodle.org/secure/Dashboard.jspa MoodleTracker].  A License fee will not buy you these outstanding features.&lt;br /&gt;
&lt;br /&gt;
On top of that, many institutions that use Moodle decide to devote some of their own in-house expertise to maintaining parts of the Moodle code, or developing new features. Because Moodle is free, this makes sense. With a commercial product, customization is only made by the company and their price includes all their overheads and profit. Moodle&#039;s community (or customer) direct input gets more bang for the resources spent. And there is no yearly licence fee. &lt;br /&gt;
&lt;br /&gt;
All this open activity and discussion with the entire software application community is a big advantage for the Moodle user. The secretiveness inherent in a proprietary application also stifles customer based innovation and change. In a proprietary for profit company everything is controlled and developed in house. with the goal to maximize profit. As with most Open Source software, Moodle develops much faster for a given amount of cash input than commercial software. &lt;br /&gt;
&lt;br /&gt;
Additionally, a commercial company has to devote significant resources to selling a virtual learning environment product to potential customers (and others).  This translates into less money and focus in meaningful product development.  Moodle has no such overhead, leaving more resources for customer drive development.&lt;br /&gt;
&lt;br /&gt;
Put together, the stable open source core and dozens of custom plugins means that Moodle can be tailored to fit your institutional needs much better than a secretive, one-size-fits-all offering.  These are some of the reasons Moodle has such a large  install base of satisfied users.&lt;br /&gt;
&lt;br /&gt;
==You need to be an expert and tech savvy to use Moodle==&lt;br /&gt;
&lt;br /&gt;
Can you click a mouse? Know what a hyperlink does and looks like? Attach a document to an email message? Assuming that you have Moodle installed and run for you, that is about as advanced as you have to be to start using Moodle in a way that most users begin to use it – as a ‘digital cupboard’, a storage space for your files and folders where you and/or your students can view and download them 24/7.&lt;br /&gt;
&lt;br /&gt;
But don&#039;t be boring and use it JUST for that. Even some of the basic interactive activities like Forum or Choice for example, do not require a great deal of skills – just a little bit of imagination.&lt;br /&gt;
&lt;br /&gt;
You can certainly get a lot more out of Moodle as your proficiency grows but don’t burden yourself too much about it. Do you have to know all about the fine inner workings of a particular car before you drive it?&lt;br /&gt;
&lt;br /&gt;
==With Moodle, you need to be on computers all the time==&lt;br /&gt;
&lt;br /&gt;
Moodle IS an online management system and at some point you and your students will have to spend some time in front of a computer. But the extent of time spent in front of a computer depends entirely on what you use Moodle for.&lt;br /&gt;
&lt;br /&gt;
Moodle supports delivery of courses ranging from fully online to the occasional use to perform a certain activity or access a resource. The extent of screen time is entirely up to the teacher. The majority of teachers around the world use Moodle in courses that are a mixture between offline and online teaching, learning and assessment. In fact, a hybrid, blended model of courses where Moodle simply supports and/or extends the face-to-face and other activities is by far the most widely used way of using Moodle by teachers and students worldwide.&lt;br /&gt;
&lt;br /&gt;
==Students will love Moodle because it is online and in &#039;their world&#039;==&lt;br /&gt;
&lt;br /&gt;
A dangerous myth! Do not assume that just by using technology and having courses online will instantly make your subject somehow more desirable, that students will love your teaching or the content, get better grades etc. Good use of Moodle is all about asking good questions and good, insightful, reflective teaching with the selected tools at hand. And no matter how digitally advanced your students, they will look to you for the human ‘touch’, knowledge and guidance.&lt;br /&gt;
&lt;br /&gt;
Regardless of how technically (un)sophisticated you are in using Moodle, good teaching and built human relationships remain the key to success in using it. An orchestra conductor can have access to the greatest musical instruments and individual virtuosos but (s)he still has to make sure they play together well.&lt;br /&gt;
&lt;br /&gt;
==Moodle is just about fun and games, it’s a time waster and does not encourage &#039;real work&#039;==&lt;br /&gt;
&lt;br /&gt;
For those for whom learning is opposite to fun and games, Moodle does not come packaged with games (but you can install them). ‘Making learning fun’ is not the driving force behind Moodle, ‘making learning valuable’ is. It really comes down to pedagogy – the science, or rather art of teaching. If students are not engaged and want to waste time, they usually will (or at least try to) waste time with whatever they find – each other, pens, computers, paper clips, phones, anything really to be off task, including Moodle.&lt;br /&gt;
&lt;br /&gt;
Moodle is an all-in-one package of fantastic tools to engage, encourage and/or extend students in the primary purpose of education – learning. This goes particularly for learning by doing, sharing, observing and working with others, including yourself as a teacher. If you don’t see this type of learning beneficial, Moodle will probably be of less use to you.&lt;br /&gt;
&lt;br /&gt;
==Moodle is just another thing we need to learn, deal with and worry about now. Admin will probably switch to something new in a year or two anyway so why bother using in and learning about it now.==&lt;br /&gt;
&lt;br /&gt;
While certainly hugely popular around the world, Moodle is just one of the many content/learning management systems with similar features around these days. Regardless of the brand and functions, the use of such systems is increasing at a rapid pace in schools, businesses and other organisations. If your students attend tertiary study they are very likely to use such a system as essential to complete their studies.&lt;br /&gt;
&lt;br /&gt;
By learning about and using Moodle, you will build a range of highly transferable skills you and your students can take to your next job, even your retirement! Most importantly, you will build a way of thinking and the confidence to harness and use the power of increasingly ubiquitous digital technology in a merger with the timeless task of education – safely, manageably, one module at a time. And if Admin decide to change from Moodle to something else (and why would they want to do such thing? ;-) ) it will take you much less time to learn the tricks of a new, similar software. More importantly, you will know how to put it to good use.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
A top 10 list in Moodle Docs  started life in [http://moodle.org/mod/forum/discuss.php?d=33044 a post by Josie Fraser], as part of the 2005-6 [http://helpusgettobett.com HUGToB campaign].  Thanks to Josie and others for their contributions.&lt;br /&gt;
&lt;br /&gt;
[[es:Los 10 mitos de Moodle]]&lt;br /&gt;
[[fr:Mythes sur Moodle]]&lt;br /&gt;
[[zh:Moodle十大流言]]&lt;br /&gt;
[[ja:Moodle伝説トップ10]]&lt;br /&gt;
[[de:Moodle-Mythen]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Installations_30000_plus&amp;diff=111664</id>
		<title>Installations 30000 plus</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Installations_30000_plus&amp;diff=111664"/>
		<updated>2014-04-09T08:35:55Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: /* Germany */ FernUni Hagen&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Large Installations}}&lt;br /&gt;
&lt;br /&gt;
==Austria==&lt;br /&gt;
&lt;br /&gt;
* Federal Ministry of Education - [http://www.eduhi.at/ education highway]: [http://www.edumoodle.at Free Moodle for Austrian schools.]&lt;br /&gt;
(Nov/2009)&lt;br /&gt;
 - 26.000 courses&lt;br /&gt;
 - 230.000 users&lt;br /&gt;
 - 1.711 schools&lt;br /&gt;
 - 2 hosting centers, about 15 servers, shared moodle sources&lt;br /&gt;
&lt;br /&gt;
==Brazil==&lt;br /&gt;
&lt;br /&gt;
* [https://moodle.eadesaf.serpro.gov.br Escola de Administração Fazendária - ESAF] &lt;br /&gt;
Hospeda mais de 1.770 cursos, com 69.883 Estudantes e 1.869 Tutores (em 01/08/2010), atendendo a vários segmentos do serviço público do Brasil.&lt;br /&gt;
&lt;br /&gt;
* [http://aprender.unb.br Universidade de Brasília] - 66,587 users (04/30/2009)&lt;br /&gt;
* [http://ead.mackenzie.br/mackenzievirtual/ Universidade Presbiteriana Mackenzie] - 43,237 users (25/06/2009)&lt;br /&gt;
&lt;br /&gt;
==Germany==&lt;br /&gt;
* [https://moodle.fernuni-hagen.de/ FernUniversität Hagen] - ~75,000 Users (June 2013)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Italy==&lt;br /&gt;
&lt;br /&gt;
* [http://elearning.uniroma1.it/ InfoSapienza - University of Rome La Sapienza] InfoSapienza&#039;s Moodle hosts more than 700 courses for about 48.000 students from about 25 faculties, ranging from enginering scientific courses to literature and medicine. (April, 9th 2009)&lt;br /&gt;
* [http://www.aulaweb.unige.it/ AulaWeb - University of Genoa] AulaWeb is an university-wide installation of Moodle, organized in virtual instances, one for each laurea degree. In July 2013, it has over 34000 users, 1670 courses and 20 sites (in virtual hosting).&lt;br /&gt;
&lt;br /&gt;
==Norway==&lt;br /&gt;
&lt;br /&gt;
* [http://www.laerdal.com Laerdal Medical] Laerdal Medical has set up two Moodle installations for The Norwegian Resuscitation Council and The Swedish Resuscitation Council respectively. Together we now host 102 000 users in 5 different courses in the area of Resuscitation and Acute Care. It is estimated that by the end of 2013 the sites will have close to 200 000 users. (October, 17th 2012)&lt;br /&gt;
&lt;br /&gt;
==Saudi Arabia==&lt;br /&gt;
* [http://computerworld.co.nz/news.nsf/news/catalyst-delivers-major-saudi-arabian-training-project NCEL] - the Saudi Arabian National Centre for E-learning and Distance Learning, an agency established by the Saudi Arabian government runs a Moodle site with 2 million users supported by the Moodle Partner [http://catalyst.net.nz/node/23540 Catalyst IT]&lt;br /&gt;
&lt;br /&gt;
==South Africa==&lt;br /&gt;
&lt;br /&gt;
* [http://www.liberty.co.za Liberty Life] in Johannesburg runs an instance of Moodle as its institutional LMS, the Wealth Learning University, with 41,000+ registered users as of January 2012. &lt;br /&gt;
&lt;br /&gt;
==Spain==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ehu.es Universidad del Pais Vasco - Euskal Herriko Unibertsitatea (UPV/EHU)]: . 34.000 users and 1.650 teachers (different) in aprox. 3.650 courses. Our University have 50.000 students, 3.500 teachers. We started with Moodle 1.6 (four years ago) as a test pilot project for a small number of courses. Currently we are using version 1.9 (since 2009, February) with LDAP authentication.&lt;br /&gt;
&lt;br /&gt;
==Taiwan==&lt;br /&gt;
&lt;br /&gt;
* [http://moodle.mcu.edu.tw Ming Chuan University]&lt;br /&gt;
 - More then 63,000 users&lt;br /&gt;
 - 33,000 users login in one day(Max)&lt;br /&gt;
&lt;br /&gt;
==United Kingdom==&lt;br /&gt;
&lt;br /&gt;
* The UK&#039;s [http://www.open.ac.uk/ Open University], a world leading institution and innovator in distance learning based in Milton Keynes, Buckinghamshire is one of the world&#039;s largest Moodle users with over 100,000 students on their main installation, and two other public Moodles: http://www.open.edu/openlearnworks/ and https://learn5.open.ac.uk/&lt;br /&gt;
&lt;br /&gt;
==United States==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sfsu.edu San Francisco State University (SFSU)] - 89,543 users (02/07/2008). Among these 89K users, about 35,430 users are considered as currently active.&lt;br /&gt;
&lt;br /&gt;
* [http://www.oit.umn.edu/moodle University of Minnesota (UofM)]&lt;br /&gt;
** For AY12-13 (Moodle 2.2) Approximately 145,000 user accounts in 16,784 course sites&lt;br /&gt;
** For AY13-14 (Moodle 2.4) Approximately 83,500 user accounts in 13,302 course sites&lt;br /&gt;
&lt;br /&gt;
* [http://moodle.pcsb.org Pinellas County Schools] - 71,864 registered users who have logged in and created profiles. Over 9,000 course sites that are used for everything from K12 virtual instruction to teacher professional development.&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Installations_10000_plus&amp;diff=111663</id>
		<title>Installations 10000 plus</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Installations_10000_plus&amp;diff=111663"/>
		<updated>2014-04-09T08:29:24Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: /* Germany */ TU Darmstadt&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Large Installations}}&lt;br /&gt;
&lt;br /&gt;
Please add your school info here, if you have a Moodle installation catering (or expecting to cater) for 10,000 or more users.&lt;br /&gt;
==Argentina==&lt;br /&gt;
* [http://www.lirweb.com.ar/ LIRWeb (Universidad Católica Argentina - Laboratorio de Informática y Redes)] First university in Argentina to implement open source software for education. Using Moodle officially since 2006 with 600+ active courses. Service continued growth incorporating new educational and extra educational features.&lt;br /&gt;
&lt;br /&gt;
LIRWeb Team.&lt;br /&gt;
&lt;br /&gt;
==Austria==&lt;br /&gt;
* [http://elearning.tuwien.ac.at/ Moodle (TUWEL)] user statistics September 25th 2009 - Vienna University of Technology (TU Vienna)  &lt;br /&gt;
 &lt;br /&gt;
 - 19.250 users (students &amp;amp; teachers)&lt;br /&gt;
 - 13.400 students enrolled in courses&lt;br /&gt;
 - 1.030 teachers enrolled in courses&lt;br /&gt;
 - 5000+ active users per day&lt;br /&gt;
 &lt;br /&gt;
Our mission is „technology for people“. Through our research we „develop scientific excellence“, through our teaching we „enhance comprehensive competence“.&lt;br /&gt;
&lt;br /&gt;
* [http://moodle.uni-graz.at/ moodle @ uni-graz ] Primary moodle server of the Karl Franzens University Graz.&lt;br /&gt;
&lt;br /&gt;
==Canada==&lt;br /&gt;
&lt;br /&gt;
* [http://www.athabascau.ca/ Athabasca University] - Canada&#039;s leading distance-education and online university: Canada&#039;s Open University, serving about 30,000 students per year. Athabasca has decided to adopt Moodle as a single platform instead of WebCT Vista (i.e. the top of the line version). You can read their [http://www.athabascau.ca/media/index.php?id=132 press release] for more info.&lt;br /&gt;
&lt;br /&gt;
* [http://www.usherbrooke.ca/ Université de Sherbrooke] - L&#039;Université de Sherbrooke accueille plus de 37 000 étudiantes et étudiants, provenant de plus de 100 pays, dont quelque 9000 inscrits à l’Université du troisième âge. Plus de 85 % de la population étudiante de l’Université de Sherbrooke provient de l’extérieur de Sherbrooke. L’Université de Sherbrooke emploie 6700 personnes. Elle compte 10 % du corps professoral québécois.&lt;br /&gt;
&lt;br /&gt;
==China==&lt;br /&gt;
&lt;br /&gt;
* [http://english.bit.edu.cn/ Beijing Institute of Technology]&lt;br /&gt;
* [http://www.hit.edu.cn/ Harbin Institute of Technology]&lt;br /&gt;
** 5,000 different users connected every month&lt;br /&gt;
** 100 teachers actually involved&lt;br /&gt;
** integration with LDAP&lt;br /&gt;
** authentication via CAS&lt;br /&gt;
&lt;br /&gt;
==Colombia==&lt;br /&gt;
* [http://elearn.poligran.edu.co Politécnico Grancolombiano] &lt;br /&gt;
** More than 12,000 users - Bogota Campus - 1380 courses - 462 teachers&lt;br /&gt;
** Nearly 7,000 users in virtual education all over the country - 265 courses - 122 teachers&lt;br /&gt;
** Moodle 1.9.5&lt;br /&gt;
&lt;br /&gt;
==Czech Republic==&lt;br /&gt;
&lt;br /&gt;
* [https://moodle.czu.cz Czech University of Life Sciences Prague] &lt;br /&gt;
** 31654 users in 7068 courses (12072 active users in last 30 days) / 21 June 2013&lt;br /&gt;
** Moodle 1.9.5&lt;br /&gt;
** integration with LDAP and Oracle&lt;br /&gt;
** Administration: [http://www.oikt.czu.cz/?r=1686 E-learning Support Centre, Division of IT, CULS Prague]&lt;br /&gt;
&lt;br /&gt;
==France==&lt;br /&gt;
&lt;br /&gt;
* [http://cursus.uhb.fr/ Université de Rennes 2 - Haute Bretagne] - 20,000 to 30,000 users in 1400 courses&lt;br /&gt;
** 8,000 different users connected every month&lt;br /&gt;
** 300 teachers actually involved&lt;br /&gt;
** integration with LDAP and Esup-Portail (based on uPortal) ; &lt;br /&gt;
** authentication via CAS&lt;br /&gt;
&lt;br /&gt;
* [http://cours.univ-tlse1.fr/ Université Toulouse 1 Capitole] - 18,000 users in 800 courses, Moodle 1.9.11+&lt;br /&gt;
** 300 teachers actually involved&lt;br /&gt;
** integration with LDAP and Esup-Portail (based on uPortal)&lt;br /&gt;
** authentication via CAS&lt;br /&gt;
&lt;br /&gt;
==Germany==&lt;br /&gt;
&lt;br /&gt;
* [http://www.isis.tu-berlin.de/ Technische Universität Berlin] - 10,400 Users in 402 courses (updated: 07.June.2007)&lt;br /&gt;
** After a test period, the Information System for Instructors and Students (ISIS) was launched in september 2006.&lt;br /&gt;
&lt;br /&gt;
* [https://moodle.tu-darmstadt.de Technische Universität Darmstadt] - ~25,000 Users in ~3,000 courses. Using Moodle since 2009 (updated: 09.04.2014)&lt;br /&gt;
&lt;br /&gt;
* [https://moodle.uni-wuppertal.de/ Bergische Universität Wuppertal] - ~16000 Users in ~4600 courses (updated: 15 May 2012)&lt;br /&gt;
&lt;br /&gt;
==India==&lt;br /&gt;
&lt;br /&gt;
* [http://www.visveswaraya.org/ AMIE] a residential AMIE Institute in Kerala, India, listed in LIMCA Book of Records with 130 All India Ranks, is best ever for AMIE coaching &amp;amp; IIT &amp;amp; NIT higher studies.&lt;br /&gt;
&lt;br /&gt;
==Ireland==&lt;br /&gt;
&lt;br /&gt;
* [http://www.dcu.ie Dublin City University] 18,000 users in 3,600 courses.&lt;br /&gt;
&lt;br /&gt;
==Jamaica==&lt;br /&gt;
*[http://ourvle.mona.uwi.edu The University of the West Indies] - 23,000+ users in 1600+ courses&lt;br /&gt;
&lt;br /&gt;
==New Zealand==&lt;br /&gt;
&lt;br /&gt;
*[http://campus.openpolytechnic.ac.nz/ The Open Polytechnic of New Zealand] - 35,000+ students, 6,500+ courses, single sign-on for library services using Ezy Proxy, single sign-on for webmail, using SquirrelMail, uses LDAP for interface with Sears Student Management System. Comments by [https://eduforge.org/wiki/wiki/nzvle/wiki?pagename=Comments%20by%20Ken%20Udas%2C%20Director%20of%20eLearning%20at%20the%20Open%20Polytechnic Ken Udas, Director of eLearning at the Open Polytechnic]&lt;br /&gt;
&lt;br /&gt;
==Palestine==&lt;br /&gt;
&lt;br /&gt;
*[http://eclass.alquds.edu Al-Quds University] - 12,000+ users in 900+ courses. Al-Quds University started using moodle in 2004.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
* [http://uvle.up.edu.ph University Virtual Learning Environment] (UVLe - [http://uvle.up.edu.ph uvle.up.edu.ph]) of the University of the Philippines Diliman is a highly customized Moodle for about 22,000 students and faculty. UVLe is maintained and operated by the [http://dilc.upd.edu.ph UP Diliman Interactive Learning Center]. Its related but separate installation is at [http://ovle.upd.edu.ph ovle.upd.edu.ph].&lt;br /&gt;
&lt;br /&gt;
* [http://eclass.adzu.edu.ph Ateneo de Zamboanga University] - with 10,000+ faculty, staff and students (started using Moodle since 2002)&lt;br /&gt;
&lt;br /&gt;
* [http://e-extension.gov.ph/elearning/ e-Learning for agriculture and fisheries] We started using Moodle in 2007. As of February 2013, we have over 13950 registered users in a single instance of Moodle 1.9+ over LAMP. We offer certificate courses as well as free digital resources in various agriculture and fisheries topics. All our online courses are in SCORM scheduled in rolling mode. The site is maintained by the [http://www.ati.da.gov.ph/ Agricultural Training Institute] of the country&#039;s Department of Agriculture.&lt;br /&gt;
&lt;br /&gt;
* http://online.benilde.edu.ph  - De La Salle - College of Saint Benilde with more than 15000+ users faculty &amp;amp; students (started using moodle since 2004)&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&lt;br /&gt;
[http://moodle.fct.unl.pt/ Faculdade de Ciências e Tecnologia da Universidade Nova de Lisboa] - 5000+ users in 400+ pages.&lt;br /&gt;
&lt;br /&gt;
==South Africa==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ru.ac.za Rhodes University] in Grahamstown runs an instance of Moodle as its institutional LMS [http://ruconnected.ru.ac.za RUconnected] currently with more than 10 000 registered users, including more than 550 teachers.&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&lt;br /&gt;
*[http://aulavirtual.uji.es/ Universitat Jaume I]. Official VLE since 2004. 13.600 real users (12.500 students and 1.100 teachers) and 1.300 active courses on February 2009. Moodle 1.9.x.&lt;br /&gt;
&lt;br /&gt;
*[http://www.upc.edu La Universitat Politecnica de Cataluña] on september 2005 started a pilot Moodle installation with 3.000 Students. On september 2006 the migration from the old campus to Moodle will be complete with more than 30.00 students [http://atenea.upc.edu El campus Atenea 4] runs Moodle 1.4.5 y an will be updated to Moodle 1.5.3 in september 2006. [http://www.upc.edu UPC] has developed several applicatons adn bridges between its own informacion systems.&lt;br /&gt;
** Integration with the academic management informatio system &amp;quot;Prisma&amp;quot;.   &lt;br /&gt;
** [http://appserv.lsi.upc.es/palangana/moodle/course/view.php?id=18 Internalmail] (developed also in  UPC) is used for as email internal system.&lt;br /&gt;
** Moodle integration with [http://bibliotecnica.upc.edu the upc library system].&lt;br /&gt;
** Adaptation of Moodle grades to spanish university grading system.&lt;br /&gt;
** And other stuff&lt;br /&gt;
&lt;br /&gt;
*[http://www.urv.cat/ Universitat Rovira i Virgili] using Moodle for three academic years. At present version 1.5.4+ to be updated to 1.6.4+ in short. In march 2007, 22701 users registered and 3500 courses created aprox.&lt;br /&gt;
** Integration with the academic management information system&lt;br /&gt;
** Integration with the corporative LDAP user’s directory&lt;br /&gt;
** Average of 504 courses used regularly (logs at least once a week)&lt;br /&gt;
** Average of 3200 students login at least once a day&lt;br /&gt;
** Average of 7200 students login at least once a week&lt;br /&gt;
** 10500 users (teachers and students) accessed at least once during the last month (data from 26th march 2007)&lt;br /&gt;
&lt;br /&gt;
*[http://www.ulpgc.es/index.php?pagina=campusvirtual&amp;amp;ver=inicio Universidad de Las Palmas de Gran Canaria (ULPGC)] - 24.000 users in aprox. 1800 courses. We started with Moodle 1.4 four years ago as a test pilot project for a small number of courses. Now offered as a basic service for all courses at ULPGC: 55 official EU titles and 5 more offered ONLY through Web. &lt;br /&gt;
** We are using version 1.6.3 with LDAP authentification&lt;br /&gt;
** Custom modules: ULPGCAssignment and ULPGCDialogUe, heavily modified Appointment/Scheduler&lt;br /&gt;
** Custom groupings/scopes for small team activities (e.g. group assignment)&lt;br /&gt;
** Regular-intense usage ranks by 60% of courses/students.&lt;br /&gt;
&lt;br /&gt;
*[http://campusvirtual.ub.edu/ Universitat de Barcelona] - 60.000 users in 7.300 courses. Started in September 2006 as a project, UB Moodle site will be open for all next September.&lt;br /&gt;
&lt;br /&gt;
*[http://campuvirtual.unex.es Universidad de Extremadura] - 15000 users in aprox. 700 courses.&lt;br /&gt;
&lt;br /&gt;
*[http://www.juntadeandalucia.es/educacion/adistancia/semipresencial Andalusia Blended Learning ].VLE of [http://www.juntadeandalucia.es/educacion/permanente Lifelong Learning Service] of &#039;&#039;Junta de Andalucía&#039;&#039;.Actually (2009/2010) 1600 courses and 25000 in aprox. Between them 1500 teachers. It&#039;s expected 35000 users next year.  This VLE is complemented with [http://www.juntadeandalucia.es/educacion/adistancia/avep LifeLong Learning VLE] that offers and open access to educational materials developed for blended learning.&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&lt;br /&gt;
[http://lnu.se/?l=en Linnaeus University] - 35.000 students and and 2.000 employees in 2011 - 23.000 Moodle users in 2.000 Moodle courses.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Taiwan==&lt;br /&gt;
&lt;br /&gt;
[http://www.thu.edu.tw/english/enindex.htm Tunghai University]&lt;br /&gt;
*More then 17,000 registed Users&lt;br /&gt;
*16,000 users login in one day( Max. )&lt;br /&gt;
*3,000 courses per semester&lt;br /&gt;
*integration with novell ichan for single sign on&lt;br /&gt;
*integration with school support system&lt;br /&gt;
&lt;br /&gt;
our moodle web site: [http://elearning.thu.edu.tw]&lt;br /&gt;
&lt;br /&gt;
==Trinidad and Tobago==&lt;br /&gt;
&lt;br /&gt;
[http://myelearning.sta.uwi.edu The University of the West Indies]&lt;br /&gt;
St. Augustine Campus&lt;br /&gt;
*More then 22,000 registed Users&lt;br /&gt;
*Over 500 Courses per semester&lt;br /&gt;
*Over 1500 Teachers&lt;br /&gt;
&lt;br /&gt;
Using Moodle since 2006.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==United Kingdom==&lt;br /&gt;
&lt;br /&gt;
*[http://www.open.ac.uk/ The Open University (OU)] - the United Kingdom&#039;s only university dedicated to distance learning. They have around 150,000 undergraduate and more than 30,000 postgraduate students. As of October 2010, the OU&#039;s Moodle database contains over 700,000 users and 7,000 courses.&lt;br /&gt;
&lt;br /&gt;
*[http://openlearn.open.ac.uk/ OpenLearn] The Open University&#039;s open content initiative. Website development began in May 2006 and the site was launched in October 2006, supported by a grant from The William and Flora Hewlett Foundation. By April 2008, 5,400 learning hours of content will be available online. Currenly (early 2007) over 10,000 unique users.&lt;br /&gt;
&lt;br /&gt;
*[http://www.gla.ac.uk/ The University of Glasgow] - A long-established (founded 1451) and high-profile research university in the UK, with 20,000 students (16,000 undergrad, 4,000 postgrad), 6,000 staff, 20,000 unique users of Moodle (as of Jan 2008). Uses LDAP for integration with Novell and a custom MIS system for user authentication. Their site is organised on a one Moodle site per faculty basis to facilitate both appropriate themeing and to simplify balancing across servers.&lt;br /&gt;
&lt;br /&gt;
==United States==&lt;br /&gt;
&lt;br /&gt;
*[http://moodle.cpcc.edu Central Piedmont Community College (CPCC) ] uses moodle for both curriculum and Corporate and Continuing Education. For curriculum it runs in parallel to Blackboard as faculty migrate to moodle over time. There are currently no plans to go moodle only, although many administrators favor this option. The server has 30,000 or so users on it, but the actual number of active users varies widely. It is used for both hybrid and full-online classes. Corporate and Continuing Education runs its own branded instance and uses only moodle for distance education. We have about 80,000 students total, covering the range from GED, adult-ed, curriculum, and other areas serviced by 7 campuses in and around Charlotte, North Carolina. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[http://ilearn.sfsu.edu San Francisco State University (SFSU) ] uses moodle for more than three years now. We use moodle for our main campus and the College of Extended Learning (CEL). For curriculum, moodle used to run in parallel with Blackboard as faculty migrate to moodle over time (SFSU officially phased out Blackboard, as of 6/30/2007). The servers have total of 89K users (as of 09/05/2007), among these 89K users, 28K are considered as currently active. As for courses, we have total of 57K courses sitting on our database, and among them, around 53K are considered as active. We also have integrated Moodle with our SIMS/R system (see http://www.sfsu.edu/sims/overview.htm). We also have courses that have more than 1,300+ students in one course with lots of quizzes (20+) and quiz attempts. The student population in SFSU covers the range from undergraduate, graduate, and first professional students.&lt;br /&gt;
&lt;br /&gt;
== Venezuela ==&lt;br /&gt;
&lt;br /&gt;
* [http://moodle.unica.edu.ve Cecilio Acosta Catholic University (UNICA)] - with 10,000+ faculty, staff and students (started using Moodle since 2005)&lt;br /&gt;
&lt;br /&gt;
[[Category:Administrator]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=AMOS&amp;diff=110899</id>
		<title>AMOS</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=AMOS&amp;diff=110899"/>
		<updated>2014-03-07T15:11:10Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: langpack-Link corrected to 2.6 (from 2.4)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Language}}&lt;br /&gt;
&#039;&#039;&#039;AMOS stands for Automated Manipulation Of Strings. AMOS is a central repository of Moodle strings and their history. It tracks the addition of English strings into Moodle code, gathers translations, handles common translation tasks and generates language packages to be deployed on Moodle servers.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The name was chosen in honour of [http://en.wikipedia.org/wiki/John_Amos_Comenius John Amos Comenius], the author of &#039;&#039;Janua linguarum reserata&#039;&#039; (Gate to Languages Unlocked). Sorry Tori ;-)&lt;br /&gt;
&lt;br /&gt;
AMOS is installed at http://lang.moodle.org. If you want to use it, please create an account there. Language pack [[Translation_credits|maintainers]] should then send an email to [mailto:translation@moodle.org translation@moodle.org] (Koen) to get write access for their language.&lt;br /&gt;
&lt;br /&gt;
AMOS provides support for community contributions into the translation. If you want to participate, just create an account at http://lang.moodle.org. There is no need to contact us in this case but you should definitely contact the language maintainer and coordinate your work.&lt;br /&gt;
&lt;br /&gt;
== Basic concepts ==&lt;br /&gt;
&lt;br /&gt;
[[image:amos-screenshot-navigation.png|100px|thumb|right|AMOS tools in the navigation block]]&lt;br /&gt;
AMOS consists of several tools available via the main navigation block - Translator, Stage, Stashes, Contributions and Log.&lt;br /&gt;
&lt;br /&gt;
* User - AMOS is used by languages pack maintainers and by the community members who want to contribute&lt;br /&gt;
* Translator - is a tool that allows you to filter strings you want to work on and translate them&lt;br /&gt;
* Stage - is a temporary working area that holds the strings you have translated during the current session. Maintainers can permanently commit the stage into the strings repository. Contributors can submit the stage for maintainers.&lt;br /&gt;
* Stashes - are snapshots of the stage. Imagine them as ordinary files at your computer where you can save your work. You can submit your stash to the language pack maintainers.&lt;br /&gt;
* Contributions - is a database tracking all submitted contributions and their current status. Records in this database are like issues in Moodle tracker with the translated strings attached.&lt;br /&gt;
* Repository - a database of all Moodle strings and their history running at lang.moodle.org server&lt;br /&gt;
* Log - displays the log of all modifications of Moodle strings.&lt;br /&gt;
&lt;br /&gt;
== Translation workflow ==&lt;br /&gt;
&lt;br /&gt;
The following data flow diagram illustrates how AMOS tools are used during the translation process.&lt;br /&gt;
&lt;br /&gt;
[[image:amos-workflow.png]]&lt;br /&gt;
&lt;br /&gt;
The key AMOS component is the staging area or shortly the stage. It holds translated strings temporarily during your current login session. If you log out, the stage is cleared (though there is a backup - see below). There are several ways how translations can be staged, that is how translated strings can be put into the stage:&lt;br /&gt;
&lt;br /&gt;
* by using AMOS translator&lt;br /&gt;
* by importing strings from an uploaded file&lt;br /&gt;
* by applying a previously created stash&lt;br /&gt;
* by applying a submitted contribution&lt;br /&gt;
&lt;br /&gt;
Language pack maintainers have write access into the AMOS strings repository. Therefore they can commit their stage permanently. Once the stage is committed, staged strings are stored in the AMOS repository. Every hour, AMOS generates ZIP packages from the most recent snapshot of the repository. These ZIP packages are published at http://download.moodle.org/langpack/2.0/ for download. Moodle sites can install and update language packages automatically from the &#039;&#039;Site administration &amp;gt; Language &amp;gt; Language packs&#039;&#039; page.&lt;br /&gt;
&lt;br /&gt;
Community members do not have write access into the repository so they can&#039;t commit their stage. Instead, they can submit it to the maintainers. By submitting a stage, a new contribution record is created and language pack maintainers are notified by automatic email message. Maintainers can review the submitted contribution and, if they accept it, commit it on behalf of the contributor.&lt;br /&gt;
&lt;br /&gt;
The stage can be also saved so you can interrupt your work and continue next time you come back to the site. The stage is saved into so called stashing area. Stashing area consists of stashes. A new stash is nothing but a snapshot copy of your current stage. AMOS automatically keeps one stash for you as a backup copy of your most recent stage. A stash can be submitted to the maintainers, too.&lt;br /&gt;
&lt;br /&gt;
== AMOS tools ==&lt;br /&gt;
&lt;br /&gt;
=== Using the translator tool ===&lt;br /&gt;
&lt;br /&gt;
[[image:amos-screenshot-translator.png|300px|thumb|right|AMOS Translator tool]]&lt;br /&gt;
The translator tool page has two main parts. At the top, there is a filter form (1). You use that filter to get the strings you want to translate. When the filter settings are saved (2), a table with the filtered strings is displayed below.&lt;br /&gt;
&lt;br /&gt;
Every row in the table represents a single string. The table has four columns. The first column (3) describes the version (or branch) where the string is used, its identifier and its component. You can see a text like&lt;br /&gt;
&lt;br /&gt;
 2.0 [completiondate,coursereport_completion]&lt;br /&gt;
&lt;br /&gt;
That reads: this string is used in Moodle 2.0, its identifier is &#039;completiondate&#039; and it belongs to &#039;courserepor_completion&#039; component.&lt;br /&gt;
&lt;br /&gt;
The second column (4) contains the English original of the string. Below the text, you can see Google icon. Click that icon to get automatic translation of the string into the language being translated. The next column contains a code of the language that this string is being translated to (for example &amp;quot;cs&amp;quot; for Czech).&lt;br /&gt;
&lt;br /&gt;
Finally the last column contains the translation itself. If it is empty, the string is not translated yet, otherwise it displays the current translation. &#039;&#039;&#039;Click in the cell to turn it into the input editor.&#039;&#039;&#039; Insert the translation and click outside the cell to stage the translation. Note there is no submit button, the text is sent to the stage automatically in the background. You can see that the colour of the cell turned blue. Blue colour signalizes that the translation is currently staged.&lt;br /&gt;
&lt;br /&gt;
You have many options of how to use the strings filter. You can work on a single component or all missing strings at once. You can search for strings containing a given text (either in English or the translated string) etc. You can check for strings in older versions, too but those strings are read-only. They get automatically pulled into AMOS from the CVS repository of 1.x translations.&lt;br /&gt;
&lt;br /&gt;
The &#039;permalink&#039; below the filter&#039;s submit button can be used to keep the current filter settings. For example, you can bookmark a setting use regularly or you can copy the link URL and send it to somebody so they can set their filter just by visiting that URL.&lt;br /&gt;
&lt;br /&gt;
When you finish translating, do not forget to visit the stage page. You probably want either commit it (if you are a lang pack maintainer) or submit it to maintainers so they can review your work and include it into the language pack.&lt;br /&gt;
&lt;br /&gt;
=== Using the stage ===&lt;br /&gt;
&lt;br /&gt;
[[image:amos-screenshot-stage-contrib.png|300px|thumb|right|Strings staged by a contributor]]&lt;br /&gt;
The translated strings are put into a temporary area called &#039;&#039;stage&#039;&#039; immediately after the cursor leaves the editor field. The stage holds your work before it is either committed into the repository (if you are language pack maintainer) or submitted to the maintainers for inclusion or stashed.&lt;br /&gt;
&lt;br /&gt;
The stage is cleared when you logout. You have to explicitly commit or stash the stage so it is saved permanently. If you forget to do it, or there is a problem with the connectivity, your browser crashes or whatever, you can find your most recent snapshot of the stage in autosave stash.&lt;br /&gt;
&lt;br /&gt;
If you are language pack maintainer, you can commit the stage into the repository so your work is registered and the translated strings become part of the official language package. You can also propagate the strings to other branches by selecting the branches you want the string to go to and hit the propagate button. It is a wise thing to do that, to save work and to keep consistency in the wording over the versions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Updated language packages in ZIP format are published hourly at http://download.moodle.org/langpack/2.6/ - look at the bottom of the page to see the last update. At the same time, they become available for Moodle sites for automatic update.&lt;br /&gt;
&lt;br /&gt;
The stage can also be used to import strings from files and to merge or compare versions of language packs.&lt;br /&gt;
&lt;br /&gt;
=== Importing a file ===&lt;br /&gt;
&lt;br /&gt;
[[image:amos-screenshot-stage-empty.png|300px|thumb|right|Empty stage allows you to import strings from a file]]&lt;br /&gt;
Strings can be translated offline and uploaded back to AMOS using the stage page. The only supported format at the moment is common PHP format used by Moodle where strings are defined in associative array called $string. For obvious security reasons, AMOS can not actually execute PHP files uploaded by users. Instead, it parses the uploaded file in a similar way as PHP parser, looking for patterns that are considered as valid string definition. That means that not every valid PHP code is valid string definition. AMOS parser requires following conditions are met:&lt;br /&gt;
&lt;br /&gt;
* the filename is valid component name used by Moodle, for example moodle.php, enrol_manual.php or workshop.php&lt;br /&gt;
* the file is valid PHP code without syntax errors - that means is passes the PHP lint check&lt;br /&gt;
* strings are defined as elements of global array $string&lt;br /&gt;
* strings are single quoted constants&lt;br /&gt;
&lt;br /&gt;
Example of a valid file to import into AMOS (filename countries.php, Czech translation)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?php&lt;br /&gt;
 &lt;br /&gt;
 $string[&#039;AE&#039;] = &#039;Spojené Arabské emiráty&#039;;&lt;br /&gt;
 $string[&#039;AF&#039;] = &#039;Afghánistán&#039;;&lt;br /&gt;
 $string[&#039;CH&#039;] = &#039;Švýcarsko&#039;;&lt;br /&gt;
 $string[&#039;HU&#039;] = &#039;Maďarsko&#039;;&lt;br /&gt;
 &lt;br /&gt;
 ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
During the import, strings found in the file are added into your stage as if they were translated via web. You can commit them into repository if you have such privilege.&lt;br /&gt;
&lt;br /&gt;
=== Using stashes ===&lt;br /&gt;
&lt;br /&gt;
At any moment, you can save a snapshot of the current stage. We call such snapshot a &#039;&#039;stash&#039;&#039;. Stashed strings are kept forever until you drop them manually (please do not abuse this and keep your stashes reasonable big). To manage your stash, click on Stashes in the right menu of AMOS. You just see a list of the stashes. There are &amp;quot;peekaboo&amp;quot; buttons that appear when you mouse hoover over the stashes. The stash can be &#039;&#039;applied&#039;&#039; so that the stashed strings are copied back to the stage. What the &#039;&#039;pop&#039;&#039; does is apply and drop (delete) the stash. &#039;&#039;drop&#039;&#039; is like delete. &#039;&#039;submit to maintainer&#039;&#039; opens a form for doing just that.&lt;br /&gt;
&lt;br /&gt;
There is one special stash record for every user called autosave stash. This stash keeps the most recent state of the stage. You may find it useful if you loose the current stage for any reason - your browser crashes, your internet connectivity dies or you accidentally unstage all strings. If that happens, just apply the autosave stash to get your work back. The autosave stash is updated every time you stage a string. So if your stage is empty and your autosave stash is full of strings and you go into the translator first without applying the stash, the autosave will be replaced with the new translated string. We recommend to experiment a bit with this feature first.&lt;br /&gt;
&lt;br /&gt;
=== Using the log tool ===&lt;br /&gt;
&lt;br /&gt;
The Log page allows even anonymous users to search in the history of commits tracked by AMOS. At the top of the page there is a filter that allows you to look for a particular information or report. It is important to realize how the filter actually works. Searching and filtering happens in two steps (this was necessary for performance reasons):&lt;br /&gt;
&lt;br /&gt;
* Firstly, commit records are searched based on the criteria specified in the Commit filter form. If there are more commits found matching the filter settings, only 100 most recent commits are processed.&lt;br /&gt;
* Then, within the commits found, either all string modification records are returned, or you can filter these records, too. Settings in String filter form section are used in that case.&lt;br /&gt;
&lt;br /&gt;
By default, the filter looks for all commits since the last time you logged in and than displays only strings at the currently translated branch modified by those commits.&lt;br /&gt;
&lt;br /&gt;
===Language packs and Moodle versions===&lt;br /&gt;
&lt;br /&gt;
When a new Moodle version is released, it will become the default version on your Amos - Translator page (see tick boxes at the top).&lt;br /&gt;
&lt;br /&gt;
The suggested work flow is to continue your translation work for the new Moodle version and merge your work in the older versions.&lt;br /&gt;
You can do that using the Amos - Stage page: Set the source version to the version you were working in and set the target version to the version you want the strings to be copied to.&lt;br /&gt;
&lt;br /&gt;
== Contributing to a language pack ==&lt;br /&gt;
&lt;br /&gt;
AMOS allows community members to help with the translation of Moodle strings. AMOS Contributions page tracks all submitted translations and their current status. Before you start working on a translation, please communicate with the language pack maintainer, as listed in the [[:dev:Translation credits|Translation credits]].&lt;br /&gt;
&lt;br /&gt;
=== Steps for the contributor ===&lt;br /&gt;
&lt;br /&gt;
[[image:amos-screenshot-contribution-new.png|300px|thumb|right|Submitting a contribution form]]&lt;br /&gt;
# Contact the language pack maintainer about your intention to contribute to the language pack&lt;br /&gt;
# Use AMOS translator interface to translate missing strings or amend the current translation&lt;br /&gt;
# Go to the Stage page&lt;br /&gt;
# Click &#039;Submit to maintainers&#039; button&lt;br /&gt;
# At &#039;Submitting a contribution&#039; page, please provide a message for maintainers describing your work and why you would like to see your contribution included. You can cancel the submission at this moment yet. If you are sure, click &#039;Submit to maintainers&#039;.&lt;br /&gt;
# Your stage will submitted into the contributions database. If there were more languages affected by your contribution, the stage will be divided into separate contribution records, one per each language. The language pack maintainers will be notified by email about your new contribution.&lt;br /&gt;
# Language pack maintainers will be able to apply your work into their stage, review it and eventually commit. You will receive automatically generated email when the status of contribution changes (typically when a maintainer starts a review of your work and then when they accept or reject it).&lt;br /&gt;
# Use contribution record comments for further communication with the maintainer about the submitted translation.&lt;br /&gt;
&lt;br /&gt;
=== Steps for the maintainer, making own contributions===&lt;br /&gt;
&lt;br /&gt;
# Use AMOS translator interface to translate missing strings or amend the current translation&lt;br /&gt;
# Go to the Stage page&lt;br /&gt;
# Click on the propagate button to add the translated strings to all versions of the language pack (this is usually the case)&lt;br /&gt;
# Make a meaningful comment about your work in the &#039;Commit message&#039; form&lt;br /&gt;
# Click on &#039;Commit&#039;&lt;br /&gt;
&lt;br /&gt;
=== Steps for the maintainer, approving users contributions===&lt;br /&gt;
&lt;br /&gt;
[[image:amos-screenshot-contribution-details.png|300px|thumb|right|Contribution details page]]&lt;br /&gt;
# When a user submits new contribution, you will receive automatically generated email from AMOS&lt;br /&gt;
# Go to the Contributions page to see a list of all new incoming contributions. Click the link in the table to open the contribution details page&lt;br /&gt;
# Press &#039;Start review&#039; button. That will assign the contribution to yourself, change the status from &#039;New&#039; to &#039;In review&#039;, send automatically generated email to the contributor and will copy the submitted strings into your stage. You should check that your stage is empty before you apply the submitted strings, unless you want to merge several contributions into one commit.&lt;br /&gt;
# Review the submitted strings, eventually edit them. Commit the stage. It is nice to mention the contributor&#039;s name in the commit message and attribute the original authorship to them.&lt;br /&gt;
# Go back to the contribution record and change the status to Accepted or Rejected. Automatically generated email will be sent to the contributor whenever you change the status.&lt;br /&gt;
# Use contribution record comments for further communication with the contributor about the submitted translation.&lt;br /&gt;
# Accepted and Rejected contributions are not shown at the contributions page unless you press &#039;Show resolved contributions&#039; button.&lt;br /&gt;
&lt;br /&gt;
==Suggesting improvements to English language strings==&lt;br /&gt;
&lt;br /&gt;
Suggested fixes for typos or misspellings and any other suggested improvements to English language strings may be submitted via AMOS by contributing them to the English (fixes) (en_fix) language pack (as described above in &#039;Contributing to a language pack&#039;). They will then be reviewed and implemented in the English (en) language pack.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Translation]] for more information about the process of Moodle 2.x translation&lt;br /&gt;
* [[Development:Languages/AMOS]] for the AMOS internals documentation&lt;br /&gt;
* [http://www.youtube.com/watch?v=JtY5zvEHnQ8 Accepting submissions] Instruction video for language pack maintainers&lt;br /&gt;
* [http://www.youtube.com/watch?v=XClUZOuFfWo Contributing to a language pack] Instruction video for language pack contributors&lt;br /&gt;
* [http://www.youtube.com/watch?v=xT2-ElTaH6M Changing the default language] Instruction video on how to change your default language&lt;br /&gt;
&lt;br /&gt;
[[fr:AMOS]]&lt;br /&gt;
[[es:AMOS]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Hotpot_module&amp;diff=106669</id>
		<title>Hotpot module</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Hotpot_module&amp;diff=106669"/>
		<updated>2013-09-19T10:13:33Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Hotpot}}&lt;br /&gt;
[[Image:Hot_Potatoes_icon.GIF]] &#039;&#039;&#039;The Hotpot&#039;&#039;&#039; [[Teacher_documentation#Activity_modules|activity]] module allows teachers to administer [[Hot Potatoes]] and [[TexToys]] quizzes via Moodle. These quizzes are created on the teacher&#039;s computer and then uploaded to the Moodle course. After students have attempted the quizzes, a number of reports are available which show how individual questions were answered and some statistical trends in the scores.&lt;br /&gt;
&lt;br /&gt;
Note for administrators: The Hotpot module is a contributed module in Moodle 2.0. It is available here: [http://bateson.kanazawa-gu.ac.jp/moodle/zip/moodle-20.hotpot-module.zip]&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/view.php?id=1599 Hotpot module forum]&lt;br /&gt;
*[[HotPot module for Moodle 2.0]]&lt;br /&gt;
*[[QuizPort module]]&lt;br /&gt;
&lt;br /&gt;
[[de:Hotpot_Aktivität]]&lt;br /&gt;
[[es:Hotpotatoes]]&lt;br /&gt;
[[eu:Hotpotatoes]]&lt;br /&gt;
[[fr:Hot Potatoes]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Hot_Potatoes&amp;diff=106668</id>
		<title>Hot Potatoes</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Hot_Potatoes&amp;diff=106668"/>
		<updated>2013-09-19T09:41:27Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hot Potatoes is a quiz authoring program that creates questions that can be imported into Moodle in [[Quiz module]], [[Lesson module]] and [[Hotpot module]]s.&lt;br /&gt;
&lt;br /&gt;
* Hot Potatoes became freeware in September 2009.&lt;br /&gt;
* The free version of Hot Potatoes for Windows is version 6.3, and the Java version is 6.1.&lt;br /&gt;
* A user&#039;s group provides technical support.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[http://hotpot.uvic.ca/ Hot Potatoes] can be downloaded here.&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/view.php?id=1599 Hotpot module forum]&lt;br /&gt;
&lt;br /&gt;
[[de: Hot Potatoes]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Caching&amp;diff=106172</id>
		<title>Caching</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Caching&amp;diff=106172"/>
		<updated>2013-07-25T17:07:55Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: added Performance advise for load-balanced web servers from 2.4-docs (source Tim Hunt)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Performance}}&lt;br /&gt;
&lt;br /&gt;
A cache is a collection of processed data that is kept on hand and re-used in order to avoid costly repeated database queries.&lt;br /&gt;
&lt;br /&gt;
Moodle 2.4 saw the implementation of MUC, the Moodle Universal Cache.   This new system allows certain functions of Moodle (eg string fetching) take advantage of different installed cache services (eg files, ram, memcached).&lt;br /&gt;
&lt;br /&gt;
In future versions of Moodle we will continue expanding the number of Moodle functions that use MUC, which will continue improving performance, but you can already start using it to improve your site.&lt;br /&gt;
&lt;br /&gt;
==General approach to performance testing==&lt;br /&gt;
&lt;br /&gt;
Here is the general strategy you should be taking:&lt;br /&gt;
&lt;br /&gt;
# Build a test environment that is as close to your real production instance as possible (eg hardware, software, networking, etc)&lt;br /&gt;
# Make sure to remove as many uncontrolled variables as you can from this environment (eg other services)&lt;br /&gt;
# Use a tool to place a realistic, but simulated and repeatable load upon you server. (eg jmeter or selenium).&lt;br /&gt;
# Decide on a way to measure performance of the server by capturing data (ram, load, time taken, etc)&lt;br /&gt;
# Run your load and measure a baseline performance result.&lt;br /&gt;
# Change one variable at a time, and re-run the load to see if performance gets better or worse.  Repeat as necessary.&lt;br /&gt;
# When you discover settings that result in a consistent performance improvement, apply to your production site.&lt;br /&gt;
&lt;br /&gt;
==How to use the caching settings==&lt;br /&gt;
&lt;br /&gt;
Since Moodle 2.4, Moodle has provided a caching plugin framework to give administrators the ability to control where Moodle stores cached data. For most Moodle sites the default configuration should be sufficient and it is not necessary to change the configuration. For larger Moodle sites with multiple servers, administrators may wish to use memcached, mongodb or other systems to store cache data. The cache plugin screen provides administrators with the ability to configure what cache data is stored where. &lt;br /&gt;
&lt;br /&gt;
=== Types of cache ===&lt;br /&gt;
&lt;br /&gt;
Moodle uses three types of cache to store cached data:&lt;br /&gt;
* Request cache - The request cache is available for the duration of every page request. It is not shared between users and is used and cleared on every Moodle request.&lt;br /&gt;
* Session cache - The session cache is available through a users session in Moodle.  It is not shared between users, but persists for a single user throughout their session (i.e. from when they logon til when they log off)&lt;br /&gt;
* Application cache - The application cache is a shared cache which is available for every request. It can be shared between users and the cached data can be kept indefinitely if required.&lt;br /&gt;
&lt;br /&gt;
==== Cache types and multiple-server systems ====&lt;br /&gt;
&lt;br /&gt;
If you have a system with multiple front-end web servers, the application cache must be shared between the servers. In other words, you cannot use fast local storage for the application cache, but must use shared storage or some other form of shared cache such as a shared memcache.&lt;br /&gt;
&lt;br /&gt;
The same applies to session cache, unless you use a &#039;sticky sessions&#039; mechanism to ensure that within a session, users always access the same front-end server.&lt;br /&gt;
&lt;br /&gt;
===Installed cache stores===&lt;br /&gt;
&lt;br /&gt;
This section of the administrator screen displays cache plugins which are installed on the system. It lists what the capabilities of each plugin, what type of cache they provide and provides allows a cache store to be added to the system.&lt;br /&gt;
&lt;br /&gt;
===Configured store instances===&lt;br /&gt;
 &lt;br /&gt;
This section of the administrator screen displays cache stores which have been added to the system. It gives the ability to change the cache configuration and purge the cached data.&lt;br /&gt;
&lt;br /&gt;
===Cache lock instances===&lt;br /&gt;
&lt;br /&gt;
Moodle supports different mechanisms for &#039;locking&#039; access to the various cache stores. At present there is only one option and it is not used, so it can safely be ignored.&lt;br /&gt;
&lt;br /&gt;
===Known cache definitions===&lt;br /&gt;
&lt;br /&gt;
Known cache definitions displays the caches which are in use by Moodle. Each item is an area of Moodle which is using caching. It gives the administrator the ability to configure an individual area of Moodle to use a different cache backend. For example, an administrator of a Moodle cluster may choose to make language string definitions be cached on a dedicated memcached server by using the memcached cache backend.&lt;br /&gt;
&lt;br /&gt;
==Stores used when no mapping is present==&lt;br /&gt;
&lt;br /&gt;
This section displays the default cache stores which should be used by Moodle for each type of Moodle cache. If a mapping for a cache definition does not exist then this default store will be used instead.&lt;br /&gt;
&lt;br /&gt;
==Other performance testing==&lt;br /&gt;
&lt;br /&gt;
Two links that might be useful to anyone considering testing performance on their own servers:&lt;br /&gt;
&lt;br /&gt;
* [http://www.iteachwithmoodle.com/2012/10/12/moodle-performance-testing-how-much-more-horsepower-do-each-new-versions-of-moodle-require/ Moodle performance testing: how much more horsepower do each new versions of Moodle require?]&lt;br /&gt;
* [http://www.iteachwithmoodle.com/2012/10/11/how-to-stress-test-your-moodle-server-using-loadstorm/ How to load test your Moodle server using Loadstorm]&lt;br /&gt;
&lt;br /&gt;
==Performance advise for Moodle 2.5 with load-balanced web servers==&lt;br /&gt;
&lt;br /&gt;
Performance advice: if you are running Moodle 2.4 onwards with load-balanced web servers, don&#039;t use the default caching option that stores the data in moodledata on a shared network drive. Use memcache instead. See Tim Hunt&#039;s article on http://tjhunt.blogspot.de/2013/05/performance-testing-moodle.html. &lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
Using Moodle forum discussions:&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=217195 MUC is here, now what?] &lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=226123 Status of MUC?]&lt;br /&gt;
&lt;br /&gt;
Developer documentation:&lt;br /&gt;
* [[:dev:The Moodle Universal Cache (MUC)]]&lt;br /&gt;
* [[:dev:Cache API]]&lt;br /&gt;
* [[:dev:Cache API - Quick reference]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Caching]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Mobile_web_services&amp;diff=103812</id>
		<title>Mobile web services</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Mobile_web_services&amp;diff=103812"/>
		<updated>2013-04-02T10:22:48Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Web services}}&lt;br /&gt;
Moodle comes with a built-in web service designed for mobile applications. It is required to run the official [[dev:Moodle Mobile]]. Enable it only if you want people to use the official app or if a third party app explicitly requires it.&lt;br /&gt;
&lt;br /&gt;
== Enabling mobile web services ==&lt;br /&gt;
&lt;br /&gt;
A site administrator first must enable mobile web services:&lt;br /&gt;
&lt;br /&gt;
*In &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Web services &amp;gt; Mobile&#039;&#039; &lt;br /&gt;
*Check &amp;quot;Enable mobile web services&amp;quot; and then&lt;br /&gt;
*Click Save.&lt;br /&gt;
&lt;br /&gt;
That&#039;s it! No other steps required.&lt;br /&gt;
&lt;br /&gt;
The rest of this document explains the &amp;quot;behind the scenes&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== What happens when the service is enabled ==&lt;br /&gt;
Enabling the mobile web services will automatically:&lt;br /&gt;
* enable the web services system (&#039;&#039;Settings &amp;gt; Site administration &amp;gt; Advanced features&#039;&#039;)&lt;br /&gt;
* enable the built-in external service called &#039;Mobile web services&#039; - you should see this new mobile service listed as enabled&lt;br /&gt;
* enable the xml-rpc protocol (for backward compatibility with unmaintained My Moodle app)&lt;br /&gt;
* enable the rest protocol&lt;br /&gt;
* allow the &#039;webservice/xmlrpc:use&#039; capability for authenticated user role&lt;br /&gt;
* allow the &#039;webservice/rest:use&#039; capability for authenticated user role&lt;br /&gt;
&lt;br /&gt;
== Disabling mobile web services ==&lt;br /&gt;
When you uncheck &#039;Enable mobile web services&#039;, it will automatically:&lt;br /&gt;
* disable the external service called &#039;Mobile web services&#039;.&lt;br /&gt;
*if &#039;Mobile web services&#039; was the only external service enabled:&lt;br /&gt;
** disable the web services system&lt;br /&gt;
** disable the xml-rpc protocol&lt;br /&gt;
** disable the rest protocol&lt;br /&gt;
** remove the &#039;webservice/xmlrpc:use&#039; capability for authenticated user role&lt;br /&gt;
** remove the &#039;webservice/rest:use&#039; capability for authenticated user role&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Mobile app]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Mobile]]&lt;br /&gt;
&lt;br /&gt;
[[de:Mobile Webservices]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Calendar_import&amp;diff=102775</id>
		<title>Calendar import</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Calendar_import&amp;diff=102775"/>
		<updated>2013-01-16T13:16:46Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Calendar}}{{New features}}External calendars (such as Google Calendar, or a calendar from another Moodle site) can be imported into Moodle&#039;s calendar via the iCal standard.&lt;br /&gt;
&lt;br /&gt;
To import a calendar via .ics file or URL,&lt;br /&gt;
&lt;br /&gt;
# Go to &#039;&#039;Navigation &amp;gt; Site pages &amp;gt; Calendar&#039;&#039;&lt;br /&gt;
# Click the button &#039;Manage subscriptions&#039;&lt;br /&gt;
# Give the calendar subscription a name and either enter a URL or upload an .ics file&lt;br /&gt;
# Click the Add button&lt;br /&gt;
&lt;br /&gt;
A user who has permission to add course or group events, such as a teacher, can import a calendar and create course or group events.&lt;br /&gt;
&lt;br /&gt;
Similarly, a user who has permission to add site events, such as an administrator, can import a calendar and create site events.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Forum post: [https://moodle.org/mod/forum/discuss.php?d=218467#p951387 how to have a 2 way sync with a Moodle and Google calendar.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Kalender importieren]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Advanced_grading_methods&amp;diff=101507</id>
		<title>Advanced grading methods</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Advanced_grading_methods&amp;diff=101507"/>
		<updated>2012-10-26T07:40:38Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Grades}}&#039;&#039;&#039;Advanced grading methods&#039;&#039;&#039; enable various assessment forms to be used for calculating grades.&lt;br /&gt;
&lt;br /&gt;
[[image:comicstrip-rubrics.png|600px|They should also have plagiarism plugins installed and apply them to control lazy course content creators.]]&lt;br /&gt;
&lt;br /&gt;
==Advanced grading method types==&lt;br /&gt;
&lt;br /&gt;
* [[Rubrics]]&lt;br /&gt;
* [[Marking guide]] (new in Moodle 2.3)&lt;br /&gt;
&lt;br /&gt;
== Basic concepts ==&lt;br /&gt;
&lt;br /&gt;
By default, numerical grades in Moodle are selected by the teacher from a range like 0-100. When advanced grading methods are enabled, the grade selection element is replaced with a more complex assessment form provided by the plugin. The plugin contains the logic how to calculate the grade. Such a calculated grade is then passed back to the activity module as if the teacher used the standard grade value selector.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Example:&#039;&#039; The teacher creates new Assignment in the course with the grade up to 30. She defines a rubric to be used for grading. The rubric itself produces raw score up to 12 (eg it has four criteria with levels 0, 1, 2, 3). So the rubric&#039;s score 12 leads to the assignment grade 30, the score 6 leads to the grade 15 etc.&lt;br /&gt;
&lt;br /&gt;
For each activity, a new copy of the assessment form is created. Note that this is different from how [[Scales|scales]] work. While scales are defined at the site level or course level and then can be used in all activities, advanced grading forms create a new copy of the form definition for every single activity that uses it. So a change in the form definition in one assignment does not affect other places where the same rubric is used.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Example:&#039;&#039; The teacher defines a rubric for an assignment in the course. Then she re-uses the rubric in another assignment (see below on how to do this). When the teacher modifies the rubric in the second assignment, the first assignment still uses the original rubric.&lt;br /&gt;
&lt;br /&gt;
The grading form definition is part of the activity data. It is included in the activity&#039;s backup and it is copied when the activity is duplicated via the &amp;quot;x2&amp;quot; icon or imported from another course.&lt;br /&gt;
&lt;br /&gt;
== Configuring an activity module to use advanced grading methods ==&lt;br /&gt;
&lt;br /&gt;
[[image:grading-method-selection-modform.png|thumb|right|Choosing the grading method in the activity settings form.]]&lt;br /&gt;
&lt;br /&gt;
Modules that support advanced grading methods have the grading method selector included in their settings form (for example in the [[Assignment settings]] form). The teacher can choose either &#039;Simple direct grading&#039; or one of the installed grading methods plugins. Selecting &#039;Simple direct grading&#039; means that the advanced grading is not used and the standard grade selector is displayed.&lt;br /&gt;
&lt;br /&gt;
Alternative way is to follow the link &#039;Advanced grading&#039; in the activity [[Settings block]]. The link leads to a page where the current active grading method can be changed, too.&lt;br /&gt;
&lt;br /&gt;
The form definition and the associated assessment data are stashed when the grading method is changed from one type to another. That means it is save to change the current active grading method from &#039;Rubric&#039; to &#039;Simple direct grading&#039; and back to &#039;Rubric&#039;. The rubric definition is kept in the database, although it may not be available while the current grading method is set to some other method.&lt;br /&gt;
&lt;br /&gt;
== Assessment form definition ==&lt;br /&gt;
&lt;br /&gt;
[[image:grading-manage-initial.png|thumb|right|Grading method management screen (no assessment form of the selected type is not defined yet).]]&lt;br /&gt;
&lt;br /&gt;
The link &#039;Advance grading&#039; in the activity settings form leads to a management screen where the assessment form can be defined, edited, deleted and eventually shared as a public template (if the user has such permission). If there is no form of the selected method defined yet, there are two options:&lt;br /&gt;
&lt;br /&gt;
* Define new grading form from scratch - creates a blank grading form and lets you define it. Each grading plugin provides its own grading form editor.&lt;br /&gt;
* Create new grading form from a template - lets you re-use a previously defined form. You can copy any of your own grading forms (that is those you have created elsewhere) or a grading form that was shared as a public template at your site.&lt;br /&gt;
&lt;br /&gt;
Every grading form has a name and a description. These are not displayed to students. The description should summarize the form, explain its usage etc.&lt;br /&gt;
&lt;br /&gt;
The grading form definition can be saved as a draft or as a final version. If the grading form is saved as a draft, it can&#039;t be used for assessing. To release the form and make it available to assessment, save it using the button &#039;Save and make it ready&#039;. The current status of the form definition is indicated via a tag displayed next to the form name.&lt;br /&gt;
&lt;br /&gt;
=== Modifying the form after it has been used ===&lt;br /&gt;
&lt;br /&gt;
It may happen that you define a grading form, make it ready for usage and start assessing students with it. After some time you realize there is a typo in the form or that it should be actually improved significantly (like by adding another criterion into the rubric). In such case, you are about to edit a form that has already been used for assessment.&lt;br /&gt;
&lt;br /&gt;
If the grading plugin considers your change as significant, it may force you to mark all current assessment with a special flag &#039;Needs review&#039;. It is your duty to go through all existing assessments made by the previous version of the form and re-assess them to make the calculated grades valid a comparable. If the change seems to be a trivial change (eg fixing a typo in the text), the form editor may ask you to decide whether the existing assessment should be marked with the &#039;Needs review&#039; flag or not.&lt;br /&gt;
&lt;br /&gt;
Please note, when there are other people using the form for assessment (eg there are several non-editing teachers in the course who participate on the submissions assessment), even a trivial rewording can be understood as significant change in the criterion meaning. Make sure you communicate the changes well with your colleagues.&lt;br /&gt;
&lt;br /&gt;
== Re-using assessment forms ==&lt;br /&gt;
&lt;br /&gt;
[[image:grading-pick-search.png|thumb|right|Searching for a grading form to re-use]]&lt;br /&gt;
&lt;br /&gt;
Instead of defining the new grading form from scratch, you can use some existing form as the initial template to create it from. When clicking the &#039;Create new grading form from a template&#039; icon, a new page opens and you can search for a grading form there. Simply type words that should appear somewhere in the form name, its description or the form body itself. To search for a phrase, wrap the whole query in double quotes.&lt;br /&gt;
&lt;br /&gt;
=== Shared templates ===&lt;br /&gt;
&lt;br /&gt;
Users who were given a special permission can save their grading forms as shared templates on the site. Such forms can be then picked and re-used by all teachers in their courses. Users who published the form as a template can also delete it from the list of shared templates. There is also another permission to manage the whole &amp;quot;bank&amp;quot; of shared template. Users with this permission can delete any shared template, even if they are not the authors of it (see below for more details on these permissions).&lt;br /&gt;
&lt;br /&gt;
Grading forms can be shared at the site level only. There is no way how to share forms at lower context levels (eg at the course category level as the question bank does).&lt;br /&gt;
&lt;br /&gt;
=== Re-using own forms without sharing them ===&lt;br /&gt;
&lt;br /&gt;
[[image:grading-pick-ownform.png|thumb|right|Re-using a form that was previously used in another activity]]&lt;br /&gt;
&lt;br /&gt;
By default, only the grading forms that have been saved as shared templates are included in the search results. You can also include all your own grading forms in the search results. This way, you can simply re-use your grading forms without sharing them. Only forms marked as &#039;Ready for usage&#039; can be re-used this way.&lt;br /&gt;
&lt;br /&gt;
=== Permissions ===&lt;br /&gt;
&lt;br /&gt;
There are two capabilities that affect the user&#039;s permission to work with templates.&lt;br /&gt;
&lt;br /&gt;
* Share advanced grading form as a template ([[Capabilities/moodle/grade:sharegradingforms|moodle/grade:sharegradingforms]]) - grants the ability to save a grading form as a new shared template and eventually edit and remove own templates (templates originally shared by that user). Users with the role of manager are given this permission by default.&lt;br /&gt;
* Manage advanced grading form templates ([[Capabilities/moodle/grade:managesharedforms|moodle/grade:managesharedforms]]) - grants the ability to edit and remove any shared template, even those originally shared by other users.&lt;br /&gt;
&lt;br /&gt;
If you want to give these permissions to other users (eg to experienced teachers who are known to be able to produce high quality grading forms), ask your site administrator to define new system roles, eg. &#039;Grading forms publisher&#039; and &#039;Grading forms manager&#039;, having the above capabilities granted respectively. Your site admin can then assign these roles to the selected users.&lt;br /&gt;
&lt;br /&gt;
=== Sharing your grading forms world-wide ===&lt;br /&gt;
&lt;br /&gt;
At the moment, there is no way how to export/import grading form definitions. The known workaround is to create an empty assignment module and attach the grading form to it. Then make a standard activity backup of this assignment in the MBZ format and share it. By restoring the assignment, the attached grading form is restored, too. It can be then picked for your own activities or shared as a template at your site.&lt;br /&gt;
&lt;br /&gt;
==What the students see==&lt;br /&gt;
When students click on an assignment which has a rubric or marking guide attached to it, they will see a link &amp;quot;Submissions grading&amp;quot; under the assignment name in their navigation block. Clicking on this will bring up the rubric or marking guide in a new screen.&lt;br /&gt;
[[image:submissionsgradinglink.png|thumb|right|How students access grading forms]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you think it would be better for students to see grading forms directly on the assignment rather than via a link, then there is a tracker entry you might like to vote on: MDL-34088&lt;br /&gt;
&lt;br /&gt;
==The future of advanced grading methods==&lt;br /&gt;
&lt;br /&gt;
Advanced grading methods can currently only be used for [[Assignment module|assignments]]. In future Moodle versions it is hoped that they can be used in more activity modules, such as glossaries and database activities. In addition more grading methods can be implemented as independent plugins (including custom ones fitting your particular need).&lt;br /&gt;
&lt;br /&gt;
Using Moodle forum discussions:&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=193460 A few Advanced Grading questions for Moodle 2.2.1]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=193961 Wrong Gradebook Calculation from 2.2 Rubric]&lt;br /&gt;
&lt;br /&gt;
[[de:Erweiterte Bewertungsmethoden]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Capabilities/block/rss_client:manageownfeeds&amp;diff=99996</id>
		<title>Capabilities/block/rss client:manageownfeeds</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Capabilities/block/rss_client:manageownfeeds&amp;diff=99996"/>
		<updated>2012-08-14T15:33:52Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*This allows a user to delete his own RSS feeds&lt;br /&gt;
&lt;br /&gt;
====Legacy Role Default Settings====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! Legacy Role !! Inherit !! Allow !! Prevent !! Prohibit&lt;br /&gt;
|-&lt;br /&gt;
| Administrator || - || X || - || -&lt;br /&gt;
|-&lt;br /&gt;
| Course Creator || X || - || - || -&lt;br /&gt;
|-&lt;br /&gt;
| Teacher || - || X || - || -&lt;br /&gt;
|-&lt;br /&gt;
| Non-editing Teacher || - || X || - || -&lt;br /&gt;
|-&lt;br /&gt;
| Student || X || - || - || -&lt;br /&gt;
|-&lt;br /&gt;
| Guest || X || - || - || -&lt;br /&gt;
|-&lt;br /&gt;
| Authenticated User || X || - || - || -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Capabilities|RSS]]&lt;br /&gt;
[[Category:RSS]]&lt;br /&gt;
&lt;br /&gt;
[[de:Capabilities/block/rss client:manageownfeeds]]&lt;br /&gt;
[[eu:Gaitasunak/block/rss client:manageownfeeds]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Media_embedding&amp;diff=99354</id>
		<title>Media embedding</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Media_embedding&amp;diff=99354"/>
		<updated>2012-07-20T09:17:15Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Working with media}}&lt;br /&gt;
==Embedding audio and video==&lt;br /&gt;
[[File:mp3 player.png|thumb|MP3 player]]&lt;br /&gt;
Audio and video may be embedded in a course in the following ways:&lt;br /&gt;
&lt;br /&gt;
* As a [[File module settings|file resource]] &lt;br /&gt;
* As a [[URL module settings|URL resource]] with embed as the display option&lt;br /&gt;
* In a [[Lesson settings|lesson popup]]&lt;br /&gt;
* In any text area using the Moodle media button in the [[Text editor|text editor]] or simply by typing the URL of media file&lt;br /&gt;
&lt;br /&gt;
The media file link is then replaced with an appropriate multimedia player which can play the resource.&lt;br /&gt;
&lt;br /&gt;
==Enabling media embedding==&lt;br /&gt;
&lt;br /&gt;
To enable the embedding of media files, an admin must enable&lt;br /&gt;
&lt;br /&gt;
# Appropriate media players (see below)&lt;br /&gt;
# The [[Multimedia plugins filter]]&lt;br /&gt;
&lt;br /&gt;
==Site administration settings==&lt;br /&gt;
{{New features}}An administrator can enable selected media players in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Appearance &amp;gt; Media embedding&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Available players===&lt;br /&gt;
* YouTube (displays videos hosted on youtube)&lt;br /&gt;
* Vimeo (displays videos hosted on vimeo)&lt;br /&gt;
* .mp3 - MPEG Audio Stream, Layer III&lt;br /&gt;
* .flv - Flash video&lt;br /&gt;
* .f4v - Flash video&lt;br /&gt;
* .swf - Macromedia Flash animation File (Adobe, Inc.) &lt;br /&gt;
:&#039;&#039;&#039;Note:&#039;&#039;&#039; Only used in trusted texts as it has potential security issues&lt;br /&gt;
* .ogg - HTML 5 audio&lt;br /&gt;
* .acc - HTML 5 audio&lt;br /&gt;
* .mp3 - HTML 5 audio&lt;br /&gt;
* .webm - HTML 5 video&lt;br /&gt;
* .m4v - HTML 5 video&lt;br /&gt;
* .ogv  - HTML 5 video&lt;br /&gt;
&lt;br /&gt;
===Legacy media players===&lt;br /&gt;
The following legacy media player formats are also available but not recommended for general usage:&lt;br /&gt;
* .mov - QuickTime player (requires QuickTime player or [http://en.wikipedia.org/wiki/Codec codec])&lt;br /&gt;
* .mp4 - QuickTime player (requires QuickTime player or codec)&lt;br /&gt;
* .m4a - QuickTime player (requires QuickTime player or codec)&lt;br /&gt;
* .mpg - MPEG animation - QuickTime player (requires QuickTime player or codec)&lt;br /&gt;
* .wmv - Windows media player (Microsoft)-not guaranteed to work in browsers other than IE and non-Windows systems&lt;br /&gt;
* .avi - Windows media player - not guaranteed to work in browsers other than IE and non-Windows systems&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[:dev:Media embedding]] developer documentation including information on how to change the size of the media player&lt;br /&gt;
&lt;br /&gt;
[[Category:Site administration]]&lt;br /&gt;
&lt;br /&gt;
[[de:Einbetten von Medien]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Multimedia_plugins_filter&amp;diff=99353</id>
		<title>Multimedia plugins filter</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Multimedia_plugins_filter&amp;diff=99353"/>
		<updated>2012-07-20T08:56:21Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Filters}}&lt;br /&gt;
The Multimedia plugins filter finds a link in text that points to a multimedia resource and replaces the link with an appropriate multimedia player code which can play the resource.  The actual player resides on each users&#039; computer.&lt;br /&gt;
&lt;br /&gt;
For example, a teacher may put a MP3 audio file as a resource in their course, or have a URL link to an external MP3 file.  When the MP3 audio plugin has been turned on, the student will be able to play them in Moodle using a Flash media player on their computer.  See also [[Media embedding]].&lt;br /&gt;
&lt;br /&gt;
== Site administration settings ==&lt;br /&gt;
&lt;br /&gt;
A site administrator can enable the multimedia plugins filter in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Filters&#039;&#039; and can enable selected media players in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Appearance &amp;gt; Media embedding&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Note: Prior to Moodle 2.3, settings for enabling selected media players could be found as multimedia plugins filter settings.&lt;br /&gt;
&lt;br /&gt;
== Required software on user&#039;s computer ==&lt;br /&gt;
&lt;br /&gt;
Although Moodle prepares the media files to be played in the browser, the actual playback is handled by various types of browser plug-in software, primarily Adobe Flash, Quicktime, Windows Media Player and Real Player. If users do not have these installed they may be prompted to go and install them by their browser. These pieces of software are generally free, easily installed and widely used so this will only be an issue for small numbers of users.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Multimedia plugins FAQ]]&lt;br /&gt;
* [[Video| Video]]&lt;br /&gt;
* [[Audio| Audio]]&lt;br /&gt;
&lt;br /&gt;
Using Moodle forum discussions:&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=98698 swf filter security]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=125619 How to upload a screen capture video to the Moodle?]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=143478 Best video format]&lt;br /&gt;
&lt;br /&gt;
[[Category:Site administration]]&lt;br /&gt;
[[Category:Multimedia]]&lt;br /&gt;
&lt;br /&gt;
[[de:Multimedia-Plugins]]&lt;br /&gt;
[[fr:Extensions multimédia]]&lt;br /&gt;
[[es:Multimedia plugins (filtro)|Multimedia plugins]]&lt;br /&gt;
[[ja:マルチメディアプラグイン]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=File_resource_settings&amp;diff=99351</id>
		<title>File resource settings</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=File_resource_settings&amp;diff=99351"/>
		<updated>2012-07-20T08:44:53Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{File}}&lt;br /&gt;
==Adding a file==&lt;br /&gt;
&lt;br /&gt;
To add a file to your course&lt;br /&gt;
[[File:dragandrop.png|thumb|Quick method of adding a file]]&lt;br /&gt;
{{New features}}Quick method:&lt;br /&gt;
# Click the &#039;Turn editing on&#039; button at the top right of the course page&lt;br /&gt;
# Drag and drop the file onto the course section where you&#039;d like it to appear&lt;br /&gt;
# If necessary, edit the title of the file by clicking the pencil icon, or edit other options (see below) by clicking the editing icon&lt;br /&gt;
&lt;br /&gt;
Longer method:&lt;br /&gt;
# Click the &#039;Turn editing on&#039; button at the top right of the course page&lt;br /&gt;
# Click &#039;Add an activity or resource&#039; link, then in the activity chooser, select file then click the Add button (or select file from the &amp;quot;Add a resource&amp;quot; dropdown menu) &lt;br /&gt;
# Enter a link name and a description (which may be required or optional according to the admin settings)&lt;br /&gt;
# Either drag and drop a file into the box with an arrow or click the Add button to open the [[File picker]] menu in order to choose a file from your computer or a repository&lt;br /&gt;
# Select display and other options as required (see below)&lt;br /&gt;
# Click the button &#039;Save and display&#039; at the bottom of the page&lt;br /&gt;
&lt;br /&gt;
==Course administration settings==&lt;br /&gt;
===Display options===&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;Automatic&#039;&#039; - Make the best guess at what should happen (probably what is wanted 99% of the time).&lt;br /&gt;
* &#039;&#039;Embed&#039;&#039; - Show the Moodle page with heading, blocks and footer. Show the title/description of the item and display the file directly in the page as well (good for images, flash animations, videos?, PDFs).&lt;br /&gt;
* &#039;&#039;Force download&#039;&#039; - user clicks on the file, then the web browser pops up with the &#039;where do you want to save this file&#039; box.&lt;br /&gt;
* &#039;&#039;Open&#039;&#039; - No Moodle heading, blocks, footer or description - just show the file in the web browser (e.g. shows image, PDF, flash animation, taking up the whole browser window)&lt;br /&gt;
* &#039;&#039;In pop-up&#039;&#039; - Same as &#039;Open&#039;, but opens a new browser window to show this file (without the Moodle heading, blocks, etc) - this browser window also does not have all the menus and address bar in it.&lt;br /&gt;
&lt;br /&gt;
*The following additional options are only there if you enable them via &#039;&#039;Site administration &amp;gt; Plugins &amp;gt; Activity modules &amp;gt; File&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;In frame&#039;&#039; - show the Moodle heading and the file description, with the file displayed in a resizable area below (images, PDF, flash, etc. supported).&lt;br /&gt;
* &#039;&#039;New window&#039;&#039; - very much like &#039;in pop-up&#039;, but the new window is a full browser window, with menus and address bar, etc.&lt;br /&gt;
&lt;br /&gt;
All of the above is true of items that can be displayed inside the browser directly (e.g. images, text files, PDFs (with plugin)). If the file cannot be displayed within the browser (e.g. word documents, without a suitable plugin, or other files that need to be loaded by an external program), then the pop-ups or frames, etc. will be created, but then the browser will take over and ask if you want to save the file.&lt;br /&gt;
&lt;br /&gt;
To summarise:&lt;br /&gt;
&lt;br /&gt;
* Do you want Moodle to sort it all out for you? - Automatic&lt;br /&gt;
* Do you want to force the user to save the file (or open it in a program on their desktop)? - Force download&lt;br /&gt;
* Do you want to show the file as part of the Moodle page (images, PDFs, videos)? - Embed&lt;br /&gt;
* Do you want to show the file in the browser, but without the Moodle page decorations (images, PDFs, videos)? - Open&lt;br /&gt;
* Do you want that, but in a new window? - In Pop-up (or possibly &#039;New window&#039;)&lt;br /&gt;
* Do you want to use a horrible bit of non-strict HTML that should never be allowed in polite company? - In frame&lt;br /&gt;
&lt;br /&gt;
===Additional options===&lt;br /&gt;
&lt;br /&gt;
{{New features}}To show the file size and/or type on the course page and also on the resource page, simply tick the appropriate checkboxes.&lt;br /&gt;
&lt;br /&gt;
[[File:files showing size and type.png]]&lt;br /&gt;
&lt;br /&gt;
There is also an option to display the file description on the course page below the link to the file.&lt;br /&gt;
&lt;br /&gt;
There are the usual [[Common module settings]] and  - if admin has enabled them - the Restrict access settings [[Conditional activities]].&lt;br /&gt;
&lt;br /&gt;
==Displaying a website index page==&lt;br /&gt;
[[File:Setmainfile.png|thumb|Setting the main file]]&lt;br /&gt;
The file module may be used if you have a folder with linked files such as a website with an index.html file or a flash activity with xml/swf and index file.&lt;br /&gt;
[[File:file resource.png|thumb|Website index page set as main file]]&lt;br /&gt;
# Click the &#039;Turn editing on&#039; button at the top right of the course page&lt;br /&gt;
# Drag and drop the zipped folder onto the course section where you&#039;d like it to appear, answer &#039;Create file resource&#039; to the popup dialogue, then click the upload button &lt;br /&gt;
# Clicking the editing icon (hand with a pen) then click on the zip file and unzip it&lt;br /&gt;
# Click on the index.html file or the file you want to start displaying your linked files from then in the popup dialogue click the button &#039;Set main file&#039;. This ensures this file is the one that appears on the course page for students to click on. The main file is then indicated with a title in bold.&lt;br /&gt;
# Click the button &#039;Save and display&#039; at the bottom of the page&lt;br /&gt;
&lt;br /&gt;
==File module capabilities==&lt;br /&gt;
&lt;br /&gt;
* [[Capabilities/mod/resource:view|View file resource]]&lt;br /&gt;
* [[Capabilities/mod/resource:addinstance|Add a new file resource]]&lt;br /&gt;
&lt;br /&gt;
==Site administration settings==&lt;br /&gt;
&lt;br /&gt;
The file module has additional settings which may be changed by an administrator in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Activity modules &amp;gt; File&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Frame height===&lt;br /&gt;
Here you can specify the height of the top frame (containing the navigation) if you choose the  &amp;quot;in frame&amp;quot; display option.  Note: If your theme has a large header then the &#039;&#039;resource_framesize&#039;&#039; variable should be increased to prevent horizontal and vertical scrollbars.&lt;br /&gt;
&lt;br /&gt;
===Require activity description===&lt;br /&gt;
This setting allows you to turn off the requirement for users to type something into the description box.&lt;br /&gt;
&lt;br /&gt;
===Available display options===&lt;br /&gt;
This setting allows you to add different ways the resource may be displayed on the course page.&lt;br /&gt;
&lt;br /&gt;
===Default values for activity settings===&lt;br /&gt;
&lt;br /&gt;
Here you can set the defaults for this resource. You can also choose which setting(s) to class as &amp;quot;Advanced&amp;quot;. These settings will only then appear if the user clicks &amp;quot;Show advanced&amp;quot; in the settings.&lt;br /&gt;
&lt;br /&gt;
[[de:Datei konfigurieren]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Recent_files_repository&amp;diff=99350</id>
		<title>Recent files repository</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Recent_files_repository&amp;diff=99350"/>
		<updated>2012-07-20T08:28:49Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Repositories}}&lt;br /&gt;
The recent files repository allows users quickly to locate files they uploaded previously.&lt;br /&gt;
&lt;br /&gt;
==Using Recent files==&lt;br /&gt;
*Recent files can be accessed anywhere the file picker is available. HOWEVER...&lt;br /&gt;
*Recent files are context-sensitive -that is to say - you will only see the type of file Moodle thinks you want to upload.&lt;br /&gt;
&#039;&#039;Example 1:&#039;&#039;  A user clicks the image icon in the text (TinyMCE) editor to upload an image already used in a different course. The Recent files repository will only show image files even though the user might have uploaded files of other types previously.&lt;br /&gt;
&lt;br /&gt;
[[File:Recentfilesimage.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Example 2:&#039;&#039; A user clicks the Moodle media icon to upload a sound file already used in a different course. The Recent files repository will only show media files even though the user might have uploaded files of other types previously.&lt;br /&gt;
&lt;br /&gt;
[[File:Recentfilesmultimedia.png]]&lt;br /&gt;
&lt;br /&gt;
{{New features}}When a recently uploaded file is re-used elsewhere in Moodle, the teacher has the option to make a copy (a new, unconnected version) or to create a shortcut or alias. See [[Working with files]] for more details.&lt;br /&gt;
&lt;br /&gt;
==How Recent are Recent files?==&lt;br /&gt;
*There is no set time for the display of Recent files - that is to say - it isn&#039;t the last two days or two weeks etc.&lt;br /&gt;
*Recent files are by default the last 50 files the user has uploaded to Moodle. This number can be changed by the admin&lt;br /&gt;
&lt;br /&gt;
==Changing the number of Recent files==&lt;br /&gt;
*Go to &#039;&#039;Settings &amp;gt; Site Administration &amp;gt; Plugins &amp;gt; Repositories &amp;gt; Recent Files&#039;&#039;&lt;br /&gt;
*Click the blue Settings link&lt;br /&gt;
*Change the number to your preferred number. &lt;br /&gt;
&lt;br /&gt;
[[File:Recentfilesnumber.png]]&lt;br /&gt;
&lt;br /&gt;
==Disabling Recent files==&lt;br /&gt;
&lt;br /&gt;
Recent files is enabled by default but can be disabled by the administrator if required.&lt;br /&gt;
&lt;br /&gt;
[[File:Recentfiles.png]]&lt;br /&gt;
&lt;br /&gt;
*Go to &#039;&#039;Settings &amp;gt; Site Administration &amp;gt; Plugins &amp;gt; Repositories &amp;gt; Manage Repositories&#039;&#039;&lt;br /&gt;
*Change the drop down next to Recent files from &amp;quot;Enabled and Visible&amp;quot; to &amp;quot;Disabled&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Repository capabilities==&lt;br /&gt;
&lt;br /&gt;
There is just one capability, [[Capabilities/repository/recent:view|View recent files]], which is allowed for the default authenticated user role. &lt;br /&gt;
&lt;br /&gt;
==FAQ==&lt;br /&gt;
===I can&#039;t see all my uploaded files in Recent files===&lt;br /&gt;
*This is probably due to the place where you are accessing Recent files. See [[ #Using_Recent_files|here]] for more information.&lt;br /&gt;
&lt;br /&gt;
[[de:Letzte Dateien]]&lt;br /&gt;
[[fr:Fichiers récents]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Administration_block&amp;diff=97533</id>
		<title>Administration block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Administration_block&amp;diff=97533"/>
		<updated>2012-05-07T13:31:06Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Blocks}}&lt;br /&gt;
The settings block provides context-sensitive links to settings pages.&lt;br /&gt;
&lt;br /&gt;
What appears in the setting block depends upon the [[Context]] (Page being shown and user&#039;s permissions). For example, the site administrator will notice the Front Page settings block has fewer options than the Course settings block and a student will have fewer options in the Course administration than a teacher.   &lt;br /&gt;
&lt;br /&gt;
Here are two unexpanded examples of the settings block:&lt;br /&gt;
&amp;lt;gallery widths=&amp;quot;200px&amp;quot; heights=&amp;quot;200px&amp;quot; perrow=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Image:Settings block FrontPage collapsed.png|FrontPage settings block&lt;br /&gt;
Image:Settings block Course collapsed.png|Course settings block&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Settings block menus==&lt;br /&gt;
The main menu items (Front page settings, Course Administration, My profile settings and Site Administration) contain a submenu and can be collapsed or expanded to display the (typical) full menu as shown below:&lt;br /&gt;
*[[Front_page_settings_block|Front page settings]]&lt;br /&gt;
**Turn edit on/off&lt;br /&gt;
**Edit settings&lt;br /&gt;
**Users&lt;br /&gt;
**Filters&lt;br /&gt;
**Backup&lt;br /&gt;
**Restore&lt;br /&gt;
**Questions&lt;br /&gt;
**Files&lt;br /&gt;
&lt;br /&gt;
*[[Course_administration_menu|Course administration]]&lt;br /&gt;
**Turn editing on&lt;br /&gt;
**Edit settings&lt;br /&gt;
**Users&lt;br /&gt;
**Filters&lt;br /&gt;
**Grades&lt;br /&gt;
**Backup&lt;br /&gt;
**Restore&lt;br /&gt;
**Import&lt;br /&gt;
**Publish&lt;br /&gt;
**Reset&lt;br /&gt;
**Question bank&lt;br /&gt;
&lt;br /&gt;
*[[Profile |My profile settings]]&lt;br /&gt;
**Edit profile&lt;br /&gt;
**Change password&lt;br /&gt;
**Roles&lt;br /&gt;
**Portfolios (if available at site level)&lt;br /&gt;
**Security keys&lt;br /&gt;
**Messaging&lt;br /&gt;
**Blogs&lt;br /&gt;
**Make this my default home page (if set at site level)&lt;br /&gt;
&lt;br /&gt;
*[[Site_administration|Site administration]]&lt;br /&gt;
**Notifications&lt;br /&gt;
**Registration&lt;br /&gt;
**Advanced features&lt;br /&gt;
**Users&lt;br /&gt;
**Courses&lt;br /&gt;
**Grades&lt;br /&gt;
**Location&lt;br /&gt;
**Language&lt;br /&gt;
**Plugins&lt;br /&gt;
**Security&lt;br /&gt;
**Appearance&lt;br /&gt;
**Front page&lt;br /&gt;
**Server&lt;br /&gt;
**Reports&lt;br /&gt;
**Development&lt;br /&gt;
**Question engine upgrade helper&lt;br /&gt;
&lt;br /&gt;
[[de:Einstellungen-Block]]&lt;br /&gt;
[[eu:Ezarpenak_blokea]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=External_database_authentication&amp;diff=97325</id>
		<title>External database authentication</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=External_database_authentication&amp;diff=97325"/>
		<updated>2012-04-27T15:54:08Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Authentication}}&lt;br /&gt;
Location: &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Authentication &amp;gt; External database&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This method uses an external database table to check whether a given username and password is valid. If the account is a new one, then information from other fields may also be copied across into Moodle.&lt;br /&gt;
&lt;br /&gt;
This is done by mapping fields at the bottom of the database authentication page. Each data field in the user profile has a text field next to it. Enter the name of the column in the external database that maps to the profile data field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Update Local&#039;&#039;&#039; - Specifies that the external data will be entered into the local field in question&lt;br /&gt;
* On Creation - specifies that this will only happen on the original login when the account is created for the first time.&lt;br /&gt;
* On Every Login - specifies that changes in the external data will be updated on the local Moodle field in question the next time the user logs in again.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Update External&#039;&#039;&#039; - Specifies just the opposite, meaning changes in the local Moodle field in question will update the corresponding field in the external database&lt;br /&gt;
* Never - Specifies this is disabled&lt;br /&gt;
* On Update - Enables this to happen if a change is made locally (additional configuration is probably required)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Lock Value&#039;&#039;&#039; - Only determines whether the local user can make a change in the Moodle field and does not affect the two settings above.&lt;br /&gt;
* Unlocked - A user can make changes locally in the Moodle field (assumably even if it contradicts the external database the next login would change it again if Update Local is set&lt;br /&gt;
* Locked - A user can never make changes&lt;br /&gt;
* Unlocked if empty - A user can only make changes if the field is not populated already from the external database (this would seem to indicate a user could only enter something into this field once and could not change it after saving)&lt;br /&gt;
&lt;br /&gt;
==Additional Notes==&lt;br /&gt;
* Some of the things that apply to [[Upload users]] apply to the External database&lt;br /&gt;
** Set password to &amp;quot;changeme&amp;quot; to force password reset&lt;br /&gt;
*** If you do this, it is &#039;&#039;&#039;critical&#039;&#039;&#039; that you provide a URL to change the password!&lt;br /&gt;
* Not all of the fields in the [[Upload users]] are available for the External Database authentication. The only available fields are the fields listed in the data mapping section of the admin page for the External Database connection.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=45444 Special and characters con tilde (accute accent) when connected to external database] forum discussion&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=75519 HELP!--User Authentication problem] forum discussion&lt;br /&gt;
&lt;br /&gt;
[[de:Externe Datenbank]]&lt;br /&gt;
[[fr:Utiliser une base de données externe]]&lt;br /&gt;
[[ja:外部データベース認証]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=IMAP_authentication&amp;diff=97324</id>
		<title>IMAP authentication</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=IMAP_authentication&amp;diff=97324"/>
		<updated>2012-04-27T15:52:12Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Authentication}}&lt;br /&gt;
Location: Settings link in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Authentication &amp;gt; Manage authentication&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
IMAP authentication uses a mailing systems IMAP protocol to check for users accounts. This allows direct integrations with technologies such as Microsoft Exchange servers.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*[[Talk:IMAP authentication]]&lt;br /&gt;
&lt;br /&gt;
[[de:IMAP-Server]]&lt;br /&gt;
[[ja:IMAP認証]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Enrolment_plugins&amp;diff=97323</id>
		<title>Enrolment plugins</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Enrolment_plugins&amp;diff=97323"/>
		<updated>2012-04-27T15:50:37Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Enrolment}}&lt;br /&gt;
Moodle provides a number of ways of managing course enrolment, called &#039;&#039;enrolment plugins&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[Image:Manageenrolplugins1.png]]&lt;br /&gt;
&lt;br /&gt;
==Setting the enrolment method(s)==&lt;br /&gt;
&lt;br /&gt;
To set an enrolment method:&lt;br /&gt;
#Click on &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Enrolments &amp;gt; Manage enrol plugins&#039;&#039;.&lt;br /&gt;
#Click on the &#039;&#039;enable&#039;&#039; checkboxes opposite your chosen enrolment plugin(s). If you wish, you may choose more than one enrolment method. For example if you have some courses which students must pay for and some free courses, you can use PayPal and self enrolment. &lt;br /&gt;
#Click the &amp;quot;Save changes&amp;quot; button.&lt;br /&gt;
#Click the settings link opposite the enrolment plugin(s) you have chosen.&lt;br /&gt;
#Configure the required settings and click the &amp;quot;Save changes&amp;quot; button.&lt;br /&gt;
#Repeat until you have edited all the plugins you have enabled.&lt;br /&gt;
&lt;br /&gt;
The order in which enrolment plugins are applied can be set. This may be important for some plugins. It also affects the order of enrolment options on the course enrol page.&lt;br /&gt;
&lt;br /&gt;
==Enrolment capabilities==&lt;br /&gt;
&lt;br /&gt;
Authorize.Net:&lt;br /&gt;
*[[Capabilities/enrol/authorize:managepayments|Manage payments]]&lt;br /&gt;
*[[Capabilities/enrol/authorize:uploadcsv|Upload CSV file]]&lt;br /&gt;
*[[Capabilities/enrol/authorize:config|Configure Authorize.Net enrol instances]]&lt;br /&gt;
*[[Capabilities/enrol/authorize:manage|Manage enrolled users]]&lt;br /&gt;
*[[Capabilities/enrol/authorize:unenrol|Unenrol users from course]]&lt;br /&gt;
*[[Capabilities/enrol/authorize:unenrolself|Unenrol self from the course]]&lt;br /&gt;
&lt;br /&gt;
Category enrolments:&lt;br /&gt;
*[[Capabilities/enrol/category:synchronised|Role assignments synchronised to course enrolment]]&lt;br /&gt;
&lt;br /&gt;
Cohort sync:&lt;br /&gt;
*[[Capabilities/enrol/cohort:config|Configure cohort instances]]&lt;br /&gt;
&lt;br /&gt;
Guest access:&lt;br /&gt;
*[[Capabilities/enrol/guest:config|Configure guest access instances]]&lt;br /&gt;
&lt;br /&gt;
LDAP enrolments:&lt;br /&gt;
*[[Capabilities/enrol/ldap:manage|Manage LDAP enrol instances]]&lt;br /&gt;
&lt;br /&gt;
Manual enrolments:&lt;br /&gt;
*[[Capabilities/enrol/manual:config|Configure manual enrol instances]]&lt;br /&gt;
*[[Capabilities/enrol/manual:enrol|Enrol users]]&lt;br /&gt;
*[[Capabilities/enrol/manual:manage|Manage user enrolments]]&lt;br /&gt;
*[[Capabilities/enrol/manual:unenrol|Unenrol users from the course]]&lt;br /&gt;
*[[Capabilities/enrol/manual:unenrolself|Unenrol self from the course]]&lt;br /&gt;
&lt;br /&gt;
Course meta link:&lt;br /&gt;
*[[Capabilities/enrol/meta:config|Configure meta enrol instances]]&lt;br /&gt;
*[[Capabilities/enrol/meta:selectaslinked|Select course as meta linked]]&lt;br /&gt;
&lt;br /&gt;
PayPal:&lt;br /&gt;
*[[Capabilities/enrol/paypal:config|Configure PayPal enrol instances]]&lt;br /&gt;
*[[Capabilities/enrol/paypal:manage|Manage enrolled users]]&lt;br /&gt;
*[[Capabilities/enrol/paypal:unenrol|Unenrol users from course]]&lt;br /&gt;
*[[Capabilities/enrol/paypal:unenrolself|Unenrol self from the course]]&lt;br /&gt;
&lt;br /&gt;
Self enrolment:&lt;br /&gt;
*[[Capabilities/enrol/self:config|Configure self enrol instances]]&lt;br /&gt;
*[[Capabilities/enrol/self:manage|Manage enrolled users]]&lt;br /&gt;
*[[Capabilities/enrol/self:unenrol|Unenrol users from course]]&lt;br /&gt;
*[[Capabilities/enrol/self:unenrolself|Unenrol self from the course]]&lt;br /&gt;
&lt;br /&gt;
Course:&lt;br /&gt;
*[[Capabilities/moodle/course:enrolconfig|Configure enrol instances in courses]]&lt;br /&gt;
*[[Capabilities/moodle/course:enrolreview|Review course enrolments]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Unenrolment]]&lt;br /&gt;
*[[Enrolment FAQ]]&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/view.php?id=2981 Enrolment Plugins] forum&lt;br /&gt;
&lt;br /&gt;
[[de:Einschreibungs-Plugins verwalten]]&lt;br /&gt;
[[eu:Matrikulazioa]]&lt;br /&gt;
[[fr:Méthodes d&#039;inscription]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Calendar_editor_role&amp;diff=97322</id>
		<title>Calendar editor role</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Calendar_editor_role&amp;diff=97322"/>
		<updated>2012-04-27T15:49:04Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Roles}}The role of &#039;&#039;&#039;Calendar editor&#039;&#039;&#039; enables a user to add site or course events to the calendar.&lt;br /&gt;
&lt;br /&gt;
==Role set-up==&lt;br /&gt;
&lt;br /&gt;
#Access &#039;&#039;Administration &amp;gt; Users &amp;gt; Permissions &amp;gt; Define roles&#039;&#039;.&lt;br /&gt;
#Click the button &amp;quot;Add a new role&amp;quot;.&lt;br /&gt;
#Give the role a name e.g. Calendar editor, short name and description.&lt;br /&gt;
#For context types, choose &amp;quot;System&amp;quot; and &amp;quot;Course&amp;quot;&lt;br /&gt;
#Change the capability [[Capabilities/moodle/calendar:manageentries|moodle/calendar:manageentries]] to allow.&lt;br /&gt;
#Optional: Change the capability [[Capabilities/moodle/calendar:managegroupentries|moodle/calendar:managegroupentries]] to allow too.&lt;br /&gt;
#Click the button &amp;quot;Create this role&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Role assignment==&lt;br /&gt;
&lt;br /&gt;
To enable a user to add site events to the calendar:&lt;br /&gt;
#Access &#039;&#039;Administration &amp;gt; Users &amp;gt; Permissions &amp;gt; Assign system roles&#039;&#039;&lt;br /&gt;
#Choose the calendar editor role to assign&lt;br /&gt;
#Select a user in the potential users list, and use the left-facing arrow button to add it to the existing users list&lt;br /&gt;
&lt;br /&gt;
To enable a user to add course events to the calendar:&lt;br /&gt;
#In &#039;&#039;Settings&amp;gt;Course administration&#039;&#039;, click &#039;&#039;Users&amp;gt;enrolled users&#039;&#039;&lt;br /&gt;
#Choose the calendar editor role to assign&lt;br /&gt;
#Select a user in the potential users list, and use the left-facing arrow button to add it to the existing users list&lt;br /&gt;
&lt;br /&gt;
[[Category:Calendar]]&lt;br /&gt;
&lt;br /&gt;
[[de:Kalender-Verwalter-Rolle]]&lt;br /&gt;
[[eu:Egutegiaren_editore-rola]]&lt;br /&gt;
[[fr:Rôle éditeur de calendrier]]&lt;br /&gt;
[[ja:カレンダー編集者ロール]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Talk:Security_recommendations&amp;diff=97321</id>
		<title>Talk:Security recommendations</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Talk:Security_recommendations&amp;diff=97321"/>
		<updated>2012-04-27T15:47:58Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Correction : Enrolment key hint is disabled by default in Moodle 2.2. The setting is found at Settings&amp;gt;Site Administration&amp;gt;Plugins&amp;gt;Enrolments&amp;gt;Self enrolment.&lt;br /&gt;
&lt;br /&gt;
Thanks for the pointer, Jane :) --[[User:Mary Cooch|Mary Cooch]] 20:18, 22 April 2012 (WST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Sicherheitsempfehlungen]]  ([[User:Klaus Steitz|Klaus Steitz]] 23:47, 27 April 2012 (WST))&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Convert_URLs_into_links_filter&amp;diff=97320</id>
		<title>Convert URLs into links filter</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Convert_URLs_into_links_filter&amp;diff=97320"/>
		<updated>2012-04-27T15:40:56Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Filters}}&lt;br /&gt;
As the name suggests, the &#039;Convert URLs into links and images&#039; filter converts a URL such as &amp;lt;nowiki&amp;gt;http://moodle.org&amp;lt;/nowiki&amp;gt; into a clickable link http://moodle.org. In addition it can replace image URLs with images.&lt;br /&gt;
&lt;br /&gt;
==Site administration settings==&lt;br /&gt;
&lt;br /&gt;
The &#039;Convert URLs into links&#039; filter has two settings which may be changed by a site administrator in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Filters &amp;gt; Convert URLs into links and images&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Apply to formats===&lt;br /&gt;
&lt;br /&gt;
The filter may be applied to text entered in any/all of the following formats: Moodle auto-format, HTML format, plain text format, Markdown format.&lt;br /&gt;
&lt;br /&gt;
===Embed images===&lt;br /&gt;
&lt;br /&gt;
By default, the filter replaces image URLs with images, however this feature may be disabled by a site administrator.&lt;br /&gt;
&lt;br /&gt;
[[Category:Site administration]]&lt;br /&gt;
&lt;br /&gt;
[[de:URL als Link oder Bild anzeigen]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Display_emoticons_as_images_filter&amp;diff=97319</id>
		<title>Display emoticons as images filter</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Display_emoticons_as_images_filter&amp;diff=97319"/>
		<updated>2012-04-27T15:40:17Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Filters}}&lt;br /&gt;
The filter &#039;&#039;&#039;Display emoticons as images&#039;&#039;&#039; converts emoticon (smiley) characters into images.&lt;br /&gt;
&lt;br /&gt;
Emoticons may be added using the button [[Image:tinymce-insert-emoticon-icon.gif]] &#039;&#039;Insert emoticon&#039;&#039; in the [[Text editor]] or by typing the emoticon characters e.g. &amp;lt;code&amp;gt;:-)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[Image:tinymce-insert-emoticon-popup.png|left|frame|Insert emoticon popup menu in the text editor]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Site administration settings==&lt;br /&gt;
&lt;br /&gt;
===Manage filters===&lt;br /&gt;
&lt;br /&gt;
A site administrator can enable / disable the &#039;Display emoticons as images&#039; filter site-wide in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Filters &amp;gt; Manage filters&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The &#039;Display emoticons as images&#039; settings (&#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Filters &amp;gt; Display emoticons as images&#039;&#039;) enable the site administrator to select which formats the filter is applied to. By default, the filter is applied to Moodle auto-format, HTML format and Markdown format.&lt;br /&gt;
&lt;br /&gt;
===HTML settings===&lt;br /&gt;
&lt;br /&gt;
A site administrator can customize the list of available emoticons in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Appearence &amp;gt; HTML settings&#039;&#039;. See [[Emoticon images]] for details.&lt;br /&gt;
&lt;br /&gt;
[[Category: Site administration]]&lt;br /&gt;
&lt;br /&gt;
[[de:Emoticon als Bild anzeigen]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Glossary_auto-linking_filter&amp;diff=97318</id>
		<title>Glossary auto-linking filter</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Glossary_auto-linking_filter&amp;diff=97318"/>
		<updated>2012-04-27T15:38:58Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Filters}}&lt;br /&gt;
Glossary auto-linking is a site [[Filter]] that will create links to a glossary activity entry where the word or phrase of the glossary entry is used within the same course in which the glossary is located. This includes forum postings, pages, labels etc.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Site Administration settings==&lt;br /&gt;
Glossary auto-linking must be enabled by an administrator via &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Filters&#039;&#039;. This Filter can be enabled by selecting either &#039;&#039;&#039;On&#039;&#039;&#039; (where glossary entries will be by default auto-linked) or &#039;&#039;&#039;Off but available&#039;&#039;&#039; (where the option to use auto-linking is provided in the glossary activity settings).&lt;br /&gt;
&lt;br /&gt;
Note: Enabling linking for the glossary does not automatically turn on linking for each entry - linking needs to be set for each entry individually.&lt;br /&gt;
&lt;br /&gt;
In addition, you can apply this filter to &#039;&#039;&#039;Content&#039;&#039;&#039; or to &#039;&#039;&#039;Content and headings&#039;&#039;&#039; within a course. Please note applying filters to headings as well as content can greatly increase the load on your server. It is recommended to use the &#039;Apply to&#039; settings sparingly. The main use is with the multilang filter.&lt;br /&gt;
&lt;br /&gt;
Using the up/down arrows in the &#039;&#039;&#039;Order&#039;&#039;&#039; column you can specify the order in which each of the enabled [[Filters]] are applied.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Glossary module]]&lt;br /&gt;
&lt;br /&gt;
[[Category: Glossary]]&lt;br /&gt;
[[Category: Site administration]]&lt;br /&gt;
&lt;br /&gt;
[[de:Auto-Verlinkung zu Glossars]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=HTML_tidy_filter&amp;diff=97317</id>
		<title>HTML tidy filter</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=HTML_tidy_filter&amp;diff=97317"/>
		<updated>2012-04-27T15:37:30Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Filters}}&lt;br /&gt;
This filter checks whether HTML code is XHTML compliant, tidying where necessary. To make this filter work you need to have PHP compiled with the libtidy option; see http://www.php.net/tidy. The Using Moodle discussion [http://moodle.org/mod/forum/discuss.php?d=28418 Tidy Filter for Moodle 1.5] contains more details.&lt;br /&gt;
&lt;br /&gt;
[[de:HTML Prüfung]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Word_censorship_filter&amp;diff=97316</id>
		<title>Word censorship filter</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Word_censorship_filter&amp;diff=97316"/>
		<updated>2012-04-27T15:36:57Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Filters}}&lt;br /&gt;
The word censorship filter enables certain user-selected words to be &amp;quot;blacked out&amp;quot; in the flow of any text submitted within a course. The primary use is for censoring obscene or other unwanted words entered by learners in activities like Forums and Wikis.&lt;br /&gt;
&lt;br /&gt;
==Custom list of censored Words==&lt;br /&gt;
&lt;br /&gt;
The word censorship settings page &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Word censorship&#039;&#039; allows a site administrator to edit a custom list of words (bad words) to be censored within your Moodle installation.&lt;br /&gt;
&lt;br /&gt;
To avoid inadvertently causing offense, there is no default bad word list on the Word censorship settings page.  If the custom list is empty, the default list from the language pack will be used.&lt;br /&gt;
&lt;br /&gt;
==Default censored Words==&lt;br /&gt;
&lt;br /&gt;
The default bad word list is contained within the censor.php file within each language pack installed on your Moodle site. To change the default bad word list go to &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Language &amp;gt; Language Customization&#039;&#039; and check out the required language pack.  Select the censor.php file under the &#039;&#039;&#039;filters&#039;&#039;&#039; subheading from the strings list and click &#039;&#039;&#039;Show strings&#039;&#039;&#039;.  Warning: You may find the content of this file offensive.&lt;br /&gt;
&lt;br /&gt;
==Tips and Tricks==&lt;br /&gt;
*If you would prefer not to display a custom list of censored words on the Work Censorship Settings page, customize the censor.php file the language directly&lt;br /&gt;
*If you have multiple language packs installed and in use within your Moodle site, remember to edit each language pack and/or add custom censored words in all languages.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=79711 filtering profanity] forum discussion&lt;br /&gt;
&lt;br /&gt;
[[Category:Site administration]]&lt;br /&gt;
&lt;br /&gt;
[[de:Wortzensur]]&lt;br /&gt;
[[es:Palabras censuradas (filtro)]]&lt;br /&gt;
[[fr:Filtre censure de mots inadéquats]]&lt;br /&gt;
[[ja:ワードセンサーシップ]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Filters_FAQ&amp;diff=97315</id>
		<title>Filters FAQ</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Filters_FAQ&amp;diff=97315"/>
		<updated>2012-04-27T15:35:43Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Filters}}&lt;br /&gt;
== What are filters? ==&lt;br /&gt;
&lt;br /&gt;
Filters allow for the automatic transformation of entered text into different, often more complex forms. For example the titles of resources can automatically become hyperlinks that take you to the relevant resource, URLs pointing to mp3 files can become Flash controls embedded in the web page that let you pause and rewind the audio. The possibilities are endless and there are a number of standard filters included with Moodle and many more specialized filters available from the Moodle.org Modules and plugins database.&lt;br /&gt;
&lt;br /&gt;
See [[Filters]] for details.&lt;br /&gt;
&lt;br /&gt;
== How do I enable filters? ==&lt;br /&gt;
&lt;br /&gt;
You find the settings under &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Filters &amp;gt; Manage filters&#039;&#039;, see [[Managing filters]] for details.&lt;br /&gt;
&lt;br /&gt;
==Why is my filter not working?==&lt;br /&gt;
&lt;br /&gt;
After checking that the filter is enabled for the site, course and activity or resource, check in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Filters &amp;gt; Manage filters&#039;&#039; that the order of the filters is not causing a problem. See the forum discussion [http://moodle.org/mod/forum/discuss.php?d=194684 Moodle Media player not appearing] for an example.&lt;br /&gt;
&lt;br /&gt;
== Where do I find additional filters? ==&lt;br /&gt;
&lt;br /&gt;
You will find a number of contributed filters in the [http://moodle.org/plugins/browse.php?list=category&amp;amp;id=7 Moodle Plugins directory].&lt;br /&gt;
&lt;br /&gt;
== How do I create custom filters? ==&lt;br /&gt;
&lt;br /&gt;
See the following developer docs for details:&lt;br /&gt;
* [[:dev:Filters]]&lt;br /&gt;
* [[:dev:Filters schema]]&lt;br /&gt;
* [[:dev:Filters 2.0]]&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Filters used on the Moodle.org forums]]&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/view.php?f=323 Text Filters forum]&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/discuss.php?d=76206 Filter Demo&#039;s now online] forum discussion&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[de:Filter FAQ]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Mahara_portfolio&amp;diff=97314</id>
		<title>Mahara portfolio</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Mahara_portfolio&amp;diff=97314"/>
		<updated>2012-04-27T15:34:34Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Portfolios}}&lt;br /&gt;
According to the [http://www.mahara.org/ Mahara web site] &amp;quot;Mahara is an open source e-portfolio, weblog, résumé builder and social networking system, connecting users and creating online learner communities. Mahara is designed to provide users with the tools to demonstrate their life-long learning, skills and development over time to selected audiences.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Mahara has close links with Moodle. There is a built in single sign on facility called [[Mahoodle]].&lt;br /&gt;
 &lt;br /&gt;
Mahara can serve as a Portfolio into which users can &amp;quot;push&amp;quot; files they want to keep  and it is hoped soon that it will also serve as a Repository from which users can &amp;quot;pull&amp;quot; files they need for their course.  Both options need to be enabled by the administrator before they are available for teachers and students&lt;br /&gt;
&lt;br /&gt;
==Enabling the Mahara portfolio==&lt;br /&gt;
* In order to enable and export items to Mahara you first need an installation of Mahara linked to your Moodle. See here [[Mahoodle]] for instructions.&lt;br /&gt;
* Go to &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Advanced features&#039;&#039; and ensure &amp;quot;Enable portfolios&amp;quot; is checked/ticked&lt;br /&gt;
* Go to &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Portfolios &amp;gt; Manage Portfolios&#039;&#039;&lt;br /&gt;
* Select from the drop down next to Mahara ePortfolio &amp;quot;Enabled and visible&amp;quot;&lt;br /&gt;
* If desired,click on &amp;quot;Settings&amp;quot; and give Mahara a customised name (not essential)&lt;br /&gt;
[[File:Maharaportfolio.png]]&lt;br /&gt;
&lt;br /&gt;
==Sending or &amp;quot;pushing&amp;quot; your files to Mahara==&lt;br /&gt;
*You can export items such as assignments, chat and forum posts to enabled portfolios. Here is an example with a forum post:&lt;br /&gt;
*At the bottom of your completed forum post are the words &amp;quot;export to portfolio&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
[[File:Brigitteforum.png]]&lt;br /&gt;
&lt;br /&gt;
*Click the words &amp;quot;export to portfolio&amp;quot; and then select from the dropdown Mahara. (If it is the only portfolio enabled, it wil be the only choice!)&lt;br /&gt;
&lt;br /&gt;
[[File:Maharaexport.png]]&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Next&amp;quot;&lt;br /&gt;
* Choose the export type you want. Mahara offers HTML or LEAP 2A format. Then click &amp;quot;Next&amp;quot; again.&lt;br /&gt;
* On the next screen, click &amp;quot;continue &amp;quot; to confirm your export.&lt;br /&gt;
&lt;br /&gt;
[[File:Maharaformat.png]]&lt;br /&gt;
&lt;br /&gt;
* The &amp;quot;export complete&amp;quot; message will appear. Clicking &amp;quot;continue&amp;quot; will take you to Mahara.&lt;br /&gt;
&lt;br /&gt;
[[File:Maharaexportcomplete2.png]]&lt;br /&gt;
&lt;br /&gt;
== Mahara as a repository ==&lt;br /&gt;
* Progress on the Mahara repository plug in can be followed in the tracker: MDL-16909&lt;br /&gt;
&lt;br /&gt;
[[Category:Site administration]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Mahara Portfolio]]&lt;br /&gt;
[[eu:Mahara]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Portfolios_FAQ&amp;diff=97313</id>
		<title>Portfolios FAQ</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Portfolios_FAQ&amp;diff=97313"/>
		<updated>2012-04-27T15:31:23Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Portfolios}}&lt;br /&gt;
==What is LEAP2A?==&lt;br /&gt;
&lt;br /&gt;
LEAP2A is a specification for e-portfolio portability. It is recommended that LEAP2A is selected as export format when exporting data to Mahara.&lt;br /&gt;
&lt;br /&gt;
LEAP2A is offered as a possible export format option when the portfolio plugin and the export location both support the format.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/view.php?id=6847 Portfolios forum]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Portfolios FAQ]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=File_download_portfolio&amp;diff=97312</id>
		<title>File download portfolio</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=File_download_portfolio&amp;diff=97312"/>
		<updated>2012-04-27T15:15:21Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Portfolios}}&lt;br /&gt;
&lt;br /&gt;
The File download portfolio allows for easy download of content in Moodle activities.&lt;br /&gt;
&lt;br /&gt;
==Enabling file download (admin settings)==&lt;br /&gt;
*Go to &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Portfolios &amp;gt; Manage Portfolios&#039;&#039;&lt;br /&gt;
*Select from the drop down next to File download &amp;quot;Enabled and visible&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
[[File:Filedownloadenabled.png]]&lt;br /&gt;
&lt;br /&gt;
*Click the &amp;quot;Settings&amp;quot; and if desired, give File download a customised name (not essential)&lt;br /&gt;
&lt;br /&gt;
==Sending/&amp;quot;pushing&amp;quot; files to File download==&lt;br /&gt;
*You can export content such as attached files in forum posts to File download.&lt;br /&gt;
*Click the green icon next to the file - in this instance, a pdf document:&lt;br /&gt;
&lt;br /&gt;
[[File:Exporttofiledownload.png]]&lt;br /&gt;
&lt;br /&gt;
*On the next screen, choose the portfolio to export to. (If File download is the only one, you will only have that option!)&lt;br /&gt;
&lt;br /&gt;
[[File:Selectfiledownload.png]]&lt;br /&gt;
&lt;br /&gt;
*Click &amp;quot;Next&amp;quot; and then choose the file format you wish to export as. (Which formats you are offered depends on the type of file you wish to download)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Filedownloadtype.png]]&lt;br /&gt;
&lt;br /&gt;
*On the next screen, click &amp;quot;Continue&amp;quot; to confirm your export and download your file:&lt;br /&gt;
&lt;br /&gt;
[[File:Downloadingfile.png]]&lt;br /&gt;
&lt;br /&gt;
[[de:Datei herunterladen]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Activity_report&amp;diff=97311</id>
		<title>Activity report</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Activity_report&amp;diff=97311"/>
		<updated>2012-04-27T15:11:57Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Course reports}}&lt;br /&gt;
==Course activity reports==&lt;br /&gt;
&lt;br /&gt;
A course activity report, showing the number of views for each activity and resource (and any related blog entries), can be viewed by managers, teachers and non-editing teachers (and any other users with the capability [[Capabilities/report/outline:view|report/outline:view]]) in &#039;&#039;Navigation &amp;gt; Courses &amp;gt; My course &amp;gt; Reports &amp;gt; Activity report&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
An activity report for the front page is available for administrators and managers in &#039;&#039;Navigation &amp;gt; Site pages &amp;gt; Reports &amp;gt; Activity report&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[Image:Activity-report-view.PNG|A full activity report]]&lt;br /&gt;
&lt;br /&gt;
==Individual activity reports==&lt;br /&gt;
&lt;br /&gt;
If activity reports are enabled for a course in the course settings, each course participant can access reports of their contributions, such as forum posts or assignment submissions, logs and a statistics report.&lt;br /&gt;
&lt;br /&gt;
[[de:Aktivitätenbericht]]&lt;br /&gt;
[[eu:Jardueraren_txostena]]&lt;br /&gt;
[[fr:Rapport d&#039;activité]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Grade_items&amp;diff=97310</id>
		<title>Grade items</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Grade_items&amp;diff=97310"/>
		<updated>2012-04-27T15:09:24Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Managing grades}}&lt;br /&gt;
{{Improve}}&lt;br /&gt;
A grade item is a unit (typically an activity) where course participants are assessed through a grade or mark.&lt;br /&gt;
As such, a grade item is a container for grades and a set of settings applied to these grades. The settings affect the calculation and display of the grades in the gradebook reports and [[Grade_export|exports]].&lt;br /&gt;
&lt;br /&gt;
Grade items may refer to course activities (e.g. a quiz, an assignment etc.), [[Outcomes]] or  manual grades. &lt;br /&gt;
&lt;br /&gt;
== Grade items and gradebook ==&lt;br /&gt;
The three building blocks of the Gradebook are:&lt;br /&gt;
&lt;br /&gt;
#The grade item&lt;br /&gt;
#The [[Grade_categories|grade category]]&lt;br /&gt;
#The [[Grades|grade]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Grade items are represented by columns in the [[Grader_report | grader report]].&lt;br /&gt;
&lt;br /&gt;
Within a category, a [[Grades|grade]] summary is also a grade item itself.  Summary grade items for a category can show up in reports, and can be used in the calculation of the grade for the parent category.&lt;br /&gt;
&lt;br /&gt;
== Activity-based grade items ==&lt;br /&gt;
[[Image:Edit grade item.png|right|thumb|Editing a grade item]]&lt;br /&gt;
Modules that include a form of grading use the [[Development:Grades#API_for_communication_with_modules.2Fblocks|Gradebook API]] to generate a matching grade item, and to communicate their grades to the gradebook. The generated grade item can later be edited from within the gradebook interface (Course -&amp;gt; Grades -&amp;gt; Edit Categories and items -&amp;gt; Edit (hand icon) grade item), as seen in the screenshot to the right, but several of its settings will be &#039;frozen&#039;, only changeable from the activity module&#039;s interface. These are listed and explained below in the manual grade items section.&lt;br /&gt;
&lt;br /&gt;
Here is a list of the settings that can be edited for an activity-based grade item:&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Item info&#039;&#039;&#039;: General information about the grade item. Optional.&lt;br /&gt;
*&#039;&#039;&#039;Grade to pass&#039;&#039;&#039;: Specify the minimum grade a student must achieve to be considered to have passed this item. This must be in real grades, not a percentage. Once this is done, grades will be highlighted in red for fail and green for pass in the gradebook. It doesn&#039;t work for scales, as it is yet to be fully implemented in Moodle 1.9. It is planned for use in [[Development:Course completion|course completion]] in Moodle 2.0.&lt;br /&gt;
*&#039;&#039;&#039;Grade display type&#039;&#039;&#039;: See the [[Grade_item_settings#Grade_display_type | Grade display type doc]]&lt;br /&gt;
*&#039;&#039;&#039;Overall decimal points&#039;&#039;&#039;: This specifies the number of decimal points to display for each grade. It has no effect on grade calculations, which are made with an accuracy of 5 decimal places. &lt;br /&gt;
*&#039;&#039;&#039;Multiplicator&#039;&#039;&#039;: Factor by which all grades for this grade item will be multiplied, with a maximum value of the maximum grade. For example, if the multiplicator is 2 and the maximum grade is 100, then all grades less than 50 are doubled, and all grades 50 and above are changed to 100. &lt;br /&gt;
*&#039;&#039;&#039;Offset&#039;&#039;&#039;: Number that will be added to every grade for this grade item, after the Multiplicator is applied. (Can be a negative number.)&lt;br /&gt;
*&#039;&#039;&#039;Hidden&#039;&#039;&#039;: Whether this grade item should be hidden from students.&lt;br /&gt;
*&#039;&#039;&#039;Hidden until&#039;&#039;&#039;: An optional date after which the grade item will no longer be hidden (i.e. a grades release date)&lt;br /&gt;
*&#039;&#039;&#039;Locked&#039;&#039;&#039;: Whether or not to lock this grade item. A locked grade item doesn&#039;t accept changes to its settings or grades from its related module.&lt;br /&gt;
*&#039;&#039;&#039;Locked after&#039;&#039;&#039;: A date after which the locking will be effective, usually after the grades release date.&lt;br /&gt;
&lt;br /&gt;
== Grade outcome items ==&lt;br /&gt;
[[Image:grade_outcome_item.png|right|thumb|Editing a grade outcome item]]&lt;br /&gt;
These can either be generated by the creation of a new activity module (by selecting [[Outcomes]] in the module creation form), or manually created like manual grade items. A grade outcome item uses a course outcome as its grading type, so such an outcome must be made available at the course level before a grade outcome item can be manually created.&lt;br /&gt;
&lt;br /&gt;
Grade outcome items can optionally be linked with an activity module. This is done automatically when a grade outcome item is generated by the creation of an activity module in which outcomes were selected. In this scenario, a grade category is also created and named after the activity module, and the grade item and grade outcome items are created as children of that category.&lt;br /&gt;
&lt;br /&gt;
The settings of the grade outcome item edit form are identical to those of manual grade items, with the addition of two settings:&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Outcome&#039;&#039;&#039;: The course outcome represented by this item&lt;br /&gt;
*&#039;&#039;&#039;Linked activity&#039;&#039;&#039;: The optional activity module to which this item will be linked&lt;br /&gt;
&lt;br /&gt;
== Manual grade items ==&lt;br /&gt;
[[Image:manual_item.png|right|thumb|Editing a manual grade item]]&lt;br /&gt;
These grade items are created manually through the &amp;quot;Edit Categories and Items&amp;quot; page. The &amp;quot;Add grade item&amp;quot; button is clicked, and the form appears. Several options are available here which are normally automatically filled out by the activity module creating an activity-based grade item:&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Item name&#039;&#039;&#039;: The display name of your grade item&lt;br /&gt;
*&#039;&#039;&#039;ID Number&#039;&#039;&#039;: An arbitrary string of characters used to refer to this grade item in Formulas. If set, it must be unique.&lt;br /&gt;
*&#039;&#039;&#039;Grade type&#039;&#039;&#039;: The type of grade: None (no grading possible), Value (a numerical value), Scale (an item in a list) or Text (arbitrary text). &lt;br /&gt;
*&#039;&#039;&#039;Scale&#039;&#039;&#039;: Which scale to use for grading: available only when the Scale grade type is selected. &lt;br /&gt;
*&#039;&#039;&#039;Maximum grade&#039;&#039;&#039;: The maximum grade that can be given (for scales: the number of items in the scale - 1)&lt;br /&gt;
*&#039;&#039;&#039;Minimum grade&#039;&#039;&#039;: The minimum grade that can be given (for scales: 0)&lt;br /&gt;
&lt;br /&gt;
Conversely, two of the settings found in the form for activity-based grade items are absent from this form:&lt;br /&gt;
*Multiplicator&lt;br /&gt;
*Offset&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Grade item settings]] - for administrators&lt;br /&gt;
&lt;br /&gt;
[[ca:grade/edit/tree/item]]&lt;br /&gt;
[[cs:Položky hodnocení]]&lt;br /&gt;
[[de:Bewertungsaspekte]]&lt;br /&gt;
[[fr:Eléments d&#039;évaluation]]&lt;br /&gt;
[[ja:評定項目]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Embedded_Answers_(Cloze)_question_type&amp;diff=97309</id>
		<title>Embedded Answers (Cloze) question type</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Embedded_Answers_(Cloze)_question_type&amp;diff=97309"/>
		<updated>2012-04-27T15:02:38Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questions}}&lt;br /&gt;
&#039;&#039;&#039;Embedded answers (Cloze)&#039;&#039;&#039; questions consist of a passage of text (in Moodle format) that has various answers embedded within it, including multiple choice, short answers and numerical answers.&lt;br /&gt;
&lt;br /&gt;
There is currently no graphical interface to create these questions - you need to specify the question format using the text box or by importing them from external files. &lt;br /&gt;
&lt;br /&gt;
Lots of people suggest that [[Hot Potatoes]] software is the easiest way to create Embedded answer (Cloze) questions.  Once you have created your questions on your PC, you can then import them into Moodle&#039;s quiz module.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Question set-up==&lt;br /&gt;
&lt;br /&gt;
#Select the question category&lt;br /&gt;
#Give the question a descriptive name - this allows you to identify it in the question bank.&lt;br /&gt;
#Enter the passage of text (in Moodle format - see [[Embedded_Answers_%28Cloze%29_question_type#Format|Format]] below) into the &#039;question text&#039; field.&lt;br /&gt;
#Select an image to display if you want to add a picture to the question. For the student, it appears immediately above the question text.&lt;br /&gt;
#Set the &#039;default question grade&#039; (i.e. the maximum number of marks for this question).&lt;br /&gt;
#Set the &#039;Penalty factor&#039; (see [[Embedded_Answers_%28Cloze%29_question_type#Penalty_factor|Penalty factor]] below).&lt;br /&gt;
#If you wish, add general feedback. This is text that appears to the student after he/she has answered the question.&lt;br /&gt;
#The editor has been modified and allows you to test if your syntax is good. The different questions elements decoded will be displayed and syntax errors pinpoint. However, it cannot check if the question decoded is two questions in one because of an error syntax.&lt;br /&gt;
#Click Save changes to add the question to the category.&lt;br /&gt;
&lt;br /&gt;
=== Penalty factor ===&lt;br /&gt;
&lt;br /&gt;
The &#039;penalty factor&#039; only applies when the question is used in a quiz using adaptive mode - i.e. where the student is allowed multiple attempts at a question even within the same attempt at the quiz. If the penalty factor is more than 0, then the student will lose that proportion of the &#039;&#039;&#039;maximum&#039;&#039;&#039; grade upon each successive attempt. For example, if the default question grade is 10, and the penalty factor is 0.2, then each successive attempt after the first one will incur a penalty of 0.2 x 10 = 2 points.&lt;br /&gt;
&lt;br /&gt;
==Question rendering==&lt;br /&gt;
&lt;br /&gt;
The question answer INPUT HTML ELEMENT ( Short and Numerical) or SELECT HTML ELEMENT (multichoice) are normally displayed in-line with the text.&lt;br /&gt;
&lt;br /&gt;
The size of INPUT HTML ELEMENT ( Short and Numerical) will be adjustable to the length of the longest answer (good or bad) + a random number (0 to 15% total length).([[User:Pierre Pichet|Pierre Pichet]] 15:37, 26 January 2008 (CST))&lt;br /&gt;
&lt;br /&gt;
The size will adjust to the length of the student response when displayed in the grading and feedback process.&lt;br /&gt;
&lt;br /&gt;
The size of the SELECT HTML ELEMENT (multichoice) adjusts itself automatically to the longest answer.&lt;br /&gt;
&lt;br /&gt;
==Format==&lt;br /&gt;
&lt;br /&gt;
Questions consist of a passage of text (in Moodle format) that has various sub-questions embedded within it, including&lt;br /&gt;
&lt;br /&gt;
* short answers (SHORTANSWER or SA or MW), case is unimportant,&lt;br /&gt;
* short answers (SHORTANSWER_C or SAC or MWC), case must match,&lt;br /&gt;
* numerical answers (NUMERICAL or NM),&lt;br /&gt;
* multiple choice (MULTICHOICE or MC), represented as a dropdown menu in-line in the text&lt;br /&gt;
* multiple choice (MULTICHOICE_V or MCV), represented a vertical column of radio buttons, or&lt;br /&gt;
* multiple choice (MULTICHOICE_H or MCH), represented as a horizontal row of radio-buttons.&lt;br /&gt;
&lt;br /&gt;
The structure of  each cloze sub-question is identical:&lt;br /&gt;
:&#039;&#039;&#039;{&#039;&#039;&#039;  start the cloze sub-question with a bracket (AltGr+7)&lt;br /&gt;
:&#039;&#039;&#039;1&#039;&#039;&#039; define a grade for each cloze by  a number (optional). This used for calculation of question grading.&lt;br /&gt;
:&#039;&#039;&#039;:SHORTANSWER:&#039;&#039;&#039; define the type of cloze sub-question. Definition is bounded by &#039;:&#039;. &lt;br /&gt;
:&#039;&#039;&#039;~&#039;&#039;&#039; is a seperator between answer options&lt;br /&gt;
:&#039;&#039;&#039;=&#039;&#039;&#039; marks a correct answer&lt;br /&gt;
:&#039;&#039;&#039;#&#039;&#039;&#039; marks the beginning of an (optional) feedback message&lt;br /&gt;
:&#039;&#039;&#039;}&#039;&#039;&#039;  close the cloze sub-question at the end with a bracket (AltGr+0)&lt;br /&gt;
&lt;br /&gt;
Now a very simple example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{1:SHORTANSWER:=Berlin} is the capital of Germany.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For full details of the format for embedded-answers questions, see the [[Embedded_Answers_%28Cloze%29_question_type#Detailed_syntax_explanations|detailed syntax explanation]] below.&lt;br /&gt;
&lt;br /&gt;
NB: Be careful when copying a cloze type question into the WYSIWYG HTML editor, as line breaks tend to get added, which destroys the question.&lt;br /&gt;
&lt;br /&gt;
If the correct answer contains } # ~ / &amp;quot; or \ you will have to escape them by putting a \ in front of each such character. The { shouldn&#039;t be escaped, this can be vital in getting TeX expressions to work. In the feedback ~ and } must be escaped otherwise it will be interpreted as &#039;&#039;the next answer&#039;&#039; or &#039;&#039;end of the short answer section&#039;&#039; respectively. Quotation signs: &amp;quot; can lead to trouble anyhow in both places. Use the HTML entity: &amp;amp; quot; (without the space between &#039;&#039;&amp;amp;&#039;&#039; and &#039;&#039;quot;&#039;&#039;). If you want to have Mathematical symbols there can be problems with the \ used in TeX expressions. One alternative can be to use [[unicode]] characters. &lt;br /&gt;
&lt;br /&gt;
See the notes further down about numerical embedded question!&lt;br /&gt;
&lt;br /&gt;
===Examples===&lt;br /&gt;
&lt;br /&gt;
====Example 1====&lt;br /&gt;
The following text creates a simple embedded-answers question:&lt;br /&gt;
&lt;br /&gt;
 Match the following cities with the correct state:&lt;br /&gt;
 * San Francisco: {1:MULTICHOICE:=California#OK~Arizona#Wrong}&lt;br /&gt;
 * Tucson: {1:MULTICHOICE:California#Wrong~%100%Arizona#OK}&lt;br /&gt;
 * Los Angeles: {1:MULTICHOICE:=California#OK~Arizona#Wrong}&lt;br /&gt;
 * Phoenix: {1:MULTICHOICE:%0%California#Wrong~=Arizona#OK}&lt;br /&gt;
 The capital of France is {1:SHORTANSWER:%100%Paris#Congratulations!&lt;br /&gt;
 ~%50%Marseille#No, that is the second largest city in France (after&lt;br /&gt;
 Paris).~*#Wrong answer. The capital of France is Paris, of course.}.&lt;br /&gt;
&lt;br /&gt;
And the result will be:&lt;br /&gt;
 &lt;br /&gt;
[[Image:Cloze.gif|Cloze question type]] &lt;br /&gt;
&lt;br /&gt;
====Example 2====&lt;br /&gt;
&amp;lt;div style=&amp;quot;padding: 1em;border: 1px dashed #FFB53A;color: black;background-color: #f9f9f9;font-family: monospace;font-size:1.2em;&amp;quot;&amp;gt;&lt;br /&gt;
This question consists of some text with an answer embedded right here {1:MULTICHOICE:Wrong answer#Feedback for this wrong answer~Another wrong answer#Feedback for the other wrong answer~=Correct answer#Feedback for correct answer~%50%Answer that gives half the credit#Feedback for half credit answer}&lt;br /&gt;
&lt;br /&gt;
and right after that you will have to deal with this short answer {1:SHORTANSWER:Wrong answer#Feedback for this wrong answer~=Correct answer#Feedback for correct answer~%50%Answer that gives half the credit#Feedback for half credit answer}&lt;br /&gt;
&lt;br /&gt;
and finally we have a floating point number {2:NUMERICAL:=23.8:0.1#Feedback for correct answer 23.8~%50%23.8:2#Feedback for half credit answer in the nearby region of the correct answer}.&lt;br /&gt;
&lt;br /&gt;
The  multichoice question can also be shown in the vertical display of the standard moodle multiple choice.&lt;br /&gt;
{2:MCV:1. Wrong answer#Feedback for this wrong answer~2. Another wrong answer#Feedback for the other wrong answer~=3. Correct answer#Feedback for correct answer~%50%4. Answer that gives half the credit#Feedback for half credit answer}&lt;br /&gt;
&lt;br /&gt;
Or in an horizontal display that is included here in a table&lt;br /&gt;
{2:MCH:a. Wrong answer#Feedback for this wrong answer~b. Another wrong answer#Feedback for the other wrong answer~=c. Correct answer#Feedback for correct answer~%50%d. Answer that gives half the credit#Feedback for half credit answer}&lt;br /&gt;
&lt;br /&gt;
A shortanswer question where case must match. Write moodle in upper case letters {1:SHORTANSWER_C:moodle#Feedback for moodle in lower case ~=MOODLE#Feedback for MOODLE in upper case ~%50%Moodle#Feedback for only first letter in upper case}&lt;br /&gt;
&lt;br /&gt;
Note that addresses like www.moodle.org and smileys :-) all work as normal:&lt;br /&gt;
&lt;br /&gt;
a) How good is this? {:MULTICHOICE:=Yes#Correct~No#We have a different opinion}&lt;br /&gt;
&lt;br /&gt;
b) What grade would you give it? {3:NUMERICAL:=3:2}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
[[Image:Cloze example.png]]&lt;br /&gt;
&lt;br /&gt;
Some things to note:&lt;br /&gt;
* The individual embedded answers are represented by the code in braces {}.&lt;br /&gt;
* The number at the start is the &#039;weight&#039;, so in this case each answer contributes an equal share of the overall grade.&lt;br /&gt;
* The correct option in each case is preceded either by an = sign or by %100%. &lt;br /&gt;
* The text appearing after the # that follows each option is the feedback that the student will see if they choose that option.&lt;br /&gt;
* If the student enters &#039;Marseille&#039; in the final example, they score 50% of the total grade.&lt;br /&gt;
* The asterisk * preceding the &amp;quot;Wrong answer&amp;quot; feedback in the final example means that the student will see this feedback if they enter anything other than &amp;quot;Paris&amp;quot; or &amp;quot;Marseille&amp;quot;.&lt;br /&gt;
* For multiple choice vertical or horizontal rendering there is no automatic numbering, though can added at each answer.&lt;br /&gt;
&lt;br /&gt;
==Detailed syntax explanations==&lt;br /&gt;
# all question items within a cloze-type question are coded inside curled braces { }&lt;br /&gt;
# the number which appears between the opening brace and the colon {1: is the weighting of that item; if it is set at 1 for all the items, it needs not be specified, so you can have {:&lt;br /&gt;
# after the colon we have the item question type: MULTICHOICE, SHORTANSWER, NUMERICAL&lt;br /&gt;
# &#039;&#039;&#039;NOTE&#039;&#039;&#039;.- If you have installed the [http://moodle.org/mod/data/view.php?d=13&amp;amp;rid=338 REGEXP question type plugin] you can also use the REGEXP question type&lt;br /&gt;
# the syntax for MULTICHOICE and SHORTANSWER is the same; the only difference is in the displaying of the item to the student&lt;br /&gt;
# the order of the various answers is indifferent (except if you want a catch-all for wrong answers, see #13 below)&lt;br /&gt;
# a correct answer is preceded with the equal sign = or a percentage (usually %100%) - &#039;&#039;&#039;Note&#039;&#039;&#039;: [[Talk:Embedded_Answers_(Cloze)_question_type| The equal sign (=) doesn&#039;t seem to work with SHORTANSWER.]]&lt;br /&gt;
# a wrong answer is preceded with nothing or a percentage (usually %0%)&lt;br /&gt;
# you can allocate some points between 0 and 100 to some answers, if you put the appropriate percentage&lt;br /&gt;
# all answers except the first one are separated from one another by the tilde ~ sign&lt;br /&gt;
# answers can be followed by an optional feedback message, preceded with the # sign; if there is no feedback message, the # sign can be present or absent, it does not matter&lt;br /&gt;
# note that the feedback message and (since [[User:Pierre Pichet|Pierre Pichet]] 24 May 2008 )in 1.9 the correct answer are displayed in a small popup window (if and when the correct and or feedback have been declared accessible to the students in the Quiz settings) upon mouse hovering. The popup window has a title &amp;quot;feedback&amp;quot; and you can use HTML tags to format your feedback. In some browsers (For example IE5.5) the form fields can cover part of the feedback windows. It can help to not have the formfields for the answers too close to each other.&lt;br /&gt;
# in the SHORTANSWER type you may want to put a catch-all (wrong) answer in order to send a &amp;quot;wrong, try again&amp;quot; feedback; you can do this by inserting an asterisk &#039;&#039;&#039;*&#039;&#039;&#039; as &#039;&#039;&#039;the very last expected answer&#039;&#039;&#039; in your formula&lt;br /&gt;
# unfortunately in MULTICHOICE MODE it is not possible to get the answers to be scrambled&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Numerical Cloze questions==	 &lt;br /&gt;
		 &lt;br /&gt;
From the student perspective, a numerical Cloze question looks just like a short-answer question or &#039;&#039;fill in the blanks&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The difference is that numerical answers are allowed to have an accepted error. This allows a continuous range of answers to be set. You can also express your answer in some different numerical formats. 23.4 23,4 (some countries use , as a decimal separator) and 2.34E+1 (meaning 2.34*10^1) would be interpreted as the same.&lt;br /&gt;
&lt;br /&gt;
=== False positives ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; the following examples of false positives do &#039;&#039;&#039;not&#039;&#039;&#039; apply to Moodle 1.8+, where you cannot use percentages or fractions as the answers in a numerical Cloze test; Moodle will generate an error if you try to save such a question. However the following may be relevant for earlier versions of Moodle.&lt;br /&gt;
&lt;br /&gt;
 More examples:	 &lt;br /&gt;
 0.5 accepts .5 0.5 ,5 0,5 0.500 5e-1 5E-1 but not 1/2 50% 	 &lt;br /&gt;
 50% accepts 50% 50.0% 5E1% 50/100 even &#039;&#039;&#039;50/1000 50&#039;&#039;&#039; but not 500/1000 0.5	 &lt;br /&gt;
 1/2 accepts 1/2 &#039;&#039;&#039;1/3 1twenty&#039;&#039;&#039; but not 2/4 0.5 0,5 3/6 50% ½	 &lt;br /&gt;
 ½ accepts ½	 &lt;br /&gt;
 HALF doesn&#039;t even accept HALF (maybe &#039;&#039;&#039;0&#039;&#039;&#039;?)	 &lt;br /&gt;
&lt;br /&gt;
If you want to accept several variants you can have them in the same {} but &#039;&#039;&#039;be careful, notice the &amp;quot;false positives&amp;quot; in bold&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
===Syntax for numerical Cloze questions===&lt;br /&gt;
&lt;br /&gt;
The format of a NUMERICAL Cloze question is similar to that of the other Cloze types and they can be mixed in the same question. As with other Cloze tests, you write your question or incomplete text, and add the Cloze code at the point where the student is supposed to enter their numerical answer.&lt;br /&gt;
&lt;br /&gt;
An example of the syntax used is shown below:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: &#039;&#039;&#039; It is preferable to write the code in &#039;source code&#039; mode. The WSIWYG editor can insert linebreaks that make the question not function. The linebreak in the example box below is for readability only! A problem with these questions is the readability of the code! :(	&lt;br /&gt;
		 &lt;br /&gt;
 {2:NUMERICAL:=23.8:0.1#Feedback for correct answer 23.8	 &lt;br /&gt;
 ~%50%23.8:2#Feedback for ½credit near correct answer}. 	 &lt;br /&gt;
	 &lt;br /&gt;
In this example:&lt;br /&gt;
* 2: is the question point weight, which means that this question has twice the weight in the final point(s) for this question as other partial answers with weight 1 (or no declared weight - you can start with {: for the default weight 1) in the same question.&lt;br /&gt;
* NUMERICAL: says what kind of question it is. It must be in CAPS. &lt;br /&gt;
* =23.8:0.1 = or %100% means correct if the answer is 23.8 with an accepted error of 0.1, then any number between 23.7 and 23.9 will be accepted as correct. (In the GIFT numerical question one can express an interval like this 13..15 or 14:1 but in Cloze only 14:1 works.)	 &lt;br /&gt;
* #Feedback for correct answer 23.8 is preceded by #&lt;br /&gt;
* ~%50%23.8:2 ~ is the separator for answer alternatives %50% means this answer would get 50% of the score that the more precise answer had gotten. Because the tolerance here is 2, 21.8 to 25.8 would get this point and feedback.&lt;br /&gt;
&lt;br /&gt;
The feedback (which is seen within a popup window when the user hovers over the answer space) is formattable with HTML tags. For example, if you want an exponent, surround it with superscript tags: &amp;amp;lt;sup&amp;amp;gt; &amp;amp;lt;/sup&amp;amp;gt;. You can even include pictures in the feedback popup, but you must clean out all &amp;quot; characters and save while still in source code mode (not WYSIWYG). So, this works in feedback popup:&lt;br /&gt;
 #See this picture:&amp;amp;lt;br&amp;amp;gt;&amp;amp;lt;img src=Something.gif /&amp;gt;}	 &lt;br /&gt;
but not this:&lt;br /&gt;
 #See this picture:&amp;amp;lt;br&amp;amp;gt;&amp;amp;lt;img src=&amp;quot;Something.gif&amp;quot; /&amp;gt;}	 &lt;br /&gt;
&lt;br /&gt;
(ALGEBRA and TEX filters don&#039;t work in the feedback popups, but they can be very useful in the question writing for math/science expressions). But you can use [[Unicode]] characters.	 &lt;br /&gt;
&lt;br /&gt;
If you want to give feedback for any answer that didn&#039;t fit the intervals you already have specified feedback for, add some BIG general intervals, like for positive answers (if they aren&#039;t bigger than 20000 you could add:	 &lt;br /&gt;
 ~%0%10000.0001:10000#Feedback for unspecified not_right answers}	 &lt;br /&gt;
This would give feedback for anything from 0.0001 to 20000.0001 (that hadn&#039;t already gotten feedback). I didn&#039;t want to include 0 since that special case as well as negative ought to have specific reactions.	 &lt;br /&gt;
 ~%0%0#Hey! It can&#039;t be zero	 &lt;br /&gt;
 ~%0%-10000.0001:10000#We just want the size here,	 &lt;br /&gt;
 so a negative value is not what we want}			 &lt;br /&gt;
&lt;br /&gt;
Numerical questions could, before version 1.7, also have case-insensitive non-numerical answers. This is useful whenever the answer for a numerical question is something like +inf, -inf, NaN etc.&lt;br /&gt;
==Importing CLOZE questions==&lt;br /&gt;
If you try importing directly as CLOZE this text:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Single line per question! Match the following cities with the correct state:&lt;br /&gt;
* San Francisco: {1:MULTICHOICE:=California#OK~Arizona#Wrong}&lt;br /&gt;
* Tucson: {1:MULTICHOICE:California#Wrong~%100%Arizona#OK}&lt;br /&gt;
* Los Angeles: {1:MULTICHOICE:=California#OK~Arizona#Wrong}&lt;br /&gt;
* Phoenix: {1:MULTICHOICE:%0%California#Wrong~=Arizona#OK}&lt;br /&gt;
&lt;br /&gt;
The capital of France is {1:SHORTANSWER:%100%Paris#Congratulations!~%50%Marseille#No, that is the second largest city in France (after Paris).~*#Wrong answer. The capital of France is Paris, of course.}.&lt;br /&gt;
&lt;br /&gt;
23+ 0.8 = {2:NUMERICAL:=23.8:0.1#Feedback for correct answer 23.8 ~%50%23.8:2#Feedback for ½credit near correct answer}. 	 &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You would get all three questions as different parts of &#039;&#039;&#039;ONE question&#039;&#039;&#039;. (NOTE see that there are no linebreaks between the { } !)&lt;br /&gt;
&lt;br /&gt;
Multiple CLOZE questions can be imported using the XML format:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;quiz&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- question: 1  --&amp;gt;&lt;br /&gt;
&amp;lt;question type=&amp;quot;cloze&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;name&amp;gt;&amp;lt;text&amp;gt;Book Test #1&amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/name&amp;gt;&lt;br /&gt;
&amp;lt;questiontext&amp;gt;&lt;br /&gt;
&amp;lt;text&amp;gt;&amp;lt;![CDATA[..............]]&amp;gt;&amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/questiontext&amp;gt;&lt;br /&gt;
&amp;lt;generalfeedback&amp;gt;&lt;br /&gt;
&amp;lt;text&amp;gt;&amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/generalfeedback&amp;gt;&lt;br /&gt;
&amp;lt;shuffleanswers&amp;gt;0&amp;lt;/shuffleanswers&amp;gt;&lt;br /&gt;
&amp;lt;/question&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- question: 2 --&amp;gt;&lt;br /&gt;
&amp;lt;question type=&amp;quot;cloze&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;name&amp;gt;&amp;lt;text&amp;gt;Book Test #2&amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/name&amp;gt;&lt;br /&gt;
&amp;lt;questiontext&amp;gt;&lt;br /&gt;
&amp;lt;text&amp;gt;&amp;lt;![CDATA[............]]&amp;gt;&amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/questiontext&amp;gt;&lt;br /&gt;
&amp;lt;generalfeedback&amp;gt;&lt;br /&gt;
&amp;lt;text&amp;gt;&amp;lt;/text&amp;gt;&lt;br /&gt;
&amp;lt;/generalfeedback&amp;gt;&lt;br /&gt;
&amp;lt;shuffleanswers&amp;gt;0&amp;lt;/shuffleanswers&amp;gt;&lt;br /&gt;
&amp;lt;/question&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/quiz&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You would put the question text including CLOZE code in the  .......  spaces.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
This information was drawn from:&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=36521 Is there a guide to using the cloze format?] forum discussion&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=36430&amp;amp;parent=170308 Cloze-type question syntax] forum post&lt;br /&gt;
&lt;br /&gt;
[[fr:Question Cloze à réponses intégrés]]&lt;br /&gt;
[[ja: 穴埋め問題 ( Cloze ) タイプ]]&lt;br /&gt;
[[de:Lückentext-Frage]]&lt;br /&gt;
[[zh:填空題(克漏字)]]&lt;br /&gt;
[[es:Tipo de Pregunta incrustadas (Cloze)]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Course_creator_role&amp;diff=97308</id>
		<title>Course creator role</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Course_creator_role&amp;diff=97308"/>
		<updated>2012-04-27T14:57:24Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Standard roles}}&lt;br /&gt;
A user assigned the role of Course creator may create courses, be assigned the role of teacher for these courses (or not, if preferred) and view hidden courses.  The role of course creator could typically be assigned to a master teacher, department head or program coordinator. &lt;br /&gt;
&lt;br /&gt;
==Creating a course==&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;Add a new course&amp;quot; button can be found at the bottom of the page listing all courses.&lt;br /&gt;
&lt;br /&gt;
When a course creator creates a course, they are automatically assigned the role of teacher (or whatever role is set in &#039;&#039;Administration &amp;gt; Users &amp;gt; Permissions &amp;gt; [[User policies]]&#039;&#039;) for the course. They may then assign additional teachers and/or assign other roles to selected users. They may also unassign themselves from the role of teacher, if preferred.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note (1):&#039;&#039;&#039; If a user is assigned the role of course creator in the course category context, the &amp;quot;Add a new course&amp;quot; button only appears when the course category contains at least one course.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note (2):&#039;&#039;&#039; Course creators are not automatically assigned the role of teacher in a course they have not created, even if it is in a category where they have Course Creator rights.&lt;br /&gt;
&lt;br /&gt;
==Deleting a course==&lt;br /&gt;
&lt;br /&gt;
There is no user interface for course creators to delete courses they have created, however they can do so by editing the URL of the course from &amp;lt;nowiki&amp;gt;http://yourmoodlesite.net/course/view.php?id=N&amp;lt;/nowiki&amp;gt; to &amp;lt;nowiki&amp;gt;http://yourmoodlesite.net/course/delete.php?id=N&amp;lt;/nowiki&amp;gt; (replacing &#039;view&#039; with &#039;delete&#039;).&lt;br /&gt;
&lt;br /&gt;
==Role assignment==&lt;br /&gt;
&lt;br /&gt;
A user may be assigned the role of course creator as a system role (in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Users &amp;gt; Permissions &amp;gt; Assign system roles&#039;&#039;) or in the course category context. &lt;br /&gt;
&lt;br /&gt;
[[fr:Créateur de cours]]&lt;br /&gt;
[[ja:コース作成者]]&lt;br /&gt;
[[de:Kursersteller-Rolle]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Calculated_multichoice_question_type&amp;diff=97307</id>
		<title>Calculated multichoice question type</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Calculated_multichoice_question_type&amp;diff=97307"/>
		<updated>2012-04-27T14:54:18Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questions}}&lt;br /&gt;
Calculated multichoice questions are like multichoice questions with the additonal property that the elements to select can include formula results from numeric values that are selected randomly from a set when the quiz is taken.&lt;br /&gt;
They use the same wildcards than Calculated questions and their wildcards can be shared with other Calculated multichoice or regular Calculated questions.&lt;br /&gt;
&lt;br /&gt;
The main difference is that the formula is included in the answer choice as {=...} i.e if you calculate the surface of a rectangle {={l}*{w}}.&lt;br /&gt;
&lt;br /&gt;
The value will be displayed as set by the &#039;&#039;&#039;Correct answer shows&#039;&#039;&#039; (0,1,2 etc) and &#039;&#039;&#039;Format&#039;&#039;&#039; (decimals, significant figures).&lt;br /&gt;
&lt;br /&gt;
So a Choice text could be&lt;br /&gt;
&lt;br /&gt;
The rectangle surface is {={l}*{w}} cm&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If {l} = 4,0 ,  {w} = 2,5 , &#039;&#039;&#039;Correct answer shows&#039;&#039;&#039; 1 and &#039;&#039;&#039;Format&#039;&#039;&#039; decimals&lt;br /&gt;
&lt;br /&gt;
The choice will display as&lt;br /&gt;
&lt;br /&gt;
The rectangle surface is 10.0 cm&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Handling of the wild cards is similar to the calculated question type.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Berechnete Multiple-Choice-Fragen]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Using_Messaging&amp;diff=97302</id>
		<title>Using Messaging</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Using_Messaging&amp;diff=97302"/>
		<updated>2012-04-27T14:12:13Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Messaging}}&lt;br /&gt;
==Sending messages==&lt;br /&gt;
&lt;br /&gt;
===To send a message to an individual===&lt;br /&gt;
====From the [[Messages block]] or from your profile====&lt;br /&gt;
*Click on the blue link &#039;&#039;Messages&#039;&#039; in the Messages block or click the &#039;&#039;Messages&#039;&#039; link from &#039;&#039;Navigation&amp;gt;My profile&#039;&#039; and then type a name into the &#039;&#039;Search people and messages&#039;&#039; box. To narrow the search down further, click the blue &#039;&#039;Advanced&#039;&#039; link to search for a person &amp;quot;only in my courses&amp;quot; or with keywords in messages:&lt;br /&gt;
&lt;br /&gt;
[[File:Searchformessages.png]]&lt;br /&gt;
&lt;br /&gt;
*Type the message in the box and click the &#039;&#039;Send a message&#039;&#039; button&lt;br /&gt;
&lt;br /&gt;
[[File:Sendamessage.png]]&lt;br /&gt;
&lt;br /&gt;
====From the [[Online users block]]====&lt;br /&gt;
*Click the name of one of the people currently online and click the &#039;&#039;Send message&#039;&#039; link in their profile.&lt;br /&gt;
*Type the message in the box and then click on the &#039;&#039;Send a message&#039;&#039; button.&lt;br /&gt;
&lt;br /&gt;
===To read and reply to a message===&lt;br /&gt;
*If the [[Messages block]] shows you have a message, click the envelope icon (with the number of messages)&lt;br /&gt;
&lt;br /&gt;
[[File:Replyingtomessage.png]]&lt;br /&gt;
&lt;br /&gt;
*Type your reply into the box and then click on the &#039;&#039;Send a message&#039;&#039; button.&lt;br /&gt;
*If you receive a popup notification of a message, click &#039;&#039;Go to message&#039;&#039; to read and reply to it.&lt;br /&gt;
&lt;br /&gt;
[[File:Messagepopup.png]]&lt;br /&gt;
&lt;br /&gt;
===To send a message to selected course participants (for teachers only)===&lt;br /&gt;
*Click on the Participants link in the People block on the course page.&lt;br /&gt;
*Select participants from the list or use the &amp;quot;Select all&amp;quot; button at the bottom of the list.&lt;br /&gt;
*Choose &amp;quot;Add/send message&amp;quot; from the &amp;quot;With selected users...&amp;quot; drop-down menu.&lt;br /&gt;
*Type the message then click the &amp;quot;Preview&amp;quot; button.&lt;br /&gt;
*Assuming you are satisfied with the message, click the &amp;quot;Send&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
===To send a message to users in many courses (admins and managers only)===&lt;br /&gt;
*See [[Bulk user actions]]&lt;br /&gt;
&lt;br /&gt;
===Managing contacts===&lt;br /&gt;
People may be added to your list of contacts (or blocked from contacting you) by clicking the &#039;&#039;Add contact&#039;&#039;(or &#039;&#039;Block contact&#039;&#039;) icon under their name in the Messages window.&lt;br /&gt;
&lt;br /&gt;
By default the contact list is empty. In order to send a message or to create a shortcut to the person you are sending, search for them in the search box. &lt;br /&gt;
&lt;br /&gt;
===Message history===&lt;br /&gt;
&lt;br /&gt;
A record of messages sent to/from a person may be obtained by clicking the &amp;quot;History&amp;quot; icon by their name or by clicking &#039;&#039;Recent messages/All messages&#039;&#039; when they are displayed on the page - see screenshot below:&lt;br /&gt;
&lt;br /&gt;
[[File:Messagehistory.png]]&lt;br /&gt;
&lt;br /&gt;
[[de:Mitteilungen nutzen]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Messaging_settings&amp;diff=97300</id>
		<title>Messaging settings</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Messaging_settings&amp;diff=97300"/>
		<updated>2012-04-27T13:59:33Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Messaging}}&lt;br /&gt;
==Enabling / disabling instant messaging==&lt;br /&gt;
&lt;br /&gt;
The instant messaging system in Moodle is enabled by default. It may be disabled by a site administrator in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Advanced features&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==My profile settings==&lt;br /&gt;
&lt;br /&gt;
Users can receive message alerts for a number of different reasons and can also send and receive instant messages. How a user receives notification of incoming messages can be set in &#039;&#039;Settings &amp;gt; My profile &amp;gt; Messaging&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
*This brings up a screen with check boxes where users can choose how they wish to be notified both when logged in and logged out. They can choose between a pop up,Jabber message or an email.&lt;br /&gt;
&lt;br /&gt;
[[File:Messagingnotifications.png]]&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Note:&#039;&#039;&#039; The choices a user has on this screen depends on their role and permissions within Moodle. For example, an administrator would see options for notifications about backups or important errors with the site. &lt;br /&gt;
&lt;br /&gt;
===Pop up===&lt;br /&gt;
When a user is logged into Moodle, the message will pop up from the bottom right corner of the page. The user can choose to read the message immediately or to ignore it. If they choose to ignore it, the message returns until it is read.&lt;br /&gt;
&lt;br /&gt;
===Jabber===&lt;br /&gt;
If the Jabber server has been configured, Jabber messages can be sent.The Jabber ID can be set at the bottom of the screen.&lt;br /&gt;
&lt;br /&gt;
===Email===&lt;br /&gt;
There is a box at the bottom of this settings screen which allows for a different email address from the default to be chosen for receiving notifications.&lt;br /&gt;
&lt;br /&gt;
===Prevent non-contacts from messaging me===&lt;br /&gt;
Non-contacts can be prevented from sending messages by ticking this box in General Settings at the bottom of the screen.&lt;br /&gt;
&lt;br /&gt;
==Site administration settings==&lt;br /&gt;
&lt;br /&gt;
Message outputs - popup, jabber and email - can be configured by a site administrator in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Message outputs &amp;gt; Manage message outputs&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Default message outputs can be set in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Message outputs &amp;gt; Default message outputs&#039;&#039;, also whether each output is permitted, disallowed or forced.&lt;br /&gt;
&lt;br /&gt;
===Email settings===&lt;br /&gt;
&lt;br /&gt;
====SMTP hosts====&lt;br /&gt;
&lt;br /&gt;
SMTP stands for Simple Mail Transfer Protocol. The SMTP host is an email relay that will take the email from Moodle and send it to users. You will need to set this only if your server does not allow mail relay. Otherwise, PHP will send out the mail using its built-in mail server. All the email sent by forums and other modules will be sent through this host.&lt;br /&gt;
&lt;br /&gt;
Most SMTP hosts make use of the default port 25 to for listening email traffic. However, occasionally a non-default port is used. In such cases, entering an SMTP host followed by a colon (i.e. :) and the port number should work. For example, if my SMTP host is myemailserver.com and it listens on port 587 or 465 (most common) instead of port 25 I would enter the SMTP host as myemailserver.com:587. Currently, the parameter check is too strict to allow this via the Moodle UI; however, MDL-15923 has been created and resolved to address this.  Until then, it can be set via phpMyAdmin using a query statement like:&lt;br /&gt;
&amp;lt;code mysql&amp;gt; UPDATE mdl_config SET value=&#039;myemailserver.com:587&#039; WHERE name=&#039;smtphosts&#039;;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Secure SMTP hosts with SSL/TLS====&lt;br /&gt;
&lt;br /&gt;
For SMTP hosts that require secure authentication, SSL or TLS you must run the following query:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code mysql&amp;gt; UPDATE mdl_config SET value=&#039;ssl://myemailserver.com:465&#039; WHERE name=&#039;smtphosts&#039;;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Configure HTTPD/SELinux on CentOS/Red Hat (RHEL) 6.2/6.1/6====&lt;br /&gt;
&lt;br /&gt;
Most new installations of Centos/Red Hat have SELinux activated and is configured by default, rather strictly. In this state SELinux does not allow Apache (httpd,phpmailer) to use the sendmail function and make any sort of network connection.&lt;br /&gt;
&lt;br /&gt;
If you continue to have problems with sending/authenticating use the &#039;&#039;&#039;getsebool&#039;&#039;&#039; command to find out if SELinux is one of the culprits. When the &#039;&#039;&#039;getsebool&#039;&#039;&#039; command is issued it returns &#039;&#039;on&#039;&#039; or &#039;&#039;off&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Type to check if your Apache is allowed to send mail and make a connection over the network&lt;br /&gt;
*&#039;&#039;getsebool httpd_can_sendmail&#039;&#039;&lt;br /&gt;
*&#039;&#039;getsebool httpd_can_network_connect&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You will receive the values of &#039;&#039;httpd_can_sendmail&#039;&#039; and &#039;&#039;httpd_can_network_connect&#039;&#039;. Let&#039;s assume both options are off:&lt;br /&gt;
*&#039;&#039;httpd_can_sendmail --&amp;gt;off&#039;&#039;&lt;br /&gt;
*&#039;&#039;httpd_can_network_connect --&amp;gt;off&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
We need to change the values from &#039;&#039;off&#039;&#039; to &#039;&#039;on&#039;&#039; by using &#039;&#039;&#039;setsebool&#039;&#039;&#039;. Number 1 = on and 0 = off. Type the following:&lt;br /&gt;
*&#039;&#039;setsebool -P httpd_can_sendmail 1&#039;&#039;&lt;br /&gt;
*&#039;&#039;setsebool -P httpd_can_network_connect 1&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You will not receive a response. You can double check if the &#039;&#039;&#039;setsebool&#039;&#039;&#039; command worked by using &#039;&#039;&#039;getsebool&#039;&#039;&#039; and see if the values changed from &#039;&#039;--&amp;gt;off&#039;&#039; to &#039;&#039;--&amp;gt;on&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Messaging capabilities==&lt;br /&gt;
&lt;br /&gt;
* [[Capabilities/moodle/course:bulkmessaging|Send a message to many people]]&lt;br /&gt;
* [[Capabilities/moodle/site:readallmessages|Read all messages on site]]&lt;br /&gt;
* [[Capabilities/moodle/site:sendmessage|Send messages to any user]]&lt;br /&gt;
*[[Capabilities/moodle/user:editownmessageprofile|Edit own user messaging profile]]&lt;br /&gt;
*[[Capabilities/moodle/user:editmessageprofile|Edit user messaging profile]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*[[:dev:Messaging 2.0|Messaging developer documentation]]&lt;br /&gt;
&lt;br /&gt;
[[de:Mitteilungen konfigurieren]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Installation&amp;diff=97257</id>
		<title>Installation</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Installation&amp;diff=97257"/>
		<updated>2012-04-25T15:51:25Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Main page}}&lt;br /&gt;
&amp;lt;p class=&amp;quot;note&amp;quot;&amp;gt;Note: The following installation pages are currently being updated. Please bear with us while this work is being completed.&amp;lt;/p&amp;gt;&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
If you are installing a new Moodle site, start here:&lt;br /&gt;
&lt;br /&gt;
*[[Installation Quickstart]] - for experts and the impatient&lt;br /&gt;
*[[Installing Moodle]] - for everyone else&lt;br /&gt;
*[[Cron]]&lt;br /&gt;
*[[Installing plugins]]&lt;br /&gt;
*[[Installation FAQ]]&lt;br /&gt;
&lt;br /&gt;
==Upgrading==&lt;br /&gt;
&lt;br /&gt;
If you are upgrading your Moodle site, start here:&lt;br /&gt;
&lt;br /&gt;
*[[Upgrading]]&lt;br /&gt;
*[[Upgrading to Moodle 2.2]]&lt;br /&gt;
*[[Git for Administrators|Git guide]]&lt;br /&gt;
*[[CVS for Administrators|CVS guide]]&lt;br /&gt;
*[[Verify Database Schema]]&lt;br /&gt;
*[[Upgrading FAQ]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*[[Moodle migration]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Installation]]&lt;br /&gt;
&lt;br /&gt;
[[de:Installation]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Enrolment_key&amp;diff=97256</id>
		<title>Enrolment key</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Enrolment_key&amp;diff=97256"/>
		<updated>2012-04-25T15:49:44Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Course enrolment}}&lt;br /&gt;
A course enrolment (or enrollment) key is one method of restricting [[Self enrolment]] to a smaller group. The default setting is not to set a key and allow anyone to enrol themselves into the course.&lt;br /&gt;
&lt;br /&gt;
An enrolment key is often used as a simple method of having someone else beside the teacher determine if a particular student can self enrol in the course. The idea is that one or more people will supply the course key to authorized people. Sometimes this distrubution is private email, snail mail, on the phone or even verbally in a face to face meetings such as a class or counselor&#039;s office.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Setting an enrolment key within a course==&lt;br /&gt;
*In the course settings block, click &#039;&#039;Users&amp;gt;Enrolment methods&#039;&#039;&lt;br /&gt;
*Make sure self enrolment is enabled (has its eye open) and then click the edit icon on the right:&lt;br /&gt;
&lt;br /&gt;
[[File:Editselfenrolment.png]]&lt;br /&gt;
&lt;br /&gt;
*Add your enrolment key in the box provided. (Click &#039;&#039;Unmask&#039;&#039; to see what you are typing.)&lt;br /&gt;
[[File:Selfenrolmentkey.png]]&lt;br /&gt;
&lt;br /&gt;
*Click &#039;&#039;Save changes&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Setting a group enrolment key==&lt;br /&gt;
*It is possible also to enrol students directly into groups by use of a group enrolment key.&lt;br /&gt;
*To do this, you first need to add the course enrolment key as in the section above.&lt;br /&gt;
*Change the setting Use &#039;&#039;group enrolment keys&#039;&#039; to &#039;&#039;Yes&#039;&#039;&lt;br /&gt;
*Save the changes and then in the Course administration settings, click &#039;&#039;Groups&amp;gt;Create groups&lt;br /&gt;
*Add an enrolment key to the group. This will be the key they type in to access the course. (The course enrolment key is simply there to keep others out)&lt;br /&gt;
**See also this screencast: Group enrolment keys in Moodle 2.0 [http://www.youtube.com/watch?v=4xzF7xerle0]&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Admin settings==&lt;br /&gt;
&lt;br /&gt;
===Making an enrolment key required in every course===&lt;br /&gt;
*By default, enrolment keys are not set. However, if the administrator wants to ensure all teachers set enrolment keys then this can be forced in &#039;&#039;Settings&amp;gt;Site Administration&amp;gt;Plugins&amp;gt;Enrolments&amp;gt;Self enrolment&#039;&#039; This means that self enrolment settings will not &amp;quot;stick&amp;quot; until the teacher adds an enrolment key. &#039;&#039;&#039;NOTE&#039;&#039;&#039;: It does NOT provide a site wide enrolment key.&lt;br /&gt;
&lt;br /&gt;
===Using the password policy for enrolment keys===&lt;br /&gt;
*To ensure that teachers use secure keys that follow your Moodle&#039;s password policy, check the box in &#039;&#039;Settings&amp;gt;Site Administration&amp;gt;Plugins&amp;gt;Enrolments&amp;gt;Self enrolment&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Giving users a hint of the enrolment key===&lt;br /&gt;
&lt;br /&gt;
*By default, for security reasons,  Moodle will not give any clues as to what the enrolment key is. Checking the box in &#039;&#039;Settings&amp;gt;Site Administration&amp;gt;Plugins&amp;gt;Enrolments&amp;gt;Self enrolment&#039;&#039; will provide the first letter of the enrolment key if needed.&lt;br /&gt;
&lt;br /&gt;
==Tips and Tricks==&lt;br /&gt;
&lt;br /&gt;
*If the enrolment key for a course &amp;quot;gets out&amp;quot; and unwanted people self enrol: &lt;br /&gt;
**Change the key. Currently enrolled students will not need the key again.&lt;br /&gt;
**[[Unenrolment |Unenrol]] the unwanted users via [[Enrolled_users]] in the course administration block.&lt;br /&gt;
*Changing or placing a key does not impact currently enrolled students, nor does it impact students who may also be enrolled by an [[Enrolment plugins|enrolment plugin]].&lt;br /&gt;
* Guests may (optionally) be required to supply the enrolment key (as specified on the Course Settings page). They will be required to supply the code &#039;&#039;&#039;every time&#039;&#039;&#039; they enter the course.&lt;br /&gt;
* The &amp;quot;No&amp;quot; or &amp;quot;Date range&amp;quot; options in the &amp;quot;Course available&amp;quot; setting effectively disables the enrolment key feature, even if it is set.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [http://www.youtube.com/user/UsingMoodle?feature=mhum#p/u/0/4xzF7xerle0 Group enrolment keys in Moodle 2.0 video]&lt;br /&gt;
&lt;br /&gt;
[[de:Einschreibeschlüssel]]&lt;br /&gt;
[[fr:Clef d&#039;inscription]]&lt;br /&gt;
[[pl:Klucz rekrutacyjny]]&lt;br /&gt;
[[ja:登録キー]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Quiz_results_block&amp;diff=97255</id>
		<title>Quiz results block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Quiz_results_block&amp;diff=97255"/>
		<updated>2012-04-25T15:47:45Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Blocks}}The quiz results block displays the highest and/or lowest grades achieved on a quiz within a course. There must be a [[Quizzes|quiz]] in the course to correctly configure this block.&lt;br /&gt;
&lt;br /&gt;
[[File:Quizresultsexample.png]]&lt;br /&gt;
&lt;br /&gt;
The edit icon link allows  the teacher to choose a quiz from a drop down menu which will display the results. &lt;br /&gt;
&lt;br /&gt;
There are other options such as the number of the lowest and highest grades displayed. If both the highest and lowest grades are set to zero then no results will be displayed.   To display all grades,  set either of these to the number of participants in the course.&lt;br /&gt;
&lt;br /&gt;
Grades can be displayed as percentages, fractions or absolute numbers. &lt;br /&gt;
&lt;br /&gt;
If the quiz supports [[Groups|groups]] you can also show group results instead of students.&lt;br /&gt;
&lt;br /&gt;
[[Category:Quiz]]&lt;br /&gt;
&lt;br /&gt;
[[de:Testergebnisse-Block]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=YouTube_block&amp;diff=97254</id>
		<title>YouTube block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=YouTube_block&amp;diff=97254"/>
		<updated>2012-04-25T15:46:03Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Blocks}}The Youtube block can only be added to a [[Tags]] page.  Once you have edited your Profile or made a Blog entry and provided key words in the interests” portion, these words become tags.  From the Tags block you can click any tag to be taken to that word’s Tags page, where you can edit it to add the Youtube block.&lt;br /&gt;
&lt;br /&gt;
[[Image:Youtube block.png|Youtube block.png]]&lt;br /&gt;
&lt;br /&gt;
This block will pull Youtube videos with the same tag words related to the current Tags page.  The title is optional.  Select the number of videos you would like to display in the block.  You can also select the category from which the videos will be pulled in Youtube.  In addition, you can specify which specific playlist you would like to pull the videos from by including the playlist id.  This id is the alpha-numeric string of numbers at the end of the URL, i.e. http://www.youtube.com/view_play_list?p=A77EAA3A1CFA1CD8 using A77EAA3A1CFA1CD8 as the playlist id.&lt;br /&gt;
&lt;br /&gt;
[[Category:Multimedia]]&lt;br /&gt;
&lt;br /&gt;
[[de:Youtube-Block]]&lt;br /&gt;
[[eu:Youtube_blokea]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Logged_in_user_block&amp;diff=97253</id>
		<title>Logged in user block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Logged_in_user_block&amp;diff=97253"/>
		<updated>2012-04-25T15:45:09Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Blocks}}&lt;br /&gt;
The logged in user block displays certain information about the user who is currently logged in to a Moodle course:&lt;br /&gt;
&lt;br /&gt;
[[File:Loggedinuserexample.png]]&lt;br /&gt;
&lt;br /&gt;
The information which is displayed can be selected by the course teacher by clicking on the &amp;quot;configure&amp;quot; icon of the block. A number of dropdown boxes then appear for the teacher to choose which items will appear:&lt;br /&gt;
&lt;br /&gt;
[[File:Loggedinusersettings.png]]&lt;br /&gt;
&lt;br /&gt;
[[de:Persönliches-Profil-Block]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Network_servers_block&amp;diff=97252</id>
		<title>Network servers block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Network_servers_block&amp;diff=97252"/>
		<updated>2012-04-25T15:44:09Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Blocks}}The Network Servers block allows you to roam to other Moodle (or [[Mahara]]) servers. Works in conjunction with the &#039;Can roam to other moodles&#039; permission which allows a user to roam to another Moodle site which is part of a Moodle Network. The network feature allows a Moodle administrator to establish a link with another Moodle, and to share some resources with the users of that Moodle.&lt;br /&gt;
&lt;br /&gt;
[[Image:Networkserversexample.png]]&lt;br /&gt;
&lt;br /&gt;
[[Category:MNet]]&lt;br /&gt;
&lt;br /&gt;
[[de:Netzwerk-Server-Block]]&lt;br /&gt;
[[eu:Sare_Zerbitzariak_blokea]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Self_completion_block&amp;diff=97250</id>
		<title>Self completion block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Self_completion_block&amp;diff=97250"/>
		<updated>2012-04-25T15:41:39Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Blocks}}&lt;br /&gt;
The self completion block provides a link for students to declare that they have completed the course.  This maybe part of the [[Course completion]] requirements.&lt;br /&gt;
&lt;br /&gt;
When a student believes they have completed the course, they click on the &amp;quot;Complete course&amp;quot; link in this block.&lt;br /&gt;
&lt;br /&gt;
[[Image:Selfcompletionblock.png|center|thumb|Self completion block]]&lt;br /&gt;
&lt;br /&gt;
==Using the self completion block==&lt;br /&gt;
&lt;br /&gt;
To allow a student to decide for themselves when they have completed a course, there are two requirements:&lt;br /&gt;
* The [[Course completion tracking|completion tracking setting]] must have the &amp;quot;Manual Self Completion&amp;quot; box checked.&lt;br /&gt;
* The Self completion block must be added to the course.&lt;br /&gt;
The student may then click the &amp;quot;complete course link&amp;quot; in the block.&lt;br /&gt;
&lt;br /&gt;
They are then asked to confirm they have completed the course and the course status will change to &amp;quot;complete&amp;quot; after the next [[Cron]] job.&lt;br /&gt;
&lt;br /&gt;
[[Image:Selfcompletionstatus.png|thumb|center|Student view of status change in Course completion status block before and after cron]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;:Tip:&#039;&#039; Cron is an important part of the course completion process.  It basically re-compiles all the course completion reports.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Course completion]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Completion]]&lt;br /&gt;
&lt;br /&gt;
[[de:Kurs selbst abschließen]]&lt;br /&gt;
[[eu:Auto-osaketa_blokea]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Adding_a_new_course&amp;diff=97249</id>
		<title>Adding a new course</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Adding_a_new_course&amp;diff=97249"/>
		<updated>2012-04-25T15:38:43Z</updated>

		<summary type="html">&lt;p&gt;Ichklaus: DE-Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Courses}}&lt;br /&gt;
&lt;br /&gt;
By default a regular teacher can&#039;t add a new course. To add a new course to Moodle you need to have either [[Administrator|Adminstrator]], [[Course creator|Course Creator]] or [[Manager|Manager]] rights.&lt;br /&gt;
&lt;br /&gt;
==Adding a course==&lt;br /&gt;
To add a course:&lt;br /&gt;
*Go to &#039;&#039;Settings&amp;gt;Site Administration&amp;gt;Courses&amp;gt;Add/edit courses&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Addeditcourses.jpg]]&lt;br /&gt;
&lt;br /&gt;
*Choose the category where you want your course to be. For more information see [[Course categories|Course categories]]&lt;br /&gt;
*Click the &amp;quot;Add a new course&amp;quot; button&lt;br /&gt;
*Enter the [[Course settings|course settings]], then click the &amp;quot;Save changes&amp;quot; button.&lt;br /&gt;
*On the next screen, choose your students/teachers to assign to the course.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deleting a course(s)==&lt;br /&gt;
&lt;br /&gt;
A regular teacher can&#039;t delete a course. Administrators and managers (i.e. users with a role for which the capability [[Capabilities/moodle/course:delete|moodle/course:delete]] is allowed) can deleted courses. A [[Course creator|Course creator]] can delete courses they have created themselves.&lt;br /&gt;
&lt;br /&gt;
To delete a course (as an administrator or manager):&lt;br /&gt;
*Go to &#039;&#039;Settings &amp;gt; Site Administration &amp;gt; Courses &amp;gt; Add/edit courses&#039;&#039;&lt;br /&gt;
*Click the course&#039;s category (to drill down the category tree) and find the course you wish to delete. Or use the &amp;quot;Search course&amp;quot; textbox at the bottom of the category list.&lt;br /&gt;
*Click the &amp;quot;X&amp;quot; icon to the right of the course&#039;s name. to delete it.&lt;br /&gt;
&lt;br /&gt;
You can delete multiple courses by: &lt;br /&gt;
*Creating a new (temporary) category. You can name it &amp;quot;To be deleted&amp;quot;.&lt;br /&gt;
*Select and &#039;&#039;&#039;move&#039;&#039;&#039; the &amp;quot;About to be deleted&amp;quot; courses to that category (&amp;quot;To be deleted&amp;quot;).&lt;br /&gt;
*Delete the category (&amp;quot;To be deleted&amp;quot;) and choose &amp;quot;Delete ALL - cannot be undone&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
There is no user interface for course creators to delete courses they have created, however they can do so by editing the URL of the course from &amp;lt;nowiki&amp;gt;http://yourmoodlesite.net/course/view.php?id=N&amp;lt;/nowiki&amp;gt; to &amp;lt;nowiki&amp;gt;http://yourmoodlesite.net/course/delete.php?id=N&amp;lt;/nowiki&amp;gt; (replacing &#039;view&#039; with &#039;delete&#039;).&lt;br /&gt;
&lt;br /&gt;
==Course requests==&lt;br /&gt;
&lt;br /&gt;
*There is a  course request feature which can be enabled by the administrator  in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Courses &amp;gt; Course request&#039;&#039;.&lt;br /&gt;
*The default category for new courses requested can be selected from this screen, and users who will be notified when courses are requested can also be selected here. (These are users with the capability [[Capabilities/moodle/site:approvecourse|moodle/site:approvecourse]].)&lt;br /&gt;
&lt;br /&gt;
[[File:Courserequest.png]]&lt;br /&gt;
&lt;br /&gt;
*A  button will then appear on the All courses page for users to request a new course.&lt;br /&gt;
&lt;br /&gt;
By default, all authenticated users can make course requests (after you have enabled it). It is controlled by the capability [[Capabilities/moodle/course:request|moodle/course:request]].&lt;br /&gt;
&lt;br /&gt;
==Bulk Course Create Options==&lt;br /&gt;
As of Moodle 2.2, this is not an out of the box feature.&lt;br /&gt;
&lt;br /&gt;
The main Tracker item: http://tracker.moodle.org/browse/MDL-13114&lt;br /&gt;
&lt;br /&gt;
Some forum discussions:&lt;br /&gt;
#Import files to batch create courses and users http://moodle.org/mod/forum/discuss.php?d=27333&lt;br /&gt;
#Bulk / automated course creation with phpMyAdmin http://moodle.org/mod/forum/discuss.php?d=27333&lt;br /&gt;
#Bulk Course Creation in v1.9 http://moodle.org/mod/forum/discuss.php?d=96622&lt;br /&gt;
#Bulk Course Upload tool question http://moodle.org/mod/forum/discuss.php?d=91850#p572909&lt;br /&gt;
#Bulk Course Upload tool for Moodle 2.0 http://moodle.org/mod/forum/discuss.php?d=91850&amp;amp;parent=744931&lt;br /&gt;
#uploaduser.php enhanced to upload also courses http://moodle.org/mod/forum/discuss.php?d=128317&lt;br /&gt;
&lt;br /&gt;
The latest real lead (as of February 2012) is this: &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Piers Harding added a comment - 26/Sep/11 3:23 AM  Hi -&lt;br /&gt;
:This may or may not be of any use to people on this thread, but I create a basic course uploader for 2.x modelled on the user uploader, as I needed something for NZ schools - it&#039;s available here https://gitorious.org/moodle-tool_uploadcourse/moodle-tool_uploadcourse for the curious.&lt;br /&gt;
:Cheers,&lt;br /&gt;
:Piers Harding.&#039;&#039; From the tracker thread MDL-13114&lt;br /&gt;
&lt;br /&gt;
Old module/plugin: http://moodle.org/mod/data/view.php?d=13&amp;amp;rid=395&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=83830 Hide Courses from some users or students] forum discussion&lt;br /&gt;
&lt;br /&gt;
[[de:Kurs anlegen]]&lt;br /&gt;
[[es:Cursos_%28administrador%29]]&lt;br /&gt;
[[eu:Ikastaroak_%28Kudeatzaileak%29]]&lt;/div&gt;</summary>
		<author><name>Ichklaus</name></author>
	</entry>
</feed>