From f38c7f681805fc13adb190700caddc3e740bd22c Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 4 Jun 2010 09:20:00 +0000 Subject: Initial import of moodle-1.9.8 from wip, packaged by Wen Heping. Moodle is a course management system (CMS) - a free, Open Source software package designed using sound pedagogical principles, to help educators create effective online learning communities. You can use it on any computer you have handy (including webhosts), yet it can scale from a single-teacher site to a 40,000-student University. --- www/moodle/DESCR | 5 + www/moodle/MESSAGE | 20 + www/moodle/Makefile | 86 + www/moodle/PLIST | 5179 ++++++++++++++++++++++++++++++++++++++++++ www/moodle/distinfo | 5 + www/moodle/files/moodle.conf | 13 + www/moodle/options.mk | 18 + 7 files changed, 5326 insertions(+) create mode 100644 www/moodle/DESCR create mode 100644 www/moodle/MESSAGE create mode 100644 www/moodle/Makefile create mode 100644 www/moodle/PLIST create mode 100644 www/moodle/distinfo create mode 100644 www/moodle/files/moodle.conf create mode 100644 www/moodle/options.mk (limited to 'www') diff --git a/www/moodle/DESCR b/www/moodle/DESCR new file mode 100644 index 00000000000..8d24b9357db --- /dev/null +++ b/www/moodle/DESCR @@ -0,0 +1,5 @@ +Moodle is a course management system (CMS) - a free, Open Source software +package designed using sound pedagogical principles, to help educators +create effective online learning communities. You can use it on any +computer you have handy (including webhosts), yet it can scale from a +single-teacher site to a 40,000-student University. diff --git a/www/moodle/MESSAGE b/www/moodle/MESSAGE new file mode 100644 index 00000000000..acc3b49307b --- /dev/null +++ b/www/moodle/MESSAGE @@ -0,0 +1,20 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1.1.1 2010/06/04 09:20:00 wiz Exp $ + +Add the following line to httpd.conf to make Moodle accessible +through your HTTP server: + + Include ${PKG_SYSCONFDIR}/moodle.conf + +Your Moodle is then accessible through: + + http://www.example.com/moodle/ + +Then create a user and a database for Moodle to store all +its tables in (or choose an existing database). + +For more information, see the INSTALL DOCUMENTATION: + + http://docs.moodle.org/en/Installing_Moodle + +=========================================================================== diff --git a/www/moodle/Makefile b/www/moodle/Makefile new file mode 100644 index 00000000000..28df8031f85 --- /dev/null +++ b/www/moodle/Makefile @@ -0,0 +1,86 @@ +# $NetBSD: Makefile,v 1.1.1.1 2010/06/04 09:20:00 wiz Exp $ + +DISTNAME= moodle-1.9.8 +CATEGORIES= www +MASTER_SITES= http://download.moodle.org/stable19/ \ + http://download2.moodle.org/stable19/ \ + http://download3.moodle.org/stable19/ \ + http://download4.moodle.org/stable19/ +EXTRACT_SUFX= .tgz + +MAINTAINER= wenheping@gmail.com +HOMEPAGE= http://www.moodle.org/ +COMMENT= Course management system based on social constructionism +LICENSE= gnu-gpl-v2 + +DEPENDS+= ${PHP_PKG_PREFIX}-gd>=4.3.3:../../graphics/php-gd +DEPENDS+= ${PHP_PKG_PREFIX}-iconv-[0-9]*:../../converters/php-iconv +DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.2.0:../../converters/php-mbstring +DEPENDS+= ${PHP_PKG_PREFIX}-curl>=5.2.0:../../www/php-curl +DEPENDS+= ${PHP_PKG_PREFIX}-xmlrpc>=5.2.0:../../net/php-xmlrpc + +EGDIR= share/examples/moodle +MOODLEDIR= ${PREFIX}/share/moodle +MOODLEDATADIR= ${PREFIX}/share/moodledata + +PKG_DESTDIR_SUPPORT= user-destdir +INSTALLATION_DIRS= ${EGDIR} share/moodle + +.include "../../mk/bsd.prefs.mk" +.include "options.mk" + +PKG_INSTALLATION_TYPES= overwrite pkgviews + +APACHE_USER?= www +APACHE_GROUP?= www +BUILD_DEFS+= APACHE_USER APACHE_GROUP + +PKG_SYSCONFSUBDIR?= httpd +MESSAGE_SUBST+= PKG_SYSCONFDIR=${PKG_SYSCONFDIR} + +CONF_FILES= ${PREFIX}/${EGDIR}/moodle.conf \ + ${PKG_SYSCONFDIR}/moodle.conf + +NO_CONFIGURE= YES +NO_BUILD= YES + +SUBST_CLASSES+= paths +SUBST_MESSAGE.paths= Fixing pathnames in configuration file. +SUBST_STAGE.paths= post-patch +SUBST_FILES.paths= ../moodle.conf +SUBST_SED.paths= -e "s,@MOODLEDIR@,${MOODLEDIR},g" + +SUBST_CLASSES+= php +SUBST_MESSAGE.php= Fixing the path of php. +SUBST_STAGE.php= post-patch +SUBST_FILES.php= admin/mailout-debugger.php admin/process_email.php mod/chat/chatd.php +SUBST_SED.php= -e "s,/usr/bin/php,/usr/pkg/bin/php,g" + +SUBST_CLASSES+= perl +SUBST_MESSAGE.paths= Fixing the path of perl. +SUBST_STAGE.paths= post-patch +SUBST_FILES.paths= filter/algebra/algebra2tex.pl +SUBST_SED.paths= -e "s,/usr/bin/perl,/usr/pkg/bin/perl,g" + +WRKSRC= ${WRKDIR}/moodle + +post-extract: + ${CP} ${FILESDIR}/moodle.conf ${WRKDIR}/moodle.conf + +do-install: + cd ${WRKSRC} && ${FIND} . -type d -exec ${INSTALL_DATA_DIR} \ + ${DESTDIR}${MOODLEDIR}/{} \; -exec ${CHOWN} \ + ${APACHE_USER}:${APACHE_GROUP} ${DESTDIR}${MOODLEDIR}/{} \; + cd ${WRKSRC} && ${FIND} . \! -type d -exec ${INSTALL_DATA} {} \ + ${DESTDIR}${MOODLEDIR}/{} \; -exec ${CHOWN} \ + ${APACHE_USER}:${APACHE_GROUP} ${DESTDIR}${MOODLEDIR}/{} \; + ${INSTALL_DATA} ${WRKDIR}/moodle.conf \ + ${DESTDIR}${PREFIX}/${EGDIR}/moodle.conf + +post-install: + ${INSTALL_DATA_DIR} ${DESTDIR}${MOODLEDATADIR} + ${CHOWN} ${APACHE_USER}:${APACHE_GROUP} ${DESTDIR}${MOODLEDATADIR} + +.include "../../lang/php/phpversion.mk" +.include "../../mk/apache.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/www/moodle/PLIST b/www/moodle/PLIST new file mode 100644 index 00000000000..1524222b568 --- /dev/null +++ b/www/moodle/PLIST @@ -0,0 +1,5179 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2010/06/04 09:20:02 wiz Exp $ +share/examples/moodle/moodle.conf +share/moodle/COPYING.txt +share/moodle/README.txt +share/moodle/admin/auth.php +share/moodle/admin/auth_config.php +share/moodle/admin/block.php +share/moodle/admin/blocks.php +share/moodle/admin/cron.php +share/moodle/admin/dbperformance.php +share/moodle/admin/delete.php +share/moodle/admin/enrol.php +share/moodle/admin/enrol_config.php +share/moodle/admin/environment.php +share/moodle/admin/environment.xml +share/moodle/admin/filter.php +share/moodle/admin/filters.php +share/moodle/admin/fixuserpix.php +share/moodle/admin/handlevirus.php +share/moodle/admin/health.php +share/moodle/admin/index.php +share/moodle/admin/innodb.php +share/moodle/admin/lang.php +share/moodle/admin/langdoc.php +share/moodle/admin/langimport.php +share/moodle/admin/mailout-debugger.php +share/moodle/admin/maintenance.php +share/moodle/admin/mnet/MethodTable.php +share/moodle/admin/mnet/access_control.php +share/moodle/admin/mnet/adminlib.php +share/moodle/admin/mnet/delete.html +share/moodle/admin/mnet/delete.php +share/moodle/admin/mnet/enr_course_enrol.html +share/moodle/admin/mnet/enr_course_enrol.php +share/moodle/admin/mnet/enr_courses.php +share/moodle/admin/mnet/enr_hosts.php +share/moodle/admin/mnet/index.php +share/moodle/admin/mnet/mnet_review.html +share/moodle/admin/mnet/mnet_review_allhosts.html +share/moodle/admin/mnet/mnet_services.html +share/moodle/admin/mnet/mnet_services.php +share/moodle/admin/mnet/mnet_themes.html +share/moodle/admin/mnet/mnet_themes.php +share/moodle/admin/mnet/peers.html +share/moodle/admin/mnet/peers.php +share/moodle/admin/mnet/tabs.php +share/moodle/admin/mnet/trustedhosts.html +share/moodle/admin/mnet/trustedhosts.php +share/moodle/admin/module.php +share/moodle/admin/modules.php +share/moodle/admin/multilangupgrade.php +share/moodle/admin/oacleanup.php +share/moodle/admin/pagelib.php +share/moodle/admin/phpinfo.php +share/moodle/admin/process_email.php +share/moodle/admin/register.php +share/moodle/admin/replace.php +share/moodle/admin/report/backups/index.php +share/moodle/admin/report/backups/settings.php +share/moodle/admin/report/courseoverview/db/access.php +share/moodle/admin/report/courseoverview/index.php +share/moodle/admin/report/courseoverview/reportsgraph.php +share/moodle/admin/report/courseoverview/settings.php +share/moodle/admin/report/courseoverview/version.php +share/moodle/admin/report/log/settings.php +share/moodle/admin/report/question/index.php +share/moodle/admin/report/question/settings.php +share/moodle/admin/report/security/db/access.php +share/moodle/admin/report/security/index.php +share/moodle/admin/report/security/lib.php +share/moodle/admin/report/security/settings.php +share/moodle/admin/report/security/version.php +share/moodle/admin/report/spamcleaner/index.php +share/moodle/admin/report/spamcleaner/settings.php +share/moodle/admin/report/stats/settings.php +share/moodle/admin/report/unittest/db/access.php +share/moodle/admin/report/unittest/ex_reporter.php +share/moodle/admin/report/unittest/ex_simple_test.php +share/moodle/admin/report/unittest/index.php +share/moodle/admin/report/unittest/settings.php +share/moodle/admin/report/unittest/version.php +share/moodle/admin/roles/allowassign.php +share/moodle/admin/roles/allowoverride.php +share/moodle/admin/roles/assign.html +share/moodle/admin/roles/assign.php +share/moodle/admin/roles/manage.html +share/moodle/admin/roles/manage.php +share/moodle/admin/roles/managetabs.php +share/moodle/admin/roles/override.html +share/moodle/admin/roles/override.php +share/moodle/admin/roles/tabs.php +share/moodle/admin/search.php +share/moodle/admin/settings.php +share/moodle/admin/settings/appearance.php +share/moodle/admin/settings/courses.php +share/moodle/admin/settings/frontpage.php +share/moodle/admin/settings/grades.php +share/moodle/admin/settings/language.php +share/moodle/admin/settings/location.php +share/moodle/admin/settings/misc.php +share/moodle/admin/settings/mnet.php +share/moodle/admin/settings/plugins.php +share/moodle/admin/settings/security.php +share/moodle/admin/settings/server.php +share/moodle/admin/settings/top.php +share/moodle/admin/settings/unsupported.php +share/moodle/admin/settings/users.php +share/moodle/admin/stickyblocks.php +share/moodle/admin/timezone.php +share/moodle/admin/timezoneimport.php +share/moodle/admin/upgradeforumread.php +share/moodle/admin/upgradelogs.php +share/moodle/admin/upgradesettings.php +share/moodle/admin/uploadpicture.php +share/moodle/admin/uploadpicture_form.php +share/moodle/admin/uploaduser.php +share/moodle/admin/uploaduser_form.php +share/moodle/admin/user.php +share/moodle/admin/user/lib.php +share/moodle/admin/user/user_bulk.php +share/moodle/admin/user/user_bulk_confirm.php +share/moodle/admin/user/user_bulk_delete.php +share/moodle/admin/user/user_bulk_display.php +share/moodle/admin/user/user_bulk_download.php +share/moodle/admin/user/user_bulk_forcepasswordchange.php +share/moodle/admin/user/user_bulk_forms.php +share/moodle/admin/user/user_bulk_message.php +share/moodle/admin/user/user_message_form.php +share/moodle/admin/xmldb/README.txt +share/moodle/admin/xmldb/actions/XMLDBAction.class.php +share/moodle/admin/xmldb/actions/check_bigints/check_bigints.class.php +share/moodle/admin/xmldb/actions/check_indexes/check_indexes.class.php +share/moodle/admin/xmldb/actions/create_xml_file/create_xml_file.class.php +share/moodle/admin/xmldb/actions/delete_field/delete_field.class.php +share/moodle/admin/xmldb/actions/delete_index/delete_index.class.php +share/moodle/admin/xmldb/actions/delete_key/delete_key.class.php +share/moodle/admin/xmldb/actions/delete_sentence/delete_sentence.class.php +share/moodle/admin/xmldb/actions/delete_statement/delete_statement.class.php +share/moodle/admin/xmldb/actions/delete_table/delete_table.class.php +share/moodle/admin/xmldb/actions/delete_xml_file/delete_xml_file.class.php +share/moodle/admin/xmldb/actions/edit_field/edit_field.class.php +share/moodle/admin/xmldb/actions/edit_field/edit_field.js +share/moodle/admin/xmldb/actions/edit_field_save/edit_field_save.class.php +share/moodle/admin/xmldb/actions/edit_index/edit_index.class.php +share/moodle/admin/xmldb/actions/edit_index_save/edit_index_save.class.php +share/moodle/admin/xmldb/actions/edit_key/edit_key.class.php +share/moodle/admin/xmldb/actions/edit_key/edit_key.js +share/moodle/admin/xmldb/actions/edit_key_save/edit_key_save.class.php +share/moodle/admin/xmldb/actions/edit_sentence/edit_sentence.class.php +share/moodle/admin/xmldb/actions/edit_sentence_save/edit_sentence_save.class.php +share/moodle/admin/xmldb/actions/edit_statement/edit_statement.class.php +share/moodle/admin/xmldb/actions/edit_statement_save/edit_statement_save.class.php +share/moodle/admin/xmldb/actions/edit_table/edit_table.class.php +share/moodle/admin/xmldb/actions/edit_table_save/edit_table_save.class.php +share/moodle/admin/xmldb/actions/edit_xml_file/edit_xml_file.class.php +share/moodle/admin/xmldb/actions/edit_xml_file_save/edit_xml_file_save.class.php +share/moodle/admin/xmldb/actions/get_db_directories/get_db_directories.class.php +share/moodle/admin/xmldb/actions/load_xml_file/load_xml_file.class.php +share/moodle/admin/xmldb/actions/load_xml_files/load_xml_files.class.php +share/moodle/admin/xmldb/actions/main_view/main_view.class.php +share/moodle/admin/xmldb/actions/move_updown_field/move_updown_field.class.php +share/moodle/admin/xmldb/actions/move_updown_index/move_updown_index.class.php +share/moodle/admin/xmldb/actions/move_updown_key/move_updown_key.class.php +share/moodle/admin/xmldb/actions/move_updown_statement/move_updown_statement.class.php +share/moodle/admin/xmldb/actions/move_updown_table/move_updown_table.class.php +share/moodle/admin/xmldb/actions/new_field/new_field.class.php +share/moodle/admin/xmldb/actions/new_index/new_index.class.php +share/moodle/admin/xmldb/actions/new_key/new_key.class.php +share/moodle/admin/xmldb/actions/new_sentence/new_sentence.class.php +share/moodle/admin/xmldb/actions/new_statement/new_statement.class.php +share/moodle/admin/xmldb/actions/new_table/new_table.class.php +share/moodle/admin/xmldb/actions/new_table_from_mysql/new_table_from_mysql.class.php +share/moodle/admin/xmldb/actions/revert_changes/revert_changes.class.php +share/moodle/admin/xmldb/actions/save_xml_file/save_xml_file.class.php +share/moodle/admin/xmldb/actions/template/template.class.php +share/moodle/admin/xmldb/actions/test/test.class.php +share/moodle/admin/xmldb/actions/unload_xml_file/unload_xml_file.class.php +share/moodle/admin/xmldb/actions/view_field_xml/view_field_xml.class.php +share/moodle/admin/xmldb/actions/view_index_xml/view_index_xml.class.php +share/moodle/admin/xmldb/actions/view_key_xml/view_key_xml.class.php +share/moodle/admin/xmldb/actions/view_reserved_words/view_reserved_words.class.php +share/moodle/admin/xmldb/actions/view_statement_xml/view_statement_xml.class.php +share/moodle/admin/xmldb/actions/view_structure_php/view_structure_php.class.php +share/moodle/admin/xmldb/actions/view_structure_sql/view_structure_sql.class.php +share/moodle/admin/xmldb/actions/view_structure_xml/view_structure_xml.class.php +share/moodle/admin/xmldb/actions/view_table_php/view_table_php.class.php +share/moodle/admin/xmldb/actions/view_table_php/view_table_php.js +share/moodle/admin/xmldb/actions/view_table_sql/view_table_sql.class.php +share/moodle/admin/xmldb/actions/view_table_xml/view_table_xml.class.php +share/moodle/admin/xmldb/actions/view_xml/view_xml.class.php +share/moodle/admin/xmldb/index.php +share/moodle/admin/xmldb/javascript.php +share/moodle/auth/README.txt +share/moodle/auth/cas/CAS/CAS.php +share/moodle/auth/cas/CAS/PGTStorage/pgt-db.php +share/moodle/auth/cas/CAS/PGTStorage/pgt-file.php +share/moodle/auth/cas/CAS/PGTStorage/pgt-main.php +share/moodle/auth/cas/CAS/client.php +share/moodle/auth/cas/CAS/domxml-php4-php5.php +share/moodle/auth/cas/CAS/languages/english.php +share/moodle/auth/cas/CAS/languages/french.php +share/moodle/auth/cas/CAS/languages/german.php +share/moodle/auth/cas/CAS/languages/greek.php +share/moodle/auth/cas/CAS/languages/japanese.php +share/moodle/auth/cas/CAS/languages/languages.php +share/moodle/auth/cas/CAS/readme_moodle.txt +share/moodle/auth/cas/README-CAS +share/moodle/auth/cas/auth.php +share/moodle/auth/cas/cas_form.html +share/moodle/auth/cas/cas_ldap_sync_users.php +share/moodle/auth/cas/config.html +share/moodle/auth/cas/languages.php +share/moodle/auth/db/auth.php +share/moodle/auth/db/auth_db_sync_users.php +share/moodle/auth/db/config.html +share/moodle/auth/email/auth.php +share/moodle/auth/email/config.html +share/moodle/auth/fc/Readme.txt +share/moodle/auth/fc/auth.php +share/moodle/auth/fc/config.html +share/moodle/auth/fc/fcFPP.php +share/moodle/auth/imap/auth.php +share/moodle/auth/imap/config.html +share/moodle/auth/index.html +share/moodle/auth/ldap/README-LDAP +share/moodle/auth/ldap/auth.php +share/moodle/auth/ldap/auth_ldap_sync_users.php +share/moodle/auth/ldap/config.html +share/moodle/auth/ldap/ntlmsso_attempt.php +share/moodle/auth/ldap/ntlmsso_finish.php +share/moodle/auth/ldap/ntlmsso_magic.php +share/moodle/auth/manual/auth.php +share/moodle/auth/manual/config.html +share/moodle/auth/mnet/auth.php +share/moodle/auth/mnet/config.html +share/moodle/auth/mnet/jump.php +share/moodle/auth/mnet/land.php +share/moodle/auth/nntp/auth.php +share/moodle/auth/nntp/config.html +share/moodle/auth/nologin/auth.php +share/moodle/auth/none/auth.php +share/moodle/auth/none/config.html +share/moodle/auth/pam/auth.php +share/moodle/auth/pam/config.html +share/moodle/auth/pop3/auth.php +share/moodle/auth/pop3/config.html +share/moodle/auth/radius/auth.php +share/moodle/auth/radius/config.html +share/moodle/auth/shibboleth/README.txt +share/moodle/auth/shibboleth/auth.php +share/moodle/auth/shibboleth/config.html +share/moodle/auth/shibboleth/index.php +share/moodle/auth/shibboleth/index_form.html +share/moodle/auth/shibboleth/login.php +share/moodle/auth/shibboleth/logout.php +share/moodle/backup/CHANGES_14_15.txt +share/moodle/backup/README.txt +share/moodle/backup/STATUS.txt +share/moodle/backup/backup.php +share/moodle/backup/backup_check.html +share/moodle/backup/backup_execute.html +share/moodle/backup/backup_form.html +share/moodle/backup/backup_scheduled.php +share/moodle/backup/backuplib.php +share/moodle/backup/bb/README.txt +share/moodle/backup/bb/bb5.5_to_moodle.xsl +share/moodle/backup/bb/bb6_to_moodle.xsl +share/moodle/backup/bb/restore_bb.php +share/moodle/backup/bb/xsl_emulate_xslt.inc +share/moodle/backup/cc/cc2moodle.php +share/moodle/backup/cc/entities.class.php +share/moodle/backup/cc/entity.forum.class.php +share/moodle/backup/cc/entity.label.class.php +share/moodle/backup/cc/entity.quiz.class.php +share/moodle/backup/cc/entity.resource.class.php +share/moodle/backup/cc/includes/constants.php +share/moodle/backup/cc/restore_cc.php +share/moodle/backup/cc/schemas/cclibxml2validator.xsd +share/moodle/backup/cc/schemas/config.xml +share/moodle/backup/cc/schemas/domainProfile_0/imsccauth_v1p0.xsd +share/moodle/backup/cc/schemas/domainProfile_0/imsccauth_v1p0_constraintsDocument.scmt +share/moodle/backup/cc/schemas/domainProfile_0/imsccauth_v1p0_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_1/anyElement.xsd +share/moodle/backup/cc/schemas/domainProfile_1/anyElement_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_1/common/anyElement.xsd +share/moodle/backup/cc/schemas/domainProfile_1/common/dataTypes.xsd +share/moodle/backup/cc/schemas/domainProfile_1/common/elementNames.xsd +share/moodle/backup/cc/schemas/domainProfile_1/common/elementTypes.xsd +share/moodle/backup/cc/schemas/domainProfile_1/common/rootElement.xsd +share/moodle/backup/cc/schemas/domainProfile_1/common/vocabTypes.xsd +share/moodle/backup/cc/schemas/domainProfile_1/common/vocabValues.xsd +share/moodle/backup/cc/schemas/domainProfile_1/dataTypes_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_1/elementNames_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_1/elementTypes_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_1/extend/custom.xsd +share/moodle/backup/cc/schemas/domainProfile_1/imscc_m_definition.xsd +share/moodle/backup/cc/schemas/domainProfile_1/lomLoose.xsd +share/moodle/backup/cc/schemas/domainProfile_1/lomLoose_constraintsDocument.scmt +share/moodle/backup/cc/schemas/domainProfile_1/lomLoose_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_1/loose.xsd +share/moodle/backup/cc/schemas/domainProfile_1/rootElement_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_1/unique/loose.xsd +share/moodle/backup/cc/schemas/domainProfile_1/vocab/loose.xsd +share/moodle/backup/cc/schemas/domainProfile_1/vocabTypes_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_1/vocabValues_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_2/anyElement.xsd +share/moodle/backup/cc/schemas/domainProfile_2/anyElement_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_2/common/anyElement.xsd +share/moodle/backup/cc/schemas/domainProfile_2/common/dataTypes.xsd +share/moodle/backup/cc/schemas/domainProfile_2/common/elementNames.xsd +share/moodle/backup/cc/schemas/domainProfile_2/common/elementTypes.xsd +share/moodle/backup/cc/schemas/domainProfile_2/common/rootElement.xsd +share/moodle/backup/cc/schemas/domainProfile_2/common/vocabTypes.xsd +share/moodle/backup/cc/schemas/domainProfile_2/common/vocabValues.xsd +share/moodle/backup/cc/schemas/domainProfile_2/dataTypes_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_2/elementNames_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_2/elementTypes_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_2/extend/custom.xsd +share/moodle/backup/cc/schemas/domainProfile_2/imscc_mR_definition.xsd +share/moodle/backup/cc/schemas/domainProfile_2/lomLoose.xsd +share/moodle/backup/cc/schemas/domainProfile_2/lomLoose_constraintsDocument.scmt +share/moodle/backup/cc/schemas/domainProfile_2/lomLoose_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_2/loose.xsd +share/moodle/backup/cc/schemas/domainProfile_2/rootElement_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_2/unique/loose.xsd +share/moodle/backup/cc/schemas/domainProfile_2/vocab/loose.xsd +share/moodle/backup/cc/schemas/domainProfile_2/vocabTypes_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_2/vocabValues_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_3/imscp_extensionv1p2.xsd +share/moodle/backup/cc/schemas/domainProfile_3/imscp_extensionv1p2_constraintsDocument.scmt +share/moodle/backup/cc/schemas/domainProfile_3/imscp_extensionv1p2_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_4/ims_qtiasiv1p2.xsd +share/moodle/backup/cc/schemas/domainProfile_4/ims_qtiasiv1p2_def_copy.xsd +share/moodle/backup/cc/schemas/domainProfile_4/ims_qtiasiv1p2_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_4/imscc_q_definition.xsd +share/moodle/backup/cc/schemas/domainProfile_4/xml.xsd +share/moodle/backup/cc/schemas/domainProfile_5/imswl_v1p0.xsd +share/moodle/backup/cc/schemas/domainProfile_5/imswl_v1p0_localised.xsd +share/moodle/backup/cc/schemas/domainProfile_6/imsdt_v1p0.xsd +share/moodle/backup/cc/schemas/domainProfile_6/imsdt_v1p0_localised.xsd +share/moodle/backup/cc/schemas/imscc_c1p2maeV0p15_definition.xsd +share/moodle/backup/cc/schemas/imscp_v1p2.xsd +share/moodle/backup/cc/schemas/imscp_v1p2_constraintsDocument.scmt +share/moodle/backup/cc/schemas/imscp_v1p2_localised.xsd +share/moodle/backup/cc/schemas/xml.xsd +share/moodle/backup/cc/sheets/base.xml +share/moodle/backup/cc/sheets/course_blocks_block.xml +share/moodle/backup/cc/sheets/course_header.xml +share/moodle/backup/cc/sheets/course_modules_mod_forum.xml +share/moodle/backup/cc/sheets/course_modules_mod_label.xml +share/moodle/backup/cc/sheets/course_modules_mod_quiz.xml +share/moodle/backup/cc/sheets/course_modules_mod_quiz_feedback.xml +share/moodle/backup/cc/sheets/course_modules_mod_quiz_question_instance.xml +share/moodle/backup/cc/sheets/course_modules_mod_resource.xml +share/moodle/backup/cc/sheets/course_question_categories.xml +share/moodle/backup/cc/sheets/course_question_categories_question_category.xml +share/moodle/backup/cc/sheets/course_question_categories_question_category_question.xml +share/moodle/backup/cc/sheets/course_question_categories_question_category_question_answer.xml +share/moodle/backup/cc/sheets/course_question_categories_question_category_question_eesay.xml +share/moodle/backup/cc/sheets/course_question_categories_question_category_question_multiple_choice.xml +share/moodle/backup/cc/sheets/course_question_categories_question_category_question_shortanswer.xml +share/moodle/backup/cc/sheets/course_question_categories_question_category_question_true_false.xml +share/moodle/backup/cc/sheets/course_sections_section.xml +share/moodle/backup/cc/sheets/course_sections_section_mods_mod.xml +share/moodle/backup/cc/sheets/info_details_mod.xml +share/moodle/backup/cc/sheets/info_details_mod_instance.xml +share/moodle/backup/db/install.xml +share/moodle/backup/db/mysql.php +share/moodle/backup/db/postgres7.php +share/moodle/backup/db/upgrade.php +share/moodle/backup/lib.php +share/moodle/backup/log.php +share/moodle/backup/restore.php +share/moodle/backup/restore_check.html +share/moodle/backup/restore_execute.html +share/moodle/backup/restore_form.html +share/moodle/backup/restore_precheck.html +share/moodle/backup/restorelib.php +share/moodle/backup/try.php +share/moodle/backup/version.php +share/moodle/blocks/activity_modules/block_activity_modules.php +share/moodle/blocks/activity_modules/db/mysql.php +share/moodle/blocks/activity_modules/db/postgres7.php +share/moodle/blocks/activity_modules/db/upgrade.php +share/moodle/blocks/admin/block_admin.php +share/moodle/blocks/admin/db/mysql.php +share/moodle/blocks/admin/db/postgres7.php +share/moodle/blocks/admin/db/upgrade.php +share/moodle/blocks/admin_bookmarks/block_admin_bookmarks.php +share/moodle/blocks/admin_bookmarks/create.php +share/moodle/blocks/admin_bookmarks/delete.php +share/moodle/blocks/admin_tree/block_admin_tree.php +share/moodle/blocks/blog_menu/block_blog_menu.php +share/moodle/blocks/blog_tags/block_blog_tags.php +share/moodle/blocks/blog_tags/config_instance.html +share/moodle/blocks/blog_tags/styles.php +share/moodle/blocks/calendar_month/block_calendar_month.php +share/moodle/blocks/calendar_month/db/mysql.php +share/moodle/blocks/calendar_month/db/postgres7.php +share/moodle/blocks/calendar_month/db/upgrade.php +share/moodle/blocks/calendar_month/styles.php +share/moodle/blocks/calendar_upcoming/block_calendar_upcoming.php +share/moodle/blocks/calendar_upcoming/db/mysql.php +share/moodle/blocks/calendar_upcoming/db/postgres7.php +share/moodle/blocks/calendar_upcoming/db/upgrade.php +share/moodle/blocks/calendar_upcoming/styles.php +share/moodle/blocks/course_list/block_course_list.php +share/moodle/blocks/course_list/db/mysql.php +share/moodle/blocks/course_list/db/postgres7.php +share/moodle/blocks/course_list/db/upgrade.php +share/moodle/blocks/course_list/settings.php +share/moodle/blocks/course_summary/block_course_summary.php +share/moodle/blocks/course_summary/db/mysql.php +share/moodle/blocks/course_summary/db/postgres7.php +share/moodle/blocks/course_summary/db/upgrade.php +share/moodle/blocks/course_summary/styles.php +share/moodle/blocks/db/install.xml +share/moodle/blocks/db/mysql.php +share/moodle/blocks/db/postgres7.php +share/moodle/blocks/db/upgrade.php +share/moodle/blocks/glossary_random/block_glossary_random.php +share/moodle/blocks/glossary_random/config_instance.html +share/moodle/blocks/html/block_html.php +share/moodle/blocks/html/config_instance.html +share/moodle/blocks/index.html +share/moodle/blocks/loancalc/block_loancalc.php +share/moodle/blocks/login/block_login.php +share/moodle/blocks/login/styles.php +share/moodle/blocks/mentees/block_mentees.php +share/moodle/blocks/mentees/config_instance.html +share/moodle/blocks/messages/block_messages.php +share/moodle/blocks/mnet_hosts/block_mnet_hosts.php +share/moodle/blocks/moodleblock.class.php +share/moodle/blocks/news_items/block_news_items.php +share/moodle/blocks/news_items/db/mysql.php +share/moodle/blocks/news_items/db/postgres7.php +share/moodle/blocks/news_items/db/upgrade.php +share/moodle/blocks/news_items/styles.php +share/moodle/blocks/online_users/block_online_users.php +share/moodle/blocks/online_users/db/access.php +share/moodle/blocks/online_users/db/mysql.php +share/moodle/blocks/online_users/db/postgres7.php +share/moodle/blocks/online_users/db/upgrade.php +share/moodle/blocks/online_users/settings.php +share/moodle/blocks/participants/block_participants.php +share/moodle/blocks/participants/db/mysql.php +share/moodle/blocks/participants/db/postgres7.php +share/moodle/blocks/participants/db/upgrade.php +share/moodle/blocks/quiz_results/block_quiz_results.php +share/moodle/blocks/quiz_results/config_instance.html +share/moodle/blocks/quiz_results/styles.php +share/moodle/blocks/recent_activity/block_recent_activity.php +share/moodle/blocks/recent_activity/db/mysql.php +share/moodle/blocks/recent_activity/db/postgres7.php +share/moodle/blocks/recent_activity/db/upgrade.php +share/moodle/blocks/rss_client/block_rss_client.php +share/moodle/blocks/rss_client/block_rss_client_action.php +share/moodle/blocks/rss_client/block_rss_client_error.php +share/moodle/blocks/rss_client/config_instance.html +share/moodle/blocks/rss_client/config_instance_tabs.php +share/moodle/blocks/rss_client/db/access.php +share/moodle/blocks/rss_client/db/install.xml +share/moodle/blocks/rss_client/db/mysql.php +share/moodle/blocks/rss_client/db/postgres7.php +share/moodle/blocks/rss_client/db/upgrade.php +share/moodle/blocks/rss_client/settings.php +share/moodle/blocks/rss_client/styles.php +share/moodle/blocks/search/README.txt +share/moodle/blocks/search/block_search.php +share/moodle/blocks/search/config_global.html +share/moodle/blocks/search/db/install.xml +share/moodle/blocks/search/db/upgrade.php +share/moodle/blocks/search_forums/block_search_forums.php +share/moodle/blocks/search_forums/db/mysql.php +share/moodle/blocks/search_forums/db/postgres7.php +share/moodle/blocks/search_forums/db/upgrade.php +share/moodle/blocks/search_forums/styles.php +share/moodle/blocks/section_links/block_section_links.php +share/moodle/blocks/section_links/config_instance.html +share/moodle/blocks/section_links/settings.php +share/moodle/blocks/section_links/db/mysql.php +share/moodle/blocks/section_links/db/postgres7.php +share/moodle/blocks/section_links/db/upgrade.php +share/moodle/blocks/site_main_menu/block_site_main_menu.php +share/moodle/blocks/social_activities/block_social_activities.php +share/moodle/blocks/social_activities/db/mysql.php +share/moodle/blocks/social_activities/db/postgres7.php +share/moodle/blocks/social_activities/db/upgrade.php +share/moodle/blocks/tag_flickr/block_tag_flickr.php +share/moodle/blocks/tag_flickr/config_instance.html +share/moodle/blocks/tag_youtube/block_tag_youtube.php +share/moodle/blocks/tag_youtube/config_instance.html +share/moodle/blocks/tags/block_tags.php +share/moodle/blocks/tags/config_instance.html +share/moodle/blocks/version.php +share/moodle/blog/README.txt +share/moodle/blog/blogpage.php +share/moodle/blog/edit.php +share/moodle/blog/edit_form.php +share/moodle/blog/footer.php +share/moodle/blog/header.php +share/moodle/blog/index.php +share/moodle/blog/lib.php +share/moodle/blog/preferences.html +share/moodle/blog/preferences.php +share/moodle/blog/rsslib.php +share/moodle/blog/version.php +share/moodle/calendar/event.php +share/moodle/calendar/event_delete.html +share/moodle/calendar/event_edit.html +share/moodle/calendar/event_new.html +share/moodle/calendar/event_select.html +share/moodle/calendar/export.php +share/moodle/calendar/export_basic.html +share/moodle/calendar/export_execute.php +share/moodle/calendar/index.php +share/moodle/calendar/lib.php +share/moodle/calendar/overlib.cfg.php +share/moodle/calendar/preferences.html +share/moodle/calendar/preferences.php +share/moodle/calendar/set.php +share/moodle/calendar/view.php +share/moodle/config-dist.php +share/moodle/course/category.php +share/moodle/course/delete.php +share/moodle/course/delete_category_form.php +share/moodle/course/edit.php +share/moodle/course/edit_form.php +share/moodle/course/editcategory.php +share/moodle/course/editcategory_form.php +share/moodle/course/editsection.html +share/moodle/course/editsection.php +share/moodle/course/enrol.php +share/moodle/course/format/README.txt +share/moodle/course/format/lams/config.php +share/moodle/course/format/lams/format.php +share/moodle/course/format/scorm/config.php +share/moodle/course/format/scorm/format.php +share/moodle/course/format/social/config.php +share/moodle/course/format/social/format.php +share/moodle/course/format/topics/ajax.php +share/moodle/course/format/topics/config.php +share/moodle/course/format/topics/format.php +share/moodle/course/format/weeks/ajax.php +share/moodle/course/format/weeks/config.php +share/moodle/course/format/weeks/format.php +share/moodle/course/format/weekscss/config.php +share/moodle/course/format/weekscss/format.php +share/moodle/course/import.php +share/moodle/course/import/activities/import_form.php +share/moodle/course/import/activities/index.php +share/moodle/course/import/activities/mod.php +share/moodle/course/import/groups/import_form.php +share/moodle/course/import/groups/index.php +share/moodle/course/import/groups/mod.php +share/moodle/course/importstudents.html +share/moodle/course/importstudents.php +share/moodle/course/index.php +share/moodle/course/info.php +share/moodle/course/jumpto.php +share/moodle/course/lib.php +share/moodle/course/loginas.php +share/moodle/course/mod.php +share/moodle/course/mod_delete.html +share/moodle/course/modedit.php +share/moodle/course/moodleform_mod.php +share/moodle/course/pending.php +share/moodle/course/recent.php +share/moodle/course/recent_form.php +share/moodle/course/report.php +share/moodle/course/report/log/db/access.php +share/moodle/course/report/log/graph.php +share/moodle/course/report/log/index.php +share/moodle/course/report/log/indexlive.php +share/moodle/course/report/log/lib.php +share/moodle/course/report/log/live.php +share/moodle/course/report/log/mod.php +share/moodle/course/report/log/version.php +share/moodle/course/report/outline/db/access.php +share/moodle/course/report/outline/index.php +share/moodle/course/report/outline/mod.php +share/moodle/course/report/outline/version.php +share/moodle/course/report/participation/db/access.php +share/moodle/course/report/participation/index.php +share/moodle/course/report/participation/mod.php +share/moodle/course/report/participation/version.php +share/moodle/course/report/stats/db/access.php +share/moodle/course/report/stats/graph.php +share/moodle/course/report/stats/index.php +share/moodle/course/report/stats/lib.php +share/moodle/course/report/stats/mod.php +share/moodle/course/report/stats/report.php +share/moodle/course/report/stats/version.php +share/moodle/course/request.php +share/moodle/course/request_form.php +share/moodle/course/reset.php +share/moodle/course/reset_form.php +share/moodle/course/rest.php +share/moodle/course/scales.php +share/moodle/course/search.php +share/moodle/course/simpletest/testcourselib.php +share/moodle/course/unenrol.php +share/moodle/course/user.php +share/moodle/course/view.php +share/moodle/enrol/README.txt +share/moodle/enrol/authorize/authorizenetlib.php +share/moodle/enrol/authorize/config_form.php +share/moodle/enrol/authorize/const.php +share/moodle/enrol/authorize/db/access.php +share/moodle/enrol/authorize/db/install.xml +share/moodle/enrol/authorize/db/mysql.php +share/moodle/enrol/authorize/db/postgres7.php +share/moodle/enrol/authorize/db/upgrade.php +share/moodle/enrol/authorize/enrol.php +share/moodle/enrol/authorize/enrol_form.php +share/moodle/enrol/authorize/index.php +share/moodle/enrol/authorize/localfuncs.php +share/moodle/enrol/authorize/locallib.php +share/moodle/enrol/authorize/uploadcsv.php +share/moodle/enrol/authorize/version.php +share/moodle/enrol/database/config.html +share/moodle/enrol/database/enrol.php +share/moodle/enrol/database/enrol_database_sync.php +share/moodle/enrol/enrol.class.php +share/moodle/enrol/flatfile/config.html +share/moodle/enrol/flatfile/enrol.php +share/moodle/enrol/flatfile/example.txt +share/moodle/enrol/imsenterprise/README.txt +share/moodle/enrol/imsenterprise/TODO.txt +share/moodle/enrol/imsenterprise/config.html +share/moodle/enrol/imsenterprise/enrol.php +share/moodle/enrol/imsenterprise/entv1p1_conformance_summary.html +share/moodle/enrol/imsenterprise/examples/example-grouped.xml +share/moodle/enrol/imsenterprise/examples/example-oneline.xml +share/moodle/enrol/imsenterprise/examples/example.xml +share/moodle/enrol/imsenterprise/importnow.php +share/moodle/enrol/index.html +share/moodle/enrol/ldap/config.html +share/moodle/enrol/ldap/enrol.php +share/moodle/enrol/ldap/enrol_ldap_sync.php +share/moodle/enrol/manual/config.html +share/moodle/enrol/manual/enrol.html +share/moodle/enrol/manual/enrol.php +share/moodle/enrol/mnet/allowed_courses.php +share/moodle/enrol/mnet/config.html +share/moodle/enrol/mnet/enrol.php +share/moodle/enrol/paypal/config.html +share/moodle/enrol/paypal/db/install.xml +share/moodle/enrol/paypal/db/migrate2utf8.xml +share/moodle/enrol/paypal/db/mysql.php +share/moodle/enrol/paypal/db/postgres7.php +share/moodle/enrol/paypal/db/upgrade.php +share/moodle/enrol/paypal/enrol.html +share/moodle/enrol/paypal/enrol.php +share/moodle/enrol/paypal/ipn.php +share/moodle/enrol/paypal/return.php +share/moodle/enrol/paypal/version.php +share/moodle/error/index.php +share/moodle/file.php +share/moodle/files/index.php +share/moodle/filter/activitynames/filter.php +share/moodle/filter/algebra/AlgParser.pm +share/moodle/filter/algebra/algebra2tex.pl +share/moodle/filter/algebra/algebradebug.php +share/moodle/filter/algebra/filter.php +share/moodle/filter/algebra/pix.php +share/moodle/filter/censor/README.txt +share/moodle/filter/censor/filter.php +share/moodle/filter/censor/filtersettings.php +share/moodle/filter/emailprotect/filter.php +share/moodle/filter/index.html +share/moodle/filter/mediaplugin/eolas_fix.js +share/moodle/filter/mediaplugin/filter.php +share/moodle/filter/mediaplugin/filtersettings.php +share/moodle/filter/mediaplugin/flvplayer.README.txt +share/moodle/filter/mediaplugin/flvplayer.fla.zip +share/moodle/filter/mediaplugin/flvplayer.swf +share/moodle/filter/mediaplugin/mp3player.fla.zip +share/moodle/filter/mediaplugin/mp3player.swf +share/moodle/filter/multilang/README.txt +share/moodle/filter/multilang/filter.php +share/moodle/filter/multilang/filtersettings.php +share/moodle/filter/tex/README.mimetex +share/moodle/filter/tex/displaytex.php +share/moodle/filter/tex/filter.php +share/moodle/filter/tex/filtersettings.php +share/moodle/filter/tex/latex.php +share/moodle/filter/tex/lib.php +share/moodle/filter/tex/mimetex.darwin +share/moodle/filter/tex/mimetex.exe +share/moodle/filter/tex/mimetex.freebsd +share/moodle/filter/tex/mimetex.linux +share/moodle/filter/tex/pix.php +share/moodle/filter/tex/readme_moodle.txt +share/moodle/filter/tex/texdebug.php +share/moodle/filter/tex/texed.php +share/moodle/filter/tidy/filter.php +share/moodle/grade/edit/letter/edit.php +share/moodle/grade/edit/letter/edit_form.php +share/moodle/grade/edit/letter/index.php +share/moodle/grade/edit/letter/tabs.php +share/moodle/grade/edit/outcome/course.php +share/moodle/grade/edit/outcome/course_form.html +share/moodle/grade/edit/outcome/edit.php +share/moodle/grade/edit/outcome/edit_form.php +share/moodle/grade/edit/outcome/export.php +share/moodle/grade/edit/outcome/import.php +share/moodle/grade/edit/outcome/import_outcomes_form.php +share/moodle/grade/edit/outcome/index.php +share/moodle/grade/edit/outcome/tabs.php +share/moodle/grade/edit/scale/edit.php +share/moodle/grade/edit/scale/edit_form.php +share/moodle/grade/edit/scale/index.php +share/moodle/grade/edit/settings/form.php +share/moodle/grade/edit/settings/index.php +share/moodle/grade/edit/tree/action.php +share/moodle/grade/edit/tree/calculation.php +share/moodle/grade/edit/tree/calculation_form.php +share/moodle/grade/edit/tree/category.php +share/moodle/grade/edit/tree/category_form.php +share/moodle/grade/edit/tree/functions.js +share/moodle/grade/edit/tree/grade.php +share/moodle/grade/edit/tree/grade_form.php +share/moodle/grade/edit/tree/index.php +share/moodle/grade/edit/tree/item.php +share/moodle/grade/edit/tree/item_form.php +share/moodle/grade/edit/tree/lib.php +share/moodle/grade/edit/tree/outcomeitem.php +share/moodle/grade/edit/tree/outcomeitem_form.php +share/moodle/grade/edit/tree/tree.css +share/moodle/grade/export/grade_export_form.php +share/moodle/grade/export/key.php +share/moodle/grade/export/key_form.php +share/moodle/grade/export/keymanager.php +share/moodle/grade/export/lib.php +share/moodle/grade/export/ods/db/access.php +share/moodle/grade/export/ods/dump.php +share/moodle/grade/export/ods/export.php +share/moodle/grade/export/ods/grade_export_ods.php +share/moodle/grade/export/ods/index.php +share/moodle/grade/export/ods/version.php +share/moodle/grade/export/txt/db/access.php +share/moodle/grade/export/txt/dump.php +share/moodle/grade/export/txt/export.php +share/moodle/grade/export/txt/grade_export_txt.php +share/moodle/grade/export/txt/index.php +share/moodle/grade/export/txt/version.php +share/moodle/grade/export/xls/db/access.php +share/moodle/grade/export/xls/dump.php +share/moodle/grade/export/xls/export.php +share/moodle/grade/export/xls/grade_export_xls.php +share/moodle/grade/export/xls/index.php +share/moodle/grade/export/xls/version.php +share/moodle/grade/export/xml/db/access.php +share/moodle/grade/export/xml/dump.php +share/moodle/grade/export/xml/export.php +share/moodle/grade/export/xml/grade_export_xml.php +share/moodle/grade/export/xml/index.php +share/moodle/grade/export/xml/version.php +share/moodle/grade/import/csv/db/access.php +share/moodle/grade/import/csv/index.php +share/moodle/grade/import/csv/version.php +share/moodle/grade/import/grade_import_form.php +share/moodle/grade/import/key.php +share/moodle/grade/import/key_form.php +share/moodle/grade/import/keymanager.php +share/moodle/grade/import/lib.php +share/moodle/grade/import/xml/db/access.php +share/moodle/grade/import/xml/fetch.php +share/moodle/grade/import/xml/grade_import_form.php +share/moodle/grade/import/xml/import.php +share/moodle/grade/import/xml/index.php +share/moodle/grade/import/xml/lib.php +share/moodle/grade/import/xml/version.php +share/moodle/grade/index.php +share/moodle/grade/lib.php +share/moodle/grade/querylib.php +share/moodle/grade/report/grader/README.txt +share/moodle/grade/report/grader/db/access.php +share/moodle/grade/report/grader/functions.js +share/moodle/grade/report/grader/index.php +share/moodle/grade/report/grader/lib.php +share/moodle/grade/report/grader/preferences.php +share/moodle/grade/report/grader/preferences_form.php +share/moodle/grade/report/grader/settings.php +share/moodle/grade/report/grader/styles.php +share/moodle/grade/report/grader/tabs.php +share/moodle/grade/report/grader/version.php +share/moodle/grade/report/index.php +share/moodle/grade/report/lib.php +share/moodle/grade/report/outcomes/db/access.php +share/moodle/grade/report/outcomes/index.php +share/moodle/grade/report/outcomes/version.php +share/moodle/grade/report/overview/db/access.php +share/moodle/grade/report/overview/index.php +share/moodle/grade/report/overview/lib.php +share/moodle/grade/report/overview/settings.php +share/moodle/grade/report/overview/version.php +share/moodle/grade/report/styles.css +share/moodle/grade/report/user/README.txt +share/moodle/grade/report/user/db/access.php +share/moodle/grade/report/user/index.php +share/moodle/grade/report/user/lib.php +share/moodle/grade/report/user/settings.php +share/moodle/grade/report/user/styles.php +share/moodle/grade/report/user/version.php +share/moodle/grade/simpletest/testreportlib.php +share/moodle/group/assign.php +share/moodle/group/autogroup.php +share/moodle/group/autogroup_form.php +share/moodle/group/clientlib.js +share/moodle/group/delete.php +share/moodle/group/group.php +share/moodle/group/group_form.php +share/moodle/group/grouping.php +share/moodle/group/grouping_form.php +share/moodle/group/groupings.php +share/moodle/group/index.php +share/moodle/group/lib.php +share/moodle/group/members.php +share/moodle/group/overview.php +share/moodle/group/tabs.php +share/moodle/help.php +share/moodle/index.php +share/moodle/install.php +share/moodle/install/README.txt +share/moodle/install/lang/af_utf8/installer.php +share/moodle/install/lang/ar_utf8/installer.php +share/moodle/install/lang/ast_utf8/installer.php +share/moodle/install/lang/be_utf8/installer.php +share/moodle/install/lang/bg_utf8/installer.php +share/moodle/install/lang/bn_utf8/installer.php +share/moodle/install/lang/bs_utf8/installer.php +share/moodle/install/lang/ca_utf8/installer.php +share/moodle/install/lang/cs_utf8/installer.php +share/moodle/install/lang/cy_utf8/installer.php +share/moodle/install/lang/da_utf8/installer.php +share/moodle/install/lang/de_du_utf8/installer.php +share/moodle/install/lang/de_utf8/installer.php +share/moodle/install/lang/dv_utf8/installer.php +share/moodle/install/lang/el_utf8/installer.php +share/moodle/install/lang/en/install.php +share/moodle/install/lang/en/installer.php +share/moodle/install/lang/en_us_utf8/installer.php +share/moodle/install/lang/en_utf8/installer.php +share/moodle/install/lang/es/install.php +share/moodle/install/lang/es_ar_utf8/installer.php +share/moodle/install/lang/es_es_utf8/installer.php +share/moodle/install/lang/es_mx_utf8/installer.php +share/moodle/install/lang/es_utf8/installer.php +share/moodle/install/lang/et_utf8/installer.php +share/moodle/install/lang/eu_utf8/installer.php +share/moodle/install/lang/fa_utf8/installer.php +share/moodle/install/lang/fi_utf8/installer.php +share/moodle/install/lang/fil_utf8/installer.php +share/moodle/install/lang/fr_ca_utf8/installer.php +share/moodle/install/lang/fr_utf8/installer.php +share/moodle/install/lang/ga_utf8/installer.php +share/moodle/install/lang/gl_utf8/installer.php +share/moodle/install/lang/gu_utf8/installer.php +share/moodle/install/lang/he_utf8/installer.php +share/moodle/install/lang/hi_utf8/installer.php +share/moodle/install/lang/hr_utf8/installer.php +share/moodle/install/lang/hu_utf8/installer.php +share/moodle/install/lang/hy_utf8/installer.php +share/moodle/install/lang/id_utf8/installer.php +share/moodle/install/lang/is_utf8/installer.php +share/moodle/install/lang/it_utf8/installer.php +share/moodle/install/lang/ja_utf8/installer.php +share/moodle/install/lang/ka_utf8/installer.php +share/moodle/install/lang/kk_utf8/installer.php +share/moodle/install/lang/km_utf8/installer.php +share/moodle/install/lang/kn_utf8/installer.php +share/moodle/install/lang/ko_utf8/installer.php +share/moodle/install/lang/la_utf8/installer.php +share/moodle/install/lang/lo_utf8/installer.php +share/moodle/install/lang/lt_utf8/installer.php +share/moodle/install/lang/lv_utf8/installer.php +share/moodle/install/lang/mi_tn_utf8/installer.php +share/moodle/install/lang/mi_wwow_utf8/installer.php +share/moodle/install/lang/mk_utf8/installer.php +share/moodle/install/lang/ml_utf8/installer.php +share/moodle/install/lang/mn_utf8/installer.php +share/moodle/install/lang/mr_utf8/installer.php +share/moodle/install/lang/ms_utf8/installer.php +share/moodle/install/lang/nl_utf8/installer.php +share/moodle/install/lang/nn_utf8/installer.php +share/moodle/install/lang/no_gr_utf8/installer.php +share/moodle/install/lang/no_utf8/installer.php +share/moodle/install/lang/pl_utf8/installer.php +share/moodle/install/lang/pt_br_utf8/installer.php +share/moodle/install/lang/pt_utf8/installer.php +share/moodle/install/lang/ro_utf8/installer.php +share/moodle/install/lang/ru_utf8/installer.php +share/moodle/install/lang/si_utf8/installer.php +share/moodle/install/lang/sk_utf8/installer.php +share/moodle/install/lang/sl_utf8/installer.php +share/moodle/install/lang/sm_utf8/installer.php +share/moodle/install/lang/so_utf8/installer.php +share/moodle/install/lang/sq_utf8/installer.php +share/moodle/install/lang/sr_cr_bo_utf8/installer.php +share/moodle/install/lang/sr_cr_utf8/installer.php +share/moodle/install/lang/sr_lt_utf8/installer.php +share/moodle/install/lang/sr_utf8/installer.php +share/moodle/install/lang/sv_utf8/installer.php +share/moodle/install/lang/ta_lk_utf8/installer.php +share/moodle/install/lang/ta_utf8/installer.php +share/moodle/install/lang/th_utf8/installer.php +share/moodle/install/lang/tl_utf8/installer.php +share/moodle/install/lang/to_utf8/installer.php +share/moodle/install/lang/tr_utf8/installer.php +share/moodle/install/lang/uk_utf8/installer.php +share/moodle/install/lang/ur_utf8/installer.php +share/moodle/install/lang/uz_utf8/installer.php +share/moodle/install/lang/vi_utf8/installer.php +share/moodle/install/lang/zh_cn_utf8/installer.php +share/moodle/install/lang/zh_tw_utf8/installer.php +share/moodle/install/lang/zu_utf8/installer.php +share/moodle/install/stringnames.txt +share/moodle/install/welcome.html +share/moodle/iplookup/README.txt +share/moodle/iplookup/earth.jpeg +share/moodle/iplookup/index.php +share/moodle/iplookup/marker.gif +share/moodle/lang/README.txt +share/moodle/lang/en/README.txt +share/moodle/lang/en/moodle.php +share/moodle/lang/en_utf8/README +share/moodle/lang/en_utf8/access.php +share/moodle/lang/en_utf8/activitynames.php +share/moodle/lang/en_utf8/admin.php +share/moodle/lang/en_utf8/algebra.php +share/moodle/lang/en_utf8/assignment.php +share/moodle/lang/en_utf8/auth.php +share/moodle/lang/en_utf8/auth_mnet.php +share/moodle/lang/en_utf8/block_course_list.php +share/moodle/lang/en_utf8/block_course_summary.php +share/moodle/lang/en_utf8/block_glossary_random.php +share/moodle/lang/en_utf8/block_html.php +share/moodle/lang/en_utf8/block_loancalc.php +share/moodle/lang/en_utf8/block_mentees.php +share/moodle/lang/en_utf8/block_mnet_hosts.php +share/moodle/lang/en_utf8/block_online_users.php +share/moodle/lang/en_utf8/block_quiz_results.php +share/moodle/lang/en_utf8/block_rss_client.php +share/moodle/lang/en_utf8/block_search.php +share/moodle/lang/en_utf8/block_search_forums.php +share/moodle/lang/en_utf8/block_section_links.php +share/moodle/lang/en_utf8/block_social_activities.php +share/moodle/lang/en_utf8/block_tag_flickr.php +share/moodle/lang/en_utf8/block_tag_youtube.php +share/moodle/lang/en_utf8/blog.php +share/moodle/lang/en_utf8/bulkusers.php +share/moodle/lang/en_utf8/calendar.php +share/moodle/lang/en_utf8/censor.php +share/moodle/lang/en_utf8/chat.php +share/moodle/lang/en_utf8/choice.php +share/moodle/lang/en_utf8/countries.php +share/moodle/lang/en_utf8/coursereport_log.php +share/moodle/lang/en_utf8/coursereport_outline.php +share/moodle/lang/en_utf8/coursereport_participation.php +share/moodle/lang/en_utf8/coursereport_stats.php +share/moodle/lang/en_utf8/currencies.php +share/moodle/lang/en_utf8/data.php +share/moodle/lang/en_utf8/datapreset_imagegallery.php +share/moodle/lang/en_utf8/docs/README.txt +share/moodle/lang/en_utf8/docs/licence.html +share/moodle/lang/en_utf8/docs/module_files.txt +share/moodle/lang/en_utf8/editor.php +share/moodle/lang/en_utf8/emailprotect.php +share/moodle/lang/en_utf8/enrol_authorize.php +share/moodle/lang/en_utf8/enrol_database.php +share/moodle/lang/en_utf8/enrol_flatfile.php +share/moodle/lang/en_utf8/enrol_imsenterprise.php +share/moodle/lang/en_utf8/enrol_ldap.php +share/moodle/lang/en_utf8/enrol_manual.php +share/moodle/lang/en_utf8/enrol_mnet.php +share/moodle/lang/en_utf8/enrol_paypal.php +share/moodle/lang/en_utf8/error.php +share/moodle/lang/en_utf8/exercise.php +share/moodle/lang/en_utf8/filters.php +share/moodle/lang/en_utf8/fonts/README.txt +share/moodle/lang/en_utf8/form.php +share/moodle/lang/en_utf8/forum.php +share/moodle/lang/en_utf8/glossary.php +share/moodle/lang/en_utf8/gradeexport_ods.php +share/moodle/lang/en_utf8/gradeexport_txt.php +share/moodle/lang/en_utf8/gradeexport_xls.php +share/moodle/lang/en_utf8/gradeexport_xml.php +share/moodle/lang/en_utf8/gradeimport_csv.php +share/moodle/lang/en_utf8/gradeimport_xml.php +share/moodle/lang/en_utf8/gradereport_grader.php +share/moodle/lang/en_utf8/gradereport_outcomes.php +share/moodle/lang/en_utf8/gradereport_overview.php +share/moodle/lang/en_utf8/gradereport_user.php +share/moodle/lang/en_utf8/grades.php +share/moodle/lang/en_utf8/group.php +share/moodle/lang/en_utf8/help/advancedsettings.html +share/moodle/lang/en_utf8/help/assignment/allowdeleting.html +share/moodle/lang/en_utf8/help/assignment/allowmaxfiles.html +share/moodle/lang/en_utf8/help/assignment/allownotes.html +share/moodle/lang/en_utf8/help/assignment/assignmenttype.html +share/moodle/lang/en_utf8/help/assignment/commentinline.html +share/moodle/lang/en_utf8/help/assignment/emailnotification.html +share/moodle/lang/en_utf8/help/assignment/emailteachers.html +share/moodle/lang/en_utf8/help/assignment/hideintro.html +share/moodle/lang/en_utf8/help/assignment/index.html +share/moodle/lang/en_utf8/help/assignment/mods.html +share/moodle/lang/en_utf8/help/assignment/pagesize.html +share/moodle/lang/en_utf8/help/assignment/quickgrade.html +share/moodle/lang/en_utf8/help/assignment/resubmit.html +share/moodle/lang/en_utf8/help/assignment/trackdrafts.html +share/moodle/lang/en_utf8/help/assignment/types.html +share/moodle/lang/en_utf8/help/assignroles.html +share/moodle/lang/en_utf8/help/authchange.html +share/moodle/lang/en_utf8/help/blog/index.html +share/moodle/lang/en_utf8/help/blog/publish_state.html +share/moodle/lang/en_utf8/help/bulkusers/lists.html +share/moodle/lang/en_utf8/help/bulkusers/selectedlist.html +share/moodle/lang/en_utf8/help/chat/chatting.html +share/moodle/lang/en_utf8/help/chat/index.html +share/moodle/lang/en_utf8/help/chat/mods.html +share/moodle/lang/en_utf8/help/choice/index.html +share/moodle/lang/en_utf8/help/choice/limit.html +share/moodle/lang/en_utf8/help/choice/mods.html +share/moodle/lang/en_utf8/help/choice/options.html +share/moodle/lang/en_utf8/help/choice/timerestrict.html +share/moodle/lang/en_utf8/help/cmidnumber.html +share/moodle/lang/en_utf8/help/contexts.html +share/moodle/lang/en_utf8/help/cookies.html +share/moodle/lang/en_utf8/help/cost.html +share/moodle/lang/en_utf8/help/courseavailability.html +share/moodle/lang/en_utf8/help/coursecategory.html +share/moodle/lang/en_utf8/help/coursedefaultrole.html +share/moodle/lang/en_utf8/help/courseenrollable2.html +share/moodle/lang/en_utf8/help/courseenrolmentplugins.html +share/moodle/lang/en_utf8/help/courseformats.html +share/moodle/lang/en_utf8/help/coursefullname.html +share/moodle/lang/en_utf8/help/coursegrades.html +share/moodle/lang/en_utf8/help/coursehiddensections.html +share/moodle/lang/en_utf8/help/courseidnumber.html +share/moodle/lang/en_utf8/help/coursenewsitems.html +share/moodle/lang/en_utf8/help/coursenumsections.html +share/moodle/lang/en_utf8/help/courserecent.html +share/moodle/lang/en_utf8/help/coursereports.html +share/moodle/lang/en_utf8/help/courseshortname.html +share/moodle/lang/en_utf8/help/coursestartdate.html +share/moodle/lang/en_utf8/help/courseuploadsize.html +share/moodle/lang/en_utf8/help/data/comments.html +share/moodle/lang/en_utf8/help/data/exportzip.html +share/moodle/lang/en_utf8/help/data/fieldmappings.html +share/moodle/lang/en_utf8/help/data/fields.html +share/moodle/lang/en_utf8/help/data/importcsv.html +share/moodle/lang/en_utf8/help/data/importfromfile.html +share/moodle/lang/en_utf8/help/data/index.html +share/moodle/lang/en_utf8/help/data/maxentries.html +share/moodle/lang/en_utf8/help/data/mods.html +share/moodle/lang/en_utf8/help/data/participants.html +share/moodle/lang/en_utf8/help/data/requireapproval.html +share/moodle/lang/en_utf8/help/data/requiredentries.html +share/moodle/lang/en_utf8/help/data/requiredentriestoview.html +share/moodle/lang/en_utf8/help/data/savepreset.html +share/moodle/lang/en_utf8/help/data/tags.html +share/moodle/lang/en_utf8/help/data/usepreset.html +share/moodle/lang/en_utf8/help/directorypaths.html +share/moodle/lang/en_utf8/help/editorshortcuts.html +share/moodle/lang/en_utf8/help/emoticons.html +share/moodle/lang/en_utf8/help/enrol/authorize/aba.html +share/moodle/lang/en_utf8/help/enrol/authorize/authcode.html +share/moodle/lang/en_utf8/help/enrol/authorize/captureday.html +share/moodle/lang/en_utf8/help/enrol/authorize/cvv.html +share/moodle/lang/en_utf8/help/enrol/authorize/images/aba.png +share/moodle/lang/en_utf8/help/enrol/authorize/images/cvv.png +share/moodle/lang/en_utf8/help/enrol/authorize/orderreview.html +share/moodle/lang/en_utf8/help/enrol/authorize/review.html +share/moodle/lang/en_utf8/help/enrol/authorize/uploadcsv.html +share/moodle/lang/en_utf8/help/enrol/imsenterprise/capita.html +share/moodle/lang/en_utf8/help/enrol/imsenterprise/categorisation.html +share/moodle/lang/en_utf8/help/enrol/imsenterprise/createnewcourses.html +share/moodle/lang/en_utf8/help/enrol/imsenterprise/createnewusers.html +share/moodle/lang/en_utf8/help/enrol/imsenterprise/deleteusers.html +share/moodle/lang/en_utf8/help/enrol/imsenterprise/formatoverview.html +share/moodle/lang/en_utf8/help/enrol/imsenterprise/photos.html +share/moodle/lang/en_utf8/help/enrol/imsenterprise/sourceddidfallback.html +share/moodle/lang/en_utf8/help/enrol/imsenterprise/target.html +share/moodle/lang/en_utf8/help/enrol/imsenterprise/truncatecoursecodes.html +share/moodle/lang/en_utf8/help/enrol/imsenterprise/unenrol.html +share/moodle/lang/en_utf8/help/enrolmentkey.html +share/moodle/lang/en_utf8/help/enrolperiod.html +share/moodle/lang/en_utf8/help/exercise/administration.html +share/moodle/lang/en_utf8/help/exercise/comparisonofassessments.html +share/moodle/lang/en_utf8/help/exercise/elements.html +share/moodle/lang/en_utf8/help/exercise/finalgrades.html +share/moodle/lang/en_utf8/help/exercise/grade.html +share/moodle/lang/en_utf8/help/exercise/grading.html +share/moodle/lang/en_utf8/help/exercise/gradinggrade.html +share/moodle/lang/en_utf8/help/exercise/gradingstrategy.html +share/moodle/lang/en_utf8/help/exercise/index.html +share/moodle/lang/en_utf8/help/exercise/leaguetable.html +share/moodle/lang/en_utf8/help/exercise/leaguetablenames.html +share/moodle/lang/en_utf8/help/exercise/managing.html +share/moodle/lang/en_utf8/help/exercise/mods.html +share/moodle/lang/en_utf8/help/exercise/moreinfo.html +share/moodle/lang/en_utf8/help/exercise/nelements.html +share/moodle/lang/en_utf8/help/exercise/password.html +share/moodle/lang/en_utf8/help/exercise/regrading.html +share/moodle/lang/en_utf8/help/exercise/specimen.html +share/moodle/lang/en_utf8/help/exercise/submissionofdescriptions.html +share/moodle/lang/en_utf8/help/exercise/takeownership.html +share/moodle/lang/en_utf8/help/exercise/usemax.html +share/moodle/lang/en_utf8/help/exercise/usepassword.html +share/moodle/lang/en_utf8/help/expirynotify.html +share/moodle/lang/en_utf8/help/expirynotifystudents.html +share/moodle/lang/en_utf8/help/expirythreshold.html +share/moodle/lang/en_utf8/help/extendenrol.html +share/moodle/lang/en_utf8/help/filters.html +share/moodle/lang/en_utf8/help/filters/courserole.html +share/moodle/lang/en_utf8/help/filters/date.html +share/moodle/lang/en_utf8/help/filters/globalrole.html +share/moodle/lang/en_utf8/help/filters/profilefield.html +share/moodle/lang/en_utf8/help/filters/select.html +share/moodle/lang/en_utf8/help/filters/simpleselect.html +share/moodle/lang/en_utf8/help/filters/text.html +share/moodle/lang/en_utf8/help/forcepasswordchange.html +share/moodle/lang/en_utf8/help/forum/allowdiscussions.html +share/moodle/lang/en_utf8/help/forum/assessaggregate.html +share/moodle/lang/en_utf8/help/forum/attachment.html +share/moodle/lang/en_utf8/help/forum/displayperiod.html +share/moodle/lang/en_utf8/help/forum/forumtype.html +share/moodle/lang/en_utf8/help/forum/forumtypenews.html +share/moodle/lang/en_utf8/help/forum/index.html +share/moodle/lang/en_utf8/help/forum/manageposts.html +share/moodle/lang/en_utf8/help/forum/maxattachmentsize.html +share/moodle/lang/en_utf8/help/forum/mods.html +share/moodle/lang/en_utf8/help/forum/ratings.html +share/moodle/lang/en_utf8/help/forum/rssarticles.html +share/moodle/lang/en_utf8/help/forum/rsstype.html +share/moodle/lang/en_utf8/help/forum/subscription.html +share/moodle/lang/en_utf8/help/forum/subscription2.html +share/moodle/lang/en_utf8/help/forum/trackingtype.html +share/moodle/lang/en_utf8/help/glossary/aliases.html +share/moodle/lang/en_utf8/help/glossary/aliases2.html +share/moodle/lang/en_utf8/help/glossary/allowcomments.html +share/moodle/lang/en_utf8/help/glossary/allowduplicatedentries.html +share/moodle/lang/en_utf8/help/glossary/allowprintview.html +share/moodle/lang/en_utf8/help/glossary/attachment.html +share/moodle/lang/en_utf8/help/glossary/casesensitive.html +share/moodle/lang/en_utf8/help/glossary/defaultapproval.html +share/moodle/lang/en_utf8/help/glossary/description.html +share/moodle/lang/en_utf8/help/glossary/destination.html +share/moodle/lang/en_utf8/help/glossary/displayformat.html +share/moodle/lang/en_utf8/help/glossary/editalways.html +share/moodle/lang/en_utf8/help/glossary/entbypage.html +share/moodle/lang/en_utf8/help/glossary/filetoimport.html +share/moodle/lang/en_utf8/help/glossary/fullmatch.html +share/moodle/lang/en_utf8/help/glossary/globalglossary.html +share/moodle/lang/en_utf8/help/glossary/importcategories.html +share/moodle/lang/en_utf8/help/glossary/index.html +share/moodle/lang/en_utf8/help/glossary/linkcategory.html +share/moodle/lang/en_utf8/help/glossary/mainglossary.html +share/moodle/lang/en_utf8/help/glossary/mods.html +share/moodle/lang/en_utf8/help/glossary/newentry.html +share/moodle/lang/en_utf8/help/glossary/rssarticles.html +share/moodle/lang/en_utf8/help/glossary/rsstype.html +share/moodle/lang/en_utf8/help/glossary/shows.html +share/moodle/lang/en_utf8/help/glossary/studentcanpost.html +share/moodle/lang/en_utf8/help/glossary/usedynalink.html +share/moodle/lang/en_utf8/help/glossary/usedynalinkentry.html +share/moodle/lang/en_utf8/help/grade/aggregateonlygraded.html +share/moodle/lang/en_utf8/help/grade/aggregateoutcomes.html +share/moodle/lang/en_utf8/help/grade/aggregatesubcats.html +share/moodle/lang/en_utf8/help/grade/aggregation.html +share/moodle/lang/en_utf8/help/grade/aggregationcoefcombo.html +share/moodle/lang/en_utf8/help/grade/aggregationcoefextra.html +share/moodle/lang/en_utf8/help/grade/aggregationcoefextrasum.html +share/moodle/lang/en_utf8/help/grade/aggregationcoefweight.html +share/moodle/lang/en_utf8/help/grade/aggregationposition.html +share/moodle/lang/en_utf8/help/grade/aggregationview.html +share/moodle/lang/en_utf8/help/grade/averagesdecimalpoints.html +share/moodle/lang/en_utf8/help/grade/averagesdisplaytype.html +share/moodle/lang/en_utf8/help/grade/calculation.html +share/moodle/lang/en_utf8/help/grade/category.html +share/moodle/lang/en_utf8/help/grade/decimalpoints.html +share/moodle/lang/en_utf8/help/grade/droplow.html +share/moodle/lang/en_utf8/help/grade/exceptions.html +share/moodle/lang/en_utf8/help/grade/excluded.html +share/moodle/lang/en_utf8/help/grade/exportdecimalpoints.html +share/moodle/lang/en_utf8/help/grade/feedback.html +share/moodle/lang/en_utf8/help/grade/finalgrade.html +share/moodle/lang/en_utf8/help/grade/gradeboundary.html +share/moodle/lang/en_utf8/help/grade/gradedisplaytype.html +share/moodle/lang/en_utf8/help/grade/gradeexportdisplaytype.html +share/moodle/lang/en_utf8/help/grade/gradeletter.html +share/moodle/lang/en_utf8/help/grade/grademax.html +share/moodle/lang/en_utf8/help/grade/grademin.html +share/moodle/lang/en_utf8/help/grade/gradepass.html +share/moodle/lang/en_utf8/help/grade/gradetype.html +share/moodle/lang/en_utf8/help/grade/hidden.html +share/moodle/lang/en_utf8/help/grade/hiddenuntil.html +share/moodle/lang/en_utf8/help/grade/idnumber.html +share/moodle/lang/en_utf8/help/grade/importoutcomes.html +share/moodle/lang/en_utf8/help/grade/index.html +share/moodle/lang/en_utf8/help/grade/iteminfo.html +share/moodle/lang/en_utf8/help/grade/keephigh.html +share/moodle/lang/en_utf8/help/grade/letter.html +share/moodle/lang/en_utf8/help/grade/linkedactivity.html +share/moodle/lang/en_utf8/help/grade/locked.html +share/moodle/lang/en_utf8/help/grade/lockedafter.html +share/moodle/lang/en_utf8/help/grade/meanselection.html +share/moodle/lang/en_utf8/help/grade/multfactor.html +share/moodle/lang/en_utf8/help/grade/outcomeid.html +share/moodle/lang/en_utf8/help/grade/outcomestandard.html +share/moodle/lang/en_utf8/help/grade/overridden.html +share/moodle/lang/en_utf8/help/grade/overridesitedefaultgradedisplaytype.html +share/moodle/lang/en_utf8/help/grade/plusfactor.html +share/moodle/lang/en_utf8/help/grade/preferences.html +share/moodle/lang/en_utf8/help/grade/quickgrading.html +share/moodle/lang/en_utf8/help/grade/rangesdecimalpoints.html +share/moodle/lang/en_utf8/help/grade/rangesdisplaytype.html +share/moodle/lang/en_utf8/help/grade/scaleid.html +share/moodle/lang/en_utf8/help/grade/scalestandard.html +share/moodle/lang/en_utf8/help/grade/showactivityicons.html +share/moodle/lang/en_utf8/help/grade/showaverages.html +share/moodle/lang/en_utf8/help/grade/showcalculations.html +share/moodle/lang/en_utf8/help/grade/showeyecons.html +share/moodle/lang/en_utf8/help/grade/showfeedback.html +share/moodle/lang/en_utf8/help/grade/showgroups.html +share/moodle/lang/en_utf8/help/grade/showhiddenitems.html +share/moodle/lang/en_utf8/help/grade/showlocks.html +share/moodle/lang/en_utf8/help/grade/shownumberofgrades.html +share/moodle/lang/en_utf8/help/grade/showpercentage.html +share/moodle/lang/en_utf8/help/grade/showquickfeedback.html +share/moodle/lang/en_utf8/help/grade/showranges.html +share/moodle/lang/en_utf8/help/grade/showrank.html +share/moodle/lang/en_utf8/help/grade/showuseridnumber.html +share/moodle/lang/en_utf8/help/grade/student.html +share/moodle/lang/en_utf8/help/grade/studentsperpage.html +share/moodle/lang/en_utf8/help/grade/synclegacygrades.html +share/moodle/lang/en_utf8/help/grade/teacher.html +share/moodle/lang/en_utf8/help/grade/userkey.html +share/moodle/lang/en_utf8/help/grade/weight.html +share/moodle/lang/en_utf8/help/groupenrolmentkey.html +share/moodle/lang/en_utf8/help/groupextendenrol.html +share/moodle/lang/en_utf8/help/grouping.html +share/moodle/lang/en_utf8/help/groupmembersonly.html +share/moodle/lang/en_utf8/help/groupmode.html +share/moodle/lang/en_utf8/help/groupmodeforce.html +share/moodle/lang/en_utf8/help/grouprestore.html +share/moodle/lang/en_utf8/help/guestaccess.html +share/moodle/lang/en_utf8/help/hiddenassign.html +share/moodle/lang/en_utf8/help/hotpot/addquizchain.html +share/moodle/lang/en_utf8/help/hotpot/analysistable.html +share/moodle/lang/en_utf8/help/hotpot/clickreporting.html +share/moodle/lang/en_utf8/help/hotpot/clickreporttable.html +share/moodle/lang/en_utf8/help/hotpot/forceplugins.html +share/moodle/lang/en_utf8/help/hotpot/index.html +share/moodle/lang/en_utf8/help/hotpot/mediaplayers.html +share/moodle/lang/en_utf8/help/hotpot/mods.html +share/moodle/lang/en_utf8/help/hotpot/navigation.html +share/moodle/lang/en_utf8/help/hotpot/outputformat.html +share/moodle/lang/en_utf8/help/hotpot/removegradeitem.html +share/moodle/lang/en_utf8/help/hotpot/reportcontent.html +share/moodle/lang/en_utf8/help/hotpot/reportformat.html +share/moodle/lang/en_utf8/help/hotpot/responsestable.html +share/moodle/lang/en_utf8/help/hotpot/shownextquiz.html +share/moodle/lang/en_utf8/help/hotpot/studentfeedback.html +share/moodle/lang/en_utf8/help/hotpot/updatequizchain.html +share/moodle/lang/en_utf8/help/html.html +share/moodle/lang/en_utf8/help/index.html +share/moodle/lang/en_utf8/help/install.html +share/moodle/lang/en_utf8/help/interestslist.html +share/moodle/lang/en_utf8/help/journal/index.html +share/moodle/lang/en_utf8/help/journal/mods.html +share/moodle/lang/en_utf8/help/label/mods.html +share/moodle/lang/en_utf8/help/langedit.html +share/moodle/lang/en_utf8/help/langpackages.html +share/moodle/lang/en_utf8/help/langswitchstorage.html +share/moodle/lang/en_utf8/help/lesson/activitylink.html +share/moodle/lang/en_utf8/help/lesson/bgcolor.html +share/moodle/lang/en_utf8/help/lesson/custom.html +share/moodle/lang/en_utf8/help/lesson/deleteattempts.html +share/moodle/lang/en_utf8/help/lesson/dependency.html +share/moodle/lang/en_utf8/help/lesson/displayleft.html +share/moodle/lang/en_utf8/help/lesson/feedback.html +share/moodle/lang/en_utf8/help/lesson/grade.html +share/moodle/lang/en_utf8/help/lesson/handlingofretakes.html +share/moodle/lang/en_utf8/help/lesson/height.html +share/moodle/lang/en_utf8/help/lesson/highscores.html +share/moodle/lang/en_utf8/help/lesson/import.html +share/moodle/lang/en_utf8/help/lesson/importppt.html +share/moodle/lang/en_utf8/help/lesson/index.html +share/moodle/lang/en_utf8/help/lesson/jumpto.html +share/moodle/lang/en_utf8/help/lesson/lessondefault.html +share/moodle/lang/en_utf8/help/lesson/maxanswers.html +share/moodle/lang/en_utf8/help/lesson/maxattempts.html +share/moodle/lang/en_utf8/help/lesson/maxhighscores.html +share/moodle/lang/en_utf8/help/lesson/maxpages.html +share/moodle/lang/en_utf8/help/lesson/maxtime.html +share/moodle/lang/en_utf8/help/lesson/mediafile.html +share/moodle/lang/en_utf8/help/lesson/mediafilestudent.html +share/moodle/lang/en_utf8/help/lesson/minquestions.html +share/moodle/lang/en_utf8/help/lesson/modattempts.html +share/moodle/lang/en_utf8/help/lesson/mods.html +share/moodle/lang/en_utf8/help/lesson/nextpageaction.html +share/moodle/lang/en_utf8/help/lesson/ongoing.html +share/moodle/lang/en_utf8/help/lesson/overview.html +share/moodle/lang/en_utf8/help/lesson/password.html +share/moodle/lang/en_utf8/help/lesson/practice.html +share/moodle/lang/en_utf8/help/lesson/progressbar.html +share/moodle/lang/en_utf8/help/lesson/questionoption.html +share/moodle/lang/en_utf8/help/lesson/questiontypes.html +share/moodle/lang/en_utf8/help/lesson/retake.html +share/moodle/lang/en_utf8/help/lesson/review.html +share/moodle/lang/en_utf8/help/lesson/slideshow.html +share/moodle/lang/en_utf8/help/lesson/timed.html +share/moodle/lang/en_utf8/help/lesson/useeditor.html +share/moodle/lang/en_utf8/help/lesson/usepassword.html +share/moodle/lang/en_utf8/help/lesson/width.html +share/moodle/lang/en_utf8/help/markdown.html +share/moodle/lang/en_utf8/help/metacourse.html +share/moodle/lang/en_utf8/help/mods.html +share/moodle/lang/en_utf8/help/newpassword.html +share/moodle/lang/en_utf8/help/notes/status.html +share/moodle/lang/en_utf8/help/overrides.html +share/moodle/lang/en_utf8/help/participantswithselectedusers.html +share/moodle/lang/en_utf8/help/participationreport.html +share/moodle/lang/en_utf8/help/permissions.html +share/moodle/lang/en_utf8/help/picture.html +share/moodle/lang/en_utf8/help/profilevisible.html +share/moodle/lang/en_utf8/help/qtype_multianswer/multianswer.html +share/moodle/lang/en_utf8/help/qtype_multichoice/multichoice.html +share/moodle/lang/en_utf8/help/qtype_truefalse/truefalse.html +share/moodle/lang/en_utf8/help/question/categories.html +share/moodle/lang/en_utf8/help/question/categorycontexts.html +share/moodle/lang/en_utf8/help/question/categoryparent.html +share/moodle/lang/en_utf8/help/question/permissions.html +share/moodle/lang/en_utf8/help/questions.html +share/moodle/lang/en_utf8/help/quiz/adaptive.html +share/moodle/lang/en_utf8/help/quiz/analysisdownload.html +share/moodle/lang/en_utf8/help/quiz/analysisoptions.html +share/moodle/lang/en_utf8/help/quiz/attempts.html +share/moodle/lang/en_utf8/help/quiz/browsersecurity.html +share/moodle/lang/en_utf8/help/quiz/calculated.html +share/moodle/lang/en_utf8/help/quiz/categories.html +share/moodle/lang/en_utf8/help/quiz/categories_edit.html +share/moodle/lang/en_utf8/help/quiz/correctanswers.html +share/moodle/lang/en_utf8/help/quiz/createmultiple.html +share/moodle/lang/en_utf8/help/quiz/decimalpoints.html +share/moodle/lang/en_utf8/help/quiz/description.html +share/moodle/lang/en_utf8/help/quiz/discrimination.html +share/moodle/lang/en_utf8/help/quiz/essay.html +share/moodle/lang/en_utf8/help/quiz/export.html +share/moodle/lang/en_utf8/help/quiz/exportcategory.html +share/moodle/lang/en_utf8/help/quiz/feedback.html +share/moodle/lang/en_utf8/help/quiz/formataiken.html +share/moodle/lang/en_utf8/help/quiz/formatctm.html +share/moodle/lang/en_utf8/help/quiz/formatgift.html +share/moodle/lang/en_utf8/help/quiz/formatwebct.html +share/moodle/lang/en_utf8/help/quiz/formatxml.html +share/moodle/lang/en_utf8/help/quiz/generalfeedback.html +share/moodle/lang/en_utf8/help/quiz/grademethod.html +share/moodle/lang/en_utf8/help/quiz/import.html +share/moodle/lang/en_utf8/help/quiz/importcategory.html +share/moodle/lang/en_utf8/help/quiz/index.html +share/moodle/lang/en_utf8/help/quiz/itemanalysis.html +share/moodle/lang/en_utf8/help/quiz/match.html +share/moodle/lang/en_utf8/help/quiz/matchgrades.html +share/moodle/lang/en_utf8/help/quiz/matchshuffle.html +share/moodle/lang/en_utf8/help/quiz/maxgrade.html +share/moodle/lang/en_utf8/help/quiz/mods.html +share/moodle/lang/en_utf8/help/quiz/multianswer.html +share/moodle/lang/en_utf8/help/quiz/multichoice.html +share/moodle/lang/en_utf8/help/quiz/multichoiceshuffle.html +share/moodle/lang/en_utf8/help/quiz/numerical.html +share/moodle/lang/en_utf8/help/quiz/overallfeedback.html +share/moodle/lang/en_utf8/help/quiz/overviewdownload.html +share/moodle/lang/en_utf8/help/quiz/penalty.html +share/moodle/lang/en_utf8/help/quiz/penaltyscheme.html +share/moodle/lang/en_utf8/help/quiz/popup.html +share/moodle/lang/en_utf8/help/quiz/questiondatasets.html +share/moodle/lang/en_utf8/help/quiz/questionsperpage.html +share/moodle/lang/en_utf8/help/quiz/questiontext.html +share/moodle/lang/en_utf8/help/quiz/questiontypes.html +share/moodle/lang/en_utf8/help/quiz/random.html +share/moodle/lang/en_utf8/help/quiz/randomsamatch.html +share/moodle/lang/en_utf8/help/quiz/reorderingtool.html +share/moodle/lang/en_utf8/help/quiz/repeatattempts.html +share/moodle/lang/en_utf8/help/quiz/requirepassword.html +share/moodle/lang/en_utf8/help/quiz/requiresubnet.html +share/moodle/lang/en_utf8/help/quiz/responsesdownload.html +share/moodle/lang/en_utf8/help/quiz/responsesoptions.html +share/moodle/lang/en_utf8/help/quiz/review.html +share/moodle/lang/en_utf8/help/quiz/review2.html +share/moodle/lang/en_utf8/help/quiz/reviewoptions.html +share/moodle/lang/en_utf8/help/quiz/rqp.html +share/moodle/lang/en_utf8/help/quiz/shortanswer.html +share/moodle/lang/en_utf8/help/quiz/shuffleanswers.html +share/moodle/lang/en_utf8/help/quiz/shufflequestions.html +share/moodle/lang/en_utf8/help/quiz/shufflewithin.html +share/moodle/lang/en_utf8/help/quiz/stoponerror.html +share/moodle/lang/en_utf8/help/quiz/timedelay1.html +share/moodle/lang/en_utf8/help/quiz/timedelay2.html +share/moodle/lang/en_utf8/help/quiz/timelimit.html +share/moodle/lang/en_utf8/help/quiz/timeopen.html +share/moodle/lang/en_utf8/help/quiz/truefalse.html +share/moodle/lang/en_utf8/help/reading.html +share/moodle/lang/en_utf8/help/recaptcha.html +share/moodle/lang/en_utf8/help/requiredelement.html +share/moodle/lang/en_utf8/help/resource/deploy.html +share/moodle/lang/en_utf8/help/resource/forcedownload.html +share/moodle/lang/en_utf8/help/resource/frameifpossible.html +share/moodle/lang/en_utf8/help/resource/imsparameters.html +share/moodle/lang/en_utf8/help/resource/index.html +share/moodle/lang/en_utf8/help/resource/mods.html +share/moodle/lang/en_utf8/help/resource/parameters.html +share/moodle/lang/en_utf8/help/resource/summary.html +share/moodle/lang/en_utf8/help/resource/type/directory.html +share/moodle/lang/en_utf8/help/resource/type/file.html +share/moodle/lang/en_utf8/help/resource/type/html.html +share/moodle/lang/en_utf8/help/resource/type/ims.html +share/moodle/lang/en_utf8/help/resource/type/label.html +share/moodle/lang/en_utf8/help/resource/type/text.html +share/moodle/lang/en_utf8/help/resource/types.html +share/moodle/lang/en_utf8/help/resource/window.html +share/moodle/lang/en_utf8/help/richtext.html +share/moodle/lang/en_utf8/help/rolerenaming.html +share/moodle/lang/en_utf8/help/roles.html +share/moodle/lang/en_utf8/help/scales.html +share/moodle/lang/en_utf8/help/scorm/advanced.html +share/moodle/lang/en_utf8/help/scorm/autocontinue.html +share/moodle/lang/en_utf8/help/scorm/browsemode.html +share/moodle/lang/en_utf8/help/scorm/grademethod.html +share/moodle/lang/en_utf8/help/scorm/hidebrowse.html +share/moodle/lang/en_utf8/help/scorm/index.html +share/moodle/lang/en_utf8/help/scorm/maxattempt.html +share/moodle/lang/en_utf8/help/scorm/maxgrade.html +share/moodle/lang/en_utf8/help/scorm/mods.html +share/moodle/lang/en_utf8/help/scorm/package.html +share/moodle/lang/en_utf8/help/scorm/size.html +share/moodle/lang/en_utf8/help/scorm/skipview.html +share/moodle/lang/en_utf8/help/scorm/stagesize.html +share/moodle/lang/en_utf8/help/scorm/summary.html +share/moodle/lang/en_utf8/help/scorm/whatgrade.html +share/moodle/lang/en_utf8/help/scorm/window.html +share/moodle/lang/en_utf8/help/search.html +share/moodle/lang/en_utf8/help/sitefilesused.html +share/moodle/lang/en_utf8/help/summaries.html +share/moodle/lang/en_utf8/help/survey/index.html +share/moodle/lang/en_utf8/help/survey/mods.html +share/moodle/lang/en_utf8/help/surveys.html +share/moodle/lang/en_utf8/help/switchrole.html +share/moodle/lang/en_utf8/help/teachers.html +share/moodle/lang/en_utf8/help/text.html +share/moodle/lang/en_utf8/help/textformat.html +share/moodle/lang/en_utf8/help/uploadgroups.html +share/moodle/lang/en_utf8/help/uploadpictures.html +share/moodle/lang/en_utf8/help/uploadusers.html +share/moodle/lang/en_utf8/help/uploadusers2.html +share/moodle/lang/en_utf8/help/userkey/keyiprestriction.html +share/moodle/lang/en_utf8/help/userkey/keyvaliduntil.html +share/moodle/lang/en_utf8/help/wiki/checklinks.html +share/moodle/lang/en_utf8/help/wiki/ewikiacceptbinary.html +share/moodle/lang/en_utf8/help/wiki/howtowiki.html +share/moodle/lang/en_utf8/help/wiki/htmlmode.html +share/moodle/lang/en_utf8/help/wiki/index.html +share/moodle/lang/en_utf8/help/wiki/initialcontent.html +share/moodle/lang/en_utf8/help/wiki/mods.html +share/moodle/lang/en_utf8/help/wiki/removepages.html +share/moodle/lang/en_utf8/help/wiki/revertauthorfieldpattern.html +share/moodle/lang/en_utf8/help/wiki/revertpages.html +share/moodle/lang/en_utf8/help/wiki/setpageflags.html +share/moodle/lang/en_utf8/help/wiki/strippages.html +share/moodle/lang/en_utf8/help/wiki/studentadminoptions.html +share/moodle/lang/en_utf8/help/wiki/wikilinkoptions.html +share/moodle/lang/en_utf8/help/wiki/wikiname.html +share/moodle/lang/en_utf8/help/wiki/wikitype.html +share/moodle/lang/en_utf8/help/wiki/wikiusage.html +share/moodle/lang/en_utf8/help/workshop/addcommenttobank.html +share/moodle/lang/en_utf8/help/workshop/addingacomment.html +share/moodle/lang/en_utf8/help/workshop/agreeassessments.html +share/moodle/lang/en_utf8/help/workshop/analysisofassessments.html +share/moodle/lang/en_utf8/help/workshop/anonymous.html +share/moodle/lang/en_utf8/help/workshop/assessmentend.html +share/moodle/lang/en_utf8/help/workshop/assessmentofexamples.html +share/moodle/lang/en_utf8/help/workshop/assessmentstart.html +share/moodle/lang/en_utf8/help/workshop/assignmenttype.html +share/moodle/lang/en_utf8/help/workshop/breakdownoffinalgrade.html +share/moodle/lang/en_utf8/help/workshop/calculatingfinalgrade.html +share/moodle/lang/en_utf8/help/workshop/comparisonofassessments.html +share/moodle/lang/en_utf8/help/workshop/editingacomment.html +share/moodle/lang/en_utf8/help/workshop/elements.html +share/moodle/lang/en_utf8/help/workshop/finalgrades.html +share/moodle/lang/en_utf8/help/workshop/grade.html +share/moodle/lang/en_utf8/help/workshop/grading.html +share/moodle/lang/en_utf8/help/workshop/gradingassessments.html +share/moodle/lang/en_utf8/help/workshop/gradinggrade.html +share/moodle/lang/en_utf8/help/workshop/gradingstrategy.html +share/moodle/lang/en_utf8/help/workshop/gradingsubmissions.html +share/moodle/lang/en_utf8/help/workshop/includeself.html +share/moodle/lang/en_utf8/help/workshop/includeteachersgrade.html +share/moodle/lang/en_utf8/help/workshop/index.html +share/moodle/lang/en_utf8/help/workshop/leaguetable.html +share/moodle/lang/en_utf8/help/workshop/managing.html +share/moodle/lang/en_utf8/help/workshop/managing2.html +share/moodle/lang/en_utf8/help/workshop/mods.html +share/moodle/lang/en_utf8/help/workshop/nassessmentsofstudentsubmissions.html +share/moodle/lang/en_utf8/help/workshop/nassessmentsofteachersexamples.html +share/moodle/lang/en_utf8/help/workshop/nattachments.html +share/moodle/lang/en_utf8/help/workshop/nelements.html +share/moodle/lang/en_utf8/help/workshop/overallocation.html +share/moodle/lang/en_utf8/help/workshop/password.html +share/moodle/lang/en_utf8/help/workshop/regrading.html +share/moodle/lang/en_utf8/help/workshop/releasegrades.html +share/moodle/lang/en_utf8/help/workshop/resubmit.html +share/moodle/lang/en_utf8/help/workshop/selfassessment.html +share/moodle/lang/en_utf8/help/workshop/showinggrades.html +share/moodle/lang/en_utf8/help/workshop/specimen.html +share/moodle/lang/en_utf8/help/workshop/submissionend.html +share/moodle/lang/en_utf8/help/workshop/submissionofexamples.html +share/moodle/lang/en_utf8/help/workshop/submissionstart.html +share/moodle/lang/en_utf8/help/workshop/teacherweight.html +share/moodle/lang/en_utf8/help/workshop/ungradedassessments.html +share/moodle/lang/en_utf8/help/workshop/ungradedassessments_student.html +share/moodle/lang/en_utf8/help/workshop/ungradedassessments_teacher.html +share/moodle/lang/en_utf8/help/workshop/usepassword.html +share/moodle/lang/en_utf8/help/writing.html +share/moodle/lang/en_utf8/hotpot.php +share/moodle/lang/en_utf8/imscc.php +share/moodle/lang/en_utf8/install.php +share/moodle/lang/en_utf8/journal.php +share/moodle/lang/en_utf8/label.php +share/moodle/lang/en_utf8/lams.php +share/moodle/lang/en_utf8/langconfig.php +share/moodle/lang/en_utf8/lesson.php +share/moodle/lang/en_utf8/mediaplugin.php +share/moodle/lang/en_utf8/message.php +share/moodle/lang/en_utf8/mimetypes.php +share/moodle/lang/en_utf8/mnet.php +share/moodle/lang/en_utf8/moodle.org.php +share/moodle/lang/en_utf8/moodle.php +share/moodle/lang/en_utf8/multilang.php +share/moodle/lang/en_utf8/my.php +share/moodle/lang/en_utf8/notes.php +share/moodle/lang/en_utf8/pix.php +share/moodle/lang/en_utf8/qformat_gift.php +share/moodle/lang/en_utf8/qformat_xml.php +share/moodle/lang/en_utf8/qtype_calculated.php +share/moodle/lang/en_utf8/qtype_datasetdependent.php +share/moodle/lang/en_utf8/qtype_match.php +share/moodle/lang/en_utf8/qtype_multianswer.php +share/moodle/lang/en_utf8/qtype_multichoice.php +share/moodle/lang/en_utf8/qtype_numerical.php +share/moodle/lang/en_utf8/qtype_random.php +share/moodle/lang/en_utf8/qtype_randomsamatch.php +share/moodle/lang/en_utf8/qtype_shortanswer.php +share/moodle/lang/en_utf8/qtype_truefalse.php +share/moodle/lang/en_utf8/question.php +share/moodle/lang/en_utf8/quiz.php +share/moodle/lang/en_utf8/quiz_analysis.php +share/moodle/lang/en_utf8/quiz_grading.php +share/moodle/lang/en_utf8/quiz_overview.php +share/moodle/lang/en_utf8/quiz_regrade.php +share/moodle/lang/en_utf8/quiz_responses.php +share/moodle/lang/en_utf8/report_courseoverview.php +share/moodle/lang/en_utf8/report_security.php +share/moodle/lang/en_utf8/report_spamcleaner.php +share/moodle/lang/en_utf8/report_unittest.php +share/moodle/lang/en_utf8/resource.php +share/moodle/lang/en_utf8/role.php +share/moodle/lang/en_utf8/scorm.php +share/moodle/lang/en_utf8/search.php +share/moodle/lang/en_utf8/simpletest.php +share/moodle/lang/en_utf8/survey.php +share/moodle/lang/en_utf8/tag.php +share/moodle/lang/en_utf8/tex.php +share/moodle/lang/en_utf8/timezones.php +share/moodle/lang/en_utf8/userkey.php +share/moodle/lang/en_utf8/wiki.php +share/moodle/lang/en_utf8/workshop.php +share/moodle/lang/en_utf8/xmldb.php +share/moodle/lib/accesslib.php +share/moodle/lib/adminlib.php +share/moodle/lib/adodb/adodb-active-record.inc.php +share/moodle/lib/adodb/adodb-csvlib.inc.php +share/moodle/lib/adodb/adodb-datadict.inc.php +share/moodle/lib/adodb/adodb-error.inc.php +share/moodle/lib/adodb/adodb-errorhandler.inc.php +share/moodle/lib/adodb/adodb-errorpear.inc.php +share/moodle/lib/adodb/adodb-exceptions.inc.php +share/moodle/lib/adodb/adodb-iterator.inc.php +share/moodle/lib/adodb/adodb-lib.inc.php +share/moodle/lib/adodb/adodb-memcache.lib.inc.php +share/moodle/lib/adodb/adodb-pager.inc.php +share/moodle/lib/adodb/adodb-pear.inc.php +share/moodle/lib/adodb/adodb-perf.inc.php +share/moodle/lib/adodb/adodb-php4.inc.php +share/moodle/lib/adodb/adodb-time.inc.php +share/moodle/lib/adodb/adodb-xmlschema.inc.php +share/moodle/lib/adodb/adodb-xmlschema03.inc.php +share/moodle/lib/adodb/adodb.inc.php +share/moodle/lib/adodb/datadict/datadict-access.inc.php +share/moodle/lib/adodb/datadict/datadict-db2.inc.php +share/moodle/lib/adodb/datadict/datadict-firebird.inc.php +share/moodle/lib/adodb/datadict/datadict-generic.inc.php +share/moodle/lib/adodb/datadict/datadict-ibase.inc.php +share/moodle/lib/adodb/datadict/datadict-informix.inc.php +share/moodle/lib/adodb/datadict/datadict-mssql.inc.php +share/moodle/lib/adodb/datadict/datadict-mysql.inc.php +share/moodle/lib/adodb/datadict/datadict-oci8.inc.php +share/moodle/lib/adodb/datadict/datadict-postgres.inc.php +share/moodle/lib/adodb/datadict/datadict-sapdb.inc.php +share/moodle/lib/adodb/datadict/datadict-sybase.inc.php +share/moodle/lib/adodb/drivers/adodb-access.inc.php +share/moodle/lib/adodb/drivers/adodb-ado.inc.php +share/moodle/lib/adodb/drivers/adodb-ado5.inc.php +share/moodle/lib/adodb/drivers/adodb-ado_access.inc.php +share/moodle/lib/adodb/drivers/adodb-ado_mssql.inc.php +share/moodle/lib/adodb/drivers/adodb-borland_ibase.inc.php +share/moodle/lib/adodb/drivers/adodb-csv.inc.php +share/moodle/lib/adodb/drivers/adodb-db2.inc.php +share/moodle/lib/adodb/drivers/adodb-fbsql.inc.php +share/moodle/lib/adodb/drivers/adodb-firebird.inc.php +share/moodle/lib/adodb/drivers/adodb-ibase.inc.php +share/moodle/lib/adodb/drivers/adodb-informix.inc.php +share/moodle/lib/adodb/drivers/adodb-informix72.inc.php +share/moodle/lib/adodb/drivers/adodb-ldap.inc.php +share/moodle/lib/adodb/drivers/adodb-mssql.inc.php +share/moodle/lib/adodb/drivers/adodb-mssql_n.inc.php +share/moodle/lib/adodb/drivers/adodb-mssqlpo.inc.php +share/moodle/lib/adodb/drivers/adodb-mysql.inc.php +share/moodle/lib/adodb/drivers/adodb-mysqli.inc.php +share/moodle/lib/adodb/drivers/adodb-mysqlt.inc.php +share/moodle/lib/adodb/drivers/adodb-netezza.inc.php +share/moodle/lib/adodb/drivers/adodb-oci8.inc.php +share/moodle/lib/adodb/drivers/adodb-oci805.inc.php +share/moodle/lib/adodb/drivers/adodb-oci8po.inc.php +share/moodle/lib/adodb/drivers/adodb-odbc.inc.php +share/moodle/lib/adodb/drivers/adodb-odbc_db2.inc.php +share/moodle/lib/adodb/drivers/adodb-odbc_mssql.inc.php +share/moodle/lib/adodb/drivers/adodb-odbc_oracle.inc.php +share/moodle/lib/adodb/drivers/adodb-odbtp.inc.php +share/moodle/lib/adodb/drivers/adodb-odbtp_unicode.inc.php +share/moodle/lib/adodb/drivers/adodb-oracle.inc.php +share/moodle/lib/adodb/drivers/adodb-pdo.inc.php +share/moodle/lib/adodb/drivers/adodb-pdo_mssql.inc.php +share/moodle/lib/adodb/drivers/adodb-pdo_mysql.inc.php +share/moodle/lib/adodb/drivers/adodb-pdo_oci.inc.php +share/moodle/lib/adodb/drivers/adodb-pdo_pgsql.inc.php +share/moodle/lib/adodb/drivers/adodb-postgres.inc.php +share/moodle/lib/adodb/drivers/adodb-postgres64.inc.php +share/moodle/lib/adodb/drivers/adodb-postgres7.inc.php +share/moodle/lib/adodb/drivers/adodb-postgres8.inc.php +share/moodle/lib/adodb/drivers/adodb-proxy.inc.php +share/moodle/lib/adodb/drivers/adodb-sapdb.inc.php +share/moodle/lib/adodb/drivers/adodb-sqlanywhere.inc.php +share/moodle/lib/adodb/drivers/adodb-sqlite.inc.php +share/moodle/lib/adodb/drivers/adodb-sqlitepo.inc.php +share/moodle/lib/adodb/drivers/adodb-sybase.inc.php +share/moodle/lib/adodb/drivers/adodb-sybase_ase.inc.php +share/moodle/lib/adodb/drivers/adodb-vfp.inc.php +share/moodle/lib/adodb/index.html +share/moodle/lib/adodb/lang/adodb-ar.inc.php +share/moodle/lib/adodb/lang/adodb-bg.inc.php +share/moodle/lib/adodb/lang/adodb-bgutf8.inc.php +share/moodle/lib/adodb/lang/adodb-ca.inc.php +share/moodle/lib/adodb/lang/adodb-cn.inc.php +share/moodle/lib/adodb/lang/adodb-cz.inc.php +share/moodle/lib/adodb/lang/adodb-da.inc.php +share/moodle/lib/adodb/lang/adodb-de.inc.php +share/moodle/lib/adodb/lang/adodb-en.inc.php +share/moodle/lib/adodb/lang/adodb-es.inc.php +share/moodle/lib/adodb/lang/adodb-esperanto.inc.php +share/moodle/lib/adodb/lang/adodb-fr.inc.php +share/moodle/lib/adodb/lang/adodb-hu.inc.php +share/moodle/lib/adodb/lang/adodb-it.inc.php +share/moodle/lib/adodb/lang/adodb-nl.inc.php +share/moodle/lib/adodb/lang/adodb-pl.inc.php +share/moodle/lib/adodb/lang/adodb-pt-br.inc.php +share/moodle/lib/adodb/lang/adodb-ro.inc.php +share/moodle/lib/adodb/lang/adodb-ru1251.inc.php +share/moodle/lib/adodb/lang/adodb-sv.inc.php +share/moodle/lib/adodb/lang/adodb-uk1251.inc.php +share/moodle/lib/adodb/lang/adodb_th.inc.php +share/moodle/lib/adodb/license.txt +share/moodle/lib/adodb/perf/perf-db2.inc.php +share/moodle/lib/adodb/perf/perf-informix.inc.php +share/moodle/lib/adodb/perf/perf-mssql.inc.php +share/moodle/lib/adodb/perf/perf-mysql.inc.php +share/moodle/lib/adodb/perf/perf-oci8.inc.php +share/moodle/lib/adodb/perf/perf-postgres.inc.php +share/moodle/lib/adodb/pivottable.inc.php +share/moodle/lib/adodb/readme.txt +share/moodle/lib/adodb/readme_moodle.txt +share/moodle/lib/adodb/rsfilter.inc.php +share/moodle/lib/adodb/session/adodb-compress-bzip2.php +share/moodle/lib/adodb/session/adodb-compress-gzip.php +share/moodle/lib/adodb/session/adodb-cryptsession.php +share/moodle/lib/adodb/session/adodb-cryptsession2.php +share/moodle/lib/adodb/session/adodb-encrypt-mcrypt.php +share/moodle/lib/adodb/session/adodb-encrypt-md5.php +share/moodle/lib/adodb/session/adodb-encrypt-secret.php +share/moodle/lib/adodb/session/adodb-encrypt-sha1.php +share/moodle/lib/adodb/session/adodb-sess.txt +share/moodle/lib/adodb/session/adodb-session-clob.php +share/moodle/lib/adodb/session/adodb-session-clob2.php +share/moodle/lib/adodb/session/adodb-session.php +share/moodle/lib/adodb/session/adodb-session2.php +share/moodle/lib/adodb/session/adodb-sessions.mysql.sql +share/moodle/lib/adodb/session/adodb-sessions.oracle.clob.sql +share/moodle/lib/adodb/session/adodb-sessions.oracle.sql +share/moodle/lib/adodb/session/crypt.inc.php +share/moodle/lib/adodb/session/old/adodb-cryptsession.php +share/moodle/lib/adodb/session/old/adodb-session-clob.php +share/moodle/lib/adodb/session/old/adodb-session.php +share/moodle/lib/adodb/session/old/crypt.inc.php +share/moodle/lib/adodb/session/session_schema.xml +share/moodle/lib/adodb/session/session_schema2.xml +share/moodle/lib/adodb/toexport.inc.php +share/moodle/lib/adodb/tohtml.inc.php +share/moodle/lib/adodb/xmlschema.dtd +share/moodle/lib/adodb/xmlschema03.dtd +share/moodle/lib/adodb/xsl/convert-0.1-0.2.xsl +share/moodle/lib/adodb/xsl/convert-0.1-0.3.xsl +share/moodle/lib/adodb/xsl/convert-0.2-0.1.xsl +share/moodle/lib/adodb/xsl/convert-0.2-0.3.xsl +share/moodle/lib/adodb/xsl/remove-0.2.xsl +share/moodle/lib/adodb/xsl/remove-0.3.xsl +share/moodle/lib/ajax/ajaxcourse.js +share/moodle/lib/ajax/ajaxlib.php +share/moodle/lib/ajax/block_classes.js +share/moodle/lib/ajax/section_classes.js +share/moodle/lib/authlib.php +share/moodle/lib/base32.php +share/moodle/lib/bennu/CHANGELOG.txt +share/moodle/lib/bennu/COPYRIGHT.txt +share/moodle/lib/bennu/LICENSE.txt +share/moodle/lib/bennu/README.txt +share/moodle/lib/bennu/TODO.txt +share/moodle/lib/bennu/bennu.class.php +share/moodle/lib/bennu/bennu.inc.php +share/moodle/lib/bennu/iCalendar_components.php +share/moodle/lib/bennu/iCalendar_parameters.php +share/moodle/lib/bennu/iCalendar_properties.php +share/moodle/lib/bennu/iCalendar_rfc2445.php +share/moodle/lib/blocklib.php +share/moodle/lib/componentlib.class.php +share/moodle/lib/cookieless.php +share/moodle/lib/cookies.js +share/moodle/lib/cssconstants.php +share/moodle/lib/csshover.htc +share/moodle/lib/csvlib.class.php +share/moodle/lib/customcheckslib.php +share/moodle/lib/datalib.php +share/moodle/lib/db/access.php +share/moodle/lib/db/events.php +share/moodle/lib/db/index.html +share/moodle/lib/db/install.xml +share/moodle/lib/db/mysql.php +share/moodle/lib/db/postgres7.php +share/moodle/lib/db/upgrade.php +share/moodle/lib/db/upgradelib.php +share/moodle/lib/ddllib.php +share/moodle/lib/default.ttf +share/moodle/lib/deprecatedlib.php +share/moodle/lib/dmllib.php +share/moodle/lib/dropdown.js +share/moodle/lib/eaccelerator.class.php +share/moodle/lib/editor/htmlarea/blank.html +share/moodle/lib/editor/htmlarea/coursefiles.php +share/moodle/lib/editor/htmlarea/dialog.js +share/moodle/lib/editor/htmlarea/htmlarea.class.php +share/moodle/lib/editor/htmlarea/htmlarea.css +share/moodle/lib/editor/htmlarea/htmlarea.php +share/moodle/lib/editor/htmlarea/htmlarea_bak.php +share/moodle/lib/editor/htmlarea/images/ed_about.gif +share/moodle/lib/editor/htmlarea/images/ed_align_center.gif +share/moodle/lib/editor/htmlarea/images/ed_align_justify.gif +share/moodle/lib/editor/htmlarea/images/ed_align_left.gif +share/moodle/lib/editor/htmlarea/images/ed_align_right.gif +share/moodle/lib/editor/htmlarea/images/ed_anchor.gif +share/moodle/lib/editor/htmlarea/images/ed_blank.gif +share/moodle/lib/editor/htmlarea/images/ed_charmap.gif +share/moodle/lib/editor/htmlarea/images/ed_color_bg.gif +share/moodle/lib/editor/htmlarea/images/ed_color_fg.gif +share/moodle/lib/editor/htmlarea/images/ed_copy.gif +share/moodle/lib/editor/htmlarea/images/ed_custom.gif +share/moodle/lib/editor/htmlarea/images/ed_cut.gif +share/moodle/lib/editor/htmlarea/images/ed_delete.gif +share/moodle/lib/editor/htmlarea/images/ed_format_bold.gif +share/moodle/lib/editor/htmlarea/images/ed_format_italic.gif +share/moodle/lib/editor/htmlarea/images/ed_format_strike.gif +share/moodle/lib/editor/htmlarea/images/ed_format_sub.gif +share/moodle/lib/editor/htmlarea/images/ed_format_sup.gif +share/moodle/lib/editor/htmlarea/images/ed_format_underline.gif +share/moodle/lib/editor/htmlarea/images/ed_help.gif +share/moodle/lib/editor/htmlarea/images/ed_hr.gif +share/moodle/lib/editor/htmlarea/images/ed_html.gif +share/moodle/lib/editor/htmlarea/images/ed_image.gif +share/moodle/lib/editor/htmlarea/images/ed_indent_less.gif +share/moodle/lib/editor/htmlarea/images/ed_indent_more.gif +share/moodle/lib/editor/htmlarea/images/ed_left_to_right.gif +share/moodle/lib/editor/htmlarea/images/ed_link.gif +share/moodle/lib/editor/htmlarea/images/ed_list_bullet.gif +share/moodle/lib/editor/htmlarea/images/ed_list_num.gif +share/moodle/lib/editor/htmlarea/images/ed_nolink.gif +share/moodle/lib/editor/htmlarea/images/ed_paste.gif +share/moodle/lib/editor/htmlarea/images/ed_redo.gif +share/moodle/lib/editor/htmlarea/images/ed_replace.gif +share/moodle/lib/editor/htmlarea/images/ed_right_to_left.gif +share/moodle/lib/editor/htmlarea/images/ed_show_border.gif +share/moodle/lib/editor/htmlarea/images/ed_splitcel.gif +share/moodle/lib/editor/htmlarea/images/ed_undo.gif +share/moodle/lib/editor/htmlarea/images/ed_unlink.gif +share/moodle/lib/editor/htmlarea/images/ed_wordclean.gif +share/moodle/lib/editor/htmlarea/images/em.icon.smile.gif +share/moodle/lib/editor/htmlarea/images/folderup.gif +share/moodle/lib/editor/htmlarea/images/fullscreen_maximize.gif +share/moodle/lib/editor/htmlarea/images/fullscreen_minimize.gif +share/moodle/lib/editor/htmlarea/images/icon_ins_char.gif +share/moodle/lib/editor/htmlarea/images/icon_smile.gif +share/moodle/lib/editor/htmlarea/images/insert_table.gif +share/moodle/lib/editor/htmlarea/images/kbhelp.gif +share/moodle/lib/editor/htmlarea/images/spell-check.gif +share/moodle/lib/editor/htmlarea/index.html +share/moodle/lib/editor/htmlarea/lang/en.js +share/moodle/lib/editor/htmlarea/lang/en.php +share/moodle/lib/editor/htmlarea/license.txt +share/moodle/lib/editor/htmlarea/plugins/GetHtml/get-html.js +share/moodle/lib/editor/htmlarea/plugins/SpellChecker/spell-check-logic.cgi +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/cell-delete.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/cell-insert-after.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/cell-insert-before.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/cell-merge.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/cell-prop.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/cell-split.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/col-delete.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/col-insert-after.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/col-insert-before.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/col-split.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/row-delete.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/row-insert-above.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/row-insert-under.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/row-prop.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/row-split.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/img/table-prop.gif +share/moodle/lib/editor/htmlarea/plugins/TableOperations/lang/en.js +share/moodle/lib/editor/htmlarea/plugins/TableOperations/lang/fi.js +share/moodle/lib/editor/htmlarea/plugins/TableOperations/lang/ro.js +share/moodle/lib/editor/htmlarea/plugins/TableOperations/makefile.xml +share/moodle/lib/editor/htmlarea/plugins/TableOperations/table-operations.js +share/moodle/lib/editor/htmlarea/popupdiv.js +share/moodle/lib/editor/htmlarea/popups/about.html +share/moodle/lib/editor/htmlarea/popups/blank.html +share/moodle/lib/editor/htmlarea/popups/createanchor.php +share/moodle/lib/editor/htmlarea/popups/dialog.css +share/moodle/lib/editor/htmlarea/popups/dlg_ins_char.php +share/moodle/lib/editor/htmlarea/popups/dlg_ins_smile.php +share/moodle/lib/editor/htmlarea/popups/editor_help.html +share/moodle/lib/editor/htmlarea/popups/fullscreen.php +share/moodle/lib/editor/htmlarea/popups/insert_image.php +share/moodle/lib/editor/htmlarea/popups/insert_image_std.php +share/moodle/lib/editor/htmlarea/popups/insert_table.php +share/moodle/lib/editor/htmlarea/popups/link.php +share/moodle/lib/editor/htmlarea/popups/link_std.php +share/moodle/lib/editor/htmlarea/popups/popup.js +share/moodle/lib/editor/htmlarea/popups/preview.php +share/moodle/lib/editor/htmlarea/popups/searchandreplace.php +share/moodle/lib/editor/htmlarea/popups/select_color.php +share/moodle/lib/editor/htmlarea/popupwin.js +share/moodle/lib/editor/htmlarea/release-notes.html +share/moodle/lib/editor/index.html +share/moodle/lib/editor/neweditor_readme.txt +share/moodle/lib/editor/tinymce/changelog +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/blank.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/ar.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/ca.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/cs.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/cy.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/da.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/de.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/el.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/en.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/es.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/fa.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/fi.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/fr.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/fr_ca.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/he.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/hu.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/is.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/it.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/ja.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/ko.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/nb.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/nl.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/nn.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/pl.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/pt.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/pt_br.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/readme.txt +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/ru.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/ru_KOI8-R.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/ru_UTF-8.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/si.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/sk.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/sv.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/th.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/tr.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/zh_cn.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/zh_tw.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/langs/zh_tw_utf8.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/license.txt +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/images/sample.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/functions.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/cs.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/cy.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/da.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/de.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/es.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/fa.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/fa_ca.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/fr.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/fr_ca.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/he.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/hu.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/is.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/ko.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/nb.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/nl.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/nn.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/pl.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/pt_br.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/ru.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/ru_KOI8-R.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/ru_UTF-8.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/si.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/sk.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/sv.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/tr.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/zh_cn.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/zh_tw.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/zh_tw_utf8.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/advimage/readme.txt +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/images/fullscreen.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/cs.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/cy.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/da.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/de.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/en.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/es.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/fr.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/fr_ca.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/he.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/hu.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/is.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/nb.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/nl.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/nn.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/pl.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/pt_br.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/ru.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/ru_KOI8-R.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/ru_UTF-8.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/si.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/sk.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/sv.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/tr.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/zh_cn.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/zh_tw.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/zh_tw_utf8.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/fullscreen/readme.txt +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/plugins/readme.txt +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/about.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/css/editor_content.css +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/css/editor_popup.css +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/css/editor_ui.css +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/about.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/common_buttons.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/create_accessible_content.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_anchor_window.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_image_window.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_link_window.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_table_window.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/index.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_anchor_button.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_image_button.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_link_button.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_table_button.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/style.css +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_delete_col.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_delete_row.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_insert_col_after.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_insert_col_before.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_insert_row_after.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_insert_row_before.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/image.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/anchor.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/anchor_symbol.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/backcolor.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/bold.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_de_se.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_es.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_fr.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_ru.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_tw.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/browse.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/bullist.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/buttons.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/cancel_button_bg.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/charmap.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/cleanup.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/close.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/code.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/color.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/copy.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/custom_1.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/cut.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/forecolor.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/help.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/hr.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/image.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/indent.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/insert_button_bg.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/italic.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_de_se.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_es.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_ru.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_tw.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/justifycenter.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/justifyfull.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/justifyleft.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/justifyright.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/link.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/newdocument.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/numlist.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/opacity.png +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/outdent.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/paste.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/redo.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/removeformat.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/separator.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/spacer.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/statusbar_resize.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/strikethrough.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/sub.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/sup.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/table.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/table_delete_col.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/table_delete_row.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/table_insert_col_after.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/table_insert_col_before.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/table_insert_row_after.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/table_insert_row_before.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/underline.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_es.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_fr.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_ru.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_tw.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/undo.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/unlink.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/visualaid.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_bg.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_end.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_sel_bg.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_sel_end.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tabs_bg.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/about.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/anchor.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/charmap.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/color_picker.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/image.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/link.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/source_editor.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/ar.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/ca.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/cs.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/cy.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/da.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/de.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/el.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/es.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/fa.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/fi.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/fr.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/fr_ca.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/he.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/hu.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/is.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/it.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/ja.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/ko.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/nb.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/nl.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/nn.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/pl.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/pt.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/pt_br.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/readme.txt +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/ru.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/ru_KOI8-R.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/ru_UTF-8.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/si.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/sk.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/sv.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/tr.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/tw.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/zh_cn.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/zh_tw.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/langs/zh_tw_utf8.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/link.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/css/editor_content.css +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/css/editor_popup.css +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/css/editor_ui.css +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/bold.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/bold_de_se.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/bold_fr.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/bold_ru.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/bold_tw.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/bullist.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/buttons.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/cleanup.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/italic.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/italic_de_se.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/italic_ru.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/italic_tw.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/numlist.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/redo.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/separator.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/spacer.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/strikethrough.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/underline.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/underline_fr.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/underline_ru.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/underline_tw.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/themes/simple/images/undo.gif +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/tiny_mce.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/tiny_mce_gzip.php +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/tiny_mce_popup.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/tiny_mce_src.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/utils/form_utils.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/utils/mclayer.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/utils/mctabs.js +share/moodle/lib/editor/tinymce/jscripts/tiny_mce/utils/validate.js +share/moodle/lib/editor/tinymce/moodlecontent.css +share/moodle/lib/editor/tinymce/moodledialog.js +share/moodle/lib/editor/tinymce/readme +share/moodle/lib/editor/tinymce/tinymce.class.php +share/moodle/lib/editorlib.php +share/moodle/lib/environmentlib.php +share/moodle/lib/evalmath/evalmath.class.php +share/moodle/lib/evalmath/readme_moodle.txt +share/moodle/lib/eventslib.php +share/moodle/lib/excel/BIFFwriter.php +share/moodle/lib/excel/Format.php +share/moodle/lib/excel/OLEwriter.php +share/moodle/lib/excel/Parser.php +share/moodle/lib/excel/README.txt +share/moodle/lib/excel/Workbook.php +share/moodle/lib/excel/Worksheet.php +share/moodle/lib/excel/index.html +share/moodle/lib/excel/readme_moodle.txt +share/moodle/lib/excel/test.php +share/moodle/lib/excellib.class.php +share/moodle/lib/filelib.php +share/moodle/lib/filterlib.php +share/moodle/lib/flashdetect/flashupgrade.fla +share/moodle/lib/flashdetect/flashupgrade.swf +share/moodle/lib/flashdetect/message.php +share/moodle/lib/form/advcheckbox.php +share/moodle/lib/form/button.php +share/moodle/lib/form/cancel.php +share/moodle/lib/form/checkbox.php +share/moodle/lib/form/choosecoursefile.php +share/moodle/lib/form/choosecoursefileorimsrepo.php +share/moodle/lib/form/dateselector.php +share/moodle/lib/form/datetimeselector.php +share/moodle/lib/form/editorhelp.php +share/moodle/lib/form/file.php +share/moodle/lib/form/format.php +share/moodle/lib/form/group.php +share/moodle/lib/form/header.php +share/moodle/lib/form/hidden.php +share/moodle/lib/form/htmleditor.php +share/moodle/lib/form/modgrade.php +share/moodle/lib/form/modvisible.php +share/moodle/lib/form/password.php +share/moodle/lib/form/passwordunmask.php +share/moodle/lib/form/questioncategory.php +share/moodle/lib/form/radio.php +share/moodle/lib/form/recaptcha.php +share/moodle/lib/form/select.php +share/moodle/lib/form/selectgroups.php +share/moodle/lib/form/selectwithlink.php +share/moodle/lib/form/selectyesno.php +share/moodle/lib/form/static.php +share/moodle/lib/form/submit.php +share/moodle/lib/form/submitlink.php +share/moodle/lib/form/text.php +share/moodle/lib/form/textarea.php +share/moodle/lib/formslib.php +share/moodle/lib/fpdf/font/courier.php +share/moodle/lib/fpdf/font/helvetica.php +share/moodle/lib/fpdf/font/helveticab.php +share/moodle/lib/fpdf/font/helveticabi.php +share/moodle/lib/fpdf/font/helveticai.php +share/moodle/lib/fpdf/font/makefont/cp1250.map +share/moodle/lib/fpdf/font/makefont/cp1251.map +share/moodle/lib/fpdf/font/makefont/cp1252.map +share/moodle/lib/fpdf/font/makefont/cp1253.map +share/moodle/lib/fpdf/font/makefont/cp1254.map +share/moodle/lib/fpdf/font/makefont/cp1255.map +share/moodle/lib/fpdf/font/makefont/cp1257.map +share/moodle/lib/fpdf/font/makefont/cp1258.map +share/moodle/lib/fpdf/font/makefont/cp874.map +share/moodle/lib/fpdf/font/makefont/iso-8859-1.map +share/moodle/lib/fpdf/font/makefont/iso-8859-11.map +share/moodle/lib/fpdf/font/makefont/iso-8859-15.map +share/moodle/lib/fpdf/font/makefont/iso-8859-16.map +share/moodle/lib/fpdf/font/makefont/iso-8859-2.map +share/moodle/lib/fpdf/font/makefont/iso-8859-4.map +share/moodle/lib/fpdf/font/makefont/iso-8859-5.map +share/moodle/lib/fpdf/font/makefont/iso-8859-7.map +share/moodle/lib/fpdf/font/makefont/iso-8859-9.map +share/moodle/lib/fpdf/font/makefont/koi8-r.map +share/moodle/lib/fpdf/font/makefont/koi8-u.map +share/moodle/lib/fpdf/font/makefont/makefont.php +share/moodle/lib/fpdf/font/symbol.php +share/moodle/lib/fpdf/font/times.php +share/moodle/lib/fpdf/font/timesb.php +share/moodle/lib/fpdf/font/timesbi.php +share/moodle/lib/fpdf/font/timesi.php +share/moodle/lib/fpdf/font/zapfdingbats.php +share/moodle/lib/fpdf/fpdf.php +share/moodle/lib/fpdf/fpdfprotection.php +share/moodle/lib/gdlib.php +share/moodle/lib/geoip/ChangeLog.htm +share/moodle/lib/geoip/README.htm +share/moodle/lib/geoip/geoip.inc +share/moodle/lib/geoip/geoipcity.inc +share/moodle/lib/geoip/geoipregionvars.php +share/moodle/lib/grade/constants.php +share/moodle/lib/grade/grade_category.php +share/moodle/lib/grade/grade_grade.php +share/moodle/lib/grade/grade_item.php +share/moodle/lib/grade/grade_object.php +share/moodle/lib/grade/grade_outcome.php +share/moodle/lib/grade/grade_scale.php +share/moodle/lib/grade/simpletest/testgradecategory.php +share/moodle/lib/grade/simpletest/testgradegrades.php +share/moodle/lib/grade/simpletest/testgradeitem.php +share/moodle/lib/grade/simpletest/testgradeoutcome.php +share/moodle/lib/grade/simpletest/testgradescale.php +share/moodle/lib/gradelib.php +share/moodle/lib/graphlib.php +share/moodle/lib/grouplib.php +share/moodle/lib/htaccess +share/moodle/lib/html2text.php +share/moodle/lib/html2text_readme.txt +share/moodle/lib/htmlpurifier/CREDITS +share/moodle/lib/htmlpurifier/HTMLPurifier.auto.php +share/moodle/lib/htmlpurifier/HTMLPurifier.func.php +share/moodle/lib/htmlpurifier/HTMLPurifier.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrCollections.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/Background.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/Border.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/Color.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/Composite.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/Font.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/FontFamily.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/Length.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/ListStyle.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/Multiple.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/Number.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/Percentage.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/TextDecoration.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/CSS/URI.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/Enum.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/HTML/Bool.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/HTML/Color.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/HTML/FrameTarget.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/HTML/ID.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/HTML/Length.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/HTML/LinkTypes.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/HTML/MultiLength.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/HTML/Nmtokens.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/HTML/Pixels.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/Integer.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/Lang.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/Switch.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/Text.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/URI.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/URI/Email.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/URI/Host.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/URI/IPv4.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrDef/URI/IPv6.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTransform.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTransform/BdoDir.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTransform/BgColor.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTransform/BoolToCSS.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTransform/Border.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTransform/EnumToCSS.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTransform/ImgRequired.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTransform/ImgSpace.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTransform/Lang.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTransform/Length.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTransform/Name.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrTypes.php +share/moodle/lib/htmlpurifier/HTMLPurifier/AttrValidator.php +share/moodle/lib/htmlpurifier/HTMLPurifier/CSSDefinition.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ChildDef.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ChildDef/Chameleon.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ChildDef/Custom.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ChildDef/Empty.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ChildDef/Optional.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ChildDef/Required.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ChildDef/StrictBlockquote.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ChildDef/Table.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Config.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ConfigDef.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ConfigDef/Directive.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ConfigDef/DirectiveAlias.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ConfigDef/Namespace.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ConfigSchema.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ContentSets.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Context.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Definition.php +share/moodle/lib/htmlpurifier/HTMLPurifier/DefinitionCache.php +share/moodle/lib/htmlpurifier/HTMLPurifier/DefinitionCache/Decorator.php +share/moodle/lib/htmlpurifier/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php +share/moodle/lib/htmlpurifier/HTMLPurifier/DefinitionCache/Decorator/Memory.php +share/moodle/lib/htmlpurifier/HTMLPurifier/DefinitionCache/Decorator/Template.php.in +share/moodle/lib/htmlpurifier/HTMLPurifier/DefinitionCache/Null.php +share/moodle/lib/htmlpurifier/HTMLPurifier/DefinitionCache/Serializer.php +share/moodle/lib/htmlpurifier/HTMLPurifier/DefinitionCacheFactory.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Doctype.php +share/moodle/lib/htmlpurifier/HTMLPurifier/DoctypeRegistry.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ElementDef.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Encoder.php +share/moodle/lib/htmlpurifier/HTMLPurifier/EntityLookup.php +share/moodle/lib/htmlpurifier/HTMLPurifier/EntityLookup/entities.ser +share/moodle/lib/htmlpurifier/HTMLPurifier/EntityParser.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Error.php +share/moodle/lib/htmlpurifier/HTMLPurifier/ErrorCollector.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Filter.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Filter/YouTube.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Generator.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLDefinition.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Bdo.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/CommonAttributes.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Edit.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Hypertext.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Image.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Legacy.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/List.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Object.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Presentation.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Ruby.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Scripting.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/StyleAttribute.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Tables.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Target.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Text.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Tidy.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/Proprietary.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/XHTML.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/XHTMLStrict.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModule/XMLCommonAttributes.php +share/moodle/lib/htmlpurifier/HTMLPurifier/HTMLModuleManager.php +share/moodle/lib/htmlpurifier/HTMLPurifier/IDAccumulator.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Injector.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Injector/AutoParagraph.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Injector/Linkify.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Injector/PurifierLinkify.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Language.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Language/classes/en-x-test.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Language/messages/en-x-test.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Language/messages/en-x-testmini.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Language/messages/en.php +share/moodle/lib/htmlpurifier/HTMLPurifier/LanguageFactory.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Length.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Lexer.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Lexer/DOMLex.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Lexer/DirectLex.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Lexer/PEARSax3.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Lexer/PH5P.php +share/moodle/lib/htmlpurifier/HTMLPurifier/PercentEncoder.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Printer.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Printer/CSSDefinition.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Printer/ConfigForm.css +share/moodle/lib/htmlpurifier/HTMLPurifier/Printer/ConfigForm.js +share/moodle/lib/htmlpurifier/HTMLPurifier/Printer/ConfigForm.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Printer/HTMLDefinition.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Strategy.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Strategy/Composite.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Strategy/Core.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Strategy/FixNesting.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Strategy/MakeWellFormed.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Strategy/RemoveForeignElements.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Strategy/ValidateAttributes.php +share/moodle/lib/htmlpurifier/HTMLPurifier/TagTransform.php +share/moodle/lib/htmlpurifier/HTMLPurifier/TagTransform/Font.php +share/moodle/lib/htmlpurifier/HTMLPurifier/TagTransform/Simple.php +share/moodle/lib/htmlpurifier/HTMLPurifier/Token.php +share/moodle/lib/htmlpurifier/HTMLPurifier/TokenFactory.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URI.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIDefinition.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIFilter.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIFilter/DisableExternal.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIFilter/DisableExternalResources.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIFilter/HostBlacklist.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIFilter/MakeAbsolute.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIParser.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIScheme.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIScheme/ftp.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIScheme/http.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIScheme/https.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIScheme/mailto.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIScheme/news.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URIScheme/nntp.php +share/moodle/lib/htmlpurifier/HTMLPurifier/URISchemeRegistry.php +share/moodle/lib/htmlpurifier/HTMLPurifier/UnitConverter.php +share/moodle/lib/htmlpurifier/readme_moodle.txt +share/moodle/lib/index.html +share/moodle/lib/javascript-mod.php +share/moodle/lib/javascript-static.js +share/moodle/lib/javascript.php +share/moodle/lib/kses.php +share/moodle/lib/languages.md5 +share/moodle/lib/languages.php +share/moodle/lib/lexer.php +share/moodle/lib/listlib.php +share/moodle/lib/locallib.php +share/moodle/lib/magpie/AUTHORS +share/moodle/lib/magpie/README +share/moodle/lib/magpie/README_MOODLE.txt +share/moodle/lib/magpie/TROUBLESHOOTING +share/moodle/lib/magpie/cookbook +share/moodle/lib/magpie/htdocs/cookbook.html +share/moodle/lib/magpie/htdocs/index.html +share/moodle/lib/magpie/rss_cache.inc +share/moodle/lib/magpie/rss_fetch.inc +share/moodle/lib/magpie/rss_parse.inc +share/moodle/lib/magpie/rss_utils.inc +share/moodle/lib/markdown.php +share/moodle/lib/mathslib.php +share/moodle/lib/md5.js +share/moodle/lib/memcached.class.php +share/moodle/lib/moodlelib.php +share/moodle/lib/mp3player/index.html +share/moodle/lib/mp3player/mp3player.fla.zip +share/moodle/lib/mp3player/mp3player.swf +share/moodle/lib/mp3player/readme.txt +share/moodle/lib/odbc.php +share/moodle/lib/odslib.class.php +share/moodle/lib/olson.php +share/moodle/lib/overlib.js +share/moodle/lib/overlib/overlib.js +share/moodle/lib/overlib/overlib_anchor.js +share/moodle/lib/overlib/overlib_centerpopup.js +share/moodle/lib/overlib/overlib_crossframe.js +share/moodle/lib/overlib/overlib_cssstyle.js +share/moodle/lib/overlib/overlib_debug.js +share/moodle/lib/overlib/overlib_exclusive.js +share/moodle/lib/overlib/overlib_followscroll.js +share/moodle/lib/overlib/overlib_hideform.js +share/moodle/lib/overlib/overlib_setonoff.js +share/moodle/lib/overlib/overlib_shadow.js +share/moodle/lib/pagelib.php +share/moodle/lib/pclzip/gnu-lgpl.txt +share/moodle/lib/pclzip/index.html +share/moodle/lib/pclzip/pclzip.lib.php +share/moodle/lib/pclzip/readme.txt +share/moodle/lib/pclzip/readme_moodle.txt +share/moodle/lib/pdflib.php +share/moodle/lib/pear/Auth/RADIUS.php +share/moodle/lib/pear/Console/Getopt.php +share/moodle/lib/pear/Crypt/CHAP.php +share/moodle/lib/pear/HTML/AJAX.php +share/moodle/lib/pear/HTML/AJAX/Action.php +share/moodle/lib/pear/HTML/AJAX/Debug.php +share/moodle/lib/pear/HTML/AJAX/Helper.php +share/moodle/lib/pear/HTML/AJAX/JSON.php +share/moodle/lib/pear/HTML/AJAX/Response.php +share/moodle/lib/pear/HTML/AJAX/Serializer/Error.php +share/moodle/lib/pear/HTML/AJAX/Serializer/JSON.php +share/moodle/lib/pear/HTML/AJAX/Serializer/Null.php +share/moodle/lib/pear/HTML/AJAX/Serializer/PHP.php +share/moodle/lib/pear/HTML/AJAX/Serializer/Urlencoded.php +share/moodle/lib/pear/HTML/AJAX/Serializer/XML.php +share/moodle/lib/pear/HTML/AJAX/Server.php +share/moodle/lib/pear/HTML/Common.php +share/moodle/lib/pear/HTML/QuickForm.php +share/moodle/lib/pear/HTML/QuickForm/DHTMLRulesTableless.php +share/moodle/lib/pear/HTML/QuickForm/Renderer.php +share/moodle/lib/pear/HTML/QuickForm/Renderer/Array.php +share/moodle/lib/pear/HTML/QuickForm/Renderer/Default.php +share/moodle/lib/pear/HTML/QuickForm/Renderer/Object.php +share/moodle/lib/pear/HTML/QuickForm/Renderer/Tableless.php +share/moodle/lib/pear/HTML/QuickForm/Rule.php +share/moodle/lib/pear/HTML/QuickForm/Rule/Callback.php +share/moodle/lib/pear/HTML/QuickForm/Rule/Compare.php +share/moodle/lib/pear/HTML/QuickForm/Rule/Email.php +share/moodle/lib/pear/HTML/QuickForm/Rule/Range.php +share/moodle/lib/pear/HTML/QuickForm/Rule/Regex.php +share/moodle/lib/pear/HTML/QuickForm/Rule/Required.php +share/moodle/lib/pear/HTML/QuickForm/RuleRegistry.php +share/moodle/lib/pear/HTML/QuickForm/advcheckbox.php +share/moodle/lib/pear/HTML/QuickForm/autocomplete.php +share/moodle/lib/pear/HTML/QuickForm/button.php +share/moodle/lib/pear/HTML/QuickForm/checkbox.php +share/moodle/lib/pear/HTML/QuickForm/date.php +share/moodle/lib/pear/HTML/QuickForm/element.php +share/moodle/lib/pear/HTML/QuickForm/file.php +share/moodle/lib/pear/HTML/QuickForm/group.php +share/moodle/lib/pear/HTML/QuickForm/header.php +share/moodle/lib/pear/HTML/QuickForm/hidden.php +share/moodle/lib/pear/HTML/QuickForm/hiddenselect.php +share/moodle/lib/pear/HTML/QuickForm/hierselect.php +share/moodle/lib/pear/HTML/QuickForm/html.php +share/moodle/lib/pear/HTML/QuickForm/image.php +share/moodle/lib/pear/HTML/QuickForm/input.php +share/moodle/lib/pear/HTML/QuickForm/link.php +share/moodle/lib/pear/HTML/QuickForm/password.php +share/moodle/lib/pear/HTML/QuickForm/radio.php +share/moodle/lib/pear/HTML/QuickForm/reset.php +share/moodle/lib/pear/HTML/QuickForm/select.php +share/moodle/lib/pear/HTML/QuickForm/static.php +share/moodle/lib/pear/HTML/QuickForm/submit.php +share/moodle/lib/pear/HTML/QuickForm/text.php +share/moodle/lib/pear/HTML/QuickForm/textarea.php +share/moodle/lib/pear/HTML/QuickForm/xbutton.php +share/moodle/lib/pear/HTTP/WebDAV/AUTHORS +share/moodle/lib/pear/HTTP/WebDAV/COPYING +share/moodle/lib/pear/HTTP/WebDAV/LICENSE +share/moodle/lib/pear/HTTP/WebDAV/README_MOODLE.txt +share/moodle/lib/pear/HTTP/WebDAV/Server.php +share/moodle/lib/pear/HTTP/WebDAV/Tools/_parse_lockinfo.php +share/moodle/lib/pear/HTTP/WebDAV/Tools/_parse_propfind.php +share/moodle/lib/pear/HTTP/WebDAV/Tools/_parse_proppatch.php +share/moodle/lib/pear/OLE.php +share/moodle/lib/pear/OLE/PPS.php +share/moodle/lib/pear/OLE/PPS/File.php +share/moodle/lib/pear/OLE/PPS/Root.php +share/moodle/lib/pear/PEAR.php +share/moodle/lib/pear/README.txt +share/moodle/lib/pear/README_MOODLE.txt +share/moodle/lib/pear/Spreadsheet/Excel/Writer.php +share/moodle/lib/pear/Spreadsheet/Excel/Writer/BIFFwriter.php +share/moodle/lib/pear/Spreadsheet/Excel/Writer/Format.php +share/moodle/lib/pear/Spreadsheet/Excel/Writer/Parser.php +share/moodle/lib/pear/Spreadsheet/Excel/Writer/Validator.php +share/moodle/lib/pear/Spreadsheet/Excel/Writer/Workbook.php +share/moodle/lib/pear/Spreadsheet/Excel/Writer/Worksheet.php +share/moodle/lib/phpmailer/ChangeLog.txt +share/moodle/lib/phpmailer/LICENSE +share/moodle/lib/phpmailer/README +share/moodle/lib/phpmailer/README_MOODLE.txt +share/moodle/lib/phpmailer/class.phpmailer.php +share/moodle/lib/phpmailer/class.smtp.php +share/moodle/lib/phpmailer/index.html +share/moodle/lib/phpmailer/language/phpmailer.lang-br.php +share/moodle/lib/phpmailer/language/phpmailer.lang-ca.php +share/moodle/lib/phpmailer/language/phpmailer.lang-cz.php +share/moodle/lib/phpmailer/language/phpmailer.lang-de.php +share/moodle/lib/phpmailer/language/phpmailer.lang-dk.php +share/moodle/lib/phpmailer/language/phpmailer.lang-en.php +share/moodle/lib/phpmailer/language/phpmailer.lang-es.php +share/moodle/lib/phpmailer/language/phpmailer.lang-fi.php +share/moodle/lib/phpmailer/language/phpmailer.lang-fo.php +share/moodle/lib/phpmailer/language/phpmailer.lang-fr.php +share/moodle/lib/phpmailer/language/phpmailer.lang-hu.php +share/moodle/lib/phpmailer/language/phpmailer.lang-it.php +share/moodle/lib/phpmailer/language/phpmailer.lang-ja.php +share/moodle/lib/phpmailer/language/phpmailer.lang-nl.php +share/moodle/lib/phpmailer/language/phpmailer.lang-no.php +share/moodle/lib/phpmailer/language/phpmailer.lang-pl.php +share/moodle/lib/phpmailer/language/phpmailer.lang-ro.php +share/moodle/lib/phpmailer/language/phpmailer.lang-ru.php +share/moodle/lib/phpmailer/language/phpmailer.lang-se.php +share/moodle/lib/phpmailer/language/phpmailer.lang-tr.php +share/moodle/lib/phpmailer/mailerc.php +share/moodle/lib/phpxml/xml.php +share/moodle/lib/profilerlib.php +share/moodle/lib/questionlib.php +share/moodle/lib/recaptchalib.php +share/moodle/lib/rsslib.php +share/moodle/lib/scroll_to_errors.js +share/moodle/lib/searchlib.php +share/moodle/lib/session-test.php +share/moodle/lib/setup.php +share/moodle/lib/setuplib.php +share/moodle/lib/simpletest/fixtures/events.php +share/moodle/lib/simpletest/fixtures/gradetest.php +share/moodle/lib/simpletest/fixtures/user_agents.php +share/moodle/lib/simpletest/testaccesslib.php +share/moodle/lib/simpletest/testajaxlib.php +share/moodle/lib/simpletest/testbackuplib.php +share/moodle/lib/simpletest/testcode.php +share/moodle/lib/simpletest/testdmllib.php +share/moodle/lib/simpletest/testeventslib.php +share/moodle/lib/simpletest/testgradelib.php +share/moodle/lib/simpletest/testmathslib.php +share/moodle/lib/simpletest/testmoodlelib.php +share/moodle/lib/simpletest/testweblib.php +share/moodle/lib/simpletestlib.php +share/moodle/lib/simpletestlib/BACKLOG +share/moodle/lib/simpletestlib/HELP_MY_TESTS_DONT_WORK_ANYMORE +share/moodle/lib/simpletestlib/LICENSE +share/moodle/lib/simpletestlib/README +share/moodle/lib/simpletestlib/TODO +share/moodle/lib/simpletestlib/VERSION +share/moodle/lib/simpletestlib/authentication.php +share/moodle/lib/simpletestlib/browser.php +share/moodle/lib/simpletestlib/collector.php +share/moodle/lib/simpletestlib/compatibility.php +share/moodle/lib/simpletestlib/cookies.php +share/moodle/lib/simpletestlib/detached.php +share/moodle/lib/simpletestlib/dumper.php +share/moodle/lib/simpletestlib/eclipse.php +share/moodle/lib/simpletestlib/encoding.php +share/moodle/lib/simpletestlib/errors.php +share/moodle/lib/simpletestlib/exceptions.php +share/moodle/lib/simpletestlib/expectation.php +share/moodle/lib/simpletestlib/extensions/pear_test_case.php +share/moodle/lib/simpletestlib/extensions/phpunit_test_case.php +share/moodle/lib/simpletestlib/form.php +share/moodle/lib/simpletestlib/frames.php +share/moodle/lib/simpletestlib/http.php +share/moodle/lib/simpletestlib/invoker.php +share/moodle/lib/simpletestlib/mock_objects.php +share/moodle/lib/simpletestlib/page.php +share/moodle/lib/simpletestlib/parser.php +share/moodle/lib/simpletestlib/readme_moodle.txt +share/moodle/lib/simpletestlib/reflection_php4.php +share/moodle/lib/simpletestlib/reflection_php5.php +share/moodle/lib/simpletestlib/remote.php +share/moodle/lib/simpletestlib/reporter.php +share/moodle/lib/simpletestlib/scorer.php +share/moodle/lib/simpletestlib/selector.php +share/moodle/lib/simpletestlib/shell_tester.php +share/moodle/lib/simpletestlib/simpletest.php +share/moodle/lib/simpletestlib/socket.php +share/moodle/lib/simpletestlib/tag.php +share/moodle/lib/simpletestlib/test_case.php +share/moodle/lib/simpletestlib/ui/colortext_reporter.php +share/moodle/lib/simpletestlib/ui/css/webunit.css +share/moodle/lib/simpletestlib/ui/img/wait.gif +share/moodle/lib/simpletestlib/ui/js/webunit.js +share/moodle/lib/simpletestlib/ui/js/x.js +share/moodle/lib/simpletestlib/ui/webunit_reporter.php +share/moodle/lib/simpletestlib/unit_tester.php +share/moodle/lib/simpletestlib/url.php +share/moodle/lib/simpletestlib/user_agent.php +share/moodle/lib/simpletestlib/web_tester.php +share/moodle/lib/simpletestlib/xml.php +share/moodle/lib/smarty/COPYING.lib +share/moodle/lib/smarty/Config_File.class.php +share/moodle/lib/smarty/Smarty.class.php +share/moodle/lib/smarty/Smarty_Compiler.class.php +share/moodle/lib/smarty/debug.tpl +share/moodle/lib/smarty/internals/core.assemble_plugin_filepath.php +share/moodle/lib/smarty/internals/core.assign_smarty_interface.php +share/moodle/lib/smarty/internals/core.create_dir_structure.php +share/moodle/lib/smarty/internals/core.display_debug_console.php +share/moodle/lib/smarty/internals/core.get_include_path.php +share/moodle/lib/smarty/internals/core.get_microtime.php +share/moodle/lib/smarty/internals/core.get_php_resource.php +share/moodle/lib/smarty/internals/core.is_secure.php +share/moodle/lib/smarty/internals/core.is_trusted.php +share/moodle/lib/smarty/internals/core.load_plugins.php +share/moodle/lib/smarty/internals/core.load_resource_plugin.php +share/moodle/lib/smarty/internals/core.process_cached_inserts.php +share/moodle/lib/smarty/internals/core.process_compiled_include.php +share/moodle/lib/smarty/internals/core.read_cache_file.php +share/moodle/lib/smarty/internals/core.rm_auto.php +share/moodle/lib/smarty/internals/core.rmdir.php +share/moodle/lib/smarty/internals/core.run_insert_handler.php +share/moodle/lib/smarty/internals/core.smarty_include_php.php +share/moodle/lib/smarty/internals/core.write_cache_file.php +share/moodle/lib/smarty/internals/core.write_compiled_include.php +share/moodle/lib/smarty/internals/core.write_compiled_resource.php +share/moodle/lib/smarty/internals/core.write_file.php +share/moodle/lib/smarty/plugins/block.textformat.php +share/moodle/lib/smarty/plugins/compiler.assign.php +share/moodle/lib/smarty/plugins/function.assign_debug_info.php +share/moodle/lib/smarty/plugins/function.config_load.php +share/moodle/lib/smarty/plugins/function.counter.php +share/moodle/lib/smarty/plugins/function.cycle.php +share/moodle/lib/smarty/plugins/function.debug.php +share/moodle/lib/smarty/plugins/function.eval.php +share/moodle/lib/smarty/plugins/function.fetch.php +share/moodle/lib/smarty/plugins/function.html_checkboxes.php +share/moodle/lib/smarty/plugins/function.html_image.php +share/moodle/lib/smarty/plugins/function.html_options.php +share/moodle/lib/smarty/plugins/function.html_radios.php +share/moodle/lib/smarty/plugins/function.html_select_date.php +share/moodle/lib/smarty/plugins/function.html_select_time.php +share/moodle/lib/smarty/plugins/function.html_table.php +share/moodle/lib/smarty/plugins/function.mailto.php +share/moodle/lib/smarty/plugins/function.math.php +share/moodle/lib/smarty/plugins/function.popup.php +share/moodle/lib/smarty/plugins/function.popup_init.php +share/moodle/lib/smarty/plugins/modifier.capitalize.php +share/moodle/lib/smarty/plugins/modifier.cat.php +share/moodle/lib/smarty/plugins/modifier.count_characters.php +share/moodle/lib/smarty/plugins/modifier.count_paragraphs.php +share/moodle/lib/smarty/plugins/modifier.count_sentences.php +share/moodle/lib/smarty/plugins/modifier.count_words.php +share/moodle/lib/smarty/plugins/modifier.date_format.php +share/moodle/lib/smarty/plugins/modifier.debug_print_var.php +share/moodle/lib/smarty/plugins/modifier.default.php +share/moodle/lib/smarty/plugins/modifier.escape.php +share/moodle/lib/smarty/plugins/modifier.indent.php +share/moodle/lib/smarty/plugins/modifier.lower.php +share/moodle/lib/smarty/plugins/modifier.nl2br.php +share/moodle/lib/smarty/plugins/modifier.regex_replace.php +share/moodle/lib/smarty/plugins/modifier.replace.php +share/moodle/lib/smarty/plugins/modifier.spacify.php +share/moodle/lib/smarty/plugins/modifier.string_format.php +share/moodle/lib/smarty/plugins/modifier.strip.php +share/moodle/lib/smarty/plugins/modifier.strip_tags.php +share/moodle/lib/smarty/plugins/modifier.truncate.php +share/moodle/lib/smarty/plugins/modifier.upper.php +share/moodle/lib/smarty/plugins/modifier.wordwrap.php +share/moodle/lib/smarty/plugins/outputfilter.trimwhitespace.php +share/moodle/lib/smarty/plugins/shared.escape_special_chars.php +share/moodle/lib/smarty/plugins/shared.make_timestamp.php +share/moodle/lib/smarty/readme_moodle.txt +share/moodle/lib/snoopy/Snoopy.class.inc +share/moodle/lib/snoopy/index.html +share/moodle/lib/snoopy/moodle_readme.txt +share/moodle/lib/soap/nusoap.php +share/moodle/lib/soap/phpsoap.php +share/moodle/lib/soaplib.php +share/moodle/lib/speller/blank.html +share/moodle/lib/speller/changes.txt +share/moodle/lib/speller/controlWindow.js +share/moodle/lib/speller/controls.html +share/moodle/lib/speller/lib.php +share/moodle/lib/speller/server-scripts/spellchecker.php +share/moodle/lib/speller/spell.gif +share/moodle/lib/speller/spellChecker.js +share/moodle/lib/speller/spellchecker.html +share/moodle/lib/speller/spellerStyle.css +share/moodle/lib/speller/wordWindow.js +share/moodle/lib/statslib.php +share/moodle/lib/swfobject/flashupgrade.swf +share/moodle/lib/swfobject/swfobject.js +share/moodle/lib/tablelib.php +share/moodle/lib/tcpdf/README.TXT +share/moodle/lib/tcpdf/config/lang/eng.php +share/moodle/lib/tcpdf/config/tcpdf_config.php +share/moodle/lib/tcpdf/fonts/FreeMono.ctg.z +share/moodle/lib/tcpdf/fonts/FreeMono.z +share/moodle/lib/tcpdf/fonts/FreeMonoBold.ctg.z +share/moodle/lib/tcpdf/fonts/FreeMonoBold.z +share/moodle/lib/tcpdf/fonts/FreeMonoBoldOblique.ctg.z +share/moodle/lib/tcpdf/fonts/FreeMonoBoldOblique.z +share/moodle/lib/tcpdf/fonts/FreeMonoOblique.ctg.z +share/moodle/lib/tcpdf/fonts/FreeMonoOblique.z +share/moodle/lib/tcpdf/fonts/FreeSans.ctg.z +share/moodle/lib/tcpdf/fonts/FreeSans.z +share/moodle/lib/tcpdf/fonts/FreeSansBold.ctg.z +share/moodle/lib/tcpdf/fonts/FreeSansBold.z +share/moodle/lib/tcpdf/fonts/FreeSansBoldOblique.ctg.z +share/moodle/lib/tcpdf/fonts/FreeSansBoldOblique.z +share/moodle/lib/tcpdf/fonts/FreeSansOblique.ctg.z +share/moodle/lib/tcpdf/fonts/FreeSansOblique.z +share/moodle/lib/tcpdf/fonts/FreeSerif.ctg.z +share/moodle/lib/tcpdf/fonts/FreeSerif.z +share/moodle/lib/tcpdf/fonts/FreeSerifBold.ctg.z +share/moodle/lib/tcpdf/fonts/FreeSerifBold.z +share/moodle/lib/tcpdf/fonts/FreeSerifBoldItalic.ctg.z +share/moodle/lib/tcpdf/fonts/FreeSerifBoldItalic.z +share/moodle/lib/tcpdf/fonts/FreeSerifItalic.ctg.z +share/moodle/lib/tcpdf/fonts/FreeSerifItalic.z +share/moodle/lib/tcpdf/fonts/README.TXT +share/moodle/lib/tcpdf/fonts/freemono.php +share/moodle/lib/tcpdf/fonts/freemonob.php +share/moodle/lib/tcpdf/fonts/freemonobi.php +share/moodle/lib/tcpdf/fonts/freemonoi.php +share/moodle/lib/tcpdf/fonts/freesans.php +share/moodle/lib/tcpdf/fonts/freesansb.php +share/moodle/lib/tcpdf/fonts/freesansbi.php +share/moodle/lib/tcpdf/fonts/freesansi.php +share/moodle/lib/tcpdf/fonts/freeserif.php +share/moodle/lib/tcpdf/fonts/freeserifb.php +share/moodle/lib/tcpdf/fonts/freeserifbi.php +share/moodle/lib/tcpdf/fonts/freeserifi.php +share/moodle/lib/tcpdf/html2pdf.php +share/moodle/lib/tcpdf/html_entity_decode_php4.php +share/moodle/lib/tcpdf/images/_blank.png +share/moodle/lib/tcpdf/images/logo_example.png +share/moodle/lib/tcpdf/tcpdf.php +share/moodle/lib/tcpdf/tcpdfprotection.php +share/moodle/lib/textlib.class.php +share/moodle/lib/timezone.txt +share/moodle/lib/tokeniserlib.php +share/moodle/lib/typo3/class.t3lib_cs.php +share/moodle/lib/typo3/class.t3lib_div.php +share/moodle/lib/typo3/csconvtbl/ascii.tbl +share/moodle/lib/typo3/csconvtbl/big5.tbl +share/moodle/lib/typo3/csconvtbl/euc-kr.tbl +share/moodle/lib/typo3/csconvtbl/gb2312.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-1.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-10.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-11.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-13.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-14.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-15.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-16.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-2.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-3.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-4.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-5.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-6.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-7.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-8.tbl +share/moodle/lib/typo3/csconvtbl/iso-8859-9.tbl +share/moodle/lib/typo3/csconvtbl/koi8-r.tbl +share/moodle/lib/typo3/csconvtbl/readme.txt +share/moodle/lib/typo3/csconvtbl/shift_jis.tbl +share/moodle/lib/typo3/csconvtbl/windows-1250.tbl +share/moodle/lib/typo3/csconvtbl/windows-1251.tbl +share/moodle/lib/typo3/csconvtbl/windows-1252.tbl +share/moodle/lib/typo3/csconvtbl/windows-1253.tbl +share/moodle/lib/typo3/csconvtbl/windows-1254.tbl +share/moodle/lib/typo3/csconvtbl/windows-1255.tbl +share/moodle/lib/typo3/csconvtbl/windows-1256.tbl +share/moodle/lib/typo3/csconvtbl/windows-1257.tbl +share/moodle/lib/typo3/csconvtbl/windows-1258.tbl +share/moodle/lib/typo3/csconvtbl/windows-874.tbl +share/moodle/lib/typo3/unidata/SpecialCasing.txt +share/moodle/lib/typo3/unidata/Translit.txt +share/moodle/lib/typo3/unidata/UnicodeData.txt +share/moodle/lib/ufo.js +share/moodle/lib/uploadlib.php +share/moodle/lib/validateurlsyntax.php +share/moodle/lib/weblib.php +share/moodle/lib/wiki_to_markdown.php +share/moodle/lib/womenslib.php +share/moodle/lib/wordlist.txt +share/moodle/lib/xhtml.xsl +share/moodle/lib/xmldb/classes/XMLDBConstants.php +share/moodle/lib/xmldb/classes/XMLDBField.class.php +share/moodle/lib/xmldb/classes/XMLDBFile.class.php +share/moodle/lib/xmldb/classes/XMLDBIndex.class.php +share/moodle/lib/xmldb/classes/XMLDBKey.class.php +share/moodle/lib/xmldb/classes/XMLDBObject.class.php +share/moodle/lib/xmldb/classes/XMLDBStatement.class.php +share/moodle/lib/xmldb/classes/XMLDBStructure.class.php +share/moodle/lib/xmldb/classes/XMLDBTable.class.php +share/moodle/lib/xmldb/classes/generators/XMLDBGenerator.class.php +share/moodle/lib/xmldb/classes/generators/mssql/mssql.class.php +share/moodle/lib/xmldb/classes/generators/mssql_n/mssql_n.class.php +share/moodle/lib/xmldb/classes/generators/mysql/mysql.class.php +share/moodle/lib/xmldb/classes/generators/mysqli/mysqli.class.php +share/moodle/lib/xmldb/classes/generators/oci8po/oci8po.class.php +share/moodle/lib/xmldb/classes/generators/odbc_mssql/odbc_mssql.class.php +share/moodle/lib/xmldb/classes/generators/postgres7/postgres7.class.php +share/moodle/lib/xmldb/xmldb.dtd +share/moodle/lib/xmldb/xmldb.xsd +share/moodle/lib/xmlize.php +share/moodle/lib/yui/README.txt +share/moodle/lib/yui/animation/README +share/moodle/lib/yui/animation/animation-debug.js +share/moodle/lib/yui/animation/animation-min.js +share/moodle/lib/yui/animation/animation.js +share/moodle/lib/yui/assets/skins/sam/asc.gif +share/moodle/lib/yui/assets/skins/sam/autocomplete.css +share/moodle/lib/yui/assets/skins/sam/blankimage.png +share/moodle/lib/yui/assets/skins/sam/button.css +share/moodle/lib/yui/assets/skins/sam/calendar.css +share/moodle/lib/yui/assets/skins/sam/colorpicker.css +share/moodle/lib/yui/assets/skins/sam/container.css +share/moodle/lib/yui/assets/skins/sam/datatable.css +share/moodle/lib/yui/assets/skins/sam/desc.gif +share/moodle/lib/yui/assets/skins/sam/dt-arrow-dn.png +share/moodle/lib/yui/assets/skins/sam/dt-arrow-up.png +share/moodle/lib/yui/assets/skins/sam/editor-knob.gif +share/moodle/lib/yui/assets/skins/sam/editor-sprite-active.gif +share/moodle/lib/yui/assets/skins/sam/editor-sprite.gif +share/moodle/lib/yui/assets/skins/sam/editor.css +share/moodle/lib/yui/assets/skins/sam/header_background.png +share/moodle/lib/yui/assets/skins/sam/hue_bg.png +share/moodle/lib/yui/assets/skins/sam/imagecropper.css +share/moodle/lib/yui/assets/skins/sam/layout.css +share/moodle/lib/yui/assets/skins/sam/layout_sprite.png +share/moodle/lib/yui/assets/skins/sam/logger.css +share/moodle/lib/yui/assets/skins/sam/menu-button-arrow-disabled.png +share/moodle/lib/yui/assets/skins/sam/menu-button-arrow.png +share/moodle/lib/yui/assets/skins/sam/menu.css +share/moodle/lib/yui/assets/skins/sam/menubaritem_submenuindicator.png +share/moodle/lib/yui/assets/skins/sam/menubaritem_submenuindicator_disabled.png +share/moodle/lib/yui/assets/skins/sam/menuitem_checkbox.png +share/moodle/lib/yui/assets/skins/sam/menuitem_checkbox_disabled.png +share/moodle/lib/yui/assets/skins/sam/menuitem_submenuindicator.png +share/moodle/lib/yui/assets/skins/sam/menuitem_submenuindicator_disabled.png +share/moodle/lib/yui/assets/skins/sam/picker_mask.png +share/moodle/lib/yui/assets/skins/sam/profilerviewer.css +share/moodle/lib/yui/assets/skins/sam/resize.css +share/moodle/lib/yui/assets/skins/sam/simpleeditor.css +share/moodle/lib/yui/assets/skins/sam/skin.css +share/moodle/lib/yui/assets/skins/sam/split-button-arrow-active.png +share/moodle/lib/yui/assets/skins/sam/split-button-arrow-disabled.png +share/moodle/lib/yui/assets/skins/sam/split-button-arrow-focus.png +share/moodle/lib/yui/assets/skins/sam/split-button-arrow-hover.png +share/moodle/lib/yui/assets/skins/sam/split-button-arrow.png +share/moodle/lib/yui/assets/skins/sam/sprite.png +share/moodle/lib/yui/assets/skins/sam/tabview.css +share/moodle/lib/yui/assets/skins/sam/treeview-loading.gif +share/moodle/lib/yui/assets/skins/sam/treeview-sprite.gif +share/moodle/lib/yui/assets/skins/sam/treeview.css +share/moodle/lib/yui/assets/skins/sam/wait.gif +share/moodle/lib/yui/assets/skins/sam/yuitest.css +share/moodle/lib/yui/autocomplete/README +share/moodle/lib/yui/autocomplete/assets/autocomplete-core.css +share/moodle/lib/yui/autocomplete/assets/skins/sam/autocomplete-skin.css +share/moodle/lib/yui/autocomplete/assets/skins/sam/autocomplete.css +share/moodle/lib/yui/autocomplete/autocomplete-debug.js +share/moodle/lib/yui/autocomplete/autocomplete-min.js +share/moodle/lib/yui/autocomplete/autocomplete.js +share/moodle/lib/yui/base/README +share/moodle/lib/yui/base/base-min.css +share/moodle/lib/yui/base/base.css +share/moodle/lib/yui/button/README +share/moodle/lib/yui/button/assets/button-core.css +share/moodle/lib/yui/button/assets/skins/sam/button-skin.css +share/moodle/lib/yui/button/assets/skins/sam/button.css +share/moodle/lib/yui/button/assets/skins/sam/menu-button-arrow-disabled.png +share/moodle/lib/yui/button/assets/skins/sam/menu-button-arrow.png +share/moodle/lib/yui/button/assets/skins/sam/split-button-arrow-active.png +share/moodle/lib/yui/button/assets/skins/sam/split-button-arrow-disabled.png +share/moodle/lib/yui/button/assets/skins/sam/split-button-arrow-focus.png +share/moodle/lib/yui/button/assets/skins/sam/split-button-arrow-hover.png +share/moodle/lib/yui/button/assets/skins/sam/split-button-arrow.png +share/moodle/lib/yui/button/button-debug.js +share/moodle/lib/yui/button/button-min.js +share/moodle/lib/yui/button/button.js +share/moodle/lib/yui/calendar/README +share/moodle/lib/yui/calendar/assets/calendar-core.css +share/moodle/lib/yui/calendar/assets/calendar.css +share/moodle/lib/yui/calendar/assets/calgrad.png +share/moodle/lib/yui/calendar/assets/callt.gif +share/moodle/lib/yui/calendar/assets/calrt.gif +share/moodle/lib/yui/calendar/assets/calx.gif +share/moodle/lib/yui/calendar/assets/skins/sam/calendar-skin.css +share/moodle/lib/yui/calendar/assets/skins/sam/calendar.css +share/moodle/lib/yui/calendar/calendar-debug.js +share/moodle/lib/yui/calendar/calendar-min.js +share/moodle/lib/yui/calendar/calendar.js +share/moodle/lib/yui/charts/README +share/moodle/lib/yui/charts/assets/charts.swf +share/moodle/lib/yui/charts/charts-experimental-debug.js +share/moodle/lib/yui/charts/charts-experimental-min.js +share/moodle/lib/yui/charts/charts-experimental.js +share/moodle/lib/yui/colorpicker/README +share/moodle/lib/yui/colorpicker/assets/hue_thumb.png +share/moodle/lib/yui/colorpicker/assets/picker_mask.png +share/moodle/lib/yui/colorpicker/assets/picker_thumb.png +share/moodle/lib/yui/colorpicker/assets/skins/sam/colorpicker-skin.css +share/moodle/lib/yui/colorpicker/assets/skins/sam/colorpicker.css +share/moodle/lib/yui/colorpicker/assets/skins/sam/hue_bg.png +share/moodle/lib/yui/colorpicker/assets/skins/sam/picker_mask.png +share/moodle/lib/yui/colorpicker/colorpicker-debug.js +share/moodle/lib/yui/colorpicker/colorpicker-min.js +share/moodle/lib/yui/colorpicker/colorpicker.js +share/moodle/lib/yui/connection/README +share/moodle/lib/yui/connection/connection-debug.js +share/moodle/lib/yui/connection/connection-min.js +share/moodle/lib/yui/connection/connection.js +share/moodle/lib/yui/container/README +share/moodle/lib/yui/container/assets/alrt16_1.gif +share/moodle/lib/yui/container/assets/blck16_1.gif +share/moodle/lib/yui/container/assets/close12_1.gif +share/moodle/lib/yui/container/assets/container-core.css +share/moodle/lib/yui/container/assets/container.css +share/moodle/lib/yui/container/assets/hlp16_1.gif +share/moodle/lib/yui/container/assets/info16_1.gif +share/moodle/lib/yui/container/assets/skins/sam/container-skin.css +share/moodle/lib/yui/container/assets/skins/sam/container.css +share/moodle/lib/yui/container/assets/tip16_1.gif +share/moodle/lib/yui/container/assets/warn16_1.gif +share/moodle/lib/yui/container/container-debug.js +share/moodle/lib/yui/container/container-min.js +share/moodle/lib/yui/container/container.js +share/moodle/lib/yui/container/container_core-debug.js +share/moodle/lib/yui/container/container_core-min.js +share/moodle/lib/yui/container/container_core.js +share/moodle/lib/yui/cookie/README +share/moodle/lib/yui/cookie/cookie-debug.js +share/moodle/lib/yui/cookie/cookie-min.js +share/moodle/lib/yui/cookie/cookie.js +share/moodle/lib/yui/datasource/README +share/moodle/lib/yui/datasource/datasource-debug.js +share/moodle/lib/yui/datasource/datasource-min.js +share/moodle/lib/yui/datasource/datasource.js +share/moodle/lib/yui/datatable/README +share/moodle/lib/yui/datatable/assets/datatable-core.css +share/moodle/lib/yui/datatable/assets/datatable.css +share/moodle/lib/yui/datatable/assets/skins/sam/datatable-skin.css +share/moodle/lib/yui/datatable/assets/skins/sam/datatable.css +share/moodle/lib/yui/datatable/assets/skins/sam/dt-arrow-dn.png +share/moodle/lib/yui/datatable/assets/skins/sam/dt-arrow-up.png +share/moodle/lib/yui/datatable/datatable-debug.js +share/moodle/lib/yui/datatable/datatable-min.js +share/moodle/lib/yui/datatable/datatable.js +share/moodle/lib/yui/dom/README +share/moodle/lib/yui/dom/dom-debug.js +share/moodle/lib/yui/dom/dom-min.js +share/moodle/lib/yui/dom/dom.js +share/moodle/lib/yui/dragdrop/README +share/moodle/lib/yui/dragdrop/dragdrop-debug.js +share/moodle/lib/yui/dragdrop/dragdrop-min.js +share/moodle/lib/yui/dragdrop/dragdrop.js +share/moodle/lib/yui/editor/README +share/moodle/lib/yui/editor/assets/editor-core.css +share/moodle/lib/yui/editor/assets/simpleeditor-core.css +share/moodle/lib/yui/editor/assets/skins/sam/blankimage.png +share/moodle/lib/yui/editor/assets/skins/sam/editor-knob.gif +share/moodle/lib/yui/editor/assets/skins/sam/editor-skin.css +share/moodle/lib/yui/editor/assets/skins/sam/editor-sprite-active.gif +share/moodle/lib/yui/editor/assets/skins/sam/editor-sprite.gif +share/moodle/lib/yui/editor/assets/skins/sam/editor.css +share/moodle/lib/yui/editor/assets/skins/sam/simpleeditor-skin.css +share/moodle/lib/yui/editor/assets/skins/sam/simpleeditor.css +share/moodle/lib/yui/editor/editor-debug.js +share/moodle/lib/yui/editor/editor-min.js +share/moodle/lib/yui/editor/editor.js +share/moodle/lib/yui/editor/simpleeditor-debug.js +share/moodle/lib/yui/editor/simpleeditor-min.js +share/moodle/lib/yui/editor/simpleeditor.js +share/moodle/lib/yui/element/README +share/moodle/lib/yui/element/element-beta-debug.js +share/moodle/lib/yui/element/element-beta-min.js +share/moodle/lib/yui/element/element-beta.js +share/moodle/lib/yui/event/README +share/moodle/lib/yui/event/event-debug.js +share/moodle/lib/yui/event/event-min.js +share/moodle/lib/yui/event/event.js +share/moodle/lib/yui/fonts/README +share/moodle/lib/yui/fonts/fonts-min.css +share/moodle/lib/yui/fonts/fonts.css +share/moodle/lib/yui/get/README +share/moodle/lib/yui/get/get-debug.js +share/moodle/lib/yui/get/get-min.js +share/moodle/lib/yui/get/get.js +share/moodle/lib/yui/grids/README +share/moodle/lib/yui/grids/grids-min.css +share/moodle/lib/yui/grids/grids.css +share/moodle/lib/yui/history/README +share/moodle/lib/yui/history/assets/blank.html +share/moodle/lib/yui/history/history-debug.js +share/moodle/lib/yui/history/history-min.js +share/moodle/lib/yui/history/history.js +share/moodle/lib/yui/imagecropper/README +share/moodle/lib/yui/imagecropper/assets/imagecropper-core.css +share/moodle/lib/yui/imagecropper/assets/skins/sam/imagecropper-skin.css +share/moodle/lib/yui/imagecropper/assets/skins/sam/imagecropper.css +share/moodle/lib/yui/imagecropper/imagecropper-beta-debug.js +share/moodle/lib/yui/imagecropper/imagecropper-beta-min.js +share/moodle/lib/yui/imagecropper/imagecropper-beta.js +share/moodle/lib/yui/imageloader/README +share/moodle/lib/yui/imageloader/imageloader-debug.js +share/moodle/lib/yui/imageloader/imageloader-min.js +share/moodle/lib/yui/imageloader/imageloader.js +share/moodle/lib/yui/json/README +share/moodle/lib/yui/json/json-debug.js +share/moodle/lib/yui/json/json-min.js +share/moodle/lib/yui/json/json.js +share/moodle/lib/yui/layout/README +share/moodle/lib/yui/layout/assets/layout-core.css +share/moodle/lib/yui/layout/assets/skins/sam/layout-skin.css +share/moodle/lib/yui/layout/assets/skins/sam/layout.css +share/moodle/lib/yui/layout/assets/skins/sam/layout_sprite.png +share/moodle/lib/yui/layout/layout-debug.js +share/moodle/lib/yui/layout/layout-min.js +share/moodle/lib/yui/layout/layout.js +share/moodle/lib/yui/logger/README +share/moodle/lib/yui/logger/assets/logger-core.css +share/moodle/lib/yui/logger/assets/logger.css +share/moodle/lib/yui/logger/assets/skins/sam/logger-skin.css +share/moodle/lib/yui/logger/assets/skins/sam/logger.css +share/moodle/lib/yui/logger/logger-debug.js +share/moodle/lib/yui/logger/logger-min.js +share/moodle/lib/yui/logger/logger.js +share/moodle/lib/yui/menu/README +share/moodle/lib/yui/menu/assets/menu-core.css +share/moodle/lib/yui/menu/assets/menu.css +share/moodle/lib/yui/menu/assets/menu_down_arrow.png +share/moodle/lib/yui/menu/assets/menu_down_arrow_disabled.png +share/moodle/lib/yui/menu/assets/menu_up_arrow.png +share/moodle/lib/yui/menu/assets/menu_up_arrow_disabled.png +share/moodle/lib/yui/menu/assets/menubaritem_submenuindicator.png +share/moodle/lib/yui/menu/assets/menubaritem_submenuindicator_disabled.png +share/moodle/lib/yui/menu/assets/menubaritem_submenuindicator_selected.png +share/moodle/lib/yui/menu/assets/menuitem_checkbox.png +share/moodle/lib/yui/menu/assets/menuitem_checkbox_disabled.png +share/moodle/lib/yui/menu/assets/menuitem_checkbox_selected.png +share/moodle/lib/yui/menu/assets/menuitem_submenuindicator.png +share/moodle/lib/yui/menu/assets/menuitem_submenuindicator_disabled.png +share/moodle/lib/yui/menu/assets/menuitem_submenuindicator_selected.png +share/moodle/lib/yui/menu/assets/skins/sam/menu-skin.css +share/moodle/lib/yui/menu/assets/skins/sam/menu.css +share/moodle/lib/yui/menu/assets/skins/sam/menubaritem_submenuindicator.png +share/moodle/lib/yui/menu/assets/skins/sam/menubaritem_submenuindicator_disabled.png +share/moodle/lib/yui/menu/assets/skins/sam/menuitem_checkbox.png +share/moodle/lib/yui/menu/assets/skins/sam/menuitem_checkbox_disabled.png +share/moodle/lib/yui/menu/assets/skins/sam/menuitem_submenuindicator.png +share/moodle/lib/yui/menu/assets/skins/sam/menuitem_submenuindicator_disabled.png +share/moodle/lib/yui/menu/menu-debug.js +share/moodle/lib/yui/menu/menu-min.js +share/moodle/lib/yui/menu/menu.js +share/moodle/lib/yui/profiler/README +share/moodle/lib/yui/profiler/profiler-debug.js +share/moodle/lib/yui/profiler/profiler-min.js +share/moodle/lib/yui/profiler/profiler.js +share/moodle/lib/yui/profilerviewer/README +share/moodle/lib/yui/profilerviewer/assets/skins/sam/asc.gif +share/moodle/lib/yui/profilerviewer/assets/skins/sam/desc.gif +share/moodle/lib/yui/profilerviewer/assets/skins/sam/header_background.png +share/moodle/lib/yui/profilerviewer/assets/skins/sam/profilerviewer.css +share/moodle/lib/yui/profilerviewer/assets/skins/sam/wait.gif +share/moodle/lib/yui/profilerviewer/profilerviewer-beta-debug.js +share/moodle/lib/yui/profilerviewer/profilerviewer-beta-min.js +share/moodle/lib/yui/profilerviewer/profilerviewer-beta.js +share/moodle/lib/yui/reset-fonts-grids/README +share/moodle/lib/yui/reset-fonts-grids/reset-fonts-grids.css +share/moodle/lib/yui/reset-fonts/README +share/moodle/lib/yui/reset-fonts/reset-fonts.css +share/moodle/lib/yui/reset/README +share/moodle/lib/yui/reset/reset-min.css +share/moodle/lib/yui/reset/reset.css +share/moodle/lib/yui/resize/README +share/moodle/lib/yui/resize/assets/resize-core.css +share/moodle/lib/yui/resize/assets/skins/sam/layout_sprite.png +share/moodle/lib/yui/resize/assets/skins/sam/resize-skin.css +share/moodle/lib/yui/resize/assets/skins/sam/resize.css +share/moodle/lib/yui/resize/resize-debug.js +share/moodle/lib/yui/resize/resize-min.js +share/moodle/lib/yui/resize/resize.js +share/moodle/lib/yui/selector/README +share/moodle/lib/yui/selector/selector-beta-debug.js +share/moodle/lib/yui/selector/selector-beta-min.js +share/moodle/lib/yui/selector/selector-beta.js +share/moodle/lib/yui/slider/README +share/moodle/lib/yui/slider/slider-debug.js +share/moodle/lib/yui/slider/slider-min.js +share/moodle/lib/yui/slider/slider.js +share/moodle/lib/yui/tabview/README +share/moodle/lib/yui/tabview/assets/border_tabs.css +share/moodle/lib/yui/tabview/assets/loading.gif +share/moodle/lib/yui/tabview/assets/skin-sam.css +share/moodle/lib/yui/tabview/assets/skins/sam/tabview-skin.css +share/moodle/lib/yui/tabview/assets/skins/sam/tabview.css +share/moodle/lib/yui/tabview/assets/tabview-core.css +share/moodle/lib/yui/tabview/assets/tabview.css +share/moodle/lib/yui/tabview/tabview-debug.js +share/moodle/lib/yui/tabview/tabview-min.js +share/moodle/lib/yui/tabview/tabview.js +share/moodle/lib/yui/treeview/README +share/moodle/lib/yui/treeview/assets/skins/sam/treeview-loading.gif +share/moodle/lib/yui/treeview/assets/skins/sam/treeview-skin.css +share/moodle/lib/yui/treeview/assets/skins/sam/treeview-sprite.gif +share/moodle/lib/yui/treeview/assets/skins/sam/treeview.css +share/moodle/lib/yui/treeview/assets/sprite-menu.gif +share/moodle/lib/yui/treeview/assets/sprite-orig.gif +share/moodle/lib/yui/treeview/assets/treeview-core.css +share/moodle/lib/yui/treeview/assets/treeview-loading.gif +share/moodle/lib/yui/treeview/assets/treeview-menu.css +share/moodle/lib/yui/treeview/assets/treeview-sprite.gif +share/moodle/lib/yui/treeview/assets/treeview.css +share/moodle/lib/yui/treeview/treeview-debug.js +share/moodle/lib/yui/treeview/treeview-min.js +share/moodle/lib/yui/treeview/treeview.js +share/moodle/lib/yui/uploader/README +share/moodle/lib/yui/uploader/assets/uploader.swf +share/moodle/lib/yui/uploader/uploader-experimental-debug.js +share/moodle/lib/yui/uploader/uploader-experimental-min.js +share/moodle/lib/yui/uploader/uploader-experimental.js +share/moodle/lib/yui/utilities/README +share/moodle/lib/yui/utilities/utilities.js +share/moodle/lib/yui/yahoo-dom-event/README +share/moodle/lib/yui/yahoo-dom-event/yahoo-dom-event.js +share/moodle/lib/yui/yahoo/README +share/moodle/lib/yui/yahoo/yahoo-debug.js +share/moodle/lib/yui/yahoo/yahoo-min.js +share/moodle/lib/yui/yahoo/yahoo.js +share/moodle/lib/yui/yuiloader-dom-event/README +share/moodle/lib/yui/yuiloader-dom-event/yuiloader-dom-event.js +share/moodle/lib/yui/yuiloader/README +share/moodle/lib/yui/yuiloader/yuiloader-debug.js +share/moodle/lib/yui/yuiloader/yuiloader-min.js +share/moodle/lib/yui/yuiloader/yuiloader.js +share/moodle/lib/yui/yuitest/README +share/moodle/lib/yui/yuitest/assets/skins/sam/yuitest-skin.css +share/moodle/lib/yui/yuitest/assets/skins/sam/yuitest.css +share/moodle/lib/yui/yuitest/assets/testlogger.css +share/moodle/lib/yui/yuitest/assets/yuitest-core.css +share/moodle/lib/yui/yuitest/yuitest-debug.js +share/moodle/lib/yui/yuitest/yuitest-min.js +share/moodle/lib/yui/yuitest/yuitest.js +share/moodle/lib/yui/yuitest/yuitest_core-debug.js +share/moodle/lib/yui/yuitest/yuitest_core-min.js +share/moodle/lib/yui/yuitest/yuitest_core.js +share/moodle/login/change_password.php +share/moodle/login/change_password_form.php +share/moodle/login/confirm.php +share/moodle/login/environment.php +share/moodle/login/forgot_password.php +share/moodle/login/forgot_password_form.php +share/moodle/login/index.php +share/moodle/login/index_form.html +share/moodle/login/logout.php +share/moodle/login/mnet_email.php +share/moodle/login/restored_password_form.php +share/moodle/login/signup.php +share/moodle/login/signup_form.php +share/moodle/manifest.txt +share/moodle/message/bell.wav +share/moodle/message/discussion.php +share/moodle/message/history.php +share/moodle/message/index.php +share/moodle/message/lib.php +share/moodle/message/messages.php +share/moodle/message/refresh.php +share/moodle/message/search.html +share/moodle/message/send.php +share/moodle/message/settings.html +share/moodle/message/user.php +share/moodle/mnet/environment.php +share/moodle/mnet/lib.php +share/moodle/mnet/peer.php +share/moodle/mnet/publickey.php +share/moodle/mnet/remote_client.php +share/moodle/mnet/rpclib.php +share/moodle/mnet/testclient.php +share/moodle/mnet/xmlrpc/client.php +share/moodle/mnet/xmlrpc/server.php +share/moodle/mnet/xmlrpc/xmlparser.php +share/moodle/mod/README.txt +share/moodle/mod/assignment/backuplib.php +share/moodle/mod/assignment/db/access.php +share/moodle/mod/assignment/db/install.xml +share/moodle/mod/assignment/db/mysql.php +share/moodle/mod/assignment/db/postgres7.php +share/moodle/mod/assignment/db/upgrade.php +share/moodle/mod/assignment/delete.php +share/moodle/mod/assignment/grade.php +share/moodle/mod/assignment/icon.gif +share/moodle/mod/assignment/index.php +share/moodle/mod/assignment/lib.php +share/moodle/mod/assignment/mod_form.php +share/moodle/mod/assignment/restorelib.php +share/moodle/mod/assignment/settings.php +share/moodle/mod/assignment/styles.php +share/moodle/mod/assignment/submissions.php +share/moodle/mod/assignment/type/offline/assignment.class.php +share/moodle/mod/assignment/type/online/assignment.class.php +share/moodle/mod/assignment/type/online/db/mysql.php +share/moodle/mod/assignment/type/online/db/postgres7.php +share/moodle/mod/assignment/type/online/file.php +share/moodle/mod/assignment/type/online/version.php +share/moodle/mod/assignment/type/upload/assignment.class.php +share/moodle/mod/assignment/type/upload/notes.php +share/moodle/mod/assignment/type/uploadsingle/assignment.class.php +share/moodle/mod/assignment/upload.php +share/moodle/mod/assignment/version.php +share/moodle/mod/assignment/view.php +share/moodle/mod/chat/README.txt +share/moodle/mod/chat/backuplib.php +share/moodle/mod/chat/beep.wav +share/moodle/mod/chat/chatd.php +share/moodle/mod/chat/db/access.php +share/moodle/mod/chat/db/install.xml +share/moodle/mod/chat/db/mysql.php +share/moodle/mod/chat/db/postgres7.php +share/moodle/mod/chat/db/upgrade.php +share/moodle/mod/chat/empty.php +share/moodle/mod/chat/gui_basic/index.php +share/moodle/mod/chat/gui_header_js/chatinput.php +share/moodle/mod/chat/gui_header_js/chatmsg.php +share/moodle/mod/chat/gui_header_js/index.php +share/moodle/mod/chat/gui_header_js/insert.php +share/moodle/mod/chat/gui_header_js/jsupdate.php +share/moodle/mod/chat/gui_header_js/jsupdated.php +share/moodle/mod/chat/gui_header_js/users.php +share/moodle/mod/chat/gui_sockets/chatinput.php +share/moodle/mod/chat/gui_sockets/index.php +share/moodle/mod/chat/icon.gif +share/moodle/mod/chat/index.php +share/moodle/mod/chat/lib.php +share/moodle/mod/chat/mod_form.php +share/moodle/mod/chat/pagelib.php +share/moodle/mod/chat/report.php +share/moodle/mod/chat/restorelib.php +share/moodle/mod/chat/settings.php +share/moodle/mod/chat/version.php +share/moodle/mod/chat/view.php +share/moodle/mod/choice/backuplib.php +share/moodle/mod/choice/column.png +share/moodle/mod/choice/db/access.php +share/moodle/mod/choice/db/install.xml +share/moodle/mod/choice/db/mysql.php +share/moodle/mod/choice/db/postgres7.php +share/moodle/mod/choice/db/upgrade.php +share/moodle/mod/choice/icon.gif +share/moodle/mod/choice/index.php +share/moodle/mod/choice/lib.php +share/moodle/mod/choice/mod_form.php +share/moodle/mod/choice/report.php +share/moodle/mod/choice/restorelib.php +share/moodle/mod/choice/styles.php +share/moodle/mod/choice/version.php +share/moodle/mod/choice/view.php +share/moodle/mod/data/backuplib.php +share/moodle/mod/data/comment.php +share/moodle/mod/data/comment_form.php +share/moodle/mod/data/css.php +share/moodle/mod/data/db/access.php +share/moodle/mod/data/db/install.xml +share/moodle/mod/data/db/mysql.php +share/moodle/mod/data/db/postgres7.php +share/moodle/mod/data/db/upgrade.php +share/moodle/mod/data/edit.php +share/moodle/mod/data/export.php +share/moodle/mod/data/export_form.php +share/moodle/mod/data/field.php +share/moodle/mod/data/field/checkbox/field.class.php +share/moodle/mod/data/field/checkbox/icon.gif +share/moodle/mod/data/field/checkbox/mod.html +share/moodle/mod/data/field/date/field.class.php +share/moodle/mod/data/field/date/icon.gif +share/moodle/mod/data/field/date/mod.html +share/moodle/mod/data/field/file/field.class.php +share/moodle/mod/data/field/file/icon.gif +share/moodle/mod/data/field/file/mod.html +share/moodle/mod/data/field/latlong/field.class.php +share/moodle/mod/data/field/latlong/icon.gif +share/moodle/mod/data/field/latlong/kml.php +share/moodle/mod/data/field/latlong/mod.html +share/moodle/mod/data/field/menu/field.class.php +share/moodle/mod/data/field/menu/icon.gif +share/moodle/mod/data/field/menu/mod.html +share/moodle/mod/data/field/multimenu/field.class.php +share/moodle/mod/data/field/multimenu/icon.gif +share/moodle/mod/data/field/multimenu/mod.html +share/moodle/mod/data/field/number/field.class.php +share/moodle/mod/data/field/number/icon.gif +share/moodle/mod/data/field/number/mod.html +share/moodle/mod/data/field/picture/field.class.php +share/moodle/mod/data/field/picture/icon.gif +share/moodle/mod/data/field/picture/mod.html +share/moodle/mod/data/field/radiobutton/field.class.php +share/moodle/mod/data/field/radiobutton/icon.gif +share/moodle/mod/data/field/radiobutton/mod.html +share/moodle/mod/data/field/text/field.class.php +share/moodle/mod/data/field/text/icon.gif +share/moodle/mod/data/field/text/mod.html +share/moodle/mod/data/field/textarea/field.class.php +share/moodle/mod/data/field/textarea/icon.gif +share/moodle/mod/data/field/textarea/mod.html +share/moodle/mod/data/field/url/field.class.php +share/moodle/mod/data/field/url/icon.gif +share/moodle/mod/data/field/url/mod.html +share/moodle/mod/data/filter.php +share/moodle/mod/data/icon.gif +share/moodle/mod/data/import.php +share/moodle/mod/data/index.php +share/moodle/mod/data/js.php +share/moodle/mod/data/lib.php +share/moodle/mod/data/mod_form.php +share/moodle/mod/data/pagelib.php +share/moodle/mod/data/preset.php +share/moodle/mod/data/preset/imagegallery/addtemplate.html +share/moodle/mod/data/preset/imagegallery/csstemplate.css +share/moodle/mod/data/preset/imagegallery/jstemplate.js +share/moodle/mod/data/preset/imagegallery/listtemplate.html +share/moodle/mod/data/preset/imagegallery/listtemplatefooter.html +share/moodle/mod/data/preset/imagegallery/listtemplateheader.html +share/moodle/mod/data/preset/imagegallery/preset.xml +share/moodle/mod/data/preset/imagegallery/rsstemplate.html +share/moodle/mod/data/preset/imagegallery/rsstitletemplate.html +share/moodle/mod/data/preset/imagegallery/singletemplate.html +share/moodle/mod/data/preset_class.php +share/moodle/mod/data/preset_new.php +share/moodle/mod/data/rate.php +share/moodle/mod/data/report.php +share/moodle/mod/data/restorelib.php +share/moodle/mod/data/rsslib.php +share/moodle/mod/data/settings.php +share/moodle/mod/data/simpletest/testpreset.php +share/moodle/mod/data/styles.php +share/moodle/mod/data/tabs.php +share/moodle/mod/data/templates.php +share/moodle/mod/data/version.php +share/moodle/mod/data/view.php +share/moodle/mod/forum/backuplib.php +share/moodle/mod/forum/db/access.php +share/moodle/mod/forum/db/install.xml +share/moodle/mod/forum/db/mysql.php +share/moodle/mod/forum/db/postgres7.php +share/moodle/mod/forum/db/upgrade.php +share/moodle/mod/forum/discuss.php +share/moodle/mod/forum/icon.gif +share/moodle/mod/forum/index.php +share/moodle/mod/forum/lib.php +share/moodle/mod/forum/markposts.php +share/moodle/mod/forum/mod_form.php +share/moodle/mod/forum/post.php +share/moodle/mod/forum/post_form.php +share/moodle/mod/forum/prune.html +share/moodle/mod/forum/rate.php +share/moodle/mod/forum/rate_ajax.js +share/moodle/mod/forum/rate_ajax.php +share/moodle/mod/forum/report.php +share/moodle/mod/forum/restorelib.php +share/moodle/mod/forum/rsslib.php +share/moodle/mod/forum/search.php +share/moodle/mod/forum/settings.php +share/moodle/mod/forum/settracking.php +share/moodle/mod/forum/simpletest/testmodforumlib.php +share/moodle/mod/forum/subscribe.php +share/moodle/mod/forum/subscriber.html +share/moodle/mod/forum/subscribers.php +share/moodle/mod/forum/unsubscribeall.php +share/moodle/mod/forum/user.php +share/moodle/mod/forum/version.php +share/moodle/mod/forum/view.php +share/moodle/mod/glossary/README.txt +share/moodle/mod/glossary/TODO.txt +share/moodle/mod/glossary/approve.php +share/moodle/mod/glossary/asc.gif +share/moodle/mod/glossary/backuplib.php +share/moodle/mod/glossary/comment.gif +share/moodle/mod/glossary/comment.php +share/moodle/mod/glossary/comment_form.php +share/moodle/mod/glossary/comments.php +share/moodle/mod/glossary/db/access.php +share/moodle/mod/glossary/db/install.xml +share/moodle/mod/glossary/db/mysql.php +share/moodle/mod/glossary/db/postgres7.php +share/moodle/mod/glossary/db/upgrade.php +share/moodle/mod/glossary/deleteentry.php +share/moodle/mod/glossary/desc.gif +share/moodle/mod/glossary/edit.php +share/moodle/mod/glossary/edit_form.php +share/moodle/mod/glossary/editcategories.html +share/moodle/mod/glossary/editcategories.php +share/moodle/mod/glossary/export.gif +share/moodle/mod/glossary/export.php +share/moodle/mod/glossary/exportentry.php +share/moodle/mod/glossary/exportfile.php +share/moodle/mod/glossary/filter.php +share/moodle/mod/glossary/formats.php +share/moodle/mod/glossary/formats/README.txt +share/moodle/mod/glossary/formats/TEMPLATE/TEMPLATE_format.php +share/moodle/mod/glossary/formats/continuous/continuous_format.php +share/moodle/mod/glossary/formats/dictionary/dictionary_format.php +share/moodle/mod/glossary/formats/encyclopedia/encyclopedia_format.php +share/moodle/mod/glossary/formats/entrylist/entrylist_format.php +share/moodle/mod/glossary/formats/faq/faq_format.php +share/moodle/mod/glossary/formats/fullwithauthor/fullwithauthor_format.php +share/moodle/mod/glossary/formats/fullwithoutauthor/fullwithoutauthor_format.php +share/moodle/mod/glossary/icon.gif +share/moodle/mod/glossary/icon1.gif +share/moodle/mod/glossary/import.html +share/moodle/mod/glossary/import.php +share/moodle/mod/glossary/index.php +share/moodle/mod/glossary/lib.php +share/moodle/mod/glossary/minus.gif +share/moodle/mod/glossary/mod_form.php +share/moodle/mod/glossary/print.gif +share/moodle/mod/glossary/print.php +share/moodle/mod/glossary/rate.php +share/moodle/mod/glossary/report.php +share/moodle/mod/glossary/restorelib.php +share/moodle/mod/glossary/rsslib.php +share/moodle/mod/glossary/settings.php +share/moodle/mod/glossary/showentry.php +share/moodle/mod/glossary/sql.php +share/moodle/mod/glossary/tabs.php +share/moodle/mod/glossary/version.php +share/moodle/mod/glossary/view.php +share/moodle/mod/hotpot/README.TXT +share/moodle/mod/hotpot/attempt.php +share/moodle/mod/hotpot/backuplib.php +share/moodle/mod/hotpot/db/access.php +share/moodle/mod/hotpot/db/install.xml +share/moodle/mod/hotpot/db/mysql.php +share/moodle/mod/hotpot/db/postgres7.php +share/moodle/mod/hotpot/db/update_to_v2.php +share/moodle/mod/hotpot/db/upgrade.php +share/moodle/mod/hotpot/defaults.php +share/moodle/mod/hotpot/grade.php +share/moodle/mod/hotpot/hotpot-full.js +share/moodle/mod/hotpot/icon.gif +share/moodle/mod/hotpot/iframe.js +share/moodle/mod/hotpot/index.php +share/moodle/mod/hotpot/lib.php +share/moodle/mod/hotpot/mediaplayers/moodle/filter.php +share/moodle/mod/hotpot/mod_form.js +share/moodle/mod/hotpot/mod_form.php +share/moodle/mod/hotpot/report.php +share/moodle/mod/hotpot/report/click/report.php +share/moodle/mod/hotpot/report/default.php +share/moodle/mod/hotpot/report/fullstat/report.php +share/moodle/mod/hotpot/report/overview/report.php +share/moodle/mod/hotpot/report/simplestat/report.php +share/moodle/mod/hotpot/restorelib.php +share/moodle/mod/hotpot/review.php +share/moodle/mod/hotpot/settings.php +share/moodle/mod/hotpot/show.php +share/moodle/mod/hotpot/template/default.php +share/moodle/mod/hotpot/template/v6.php +share/moodle/mod/hotpot/template/v6/djmatch6.ht_ +share/moodle/mod/hotpot/template/v6/djmatch6.js_ +share/moodle/mod/hotpot/template/v6/djmix6.ht_ +share/moodle/mod/hotpot/template/v6/djmix6.js_ +share/moodle/mod/hotpot/template/v6/fjmatch6.ht_ +share/moodle/mod/hotpot/template/v6/fjmatch6.js_ +share/moodle/mod/hotpot/template/v6/hotpot6r.ht_ +share/moodle/mod/hotpot/template/v6/hp6.cs_ +share/moodle/mod/hotpot/template/v6/hp6browsercheck.js_ +share/moodle/mod/hotpot/template/v6/hp6buttons.js_ +share/moodle/mod/hotpot/template/v6/hp6card.js_ +share/moodle/mod/hotpot/template/v6/hp6checkshortanswer.js_ +share/moodle/mod/hotpot/template/v6/hp6hotpotnet.js_ +share/moodle/mod/hotpot/template/v6/hp6navbar.ht_ +share/moodle/mod/hotpot/template/v6/hp6objecttags.ht_ +share/moodle/mod/hotpot/template/v6/hp6plainpage.ht_ +share/moodle/mod/hotpot/template/v6/hp6sendresults.js_ +share/moodle/mod/hotpot/template/v6/hp6showmessage.js_ +share/moodle/mod/hotpot/template/v6/hp6timer.js_ +share/moodle/mod/hotpot/template/v6/hp6utilities.js_ +share/moodle/mod/hotpot/template/v6/jcloze6.ht_ +share/moodle/mod/hotpot/template/v6/jcloze6.js_ +share/moodle/mod/hotpot/template/v6/jcross6.ht_ +share/moodle/mod/hotpot/template/v6/jcross6.js_ +share/moodle/mod/hotpot/template/v6/jcross6print.ht_ +share/moodle/mod/hotpot/template/v6/jmatch6.ht_ +share/moodle/mod/hotpot/template/v6/jmatch6.js_ +share/moodle/mod/hotpot/template/v6/jmix6.ht_ +share/moodle/mod/hotpot/template/v6/jmix6.js_ +share/moodle/mod/hotpot/template/v6/jquiz6.ht_ +share/moodle/mod/hotpot/template/v6/jquiz6.js_ +share/moodle/mod/hotpot/template/v6/masher.ht_ +share/moodle/mod/hotpot/template/v6/mashernav.ht_ +share/moodle/mod/hotpot/template/v6/testbrowsercheck.htm +share/moodle/mod/hotpot/version.php +share/moodle/mod/hotpot/view.php +share/moodle/mod/index.html +share/moodle/mod/journal/backuplib.php +share/moodle/mod/journal/db/install.xml +share/moodle/mod/journal/db/mysql.php +share/moodle/mod/journal/db/postgres7.php +share/moodle/mod/journal/db/upgrade.php +share/moodle/mod/journal/defaults.php +share/moodle/mod/journal/edit.html +share/moodle/mod/journal/edit.php +share/moodle/mod/journal/icon.gif +share/moodle/mod/journal/index.php +share/moodle/mod/journal/lib.php +share/moodle/mod/journal/mod_form.php +share/moodle/mod/journal/report.php +share/moodle/mod/journal/restorelib.php +share/moodle/mod/journal/version.php +share/moodle/mod/journal/view.php +share/moodle/mod/label/backuplib.php +share/moodle/mod/label/db/install.xml +share/moodle/mod/label/db/mysql.php +share/moodle/mod/label/db/postgres7.php +share/moodle/mod/label/db/upgrade.php +share/moodle/mod/label/icon.gif +share/moodle/mod/label/index.php +share/moodle/mod/label/lib.php +share/moodle/mod/label/mod_form.php +share/moodle/mod/label/restorelib.php +share/moodle/mod/label/version.php +share/moodle/mod/label/view.php +share/moodle/mod/lams/constants.php +share/moodle/mod/lams/db/access.php +share/moodle/mod/lams/db/install.xml +share/moodle/mod/lams/db/mysql.php +share/moodle/mod/lams/db/postgres7.php +share/moodle/mod/lams/db/upgrade.php +share/moodle/mod/lams/defaults.php +share/moodle/mod/lams/icon.gif +share/moodle/mod/lams/index.php +share/moodle/mod/lams/lib.php +share/moodle/mod/lams/list.php +share/moodle/mod/lams/mod.html +share/moodle/mod/lams/settings.php +share/moodle/mod/lams/userinfo.php +share/moodle/mod/lams/version.php +share/moodle/mod/lams/view.php +share/moodle/mod/lesson/action/addbranchtable.php +share/moodle/mod/lesson/action/addcluster.php +share/moodle/mod/lesson/action/addendofbranch.php +share/moodle/mod/lesson/action/addendofcluster.php +share/moodle/mod/lesson/action/addpage.php +share/moodle/mod/lesson/action/confirmdelete.php +share/moodle/mod/lesson/action/continue.html +share/moodle/mod/lesson/action/continue.php +share/moodle/mod/lesson/action/delete.php +share/moodle/mod/lesson/action/editpage.php +share/moodle/mod/lesson/action/insertpage.php +share/moodle/mod/lesson/action/move.php +share/moodle/mod/lesson/action/moveit.php +share/moodle/mod/lesson/action/updatepage.php +share/moodle/mod/lesson/backuplib.php +share/moodle/mod/lesson/db/access.php +share/moodle/mod/lesson/db/install.xml +share/moodle/mod/lesson/db/mysql.php +share/moodle/mod/lesson/db/postgres7.php +share/moodle/mod/lesson/db/upgrade.php +share/moodle/mod/lesson/edit.php +share/moodle/mod/lesson/essay.php +share/moodle/mod/lesson/format.php +share/moodle/mod/lesson/grade.php +share/moodle/mod/lesson/highscores.php +share/moodle/mod/lesson/icon.gif +share/moodle/mod/lesson/import.php +share/moodle/mod/lesson/importppt.php +share/moodle/mod/lesson/index.php +share/moodle/mod/lesson/lesson.php +share/moodle/mod/lesson/lib.php +share/moodle/mod/lesson/locallib.php +share/moodle/mod/lesson/mediafile.php +share/moodle/mod/lesson/mod_form.php +share/moodle/mod/lesson/pagelib.php +share/moodle/mod/lesson/reformat.php +share/moodle/mod/lesson/report.php +share/moodle/mod/lesson/restorelib.php +share/moodle/mod/lesson/styles.php +share/moodle/mod/lesson/tabs.php +share/moodle/mod/lesson/timer.js +share/moodle/mod/lesson/version.php +share/moodle/mod/lesson/view.php +share/moodle/mod/lesson/viewend.html +share/moodle/mod/lesson/viewstart.html +share/moodle/mod/quiz/attempt.php +share/moodle/mod/quiz/attempt_close_js.php +share/moodle/mod/quiz/backuplib.php +share/moodle/mod/quiz/comment.php +share/moodle/mod/quiz/config.html +share/moodle/mod/quiz/db/access.php +share/moodle/mod/quiz/db/install.xml +share/moodle/mod/quiz/db/mysql.php +share/moodle/mod/quiz/db/postgres7.php +share/moodle/mod/quiz/db/upgrade.php +share/moodle/mod/quiz/defaults.php +share/moodle/mod/quiz/edit.php +share/moodle/mod/quiz/editlib.php +share/moodle/mod/quiz/grade.php +share/moodle/mod/quiz/icon.gif +share/moodle/mod/quiz/index.php +share/moodle/mod/quiz/jstimer.php +share/moodle/mod/quiz/lib.php +share/moodle/mod/quiz/locallib.php +share/moodle/mod/quiz/mod_form.php +share/moodle/mod/quiz/pagelib.php +share/moodle/mod/quiz/pix/de.gif +share/moodle/mod/quiz/pix/ma.gif +share/moodle/mod/quiz/pix/mc.gif +share/moodle/mod/quiz/pix/mu.gif +share/moodle/mod/quiz/pix/nu.gif +share/moodle/mod/quiz/pix/rm.gif +share/moodle/mod/quiz/pix/rs.gif +share/moodle/mod/quiz/pix/sa.gif +share/moodle/mod/quiz/pix/tf.gif +share/moodle/mod/quiz/protect_js.php +share/moodle/mod/quiz/quiz.js +share/moodle/mod/quiz/report.php +share/moodle/mod/quiz/report/analysis/report.php +share/moodle/mod/quiz/report/default.php +share/moodle/mod/quiz/report/grading/report.php +share/moodle/mod/quiz/report/overview/overviewgraph.php +share/moodle/mod/quiz/report/overview/overviewsettings_form.php +share/moodle/mod/quiz/report/overview/report.php +share/moodle/mod/quiz/report/regrade/report.php +share/moodle/mod/quiz/report/reportlib.php +share/moodle/mod/quiz/restorelib.php +share/moodle/mod/quiz/restorelibpre15.php +share/moodle/mod/quiz/review.php +share/moodle/mod/quiz/reviewoptions.html +share/moodle/mod/quiz/reviewquestion.php +share/moodle/mod/quiz/tabs.php +share/moodle/mod/quiz/version.php +share/moodle/mod/quiz/view.php +share/moodle/mod/resource/backuplib.php +share/moodle/mod/resource/db/install.xml +share/moodle/mod/resource/db/mysql.php +share/moodle/mod/resource/db/postgres7.php +share/moodle/mod/resource/db/upgrade.php +share/moodle/mod/resource/filter.php +share/moodle/mod/resource/icon.gif +share/moodle/mod/resource/index.php +share/moodle/mod/resource/lib.php +share/moodle/mod/resource/mod_form.php +share/moodle/mod/resource/restorelib.php +share/moodle/mod/resource/settings.php +share/moodle/mod/resource/type/directory/resource.class.php +share/moodle/mod/resource/type/file/localfile.php +share/moodle/mod/resource/type/file/localpath.php +share/moodle/mod/resource/type/file/resource.class.php +share/moodle/mod/resource/type/html/resource.class.php +share/moodle/mod/resource/type/ims/deploy.php +share/moodle/mod/resource/type/ims/dummyapi.js +share/moodle/mod/resource/type/ims/finder.php +share/moodle/mod/resource/type/ims/images/dir.gif +share/moodle/mod/resource/type/ims/images/ims.gif +share/moodle/mod/resource/type/ims/javascript.php +share/moodle/mod/resource/type/ims/preview.php +share/moodle/mod/resource/type/ims/repository_config.php +share/moodle/mod/resource/type/ims/repository_deploy.php +share/moodle/mod/resource/type/ims/resize.js +share/moodle/mod/resource/type/ims/resource.class.php +share/moodle/mod/resource/type/repository/hive/hp-footer-hive-powered.gif +share/moodle/mod/resource/type/repository/hive/makelink.php +share/moodle/mod/resource/type/repository/hive/openhive.php +share/moodle/mod/resource/type/repository/hive/openlitebrowse.php +share/moodle/mod/resource/type/repository/hive/openlitepublish.php +share/moodle/mod/resource/type/repository/hive/openlitesearch.php +share/moodle/mod/resource/type/repository/resource.class.php +share/moodle/mod/resource/type/text/resource.class.php +share/moodle/mod/resource/version.php +share/moodle/mod/resource/view.php +share/moodle/mod/scorm/README.txt +share/moodle/mod/scorm/aicc.php +share/moodle/mod/scorm/api.php +share/moodle/mod/scorm/backuplib.php +share/moodle/mod/scorm/datamodel.php +share/moodle/mod/scorm/datamodels/aicc.js.php +share/moodle/mod/scorm/datamodels/aicclib.php +share/moodle/mod/scorm/datamodels/debug.js.php +share/moodle/mod/scorm/datamodels/scorm_12.js.php +share/moodle/mod/scorm/datamodels/scorm_12lib.php +share/moodle/mod/scorm/datamodels/scorm_13.js.php +share/moodle/mod/scorm/datamodels/scorm_13lib.php +share/moodle/mod/scorm/datamodels/scormlib.php +share/moodle/mod/scorm/datamodels/sequencinglib.php +share/moodle/mod/scorm/db/access.php +share/moodle/mod/scorm/db/install.xml +share/moodle/mod/scorm/db/mysql.php +share/moodle/mod/scorm/db/postgres7.php +share/moodle/mod/scorm/db/upgrade.php +share/moodle/mod/scorm/icon.gif +share/moodle/mod/scorm/index.php +share/moodle/mod/scorm/lib.php +share/moodle/mod/scorm/loadSCO.php +share/moodle/mod/scorm/locallib.php +share/moodle/mod/scorm/mod_form.php +share/moodle/mod/scorm/pix/asset.gif +share/moodle/mod/scorm/pix/assetc.gif +share/moodle/mod/scorm/pix/browsed.gif +share/moodle/mod/scorm/pix/completed.gif +share/moodle/mod/scorm/pix/failed.gif +share/moodle/mod/scorm/pix/incomplete.gif +share/moodle/mod/scorm/pix/minus.gif +share/moodle/mod/scorm/pix/notattempted.gif +share/moodle/mod/scorm/pix/passed.gif +share/moodle/mod/scorm/pix/plus.gif +share/moodle/mod/scorm/pix/popdown.gif +share/moodle/mod/scorm/pix/popup.gif +share/moodle/mod/scorm/pix/spacer.gif +share/moodle/mod/scorm/pix/suspend.gif +share/moodle/mod/scorm/pix/wait.gif +share/moodle/mod/scorm/player.php +share/moodle/mod/scorm/rd.js +share/moodle/mod/scorm/report.php +share/moodle/mod/scorm/request.js +share/moodle/mod/scorm/restorelib.php +share/moodle/mod/scorm/settings.php +share/moodle/mod/scorm/styles.php +share/moodle/mod/scorm/version.php +share/moodle/mod/scorm/view.php +share/moodle/mod/survey/backuplib.php +share/moodle/mod/survey/db/access.php +share/moodle/mod/survey/db/install.xml +share/moodle/mod/survey/db/mysql.php +share/moodle/mod/survey/db/postgres7.php +share/moodle/mod/survey/db/upgrade.php +share/moodle/mod/survey/download.php +share/moodle/mod/survey/graph.php +share/moodle/mod/survey/icon.gif +share/moodle/mod/survey/icon2.gif +share/moodle/mod/survey/index.php +share/moodle/mod/survey/lib.php +share/moodle/mod/survey/mod_form.php +share/moodle/mod/survey/report.php +share/moodle/mod/survey/restorelib.php +share/moodle/mod/survey/save.php +share/moodle/mod/survey/version.php +share/moodle/mod/survey/view.php +share/moodle/mod/wiki/TODO.txt +share/moodle/mod/wiki/admin.php +share/moodle/mod/wiki/backuplib.php +share/moodle/mod/wiki/checklinks.html +share/moodle/mod/wiki/confirmlock.php +share/moodle/mod/wiki/db/access.php +share/moodle/mod/wiki/db/install.xml +share/moodle/mod/wiki/db/mysql.php +share/moodle/mod/wiki/db/postgres7.php +share/moodle/mod/wiki/db/upgrade.php +share/moodle/mod/wiki/ewiki/CREDITS +share/moodle/mod/wiki/ewiki/INSTALL +share/moodle/mod/wiki/ewiki/README +share/moodle/mod/wiki/ewiki/README.de +share/moodle/mod/wiki/ewiki/UPGRADE +share/moodle/mod/wiki/ewiki/ewiki.php +share/moodle/mod/wiki/ewiki/fragments/README +share/moodle/mod/wiki/ewiki/fragments/auth.php +share/moodle/mod/wiki/ewiki/fragments/binary.php +share/moodle/mod/wiki/ewiki/fragments/calendar.css +share/moodle/mod/wiki/ewiki/fragments/core.css +share/moodle/mod/wiki/ewiki/fragments/funcs.inc +share/moodle/mod/wiki/ewiki/fragments/homepage.src +share/moodle/mod/wiki/ewiki/fragments/htaccess +share/moodle/mod/wiki/ewiki/fragments/mkhuge +share/moodle/mod/wiki/ewiki/fragments/nuke_mod_wiki_index +share/moodle/mod/wiki/ewiki/fragments/strip_wonderful_slashes.php +share/moodle/mod/wiki/ewiki/fragments/wiki_format.inc +share/moodle/mod/wiki/ewiki/plugins/aview/backlinks.php +share/moodle/mod/wiki/ewiki/plugins/aview/downloads.php +share/moodle/mod/wiki/ewiki/plugins/email_protect.php +share/moodle/mod/wiki/ewiki/plugins/feature/imgresize_gd.php +share/moodle/mod/wiki/ewiki/plugins/init.php +share/moodle/mod/wiki/ewiki/plugins/jump.php +share/moodle/mod/wiki/ewiki/plugins/lib/mime_magic.php +share/moodle/mod/wiki/ewiki/plugins/markup/footnotes.php +share/moodle/mod/wiki/ewiki/plugins/moodle/diff.php +share/moodle/mod/wiki/ewiki/plugins/moodle/downloads.php +share/moodle/mod/wiki/ewiki/plugins/moodle/f_fixhtml.php +share/moodle/mod/wiki/ewiki/plugins/moodle/moodle_binary_store.php +share/moodle/mod/wiki/ewiki/plugins/moodle/moodle_highlight.php +share/moodle/mod/wiki/ewiki/plugins/moodle/moodle_rescue_html.php +share/moodle/mod/wiki/ewiki/plugins/moodle/moodle_wikidump.php +share/moodle/mod/wiki/ewiki/plugins/moodle/sitemap.php +share/moodle/mod/wiki/ewiki/plugins/moodle/wantedpages.php +share/moodle/mod/wiki/ewiki/plugins/notify.php +share/moodle/mod/wiki/ewiki/plugins/page/orphanedpages.php +share/moodle/mod/wiki/ewiki/plugins/page/pageindex.php +share/moodle/mod/wiki/ewiki/plugins/patchsaving.php +share/moodle/mod/wiki/ewiki/plugins/pluginloader.php +share/moodle/mod/wiki/ewiki/plugins/spages.php +share/moodle/mod/wiki/ewikimoodlelib.php +share/moodle/mod/wiki/filter.php +share/moodle/mod/wiki/icon.gif +share/moodle/mod/wiki/index.php +share/moodle/mod/wiki/lib.php +share/moodle/mod/wiki/mod_form.php +share/moodle/mod/wiki/overridelock.php +share/moodle/mod/wiki/removepages.html +share/moodle/mod/wiki/restorelib.php +share/moodle/mod/wiki/revertpages.html +share/moodle/mod/wiki/setpageflags.html +share/moodle/mod/wiki/strippages.html +share/moodle/mod/wiki/test.php +share/moodle/mod/wiki/version.php +share/moodle/mod/wiki/view.php +share/moodle/mod/wiki/wiki_styles.php +share/moodle/mod/workshop/assess.php +share/moodle/mod/workshop/assessment_grading_form.html +share/moodle/mod/workshop/assessments.php +share/moodle/mod/workshop/backuplib.php +share/moodle/mod/workshop/db/access.php +share/moodle/mod/workshop/db/install.xml +share/moodle/mod/workshop/db/mysql.php +share/moodle/mod/workshop/db/postgres7.php +share/moodle/mod/workshop/db/upgrade.php +share/moodle/mod/workshop/defaults.php +share/moodle/mod/workshop/icon.gif +share/moodle/mod/workshop/index.php +share/moodle/mod/workshop/lib.php +share/moodle/mod/workshop/locallib.php +share/moodle/mod/workshop/mod.html +share/moodle/mod/workshop/restorelib.php +share/moodle/mod/workshop/styles.php +share/moodle/mod/workshop/submissions.php +share/moodle/mod/workshop/upload.php +share/moodle/mod/workshop/version.php +share/moodle/mod/workshop/view.php +share/moodle/mod/workshop/viewassessment.php +share/moodle/my/index.php +share/moodle/my/pagelib.php +share/moodle/notes/add.php +share/moodle/notes/delete.php +share/moodle/notes/edit.php +share/moodle/notes/edit_form.php +share/moodle/notes/index.php +share/moodle/notes/lib.php +share/moodle/notes/version.php +share/moodle/pix/a/em1_bwgreater.gif +share/moodle/pix/a/em1_greater.gif +share/moodle/pix/a/em1_lesser.gif +share/moodle/pix/a/em1_raquo.gif +share/moodle/pix/a/l_breadcrumb.gif +share/moodle/pix/a/r_breadcrumb.gif +share/moodle/pix/a/r_go.gif +share/moodle/pix/a/r_next.gif +share/moodle/pix/a/r_previous.gif +share/moodle/pix/adv.gif +share/moodle/pix/b.gif +share/moodle/pix/c/course.gif +share/moodle/pix/c/event.gif +share/moodle/pix/c/group.gif +share/moodle/pix/c/site.gif +share/moodle/pix/c/user.gif +share/moodle/pix/docs.gif +share/moodle/pix/f/audio.gif +share/moodle/pix/f/avi.gif +share/moodle/pix/f/dmg.gif +share/moodle/pix/f/docm.gif +share/moodle/pix/f/docx.gif +share/moodle/pix/f/dotm.gif +share/moodle/pix/f/dotx.gif +share/moodle/pix/f/edit.gif +share/moodle/pix/f/env.gif +share/moodle/pix/f/excel.gif +share/moodle/pix/f/explore.gif +share/moodle/pix/f/flash.gif +share/moodle/pix/f/folder.gif +share/moodle/pix/f/help.gif +share/moodle/pix/f/html.gif +share/moodle/pix/f/image.gif +share/moodle/pix/f/isf.gif +share/moodle/pix/f/jbc.gif +share/moodle/pix/f/jcl.gif +share/moodle/pix/f/jcw.gif +share/moodle/pix/f/jmt.gif +share/moodle/pix/f/jmx.gif +share/moodle/pix/f/jqz.gif +share/moodle/pix/f/move.gif +share/moodle/pix/f/odb.gif +share/moodle/pix/f/odc.gif +share/moodle/pix/f/odf.gif +share/moodle/pix/f/odg.gif +share/moodle/pix/f/odi.gif +share/moodle/pix/f/odm.gif +share/moodle/pix/f/odp.gif +share/moodle/pix/f/ods.gif +share/moodle/pix/f/odt.gif +share/moodle/pix/f/parent.gif +share/moodle/pix/f/pdf.gif +share/moodle/pix/f/potm.gif +share/moodle/pix/f/potx.gif +share/moodle/pix/f/powerpoint.gif +share/moodle/pix/f/ppam.gif +share/moodle/pix/f/ppsm.gif +share/moodle/pix/f/ppsx.gif +share/moodle/pix/f/pptm.gif +share/moodle/pix/f/pptx.gif +share/moodle/pix/f/text.gif +share/moodle/pix/f/unknown.gif +share/moodle/pix/f/video.gif +share/moodle/pix/f/web.gif +share/moodle/pix/f/word.gif +share/moodle/pix/f/xlam.gif +share/moodle/pix/f/xlsb.gif +share/moodle/pix/f/xlsm.gif +share/moodle/pix/f/xlsx.gif +share/moodle/pix/f/xltm.gif +share/moodle/pix/f/xltx.gif +share/moodle/pix/f/xml.gif +share/moodle/pix/f/zip.gif +share/moodle/pix/g/f1.png +share/moodle/pix/g/f2.png +share/moodle/pix/help.gif +share/moodle/pix/i/ICONS-16x16 +share/moodle/pix/i/admin.gif +share/moodle/pix/i/agg_mean.gif +share/moodle/pix/i/agg_sum.gif +share/moodle/pix/i/ajaxloader.gif +share/moodle/pix/i/all.gif +share/moodle/pix/i/approve.gif +share/moodle/pix/i/backup.gif +share/moodle/pix/i/calc.gif +share/moodle/pix/i/calendar.gif +share/moodle/pix/i/closed.gif +share/moodle/pix/i/course.gif +share/moodle/pix/i/cross_red_big.gif +share/moodle/pix/i/cross_red_small.gif +share/moodle/pix/i/db.gif +share/moodle/pix/i/edit.gif +share/moodle/pix/i/email.gif +share/moodle/pix/i/feedback.gif +share/moodle/pix/i/feedback_add.gif +share/moodle/pix/i/files.gif +share/moodle/pix/i/grades.gif +share/moodle/pix/i/group.gif +share/moodle/pix/i/guest.gif +share/moodle/pix/i/hide.gif +share/moodle/pix/i/ical.gif +share/moodle/pix/i/info.gif +share/moodle/pix/i/item.gif +share/moodle/pix/i/key.gif +share/moodle/pix/i/loading_small.gif +share/moodle/pix/i/lock.gif +share/moodle/pix/i/log.gif +share/moodle/pix/i/mahara_host.gif +share/moodle/pix/i/marked.gif +share/moodle/pix/i/marker.gif +share/moodle/pix/i/mean.gif +share/moodle/pix/i/mnethost.gif +share/moodle/pix/i/moodle_host.gif +share/moodle/pix/i/move_2d.gif +share/moodle/pix/i/new.gif +share/moodle/pix/i/news.gif +share/moodle/pix/i/one.gif +share/moodle/pix/i/open.gif +share/moodle/pix/i/outcomes.gif +share/moodle/pix/i/payment.gif +share/moodle/pix/i/questions.gif +share/moodle/pix/i/reload.gif +share/moodle/pix/i/report.gif +share/moodle/pix/i/restore.gif +share/moodle/pix/i/return.gif +share/moodle/pix/i/risk_config.gif +share/moodle/pix/i/risk_managetrust.gif +share/moodle/pix/i/risk_personal.gif +share/moodle/pix/i/risk_spam.gif +share/moodle/pix/i/risk_xss.gif +share/moodle/pix/i/roles.gif +share/moodle/pix/i/rss.gif +share/moodle/pix/i/rsssitelogo.gif +share/moodle/pix/i/scales.gif +share/moodle/pix/i/search.gif +share/moodle/pix/i/settings.gif +share/moodle/pix/i/show.gif +share/moodle/pix/i/stats.gif +share/moodle/pix/i/switch.gif +share/moodle/pix/i/tick_amber_big.gif +share/moodle/pix/i/tick_amber_small.gif +share/moodle/pix/i/tick_green_big.gif +share/moodle/pix/i/tick_green_small.gif +share/moodle/pix/i/unlock.gif +share/moodle/pix/i/user.gif +share/moodle/pix/i/users.gif +share/moodle/pix/m/USD.gif +share/moodle/pix/madewithmoodle.gif +share/moodle/pix/moodlelogo-med-white.gif +share/moodle/pix/moodlelogo-med.gif +share/moodle/pix/moodlelogo.gif +share/moodle/pix/movehere.gif +share/moodle/pix/redirect.php +share/moodle/pix/req.gif +share/moodle/pix/s/SMILEYS +share/moodle/pix/s/angry.gif +share/moodle/pix/s/approve.gif +share/moodle/pix/s/biggrin.gif +share/moodle/pix/s/blackeye.gif +share/moodle/pix/s/blush.gif +share/moodle/pix/s/clown.gif +share/moodle/pix/s/cool.gif +share/moodle/pix/s/dead.gif +share/moodle/pix/s/egg.gif +share/moodle/pix/s/evil.gif +share/moodle/pix/s/heart.gif +share/moodle/pix/s/kiss.gif +share/moodle/pix/s/martin.gif +share/moodle/pix/s/mixed.gif +share/moodle/pix/s/no.gif +share/moodle/pix/s/sad.gif +share/moodle/pix/s/shy.gif +share/moodle/pix/s/sleepy.gif +share/moodle/pix/s/smiley.gif +share/moodle/pix/s/surprise.gif +share/moodle/pix/s/thoughtful.gif +share/moodle/pix/s/tongueout.gif +share/moodle/pix/s/wideeyes.gif +share/moodle/pix/s/wink.gif +share/moodle/pix/s/yes.gif +share/moodle/pix/smartpix.php +share/moodle/pix/spacer.gif +share/moodle/pix/t/TINY-ICONS +share/moodle/pix/t/backup.gif +share/moodle/pix/t/calc.gif +share/moodle/pix/t/calc_off.gif +share/moodle/pix/t/calendar.gif +share/moodle/pix/t/clear.gif +share/moodle/pix/t/copy.gif +share/moodle/pix/t/delete.gif +share/moodle/pix/t/down.gif +share/moodle/pix/t/edit.gif +share/moodle/pix/t/email.gif +share/moodle/pix/t/emailno.gif +share/moodle/pix/t/feedback.gif +share/moodle/pix/t/feedback_add.gif +share/moodle/pix/t/go.gif +share/moodle/pix/t/grades.gif +share/moodle/pix/t/groupn.gif +share/moodle/pix/t/groups.gif +share/moodle/pix/t/groupv.gif +share/moodle/pix/t/hiddenuntil.gif +share/moodle/pix/t/hide.gif +share/moodle/pix/t/hideuntil.gif +share/moodle/pix/t/left.gif +share/moodle/pix/t/lock.gif +share/moodle/pix/t/locktime.gif +share/moodle/pix/t/log.gif +share/moodle/pix/t/manual_item.gif +share/moodle/pix/t/mean.gif +share/moodle/pix/t/message.gif +share/moodle/pix/t/move.gif +share/moodle/pix/t/moveleft.gif +share/moodle/pix/t/outcomes.gif +share/moodle/pix/t/preview.gif +share/moodle/pix/t/ranges.gif +share/moodle/pix/t/removeright.gif +share/moodle/pix/t/restore.gif +share/moodle/pix/t/right.gif +share/moodle/pix/t/scales.gif +share/moodle/pix/t/show.gif +share/moodle/pix/t/sigma.gif +share/moodle/pix/t/stop.gif +share/moodle/pix/t/switch.gif +share/moodle/pix/t/switch_minus.gif +share/moodle/pix/t/switch_plus.gif +share/moodle/pix/t/switch_whole.gif +share/moodle/pix/t/unlock.gif +share/moodle/pix/t/unlock_gray.gif +share/moodle/pix/t/up.gif +share/moodle/pix/t/user.gif +share/moodle/pix/t/usernot.gif +share/moodle/pix/u/f1.png +share/moodle/pix/u/f2.png +share/moodle/pix/u/user100.png +share/moodle/pix/u/user35.png +share/moodle/pix/webding.png +share/moodle/question/backuplib.php +share/moodle/question/category.php +share/moodle/question/category_class.php +share/moodle/question/category_form.php +share/moodle/question/comment.html +share/moodle/question/contextmove.php +share/moodle/question/contextmove_form.php +share/moodle/question/contextmoveq.php +share/moodle/question/contextmoveq_form.php +share/moodle/question/edit.php +share/moodle/question/editlib.php +share/moodle/question/export.php +share/moodle/question/export_form.php +share/moodle/question/exportfile.php +share/moodle/question/file.php +share/moodle/question/format.php +share/moodle/question/format/README.txt +share/moodle/question/format/aiken/format.php +share/moodle/question/format/blackboard/format.php +share/moodle/question/format/blackboard_6/format.php +share/moodle/question/format/coursetestmanager/format.php +share/moodle/question/format/examview/format.php +share/moodle/question/format/gift/examples.txt +share/moodle/question/format/gift/format.php +share/moodle/question/format/hotpot/format.php +share/moodle/question/format/learnwise/format.php +share/moodle/question/format/learnwise/learnwise-example.xml +share/moodle/question/format/missingword/format.php +share/moodle/question/format/multianswer/format.php +share/moodle/question/format/qti2/custommediafilter.php +share/moodle/question/format/qti2/format.php +share/moodle/question/format/qti2/qt_common.php +share/moodle/question/format/qti2/templates/choice.tpl +share/moodle/question/format/qti2/templates/choiceMultiple.tpl +share/moodle/question/format/qti2/templates/composite.tpl +share/moodle/question/format/qti2/templates/extendedText.tpl +share/moodle/question/format/qti2/templates/extendedText_simpleEssay.tpl +share/moodle/question/format/qti2/templates/graphicGapMatch.tpl +share/moodle/question/format/qti2/templates/imsmanifest.tpl +share/moodle/question/format/qti2/templates/match.tpl +share/moodle/question/format/qti2/templates/mmchoiceMultiple.tpl +share/moodle/question/format/qti2/templates/notimplemented.tpl +share/moodle/question/format/qti2/templates/numerical.tpl +share/moodle/question/format/qti2/templates/textEntry.tpl +share/moodle/question/format/webct/TODO.txt +share/moodle/question/format/webct/format.php +share/moodle/question/format/xhtml/format.php +share/moodle/question/format/xhtml/xhtml.css +share/moodle/question/format/xml/format.php +share/moodle/question/import.php +share/moodle/question/import_form.php +share/moodle/question/move_form.php +share/moodle/question/preview.php +share/moodle/question/question.php +share/moodle/question/restorelib.php +share/moodle/question/tabs.php +share/moodle/question/type/calculated/db/install.xml +share/moodle/question/type/calculated/db/mysql.php +share/moodle/question/type/calculated/db/postgres7.php +share/moodle/question/type/calculated/db/upgrade.php +share/moodle/question/type/calculated/edit_calculated_form.php +share/moodle/question/type/calculated/icon.gif +share/moodle/question/type/calculated/questiontype.php +share/moodle/question/type/calculated/version.php +share/moodle/question/type/datasetdependent/abstractqtype.php +share/moodle/question/type/datasetdependent/datasetdefinitions_form.php +share/moodle/question/type/datasetdependent/datasetitems_form.php +share/moodle/question/type/description/edit_description_form.php +share/moodle/question/type/description/icon.gif +share/moodle/question/type/description/question.html +share/moodle/question/type/description/questiontype.php +share/moodle/question/type/edit_question_form.php +share/moodle/question/type/essay/db/mysql.php +share/moodle/question/type/essay/db/postgres7.php +share/moodle/question/type/essay/db/upgrade.php +share/moodle/question/type/essay/display.html +share/moodle/question/type/essay/edit_essay_form.php +share/moodle/question/type/essay/icon.gif +share/moodle/question/type/essay/questiontype.php +share/moodle/question/type/essay/version.php +share/moodle/question/type/match/db/install.xml +share/moodle/question/type/match/db/mysql.php +share/moodle/question/type/match/db/postgres7.php +share/moodle/question/type/match/db/upgrade.php +share/moodle/question/type/match/display.html +share/moodle/question/type/match/edit_match_form.php +share/moodle/question/type/match/icon.gif +share/moodle/question/type/match/questiontype.php +share/moodle/question/type/match/version.php +share/moodle/question/type/missingtype/display.html +share/moodle/question/type/missingtype/edit_missingtype_form.php +share/moodle/question/type/missingtype/icon.gif +share/moodle/question/type/missingtype/questiontype.php +share/moodle/question/type/multianswer/db/install.xml +share/moodle/question/type/multianswer/db/mysql.php +share/moodle/question/type/multianswer/db/postgres7.php +share/moodle/question/type/multianswer/db/upgrade.php +share/moodle/question/type/multianswer/edit_multianswer_form.php +share/moodle/question/type/multianswer/icon.gif +share/moodle/question/type/multianswer/questiontype.php +share/moodle/question/type/multianswer/version.php +share/moodle/question/type/multichoice/db/install.xml +share/moodle/question/type/multichoice/db/mysql.php +share/moodle/question/type/multichoice/db/postgres7.php +share/moodle/question/type/multichoice/db/upgrade.php +share/moodle/question/type/multichoice/display.html +share/moodle/question/type/multichoice/edit_multichoice_form.php +share/moodle/question/type/multichoice/icon.gif +share/moodle/question/type/multichoice/questiontype.php +share/moodle/question/type/multichoice/version.php +share/moodle/question/type/numerical/db/install.xml +share/moodle/question/type/numerical/db/mysql.php +share/moodle/question/type/numerical/db/postgres7.php +share/moodle/question/type/numerical/db/upgrade.php +share/moodle/question/type/numerical/edit_numerical_form.php +share/moodle/question/type/numerical/icon.gif +share/moodle/question/type/numerical/questiontype.php +share/moodle/question/type/numerical/simpletest/testquestiontype.php +share/moodle/question/type/numerical/version.php +share/moodle/question/type/question.html +share/moodle/question/type/questiontype.php +share/moodle/question/type/random/edit_random_form.php +share/moodle/question/type/random/icon.gif +share/moodle/question/type/random/questiontype.php +share/moodle/question/type/randomsamatch/db/install.xml +share/moodle/question/type/randomsamatch/db/mysql.php +share/moodle/question/type/randomsamatch/db/postgres7.php +share/moodle/question/type/randomsamatch/db/upgrade.php +share/moodle/question/type/randomsamatch/edit_randomsamatch_form.php +share/moodle/question/type/randomsamatch/icon.gif +share/moodle/question/type/randomsamatch/questiontype.php +share/moodle/question/type/randomsamatch/version.php +share/moodle/question/type/shortanswer/db/install.xml +share/moodle/question/type/shortanswer/db/mysql.php +share/moodle/question/type/shortanswer/db/postgres7.php +share/moodle/question/type/shortanswer/db/upgrade.php +share/moodle/question/type/shortanswer/display.html +share/moodle/question/type/shortanswer/edit_shortanswer_form.php +share/moodle/question/type/shortanswer/icon.gif +share/moodle/question/type/shortanswer/questiontype.php +share/moodle/question/type/shortanswer/simpletest/testquestiontype.php +share/moodle/question/type/shortanswer/version.php +share/moodle/question/type/simpletest/testquestiontype.php +share/moodle/question/type/truefalse/db/install.xml +share/moodle/question/type/truefalse/db/mysql.php +share/moodle/question/type/truefalse/db/postgres7.php +share/moodle/question/type/truefalse/db/upgrade.php +share/moodle/question/type/truefalse/display.html +share/moodle/question/type/truefalse/edit_truefalse_form.php +share/moodle/question/type/truefalse/icon.gif +share/moodle/question/type/truefalse/questiontype.php +share/moodle/question/type/truefalse/version.php +share/moodle/question/upgrade.php +share/moodle/rss/file.php +share/moodle/rss/index.html +share/moodle/search/.cvsignore +share/moodle/search/LISEZMOI.txt +share/moodle/search/README.txt +share/moodle/search/READMETOO.txt +share/moodle/search/README_ARCHIVE.txt +share/moodle/search/Zend/Exception.php +share/moodle/search/Zend/IMPORTANT.txt +share/moodle/search/Zend/LICENSE.txt +share/moodle/search/Zend/Search/Exception.php +share/moodle/search/Zend/Search/Lucene.php +share/moodle/search/Zend/Search/Lucene/Analysis/Analyzer.php +share/moodle/search/Zend/Search/Lucene/Analysis/Analyzer/Common.php +share/moodle/search/Zend/Search/Lucene/Analysis/Analyzer/Common/Text.php +share/moodle/search/Zend/Search/Lucene/Analysis/Analyzer/Common/Text/CaseInsensitive.php +share/moodle/search/Zend/Search/Lucene/Analysis/Analyzer/Common/TextNum.php +share/moodle/search/Zend/Search/Lucene/Analysis/Analyzer/Common/TextNum/CaseInsensitive.php +share/moodle/search/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8.php +share/moodle/search/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8/CaseInsensitive.php +share/moodle/search/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8Num.php +share/moodle/search/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8Num/CaseInsensitive.php +share/moodle/search/Zend/Search/Lucene/Analysis/Token.php +share/moodle/search/Zend/Search/Lucene/Analysis/TokenFilter.php +share/moodle/search/Zend/Search/Lucene/Analysis/TokenFilter/LowerCase.php +share/moodle/search/Zend/Search/Lucene/Analysis/TokenFilter/LowerCaseUtf8.php +share/moodle/search/Zend/Search/Lucene/Analysis/TokenFilter/ShortWords.php +share/moodle/search/Zend/Search/Lucene/Analysis/TokenFilter/StopWords.php +share/moodle/search/Zend/Search/Lucene/Document.php +share/moodle/search/Zend/Search/Lucene/Document/Html.php +share/moodle/search/Zend/Search/Lucene/Exception.php +share/moodle/search/Zend/Search/Lucene/FSM.php +share/moodle/search/Zend/Search/Lucene/FSMAction.php +share/moodle/search/Zend/Search/Lucene/Field.php +share/moodle/search/Zend/Search/Lucene/Index/DictionaryLoader.php +share/moodle/search/Zend/Search/Lucene/Index/FieldInfo.php +share/moodle/search/Zend/Search/Lucene/Index/SegmentInfo.php +share/moodle/search/Zend/Search/Lucene/Index/SegmentInfoPriorityQueue.php +share/moodle/search/Zend/Search/Lucene/Index/SegmentMerger.php +share/moodle/search/Zend/Search/Lucene/Index/SegmentWriter.php +share/moodle/search/Zend/Search/Lucene/Index/SegmentWriter/DocumentWriter.php +share/moodle/search/Zend/Search/Lucene/Index/SegmentWriter/StreamWriter.php +share/moodle/search/Zend/Search/Lucene/Index/Term.php +share/moodle/search/Zend/Search/Lucene/Index/TermInfo.php +share/moodle/search/Zend/Search/Lucene/Index/Writer.php +share/moodle/search/Zend/Search/Lucene/Interface.php +share/moodle/search/Zend/Search/Lucene/LockManager.php +share/moodle/search/Zend/Search/Lucene/PriorityQueue.php +share/moodle/search/Zend/Search/Lucene/Proxy.php +share/moodle/search/Zend/Search/Lucene/Search/BooleanExpressionRecognizer.php +share/moodle/search/Zend/Search/Lucene/Search/Query.php +share/moodle/search/Zend/Search/Lucene/Search/Query/Boolean.php +share/moodle/search/Zend/Search/Lucene/Search/Query/Empty.php +share/moodle/search/Zend/Search/Lucene/Search/Query/Fuzzy.php +share/moodle/search/Zend/Search/Lucene/Search/Query/Insignificant.php +share/moodle/search/Zend/Search/Lucene/Search/Query/MultiTerm.php +share/moodle/search/Zend/Search/Lucene/Search/Query/Phrase.php +share/moodle/search/Zend/Search/Lucene/Search/Query/Range.php +share/moodle/search/Zend/Search/Lucene/Search/Query/Term.php +share/moodle/search/Zend/Search/Lucene/Search/Query/Wildcard.php +share/moodle/search/Zend/Search/Lucene/Search/QueryEntry.php +share/moodle/search/Zend/Search/Lucene/Search/QueryEntry/Phrase.php +share/moodle/search/Zend/Search/Lucene/Search/QueryEntry/Subquery.php +share/moodle/search/Zend/Search/Lucene/Search/QueryEntry/Term.php +share/moodle/search/Zend/Search/Lucene/Search/QueryHit.php +share/moodle/search/Zend/Search/Lucene/Search/QueryLexer.php +share/moodle/search/Zend/Search/Lucene/Search/QueryParser.php +share/moodle/search/Zend/Search/Lucene/Search/QueryParserContext.php +share/moodle/search/Zend/Search/Lucene/Search/QueryParserException.php +share/moodle/search/Zend/Search/Lucene/Search/QueryToken.php +share/moodle/search/Zend/Search/Lucene/Search/QueryTokenizer.php +share/moodle/search/Zend/Search/Lucene/Search/Similarity.php +share/moodle/search/Zend/Search/Lucene/Search/Similarity/Default.php +share/moodle/search/Zend/Search/Lucene/Search/Weight.php +share/moodle/search/Zend/Search/Lucene/Search/Weight/Boolean.php +share/moodle/search/Zend/Search/Lucene/Search/Weight/Empty.php +share/moodle/search/Zend/Search/Lucene/Search/Weight/MultiTerm.php +share/moodle/search/Zend/Search/Lucene/Search/Weight/Phrase.php +share/moodle/search/Zend/Search/Lucene/Search/Weight/Term.php +share/moodle/search/Zend/Search/Lucene/SoftLockManager.php +share/moodle/search/Zend/Search/Lucene/Storage/Directory.php +share/moodle/search/Zend/Search/Lucene/Storage/Directory/Filesystem.php +share/moodle/search/Zend/Search/Lucene/Storage/File.php +share/moodle/search/Zend/Search/Lucene/Storage/File/Filesystem.php +share/moodle/search/Zend/Search/Lucene/Storage/File/Memory.php +share/moodle/search/Zend/Search/TODO.txt +share/moodle/search/add.php +share/moodle/search/cron.php +share/moodle/search/cron_php5.php +share/moodle/search/delete.php +share/moodle/search/documents/assignment_document.php +share/moodle/search/documents/chat_document.php +share/moodle/search/documents/data_document.php +share/moodle/search/documents/document.php +share/moodle/search/documents/forum_document.php +share/moodle/search/documents/glossary_document.php +share/moodle/search/documents/label_document.php +share/moodle/search/documents/lesson_document.php +share/moodle/search/documents/physical_doc.php +share/moodle/search/documents/physical_htm.php +share/moodle/search/documents/physical_html.php +share/moodle/search/documents/physical_odt.php +share/moodle/search/documents/physical_pdf.php +share/moodle/search/documents/physical_ppt.php +share/moodle/search/documents/physical_swf.php +share/moodle/search/documents/physical_txt.php +share/moodle/search/documents/physical_xml.php +share/moodle/search/documents/resource_document.php +share/moodle/search/documents/user_document.php +share/moodle/search/documents/wiki_document.php +share/moodle/search/index.php +share/moodle/search/indexer.php +share/moodle/search/indexersplash.php +share/moodle/search/indexlib.php +share/moodle/search/lib.php +share/moodle/search/query.php +share/moodle/search/querylib.php +share/moodle/search/searchtypes.php +share/moodle/search/stats.php +share/moodle/search/tests/index.php +share/moodle/search/update.php +share/moodle/search/version.php +share/moodle/sso/README.txt +share/moodle/sso/hive/expired.php +share/moodle/sso/hive/lib.php +share/moodle/sso/hive/login.php +share/moodle/tag/edit.php +share/moodle/tag/edit_form.php +share/moodle/tag/index.php +share/moodle/tag/lib.php +share/moodle/tag/locallib.php +share/moodle/tag/manage.php +share/moodle/tag/pagelib.php +share/moodle/tag/search.php +share/moodle/tag/tag_autocomplete.php +share/moodle/tag/user.php +share/moodle/tags +share/moodle/tags.txt +share/moodle/theme/UPGRADE.txt +share/moodle/theme/chameleon/README.html +share/moodle/theme/chameleon/config.php +share/moodle/theme/chameleon/favicon.ico +share/moodle/theme/chameleon/footer.html +share/moodle/theme/chameleon/header.html +share/moodle/theme/chameleon/meta.php +share/moodle/theme/chameleon/pix/a/em1_bwgreater.gif +share/moodle/theme/chameleon/pix/a/em1_greater.gif +share/moodle/theme/chameleon/pix/a/em1_lesser.gif +share/moodle/theme/chameleon/pix/a/em1_raquo.gif +share/moodle/theme/chameleon/pix/a/l_breadcrumb.gif +share/moodle/theme/chameleon/pix/a/r_breadcrumb.gif +share/moodle/theme/chameleon/pix/a/r_go.gif +share/moodle/theme/chameleon/pix/a/r_next.gif +share/moodle/theme/chameleon/pix/a/r_previous.gif +share/moodle/theme/chameleon/pix/adv.gif +share/moodle/theme/chameleon/pix/b.gif +share/moodle/theme/chameleon/pix/c/course.gif +share/moodle/theme/chameleon/pix/c/event.gif +share/moodle/theme/chameleon/pix/c/group.gif +share/moodle/theme/chameleon/pix/c/site.gif +share/moodle/theme/chameleon/pix/c/user.gif +share/moodle/theme/chameleon/pix/colorstrip.gif +share/moodle/theme/chameleon/pix/css.gif +share/moodle/theme/chameleon/pix/docs.gif +share/moodle/theme/chameleon/pix/f/audio.gif +share/moodle/theme/chameleon/pix/f/avi.gif +share/moodle/theme/chameleon/pix/f/dmg.gif +share/moodle/theme/chameleon/pix/f/docm.gif +share/moodle/theme/chameleon/pix/f/docx.gif +share/moodle/theme/chameleon/pix/f/dotm.gif +share/moodle/theme/chameleon/pix/f/dotx.gif +share/moodle/theme/chameleon/pix/f/edit.gif +share/moodle/theme/chameleon/pix/f/env.gif +share/moodle/theme/chameleon/pix/f/excel.gif +share/moodle/theme/chameleon/pix/f/explore.gif +share/moodle/theme/chameleon/pix/f/flash.gif +share/moodle/theme/chameleon/pix/f/folder.gif +share/moodle/theme/chameleon/pix/f/help.gif +share/moodle/theme/chameleon/pix/f/html.gif +share/moodle/theme/chameleon/pix/f/image.gif +share/moodle/theme/chameleon/pix/f/isf.gif +share/moodle/theme/chameleon/pix/f/jbc.gif +share/moodle/theme/chameleon/pix/f/jcl.gif +share/moodle/theme/chameleon/pix/f/jcw.gif +share/moodle/theme/chameleon/pix/f/jmt.gif +share/moodle/theme/chameleon/pix/f/jmx.gif +share/moodle/theme/chameleon/pix/f/jqz.gif +share/moodle/theme/chameleon/pix/f/move.gif +share/moodle/theme/chameleon/pix/f/odb.gif +share/moodle/theme/chameleon/pix/f/odc.gif +share/moodle/theme/chameleon/pix/f/odf.gif +share/moodle/theme/chameleon/pix/f/odg.gif +share/moodle/theme/chameleon/pix/f/odi.gif +share/moodle/theme/chameleon/pix/f/odm.gif +share/moodle/theme/chameleon/pix/f/odp.gif +share/moodle/theme/chameleon/pix/f/ods.gif +share/moodle/theme/chameleon/pix/f/odt.gif +share/moodle/theme/chameleon/pix/f/parent.gif +share/moodle/theme/chameleon/pix/f/pdf.gif +share/moodle/theme/chameleon/pix/f/potm.gif +share/moodle/theme/chameleon/pix/f/potx.gif +share/moodle/theme/chameleon/pix/f/powerpoint.gif +share/moodle/theme/chameleon/pix/f/ppam.gif +share/moodle/theme/chameleon/pix/f/ppsm.gif +share/moodle/theme/chameleon/pix/f/ppsx.gif +share/moodle/theme/chameleon/pix/f/pptm.gif +share/moodle/theme/chameleon/pix/f/pptx.gif +share/moodle/theme/chameleon/pix/f/text.gif +share/moodle/theme/chameleon/pix/f/unknown.gif +share/moodle/theme/chameleon/pix/f/video.gif +share/moodle/theme/chameleon/pix/f/web.gif +share/moodle/theme/chameleon/pix/f/word.gif +share/moodle/theme/chameleon/pix/f/xlam.gif +share/moodle/theme/chameleon/pix/f/xlsb.gif +share/moodle/theme/chameleon/pix/f/xlsm.gif +share/moodle/theme/chameleon/pix/f/xlsx.gif +share/moodle/theme/chameleon/pix/f/xltm.gif +share/moodle/theme/chameleon/pix/f/xltx.gif +share/moodle/theme/chameleon/pix/f/xml.gif +share/moodle/theme/chameleon/pix/f/zip.gif +share/moodle/theme/chameleon/pix/g/f1.png +share/moodle/theme/chameleon/pix/g/f2.png +share/moodle/theme/chameleon/pix/help.gif +share/moodle/theme/chameleon/pix/i/ICONS-16x16 +share/moodle/theme/chameleon/pix/i/admin.gif +share/moodle/theme/chameleon/pix/i/agg_mean.gif +share/moodle/theme/chameleon/pix/i/agg_sum.gif +share/moodle/theme/chameleon/pix/i/ajaxloader.gif +share/moodle/theme/chameleon/pix/i/all.gif +share/moodle/theme/chameleon/pix/i/approve.gif +share/moodle/theme/chameleon/pix/i/backup.gif +share/moodle/theme/chameleon/pix/i/calc.gif +share/moodle/theme/chameleon/pix/i/calendar.gif +share/moodle/theme/chameleon/pix/i/closed.gif +share/moodle/theme/chameleon/pix/i/course.gif +share/moodle/theme/chameleon/pix/i/cross_red_big.gif +share/moodle/theme/chameleon/pix/i/cross_red_small.gif +share/moodle/theme/chameleon/pix/i/db.gif +share/moodle/theme/chameleon/pix/i/edit.gif +share/moodle/theme/chameleon/pix/i/email.gif +share/moodle/theme/chameleon/pix/i/feedback.gif +share/moodle/theme/chameleon/pix/i/feedback_add.gif +share/moodle/theme/chameleon/pix/i/files.gif +share/moodle/theme/chameleon/pix/i/grades.gif +share/moodle/theme/chameleon/pix/i/group.gif +share/moodle/theme/chameleon/pix/i/guest.gif +share/moodle/theme/chameleon/pix/i/hide.gif +share/moodle/theme/chameleon/pix/i/ical.gif +share/moodle/theme/chameleon/pix/i/info.gif +share/moodle/theme/chameleon/pix/i/item.gif +share/moodle/theme/chameleon/pix/i/key.gif +share/moodle/theme/chameleon/pix/i/lock.gif +share/moodle/theme/chameleon/pix/i/log.gif +share/moodle/theme/chameleon/pix/i/mahara_host.gif +share/moodle/theme/chameleon/pix/i/marked.gif +share/moodle/theme/chameleon/pix/i/marker.gif +share/moodle/theme/chameleon/pix/i/mean.gif +share/moodle/theme/chameleon/pix/i/mnethost.gif +share/moodle/theme/chameleon/pix/i/moodle_host.gif +share/moodle/theme/chameleon/pix/i/move_2d.gif +share/moodle/theme/chameleon/pix/i/new.gif +share/moodle/theme/chameleon/pix/i/news.gif +share/moodle/theme/chameleon/pix/i/one.gif +share/moodle/theme/chameleon/pix/i/open.gif +share/moodle/theme/chameleon/pix/i/outcomes.gif +share/moodle/theme/chameleon/pix/i/payment.gif +share/moodle/theme/chameleon/pix/i/questions.gif +share/moodle/theme/chameleon/pix/i/report.gif +share/moodle/theme/chameleon/pix/i/restore.gif +share/moodle/theme/chameleon/pix/i/return.gif +share/moodle/theme/chameleon/pix/i/risk_config.gif +share/moodle/theme/chameleon/pix/i/risk_managetrust.gif +share/moodle/theme/chameleon/pix/i/risk_personal.gif +share/moodle/theme/chameleon/pix/i/risk_spam.gif +share/moodle/theme/chameleon/pix/i/risk_xss.gif +share/moodle/theme/chameleon/pix/i/roles.gif +share/moodle/theme/chameleon/pix/i/rss.gif +share/moodle/theme/chameleon/pix/i/rsssitelogo.gif +share/moodle/theme/chameleon/pix/i/scales.gif +share/moodle/theme/chameleon/pix/i/search.gif +share/moodle/theme/chameleon/pix/i/settings.gif +share/moodle/theme/chameleon/pix/i/show.gif +share/moodle/theme/chameleon/pix/i/stats.gif +share/moodle/theme/chameleon/pix/i/switch.gif +share/moodle/theme/chameleon/pix/i/tick_amber_big.gif +share/moodle/theme/chameleon/pix/i/tick_amber_small.gif +share/moodle/theme/chameleon/pix/i/tick_green_big.gif +share/moodle/theme/chameleon/pix/i/tick_green_small.gif +share/moodle/theme/chameleon/pix/i/unlock.gif +share/moodle/theme/chameleon/pix/i/user.gif +share/moodle/theme/chameleon/pix/i/users.gif +share/moodle/theme/chameleon/pix/m/USD.gif +share/moodle/theme/chameleon/pix/mod/README.txt +share/moodle/theme/chameleon/pix/mod/assignment/icon.gif +share/moodle/theme/chameleon/pix/mod/book/icon.gif +share/moodle/theme/chameleon/pix/mod/book/icon.png +share/moodle/theme/chameleon/pix/mod/chat/icon.gif +share/moodle/theme/chameleon/pix/mod/choice/icon.gif +share/moodle/theme/chameleon/pix/mod/data/field/checkbox/icon.gif +share/moodle/theme/chameleon/pix/mod/data/field/date/icon.gif +share/moodle/theme/chameleon/pix/mod/data/field/file/icon.gif +share/moodle/theme/chameleon/pix/mod/data/field/menu/icon.gif +share/moodle/theme/chameleon/pix/mod/data/field/multimenu/icon.gif +share/moodle/theme/chameleon/pix/mod/data/field/number/icon.gif +share/moodle/theme/chameleon/pix/mod/data/field/picture/icon.gif +share/moodle/theme/chameleon/pix/mod/data/field/radiobutton/icon.gif +share/moodle/theme/chameleon/pix/mod/data/field/text/icon.gif +share/moodle/theme/chameleon/pix/mod/data/field/textarea/icon.gif +share/moodle/theme/chameleon/pix/mod/data/field/url/icon.gif +share/moodle/theme/chameleon/pix/mod/data/icon.gif +share/moodle/theme/chameleon/pix/mod/forum/icon.gif +share/moodle/theme/chameleon/pix/mod/glossary/asc.gif +share/moodle/theme/chameleon/pix/mod/glossary/check.gif +share/moodle/theme/chameleon/pix/mod/glossary/comment.gif +share/moodle/theme/chameleon/pix/mod/glossary/desc.gif +share/moodle/theme/chameleon/pix/mod/glossary/export.gif +share/moodle/theme/chameleon/pix/mod/glossary/icon.gif +share/moodle/theme/chameleon/pix/mod/glossary/icon1.gif +share/moodle/theme/chameleon/pix/mod/glossary/minus.gif +share/moodle/theme/chameleon/pix/mod/glossary/print.gif +share/moodle/theme/chameleon/pix/mod/hotpot/icon.gif +share/moodle/theme/chameleon/pix/mod/index.html +share/moodle/theme/chameleon/pix/mod/journal/icon.gif +share/moodle/theme/chameleon/pix/mod/label/icon.gif +share/moodle/theme/chameleon/pix/mod/lams/icon.gif +share/moodle/theme/chameleon/pix/mod/lesson/icon.gif +share/moodle/theme/chameleon/pix/mod/object/icon.gif +share/moodle/theme/chameleon/pix/mod/questionnaire/grades.gif +share/moodle/theme/chameleon/pix/mod/questionnaire/icon.gif +share/moodle/theme/chameleon/pix/mod/questionnaire/icon_old.gif +share/moodle/theme/chameleon/pix/mod/quiz/icon.gif +share/moodle/theme/chameleon/pix/mod/quiz/pix/de.gif +share/moodle/theme/chameleon/pix/mod/quiz/pix/ma.gif +share/moodle/theme/chameleon/pix/mod/quiz/pix/mc.gif +share/moodle/theme/chameleon/pix/mod/quiz/pix/mu.gif +share/moodle/theme/chameleon/pix/mod/quiz/pix/nu.gif +share/moodle/theme/chameleon/pix/mod/quiz/pix/rm.gif +share/moodle/theme/chameleon/pix/mod/quiz/pix/rs.gif +share/moodle/theme/chameleon/pix/mod/quiz/pix/sa.gif +share/moodle/theme/chameleon/pix/mod/quiz/pix/tf.gif +share/moodle/theme/chameleon/pix/mod/resource/icon.gif +share/moodle/theme/chameleon/pix/mod/scorm/icon.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/asset.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/browsed.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/completed.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/failed.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/incomplete.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/minus.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/notattempted.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/passed.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/plus.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/popdown.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/popup.gif +share/moodle/theme/chameleon/pix/mod/scorm/pix/spacer.gif +share/moodle/theme/chameleon/pix/mod/survey/icon.gif +share/moodle/theme/chameleon/pix/mod/survey/icon2.gif +share/moodle/theme/chameleon/pix/mod/wiki/icon.gif +share/moodle/theme/chameleon/pix/mod/workshop/icon.gif +share/moodle/theme/chameleon/pix/movehere.gif +share/moodle/theme/chameleon/pix/pix/b.gif +share/moodle/theme/chameleon/pix/pix/help.gif +share/moodle/theme/chameleon/pix/req.gif +share/moodle/theme/chameleon/pix/rightarrow2.gif +share/moodle/theme/chameleon/pix/s/SMILEYS +share/moodle/theme/chameleon/pix/s/angry.gif +share/moodle/theme/chameleon/pix/s/approve.gif +share/moodle/theme/chameleon/pix/s/biggrin.gif +share/moodle/theme/chameleon/pix/s/blackeye.gif +share/moodle/theme/chameleon/pix/s/blush.gif +share/moodle/theme/chameleon/pix/s/clown.gif +share/moodle/theme/chameleon/pix/s/cool.gif +share/moodle/theme/chameleon/pix/s/dead.gif +share/moodle/theme/chameleon/pix/s/egg.gif +share/moodle/theme/chameleon/pix/s/evil.gif +share/moodle/theme/chameleon/pix/s/heart.gif +share/moodle/theme/chameleon/pix/s/kiss.gif +share/moodle/theme/chameleon/pix/s/martin.gif +share/moodle/theme/chameleon/pix/s/mixed.gif +share/moodle/theme/chameleon/pix/s/no.gif +share/moodle/theme/chameleon/pix/s/s_r2_c40.gif +share/moodle/theme/chameleon/pix/s/sad.gif +share/moodle/theme/chameleon/pix/s/shy.gif +share/moodle/theme/chameleon/pix/s/sleepy.gif +share/moodle/theme/chameleon/pix/s/smiley.gif +share/moodle/theme/chameleon/pix/s/surprise.gif +share/moodle/theme/chameleon/pix/s/thoughtful.gif +share/moodle/theme/chameleon/pix/s/tongueout.gif +share/moodle/theme/chameleon/pix/s/toughtful.gif +share/moodle/theme/chameleon/pix/s/wideeyes.gif +share/moodle/theme/chameleon/pix/s/wink.gif +share/moodle/theme/chameleon/pix/s/yes.gif +share/moodle/theme/chameleon/pix/section_508.gif +share/moodle/theme/chameleon/pix/spacer.gif +share/moodle/theme/chameleon/pix/switch_minus.gif +share/moodle/theme/chameleon/pix/switch_plus.gif +share/moodle/theme/chameleon/pix/t/TINY-ICONS +share/moodle/theme/chameleon/pix/t/backup.gif +share/moodle/theme/chameleon/pix/t/calc.gif +share/moodle/theme/chameleon/pix/t/calc_off.gif +share/moodle/theme/chameleon/pix/t/calendar.gif +share/moodle/theme/chameleon/pix/t/clear.gif +share/moodle/theme/chameleon/pix/t/copy.gif +share/moodle/theme/chameleon/pix/t/delete.gif +share/moodle/theme/chameleon/pix/t/down.gif +share/moodle/theme/chameleon/pix/t/edit.gif +share/moodle/theme/chameleon/pix/t/email.gif +share/moodle/theme/chameleon/pix/t/emailno.gif +share/moodle/theme/chameleon/pix/t/feedback.gif +share/moodle/theme/chameleon/pix/t/feedback_add.gif +share/moodle/theme/chameleon/pix/t/go.gif +share/moodle/theme/chameleon/pix/t/grades.gif +share/moodle/theme/chameleon/pix/t/groupn.gif +share/moodle/theme/chameleon/pix/t/groups.gif +share/moodle/theme/chameleon/pix/t/groupv.gif +share/moodle/theme/chameleon/pix/t/hiddenuntil.gif +share/moodle/theme/chameleon/pix/t/hide.gif +share/moodle/theme/chameleon/pix/t/hideuntil.gif +share/moodle/theme/chameleon/pix/t/left.gif +share/moodle/theme/chameleon/pix/t/lock.gif +share/moodle/theme/chameleon/pix/t/locktime.gif +share/moodle/theme/chameleon/pix/t/log.gif +share/moodle/theme/chameleon/pix/t/manual_item.gif +share/moodle/theme/chameleon/pix/t/mean.gif +share/moodle/theme/chameleon/pix/t/message.gif +share/moodle/theme/chameleon/pix/t/move.gif +share/moodle/theme/chameleon/pix/t/moveleft.gif +share/moodle/theme/chameleon/pix/t/moveright.gif +share/moodle/theme/chameleon/pix/t/outcomes.gif +share/moodle/theme/chameleon/pix/t/preview.gif +share/moodle/theme/chameleon/pix/t/ranges.gif +share/moodle/theme/chameleon/pix/t/removeright.gif +share/moodle/theme/chameleon/pix/t/restore.gif +share/moodle/theme/chameleon/pix/t/right.gif +share/moodle/theme/chameleon/pix/t/scales.gif +share/moodle/theme/chameleon/pix/t/show.gif +share/moodle/theme/chameleon/pix/t/sigma.gif +share/moodle/theme/chameleon/pix/t/stop.gif +share/moodle/theme/chameleon/pix/t/switch.gif +share/moodle/theme/chameleon/pix/t/switch_minus.gif +share/moodle/theme/chameleon/pix/t/switch_plus.gif +share/moodle/theme/chameleon/pix/t/switch_whole.gif +share/moodle/theme/chameleon/pix/t/unlock.gif +share/moodle/theme/chameleon/pix/t/unlock_gray.gif +share/moodle/theme/chameleon/pix/t/up.gif +share/moodle/theme/chameleon/pix/t/user.gif +share/moodle/theme/chameleon/pix/t/usernot.gif +share/moodle/theme/chameleon/pix/tab/left.gif +share/moodle/theme/chameleon/pix/tab/left2.gif +share/moodle/theme/chameleon/pix/tab/left_active.gif +share/moodle/theme/chameleon/pix/tab/left_active2.gif +share/moodle/theme/chameleon/pix/tab/left_hover.gif +share/moodle/theme/chameleon/pix/tab/left_hover2.gif +share/moodle/theme/chameleon/pix/tab/left_inactive.gif +share/moodle/theme/chameleon/pix/tab/left_inactive2.gif +share/moodle/theme/chameleon/pix/tab/right.gif +share/moodle/theme/chameleon/pix/tab/right2.gif +share/moodle/theme/chameleon/pix/tab/right_active.gif +share/moodle/theme/chameleon/pix/tab/right_active2.gif +share/moodle/theme/chameleon/pix/tab/right_end.gif +share/moodle/theme/chameleon/pix/tab/right_end2.gif +share/moodle/theme/chameleon/pix/tab/right_hover.gif +share/moodle/theme/chameleon/pix/tab/right_hover2.gif +share/moodle/theme/chameleon/pix/tab/right_inactive.gif +share/moodle/theme/chameleon/pix/tab/right_inactive2.gif +share/moodle/theme/chameleon/pix/tab/tabsbg.gif +share/moodle/theme/chameleon/pix/tab/tabsbg2.gif +share/moodle/theme/chameleon/pix/tab/tabsbg_x2.gif +share/moodle/theme/chameleon/pix/u/f1.png +share/moodle/theme/chameleon/pix/u/f1_old.png +share/moodle/theme/chameleon/pix/u/f2.png +share/moodle/theme/chameleon/pix/u/f2_old.png +share/moodle/theme/chameleon/pix/webding.png +share/moodle/theme/chameleon/pix/xhtml_1_0.gif +share/moodle/theme/chameleon/styles.php +share/moodle/theme/chameleon/styles_ie6.css +share/moodle/theme/chameleon/styles_ie7.css +share/moodle/theme/chameleon/temp_user_styles.css +share/moodle/theme/chameleon/ui/ChameleonCSS.class.php +share/moodle/theme/chameleon/ui/ChameleonFileBrowser.class.php +share/moodle/theme/chameleon/ui/chameleon.php +share/moodle/theme/chameleon/ui/chameleon_js.php +share/moodle/theme/chameleon/ui/chameleon_ui.css +share/moodle/theme/chameleon/ui/css.php +share/moodle/theme/chameleon/ui/css_query.js +share/moodle/theme/chameleon/ui/images/active_tab.gif +share/moodle/theme/chameleon/ui/images/error.gif +share/moodle/theme/chameleon/ui/images/folder.gif +share/moodle/theme/chameleon/ui/images/grad.gif +share/moodle/theme/chameleon/ui/images/hotspot.gif +share/moodle/theme/chameleon/ui/images/image.gif +share/moodle/theme/chameleon/ui/images/inactive_tab.gif +share/moodle/theme/chameleon/ui/images/none.gif +share/moodle/theme/chameleon/ui/images/notice.gif +share/moodle/theme/chameleon/ui/images/ok.gif +share/moodle/theme/chameleon/ui/images/parent.gif +share/moodle/theme/chameleon/ui/images/tag.gif +share/moodle/theme/chameleon/ui/images/working.gif +share/moodle/theme/chameleon/ui/sarissa.js +share/moodle/theme/chameleon/user_styles.css +share/moodle/theme/cornflower/README.html +share/moodle/theme/cornflower/config.php +share/moodle/theme/cornflower/cornflower.css +share/moodle/theme/cornflower/docstyles.php +share/moodle/theme/cornflower/favicon.ico +share/moodle/theme/cornflower/footer.html +share/moodle/theme/cornflower/header.html +share/moodle/theme/cornflower/images/bg.gif +share/moodle/theme/cornflower/images/classroomrevolution.jpg +share/moodle/theme/cornflower/images/hdbg.jpg +share/moodle/theme/cornflower/images/hdbgend.jpg +share/moodle/theme/cornflower/images/logo.jpg +share/moodle/theme/cornflower/images/logo.psd +share/moodle/theme/cornflower/images/moodlelogo.gif +share/moodle/theme/cornflower/pix/tab/left.gif +share/moodle/theme/cornflower/pix/tab/left_active.gif +share/moodle/theme/cornflower/pix/tab/left_active_hover.gif +share/moodle/theme/cornflower/pix/tab/left_hover.gif +share/moodle/theme/cornflower/pix/tab/right.gif +share/moodle/theme/cornflower/pix/tab/right_active.gif +share/moodle/theme/cornflower/pix/tab/right_active_hover.gif +share/moodle/theme/cornflower/pix/tab/right_end.gif +share/moodle/theme/cornflower/pix/tab/right_hover.gif +share/moodle/theme/cornflower/styles.php +share/moodle/theme/custom_corners/README.html +share/moodle/theme/custom_corners/config.php +share/moodle/theme/custom_corners/favicon.ico +share/moodle/theme/custom_corners/footer.html +share/moodle/theme/custom_corners/header.html +share/moodle/theme/custom_corners/js/CSSClass.js +share/moodle/theme/custom_corners/js/js.php +share/moodle/theme/custom_corners/meta.php +share/moodle/theme/custom_corners/pix/b.gif +share/moodle/theme/custom_corners/pix/beige_borders.gif +share/moodle/theme/custom_corners/pix/beige_borders.png +share/moodle/theme/custom_corners/pix/beige_box.gif +share/moodle/theme/custom_corners/pix/beige_box.png +share/moodle/theme/custom_corners/pix/bg.jpg +share/moodle/theme/custom_corners/pix/borders.gif +share/moodle/theme/custom_corners/pix/borders.png +share/moodle/theme/custom_corners/pix/bottom_shadow.png +share/moodle/theme/custom_corners/pix/bottom_shadow_to_top.png +share/moodle/theme/custom_corners/pix/box.gif +share/moodle/theme/custom_corners/pix/box.png +share/moodle/theme/custom_corners/pix/css.gif +share/moodle/theme/custom_corners/pix/header.gif +share/moodle/theme/custom_corners/pix/header.png +share/moodle/theme/custom_corners/pix/help.gif +share/moodle/theme/custom_corners/pix/info_borders.png +share/moodle/theme/custom_corners/pix/info_box.png +share/moodle/theme/custom_corners/pix/info_gradient.png +share/moodle/theme/custom_corners/pix/mask_borders_le.gif +share/moodle/theme/custom_corners/pix/mask_borders_le.png +share/moodle/theme/custom_corners/pix/mask_borders_re.gif +share/moodle/theme/custom_corners/pix/mask_borders_re.png +share/moodle/theme/custom_corners/pix/mask_box.gif +share/moodle/theme/custom_corners/pix/mask_box.png +share/moodle/theme/custom_corners/pix/movehere.gif +share/moodle/theme/custom_corners/pix/section_508.gif +share/moodle/theme/custom_corners/pix/small_bg_gradient.png +share/moodle/theme/custom_corners/pix/spacer.gif +share/moodle/theme/custom_corners/pix/switch_minus.gif +share/moodle/theme/custom_corners/pix/switch_plus.gif +share/moodle/theme/custom_corners/pix/tab/left.gif +share/moodle/theme/custom_corners/pix/tab/left_active.gif +share/moodle/theme/custom_corners/pix/tab/left_active_hover.gif +share/moodle/theme/custom_corners/pix/tab/left_hover.gif +share/moodle/theme/custom_corners/pix/tab/right.gif +share/moodle/theme/custom_corners/pix/tab/right_active.gif +share/moodle/theme/custom_corners/pix/tab/right_active_hover.gif +share/moodle/theme/custom_corners/pix/tab/right_end.gif +share/moodle/theme/custom_corners/pix/tab/right_hover.gif +share/moodle/theme/custom_corners/pix/tab/right_last.gif +share/moodle/theme/custom_corners/pix/tab/tabrow1.gif +share/moodle/theme/custom_corners/pix/xhtml_1_0.gif +share/moodle/theme/custom_corners/rtl.css +share/moodle/theme/custom_corners/screenshot.jpg +share/moodle/theme/custom_corners/styles.php +share/moodle/theme/custom_corners/styles_ie6.css +share/moodle/theme/custom_corners/styles_ie7.css +share/moodle/theme/custom_corners/user_styles.css +share/moodle/theme/formal_white/README.html +share/moodle/theme/formal_white/config.php +share/moodle/theme/formal_white/docstyles.php +share/moodle/theme/formal_white/favicon.ico +share/moodle/theme/formal_white/footer.html +share/moodle/theme/formal_white/fw_color.css +share/moodle/theme/formal_white/fw_fonts.css +share/moodle/theme/formal_white/fw_layout.css +share/moodle/theme/formal_white/gradient.jpg +share/moodle/theme/formal_white/header.html +share/moodle/theme/formal_white/logo.jpg +share/moodle/theme/formal_white/logo_small.jpg +share/moodle/theme/formal_white/pix/grad/bg_bread.jpg +share/moodle/theme/formal_white/pix/grad/bg_header.jpg +share/moodle/theme/formal_white/pix/grad/gradient_h.jpg +share/moodle/theme/formal_white/pix/tab/left.gif +share/moodle/theme/formal_white/pix/tab/left_active.gif +share/moodle/theme/formal_white/pix/tab/left_active_hover.gif +share/moodle/theme/formal_white/pix/tab/left_hover.gif +share/moodle/theme/formal_white/pix/tab/right.gif +share/moodle/theme/formal_white/pix/tab/right_active.gif +share/moodle/theme/formal_white/pix/tab/right_active_hover.gif +share/moodle/theme/formal_white/pix/tab/right_end.gif +share/moodle/theme/formal_white/pix/tab/right_hover.gif +share/moodle/theme/formal_white/screenshot.jpg +share/moodle/theme/formal_white/styles.php +share/moodle/theme/index.php +share/moodle/theme/metal/README.txt +share/moodle/theme/metal/background.png +share/moodle/theme/metal/colors.css +share/moodle/theme/metal/config.php +share/moodle/theme/metal/favicon.ico +share/moodle/theme/metal/fonts.css +share/moodle/theme/metal/footer.html +share/moodle/theme/metal/gradient.jpg +share/moodle/theme/metal/gradients.css +share/moodle/theme/metal/header.html +share/moodle/theme/metal/pix/tab/left.gif +share/moodle/theme/metal/pix/tab/left_active.gif +share/moodle/theme/metal/pix/tab/left_active_hover.gif +share/moodle/theme/metal/pix/tab/left_hover.gif +share/moodle/theme/metal/pix/tab/right.gif +share/moodle/theme/metal/pix/tab/right_active.gif +share/moodle/theme/metal/pix/tab/right_active_hover.gif +share/moodle/theme/metal/pix/tab/right_end.gif +share/moodle/theme/metal/pix/tab/right_hover.gif +share/moodle/theme/metal/styles.php +share/moodle/theme/oceanblue/README.html +share/moodle/theme/oceanblue/config.php +share/moodle/theme/oceanblue/docstyles.php +share/moodle/theme/oceanblue/favicon.ico +share/moodle/theme/oceanblue/footer.html +share/moodle/theme/oceanblue/gradient.jpg +share/moodle/theme/oceanblue/gradients.css +share/moodle/theme/oceanblue/header.html +share/moodle/theme/oceanblue/pix/tab/left.gif +share/moodle/theme/oceanblue/pix/tab/left_active.gif +share/moodle/theme/oceanblue/pix/tab/left_active_hover.gif +share/moodle/theme/oceanblue/pix/tab/left_hover.gif +share/moodle/theme/oceanblue/pix/tab/right.gif +share/moodle/theme/oceanblue/pix/tab/right_active.gif +share/moodle/theme/oceanblue/pix/tab/right_active_hover.gif +share/moodle/theme/oceanblue/pix/tab/right_end.gif +share/moodle/theme/oceanblue/pix/tab/right_hover.gif +share/moodle/theme/oceanblue/styles.php +share/moodle/theme/oceanblue/styles_color.css +share/moodle/theme/orangewhite/README.html +share/moodle/theme/orangewhite/config.php +share/moodle/theme/orangewhite/csshover.htc +share/moodle/theme/orangewhite/docstyles.php +share/moodle/theme/orangewhite/favicon.ico +share/moodle/theme/orangewhite/footer.html +share/moodle/theme/orangewhite/header.html +share/moodle/theme/orangewhite/pix/colorstrip.gif +share/moodle/theme/orangewhite/pix/css.gif +share/moodle/theme/orangewhite/pix/rightarrow2.gif +share/moodle/theme/orangewhite/pix/section_508.gif +share/moodle/theme/orangewhite/pix/switch_minus.gif +share/moodle/theme/orangewhite/pix/switch_plus.gif +share/moodle/theme/orangewhite/pix/tab/left.gif +share/moodle/theme/orangewhite/pix/tab/left2.gif +share/moodle/theme/orangewhite/pix/tab/left_active.gif +share/moodle/theme/orangewhite/pix/tab/left_active2.gif +share/moodle/theme/orangewhite/pix/tab/left_hover.gif +share/moodle/theme/orangewhite/pix/tab/left_hover2.gif +share/moodle/theme/orangewhite/pix/tab/left_inactive.gif +share/moodle/theme/orangewhite/pix/tab/left_inactive2.gif +share/moodle/theme/orangewhite/pix/tab/right.gif +share/moodle/theme/orangewhite/pix/tab/right2.gif +share/moodle/theme/orangewhite/pix/tab/right_active.gif +share/moodle/theme/orangewhite/pix/tab/right_active2.gif +share/moodle/theme/orangewhite/pix/tab/right_end.gif +share/moodle/theme/orangewhite/pix/tab/right_end2.gif +share/moodle/theme/orangewhite/pix/tab/right_hover.gif +share/moodle/theme/orangewhite/pix/tab/right_hover2.gif +share/moodle/theme/orangewhite/pix/tab/right_inactive.gif +share/moodle/theme/orangewhite/pix/tab/right_inactive2.gif +share/moodle/theme/orangewhite/pix/tab/tabsbg.gif +share/moodle/theme/orangewhite/pix/tab/tabsbg2.gif +share/moodle/theme/orangewhite/pix/tab/tabsbg_x2.gif +share/moodle/theme/orangewhite/pix/xhtml_1_0.gif +share/moodle/theme/orangewhite/rtl.css +share/moodle/theme/orangewhite/screenshot.jpg +share/moodle/theme/orangewhite/styles.php +share/moodle/theme/orangewhite/styles_color.css +share/moodle/theme/orangewhite/styles_fonts.css +share/moodle/theme/orangewhite/styles_layout.css +share/moodle/theme/orangewhite/styles_tabs.css +share/moodle/theme/orangewhitepda/config.php +share/moodle/theme/orangewhitepda/docstyles.php +share/moodle/theme/orangewhitepda/favicon.ico +share/moodle/theme/orangewhitepda/footer.html +share/moodle/theme/orangewhitepda/header.html +share/moodle/theme/orangewhitepda/pix/colorstrip.gif +share/moodle/theme/orangewhitepda/pix/css.gif +share/moodle/theme/orangewhitepda/pix/gray.gif +share/moodle/theme/orangewhitepda/pix/rightarrow2.gif +share/moodle/theme/orangewhitepda/pix/section_508.gif +share/moodle/theme/orangewhitepda/pix/switch_minus.gif +share/moodle/theme/orangewhitepda/pix/switch_plus.gif +share/moodle/theme/orangewhitepda/pix/tab/left.gif +share/moodle/theme/orangewhitepda/pix/tab/left2.gif +share/moodle/theme/orangewhitepda/pix/tab/left_active.gif +share/moodle/theme/orangewhitepda/pix/tab/left_active2.gif +share/moodle/theme/orangewhitepda/pix/tab/left_hover.gif +share/moodle/theme/orangewhitepda/pix/tab/left_hover2.gif +share/moodle/theme/orangewhitepda/pix/tab/left_inactive.gif +share/moodle/theme/orangewhitepda/pix/tab/left_inactive2.gif +share/moodle/theme/orangewhitepda/pix/tab/right.gif +share/moodle/theme/orangewhitepda/pix/tab/right2.gif +share/moodle/theme/orangewhitepda/pix/tab/right_active.gif +share/moodle/theme/orangewhitepda/pix/tab/right_active2.gif +share/moodle/theme/orangewhitepda/pix/tab/right_end.gif +share/moodle/theme/orangewhitepda/pix/tab/right_end2.gif +share/moodle/theme/orangewhitepda/pix/tab/right_hover.gif +share/moodle/theme/orangewhitepda/pix/tab/right_hover2.gif +share/moodle/theme/orangewhitepda/pix/tab/right_inactive.gif +share/moodle/theme/orangewhitepda/pix/tab/right_inactive2.gif +share/moodle/theme/orangewhitepda/pix/tab/tabsbg.gif +share/moodle/theme/orangewhitepda/pix/tab/tabsbg2.gif +share/moodle/theme/orangewhitepda/pix/tab/tabsbg_x2.gif +share/moodle/theme/orangewhitepda/pix/xhtml_1_0.gif +share/moodle/theme/orangewhitepda/styles.php +share/moodle/theme/orangewhitepda/styles_pda.css +share/moodle/theme/preview.php +share/moodle/theme/standard/README.html +share/moodle/theme/standard/config.php +share/moodle/theme/standard/docstyles.php +share/moodle/theme/standard/favicon.ico +share/moodle/theme/standard/footer.html +share/moodle/theme/standard/gradient.jpg +share/moodle/theme/standard/header.html +share/moodle/theme/standard/meta.php +share/moodle/theme/standard/pix/tab/left.gif +share/moodle/theme/standard/pix/tab/left_active.gif +share/moodle/theme/standard/pix/tab/left_active_hover.gif +share/moodle/theme/standard/pix/tab/left_hover.gif +share/moodle/theme/standard/pix/tab/right.gif +share/moodle/theme/standard/pix/tab/right_active.gif +share/moodle/theme/standard/pix/tab/right_active_hover.gif +share/moodle/theme/standard/pix/tab/right_end.gif +share/moodle/theme/standard/pix/tab/right_hover.gif +share/moodle/theme/standard/pix/tab/right_last.gif +share/moodle/theme/standard/pix/tab/rtlbg.gif +share/moodle/theme/standard/pix/tab/tabrow1.gif +share/moodle/theme/standard/rtl.css +share/moodle/theme/standard/screenshot.jpg +share/moodle/theme/standard/styles.php +share/moodle/theme/standard/styles_color.css +share/moodle/theme/standard/styles_fonts.css +share/moodle/theme/standard/styles_ie6.css +share/moodle/theme/standard/styles_ie7.css +share/moodle/theme/standard/styles_layout.css +share/moodle/theme/standard/styles_moz.css +share/moodle/theme/standardblue/config.php +share/moodle/theme/standardblue/favicon.ico +share/moodle/theme/standardblue/footer.html +share/moodle/theme/standardblue/gradient.jpg +share/moodle/theme/standardblue/gradients.css +share/moodle/theme/standardblue/header.html +share/moodle/theme/standardblue/styles.php +share/moodle/theme/standardgreen/config.php +share/moodle/theme/standardgreen/favicon.ico +share/moodle/theme/standardgreen/footer.html +share/moodle/theme/standardgreen/gradient.jpg +share/moodle/theme/standardgreen/gradients.css +share/moodle/theme/standardgreen/header.html +share/moodle/theme/standardgreen/styles.php +share/moodle/theme/standardlogo/README.html +share/moodle/theme/standardlogo/config.php +share/moodle/theme/standardlogo/favicon.ico +share/moodle/theme/standardlogo/footer.html +share/moodle/theme/standardlogo/gradient.jpg +share/moodle/theme/standardlogo/header.html +share/moodle/theme/standardlogo/logo.gif +share/moodle/theme/standardlogo/styles.php +share/moodle/theme/standardred/config.php +share/moodle/theme/standardred/favicon.ico +share/moodle/theme/standardred/footer.html +share/moodle/theme/standardred/gradient.jpg +share/moodle/theme/standardred/gradients.css +share/moodle/theme/standardred/header.html +share/moodle/theme/standardred/styles.php +share/moodle/theme/standardwhite/config.php +share/moodle/theme/standardwhite/favicon.ico +share/moodle/theme/standardwhite/footer.html +share/moodle/theme/standardwhite/gradient.jpg +share/moodle/theme/standardwhite/gradients.css +share/moodle/theme/standardwhite/header.html +share/moodle/theme/standardwhite/styles.php +share/moodle/theme/wood/README.html +share/moodle/theme/wood/background.jpg +share/moodle/theme/wood/config.php +share/moodle/theme/wood/favicon.ico +share/moodle/theme/wood/footer.html +share/moodle/theme/wood/gradient1.jpg +share/moodle/theme/wood/gradient2.jpg +share/moodle/theme/wood/gradient3.jpg +share/moodle/theme/wood/gradient4.jpg +share/moodle/theme/wood/header.html +share/moodle/theme/wood/pix/t/switch_minus.gif +share/moodle/theme/wood/pix/t/switch_plus.gif +share/moodle/theme/wood/pix/tab/left.gif +share/moodle/theme/wood/pix/tab/left.png +share/moodle/theme/wood/pix/tab/left_active.gif +share/moodle/theme/wood/pix/tab/left_active.png +share/moodle/theme/wood/pix/tab/left_active_hover.gif +share/moodle/theme/wood/pix/tab/left_active_hover.png +share/moodle/theme/wood/pix/tab/left_hover.gif +share/moodle/theme/wood/pix/tab/left_hover.png +share/moodle/theme/wood/pix/tab/right.gif +share/moodle/theme/wood/pix/tab/right.png +share/moodle/theme/wood/pix/tab/right_active.gif +share/moodle/theme/wood/pix/tab/right_active.png +share/moodle/theme/wood/pix/tab/right_active_hover.gif +share/moodle/theme/wood/pix/tab/right_active_hover.png +share/moodle/theme/wood/pix/tab/right_end.gif +share/moodle/theme/wood/pix/tab/right_hover.gif +share/moodle/theme/wood/pix/tab/right_hover.png +share/moodle/theme/wood/screenshot.jpg +share/moodle/theme/wood/styles.php +share/moodle/theme/wood/styles_color.css +share/moodle/user/action_redir.php +share/moodle/user/addnote.php +share/moodle/user/default/README.txt +share/moodle/user/default/f1.jpg +share/moodle/user/default/f2.jpg +share/moodle/user/edit.php +share/moodle/user/edit_form.php +share/moodle/user/editadvanced.php +share/moodle/user/editadvanced_form.php +share/moodle/user/editlib.php +share/moodle/user/emailupdate.php +share/moodle/user/extendenrol.php +share/moodle/user/filters/courserole.php +share/moodle/user/filters/date.php +share/moodle/user/filters/globalrole.php +share/moodle/user/filters/lib.php +share/moodle/user/filters/profilefield.php +share/moodle/user/filters/select.php +share/moodle/user/filters/simpleselect.php +share/moodle/user/filters/text.php +share/moodle/user/filters/user_filter_forms.php +share/moodle/user/filters/yesno.php +share/moodle/user/groupaddnote.php +share/moodle/user/groupextendenrol.php +share/moodle/user/index.php +share/moodle/user/message.html +share/moodle/user/messageselect.php +share/moodle/user/pix.php +share/moodle/user/pixgroup.php +share/moodle/user/policy.php +share/moodle/user/profile/definelib.php +share/moodle/user/profile/field/checkbox/define.class.php +share/moodle/user/profile/field/checkbox/field.class.php +share/moodle/user/profile/field/menu/define.class.php +share/moodle/user/profile/field/menu/field.class.php +share/moodle/user/profile/field/text/define.class.php +share/moodle/user/profile/field/text/field.class.php +share/moodle/user/profile/field/textarea/define.class.php +share/moodle/user/profile/field/textarea/field.class.php +share/moodle/user/profile/index.php +share/moodle/user/profile/index_category_form.php +share/moodle/user/profile/index_field_form.php +share/moodle/user/profile/lib.php +share/moodle/user/tabs.php +share/moodle/user/view.php +share/moodle/userpix/index.php +share/moodle/userpix/upgrade.php +share/moodle/version.php diff --git a/www/moodle/distinfo b/www/moodle/distinfo new file mode 100644 index 00000000000..61a9734d8a1 --- /dev/null +++ b/www/moodle/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2010/06/04 09:20:02 wiz Exp $ + +SHA1 (moodle-1.9.8.tgz) = f8f66120bba681c61b2db89e0be41d4aa2492404 +RMD160 (moodle-1.9.8.tgz) = 1cb616f6734dacdedfd306b63e98d7edcff7767b +Size (moodle-1.9.8.tgz) = 13962181 bytes diff --git a/www/moodle/files/moodle.conf b/www/moodle/files/moodle.conf new file mode 100644 index 00000000000..40de27bc7dc --- /dev/null +++ b/www/moodle/files/moodle.conf @@ -0,0 +1,13 @@ +# MediaWiki configuration file fragment for Apache + + + Alias /moodle/ "@MOODLEDIR@/" + + + + Options Indexes + DirectoryIndex index.php index.html + AllowOverride None + Order allow,deny + Allow from all + diff --git a/www/moodle/options.mk b/www/moodle/options.mk new file mode 100644 index 00000000000..979f66fc83c --- /dev/null +++ b/www/moodle/options.mk @@ -0,0 +1,18 @@ +# $NetBSD: options.mk,v 1.1.1.1 2010/06/04 09:20:02 wiz Exp $ + +PKG_OPTIONS_VAR= PKG_OPTIONS.moodle + +PKG_OPTIONS_REQUIRED_GROUPS= db +PKG_OPTIONS_GROUP.db= mysql pgsql +PKG_SUGGESTED_OPTIONS= mysql + +.include "../../mk/bsd.options.mk" + +### +### Use mysql or postgresql backend +### +.if !empty(PKG_OPTIONS:Mmysql) +DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=4.3.10:../../databases/php-mysql +.elif !empty(PKG_OPTIONS:Mpgsql) +DEPENDS+= ${PHP_PKG_PREFIX}-pgsql>=5:../../databases/php-pgsql +.endif -- cgit v1.2.3