pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/moodle Update moodle to 2.1.6, include some securi...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4c722843f261
branches:  trunk
changeset: 604474:4c722843f261
user:      obache <obache%pkgsrc.org@localhost>
date:      Thu May 31 12:12:54 2012 +0000

description:
Update moodle to 2.1.6, include some security fixes.
Based on maintainer update request by PR 46498.

Upstream changes:

Highlights

* MDL-32431 Calendar events can be backed-up and restored
* MDL-29262 Moodle 2 backup_controllers table is no longer needlessly massive

Functional changes

* MDL-27862 Ability to unset a theme
* MDL-31835 Recent conversations link added when viewing a message
* MDL-27427 Option added to delete external blog entries

Security issues

* MSA-12-0024 Hidden information access issue
* MSA-12-0025 Personal communication access issue
* MSA-12-0026 Quiz capability issue
* MSA-12-0027 Question bank capability issues
* MSA-12-0028 Insecure authentication issue
* MSA-12-0029 Information editing access issue
* MSA-12-0030 Capability manipulation issue
* MSA-12-0031 Cross-site scripting vulnerability in Wiki
* MSA-12-0032 Cross-site scripting vulnerability in Web services
* MSA-12-0035 Cross-site scripting vulnerability in "download all"
* MSA-12-0036 Cross-site scripting vulnerability in category identifier
* MSA-12-0037 Write access issue in Database activity module
* MSA-12-0038 Calendar event write permission issue

Fixes and improvements

* MDL-32061 Backup fixed when there is a lesson with attempts in the course
* MDL-31008 CSS fixed to display dimmed objects
* MDL-30867 Lesson essay question formatting fixed
* MDL-31528 Breadcrumbs appearing consistently when editing is off
* MDL-31631 Caching fixed so deleted activities do not remain listed
* MDL-26674 Wiki Module activity logs activity fully
* MDL-31510 Students in groups see only assignments in the Gradebook according to their group allocation
* MDL-32141 Custom TinyMCE additions now work in Firefox 11

diffstat:

 www/moodle/Makefile |   26 +-
 www/moodle/PLIST    |  622 ++++++++++++++++++++++++++-------------------------
 www/moodle/distinfo |    8 +-
 3 files changed, 339 insertions(+), 317 deletions(-)

diffs (truncated from 798 to 300 lines):

diff -r dadf380392b6 -r 4c722843f261 www/moodle/Makefile
--- a/www/moodle/Makefile       Thu May 31 11:59:02 2012 +0000
+++ b/www/moodle/Makefile       Thu May 31 12:12:54 2012 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2012/04/25 20:21:58 gls Exp $
+# $NetBSD: Makefile,v 1.11 2012/05/31 12:12:54 obache Exp $
 
-DISTNAME=      moodle-2.1.5
+DISTNAME=      moodle-2.1.6
 CATEGORIES=    www
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=moodle/}
 EXTRACT_SUFX=  .tgz
@@ -8,7 +8,7 @@
 MAINTAINER=    wenheping%gmail.com@localhost
 HOMEPAGE=      http://www.moodle.org/
 COMMENT=       Course management system based on social constructionism
-LICENSE=       gnu-gpl-v2
+LICENSE=       gnu-gpl-v3
 
 DEPENDS+=      ${PHP_PKG_PREFIX}-gd>=4.3.3:../../graphics/php-gd
 DEPENDS+=      ${PHP_PKG_PREFIX}-iconv-[0-9]*:../../converters/php-iconv
@@ -43,15 +43,16 @@
 
 CONF_FILES=            ${PREFIX}/${EGDIR}/moodle.conf \
                        ${PKG_SYSCONFDIR}/moodle.conf
+OWN_DIRS_PERMS+=       ${MOODLEDATADIR} ${APACHE_USER} ${APACHE_GROUP} 0750
 
 NO_CONFIGURE=          YES
 NO_BUILD=              YES
 
-SUBST_CLASSES+=                        bash
-SUBST_MESSAGE.bash=            Replacing /bin/bash with ${SH}
-SUBST_STAGE.bash=              post-patch
-SUBST_FILES.bash=              lib/editor/tinymce/extra/tools/download_langs.sh
-SUBST_SED.bash=                        -e "s,/bin/bash,${SH},g"
+SUBST_CLASSES+=                bash
+SUBST_MESSAGE.bash=    Replacing /bin/bash with ${SH}
+SUBST_STAGE.bash=      post-patch
+SUBST_FILES.bash=      lib/editor/tinymce/extra/tools/download_langs.sh
+SUBST_SED.bash=                -e "s,/bin/bash,${SH},g"
 
 SUBST_CLASSES+=                conf
 SUBST_MESSAGE.conf=    Fixing pathnames in configuration file.
@@ -69,10 +70,17 @@
 SUBST_FILES.php+=      admin/mailout-debugger.php admin/process_email.php
 SUBST_FILES.php+=      auth/ldap/cli/sync_users.php auth/cas/cli/sync_users.php auth/db/cli/sync_users.php
 SUBST_FILES.php+=      enrol/ldap/cli/sync.php enrol/database/cli/sync.php enrol/category/cli/sync.php
-SUBST_FILES.php+=      lib/pear/PHP/runsniffer lib/spikephpcoverage/src/cli/instrument.php
+SUBST_FILES.php+=      lib/pear/PHP/runsniffer
+SUBST_FILES.php+=      local/qeupgradehelper/cli/convert.php
 SUBST_FILES.php+=      mod/chat/chatd.php
 SUBST_SED.php=         -e "s,/usr/bin/php,${PREFIX}/bin/php,g"
 
+SUBST_CLASSES+=                php2
+SUBST_MESSAGE.php2=    Fixing the path of php.
+SUBST_STAGE.php2=      post-patch
+SUBST_FILES.php2+=     lib/spikephpcoverage/src/cli/instrument.php
+SUBST_SED.php2=                -e "s,/bin/php,${PREFIX}/bin/php,g"
+
 SUBST_CLASSES+=                perl
 SUBST_MESSAGE.perl=    Fixing the path of perl.
 SUBST_STAGE.perl=      post-patch
diff -r dadf380392b6 -r 4c722843f261 www/moodle/PLIST
--- a/www/moodle/PLIST  Thu May 31 11:59:02 2012 +0000
+++ b/www/moodle/PLIST  Thu May 31 12:12:54 2012 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2012/04/25 20:21:58 gls Exp $
+@comment $NetBSD: PLIST,v 1.9 2012/05/31 12:12:54 obache Exp $
 share/examples/moodle/moodle.conf
 share/moodle/COPYING.txt
 share/moodle/README.txt
@@ -1025,6 +1025,7 @@
 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/messages.php
 share/moodle/enrol/authorize/db/upgrade.php
 share/moodle/enrol/authorize/enrol_form.php
 share/moodle/enrol/authorize/import_form.php
@@ -1068,6 +1069,7 @@
 share/moodle/enrol/database/version.php
 share/moodle/enrol/externallib.php
 share/moodle/enrol/flatfile/db/install.xml
+share/moodle/enrol/flatfile/db/messages.php
 share/moodle/enrol/flatfile/db/upgrade.php
 share/moodle/enrol/flatfile/example.txt
 share/moodle/enrol/flatfile/lang/en/enrol_flatfile.php
@@ -1086,6 +1088,7 @@
 share/moodle/enrol/imsenterprise/README.txt
 share/moodle/enrol/imsenterprise/TODO.txt
 share/moodle/enrol/imsenterprise/db/install.php
+share/moodle/enrol/imsenterprise/db/messages.php
 share/moodle/enrol/imsenterprise/db/upgrade.php
 share/moodle/enrol/imsenterprise/entv1p1_conformance_summary.html
 share/moodle/enrol/imsenterprise/examples/example-grouped.xml
@@ -1151,6 +1154,7 @@
 share/moodle/enrol/otherusers.php
 share/moodle/enrol/paypal/db/access.php
 share/moodle/enrol/paypal/db/install.xml
+share/moodle/enrol/paypal/db/messages.php
 share/moodle/enrol/paypal/db/upgrade.php
 share/moodle/enrol/paypal/edit.php
 share/moodle/enrol/paypal/edit_form.php
@@ -1466,6 +1470,7 @@
 share/moodle/install/lang/de/install.php
 share/moodle/install/lang/de/langconfig.php
 share/moodle/install/lang/de/moodle.php
+share/moodle/install/lang/de_comm/langconfig.php
 share/moodle/install/lang/de_du/error.php
 share/moodle/install/lang/de_du/install.php
 share/moodle/install/lang/de_du/langconfig.php
@@ -2162,297 +2167,298 @@
 share/moodle/lib/editor/tinymce/module.js
 share/moodle/lib/editor/tinymce/readme_moodle.txt
 share/moodle/lib/editor/tinymce/settings.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/jquery.tinymce.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/langs/en.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/license.txt
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advhr/css/advhr.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advhr/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advhr/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advhr/js/rule.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advhr/langs/en_dlg.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advhr/rule.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advimage/css/advimage.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advimage/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advimage/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advimage/image.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advimage/img/sample.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advimage/js/image.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advimage/langs/en_dlg.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advlink/css/advlink.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advlink/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advlink/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advlink/js/advlink.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advlink/langs/en_dlg.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advlink/link.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advlist/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/advlist/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/autolink/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/autolink/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/autoresize/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/autoresize/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/autosave/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/autosave/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/autosave/langs/en.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/bbcode/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/bbcode/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/contextmenu/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/contextmenu/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/directionality/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/directionality/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/dragmath/dragmath.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/dragmath/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/dragmath/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/dragmath/img/dragmath.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/dragmath/js/dragmath.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/dragmath/langs/en_dlg.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/emotions.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-cool.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-cry.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-embarassed.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-foot-in-mouth.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-frown.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-innocent.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-kiss.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-laughing.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-money-mouth.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-sealed.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-smile.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-surprised.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-tongue-out.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-undecided.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-wink.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/img/smiley-yell.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/js/emotions.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/emotions/langs/en_dlg.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/example/dialog.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/example/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/example/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/example/img/example.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/example/js/dialog.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/example/langs/en.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/example/langs/en_dlg.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/fullpage/css/fullpage.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/fullpage/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/fullpage/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/fullpage/fullpage.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/fullpage/js/fullpage.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/fullpage/langs/en_dlg.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/fullscreen/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/fullscreen/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/fullscreen/fullscreen.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/iespell/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/iespell/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/inlinepopups/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/inlinepopups/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/inlinepopups/skins/clearlooks2/img/button.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/inlinepopups/skins/clearlooks2/window.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/inlinepopups/template.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/insertdatetime/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/insertdatetime/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/layer/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/layer/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/legacyoutput/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/legacyoutput/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/lists/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/lists/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/media/css/media.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/media/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/media/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/media/js/embed.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/media/js/media.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/media/langs/en_dlg.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/media/media.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/media/moxieplayer.swf
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodleemoticon/dialog.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodleemoticon/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodleemoticon/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodleemoticon/img/moodleemoticon.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodleemoticon/js/dialog_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodleemoticon/js/rev2/dialog.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodlemedia/css/media.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodlemedia/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodlemedia/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodlemedia/img/icon.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodlemedia/js/media.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodlemedia/moodlemedia.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodlenolink/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodlenolink/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodlenolink/img/ed_nolink.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/moodlenolink/langs/en.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/nonbreaking/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/nonbreaking/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/noneditable/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/noneditable/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/pagebreak/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/pagebreak/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/paste/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/paste/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/paste/js/pastetext.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/paste/js/pasteword.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/paste/langs/en_dlg.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/paste/pastetext.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/paste/pasteword.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/preview/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/preview/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/preview/example.html
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/preview/jscripts/embed.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/preview/preview.html
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/print/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/print/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/save/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/save/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/searchreplace/css/searchreplace.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/searchreplace/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/searchreplace/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/searchreplace/js/searchreplace.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/searchreplace/langs/en_dlg.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/searchreplace/searchreplace.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/changelog.txt
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/classes/EnchantSpell.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/classes/GoogleSpell.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/classes/PSpell.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/classes/PSpellShell.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/classes/SpellChecker.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/classes/utils/JSON.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/classes/utils/Logger.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/config.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/css/content.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/img/wline.gif
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/includes/general.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/spellchecker/rpc.php
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/style/css/props.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/style/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/style/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/style/js/props.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/style/langs/en_dlg.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/style/props.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/tabfocus/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/tabfocus/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/table/cell.htm
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/table/css/cell.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/table/css/row.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/table/css/table.css
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/table/editor_plugin.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/table/editor_plugin_src.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/table/js/cell.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/table/js/merge_cells.js
-share/moodle/lib/editor/tinymce/tiny_mce/3.4.2/plugins/table/js/row.js



Home | Main Index | Thread Index | Old Index