Showing with 798 additions and 465 deletions.
  1. +7 −3 .htaccess.default
  2. +106 −115 assets/contao/js/core-uncompressed.js
  3. +1 −1 assets/contao/js/core.js
  4. +0 −2 assets/html5shiv/3.6.2/html5shiv.js
  5. +9 −7 assets/html5shiv/{3.6.2 → 3.7.0}/html5shiv-uncompressed.js
  6. +2 −0 assets/html5shiv/3.7.0/html5shiv.js
  7. +2 −1 assets/mootools/mediabox/1.4.6/js/mediabox-uncompressed.js
  8. +1 −1 assets/mootools/mediabox/1.4.6/js/mediabox.js
  9. +145 −1 assets/mootools/mootao/Mootao-uncompressed.js
  10. +1 −1 assets/mootools/mootao/Mootao.js
  11. +1 −1 assets/mootools/stylect/js/stylect-uncompressed.js
  12. +32 −39 assets/mootools/tablesort/js/tablesort-uncompressed.js
  13. +1 −1 assets/mootools/tablesort/js/tablesort.js
  14. +1 −1 assets/tinymce/plugins/typolinks/editor_plugin_src.js
  15. +1 −1 assets/tinymce/plugins/typolinks/js/typobox.js
  16. +8 −9 assets/tinymce/plugins/typolinks/js/typobox_src.js
  17. +1 −1 assets/tinymce/plugins/typolinks/js/typolinks.js
  18. +4 −4 assets/tinymce/plugins/typolinks/js/typolinks_src.js
  19. +19 −1 index.php
  20. +12 −11 system/config/ace.php
  21. +2 −2 system/config/constants.php
  22. +49 −0 system/docs/CHANGELOG.md
  23. +10 −22 system/initialize.php
  24. +23 −19 system/modules/calendar/classes/Calendar.php
  25. +10 −8 system/modules/calendar/classes/Events.php
  26. +14 −12 system/modules/calendar/modules/ModuleEventReader.php
  27. +3 −3 system/modules/comments/classes/Comments.php
  28. +1 −1 system/modules/core/classes/FrontendTemplate.php
  29. +5 −0 system/modules/core/classes/Hybrid.php
  30. +1 −1 system/modules/core/classes/Versions.php
  31. +2 −3 system/modules/core/dca/tl_article.php
  32. +6 −0 system/modules/core/drivers/DC_Folder.php
  33. +7 −1 system/modules/core/drivers/DC_Table.php
  34. +5 −0 system/modules/core/elements/ContentElement.php
  35. +2 −3 system/modules/core/elements/ContentTeaser.php
  36. +9 −0 system/modules/core/forms/Form.php
  37. +6 −0 system/modules/core/languages/cs/default.xlf
  38. +22 −0 system/modules/core/languages/cs/exception.xlf
  39. +1 −0 system/modules/core/languages/cs/tl_content.xlf
  40. +4 −0 system/modules/core/languages/cs/tl_files.xlf
  41. +2 −0 system/modules/core/languages/cs/tl_form_field.xlf
  42. +1 −0 system/modules/core/languages/cs/tl_install.xlf
  43. +2 −0 system/modules/core/languages/cs/tl_layout.xlf
  44. +2 −0 system/modules/core/languages/cs/tl_maintenance.xlf
  45. +10 −0 system/modules/core/languages/cs/tl_settings.xlf
  46. +3 −0 system/modules/core/languages/cs/tl_user.xlf
  47. +1 −1 system/modules/core/languages/de/tl_undo.xlf
  48. +3 −0 system/modules/core/languages/sl/tl_content.xlf
  49. +2 −0 system/modules/core/languages/sl/tl_form.xlf
  50. +2 −0 system/modules/core/languages/sl/tl_form_field.xlf
  51. +2 −0 system/modules/core/languages/sl/tl_settings.xlf
  52. +1 −0 system/modules/core/languages/zh/tl_install.xlf
  53. +1 −0 system/modules/core/languages/zh/tl_settings.xlf
  54. +1 −0 system/modules/core/library/Contao/Automator.php
  55. +6 −31 system/modules/core/library/Contao/Controller.php
  56. +6 −0 system/modules/core/library/Contao/DcaExtractor.php
  57. +26 −0 system/modules/core/library/Contao/Model.php
  58. +1 −1 system/modules/core/library/Contao/Model/QueryBuilder.php
  59. +8 −11 system/modules/core/library/Contao/System.php
  60. +19 −11 system/modules/core/library/Contao/Widget.php
  61. +5 −0 system/modules/core/modules/Module.php
  62. +4 −7 system/modules/core/modules/ModuleArticle.php
  63. +9 −1 system/modules/core/modules/ModulePersonalData.php
  64. +2 −5 system/modules/core/modules/ModuleQuicknav.php
  65. +6 −0 system/modules/core/modules/ModuleRegistration.php
  66. +1 −1 system/modules/core/templates/backend/be_switch.html5
  67. +1 −1 system/modules/core/templates/jquery/j_accordion.html5
  68. +1 −1 system/modules/core/templates/jquery/j_accordion.xhtml
  69. +2 −2 system/modules/core/templates/mootools/moo_accordion.html5
  70. +2 −2 system/modules/core/templates/mootools/moo_accordion.xhtml
  71. +2 −2 system/modules/core/templates/mootools/moo_chosen.html5
  72. +2 −2 system/modules/core/templates/mootools/moo_chosen.xhtml
  73. +2 −2 system/modules/core/templates/mootools/moo_slider.html5
  74. +2 −2 system/modules/core/templates/mootools/moo_slider.xhtml
  75. +2 −2 system/modules/core/templates/mootools/moo_tablesort.html5
  76. +2 −2 system/modules/core/templates/mootools/moo_tablesort.xhtml
  77. +1 −1 system/modules/core/widgets/FileTree.php
  78. +1 −1 system/modules/core/widgets/PageTree.php
  79. +1 −1 system/modules/core/widgets/RadioTable.php
  80. +1 −1 system/modules/core/widgets/TableWizard.php
  81. +1 −1 system/modules/faq/dca/tl_faq_category.php
  82. +3 −3 system/modules/faq/modules/ModuleFaqPage.php
  83. +11 −11 system/modules/news/modules/ModuleNews.php
  84. +1 −1 system/modules/news/templates/news/news_latest.html5
  85. +1 −1 system/modules/news/templates/news/news_latest.xhtml
  86. +1 −1 system/modules/news/templates/news/news_short.html5
  87. +1 −1 system/modules/news/templates/news/news_short.xhtml
  88. +2 −2 system/modules/newsletter/dca/tl_newsletter_channel.php
  89. +2 −0 system/modules/newsletter/languages/sl/tl_newsletter_recipients.xlf
  90. +18 −15 system/modules/newsletter/modules/ModuleNewsletterList.php
  91. +46 −44 system/modules/repository/classes/RepositoryBackendModule.php
  92. +2 −0 system/modules/repository/classes/RepositoryCatalog.php
  93. +3 −0 system/modules/repository/classes/RepositoryManager.php
  94. +1 −0 system/modules/repository/classes/RepositorySettings.php
  95. +1 −1 system/modules/repository/themes/default/backend_src.css
  96. +1 −1 system/themes/default/hover.js
  97. +1 −1 system/themes/default/main.css
  98. +11 −12 system/themes/default/src/hover.js
  99. +1 −1 system/themes/default/src/iefixes.css
  100. +6 −2 system/themes/default/src/main.css
10 changes: 7 additions & 3 deletions .htaccess.default
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ FileETag None
# Note: If you are using a case-sensitive file system like HFS+ or ext4, you
# have to change the <FilesMatch> directive as follows:
#
# <FilesMatch "\.(?i:js|css|xml|gz)$">
# <FilesMatch "\.(?i:js|css|xml|gz|svgz)$">
#
# For more information see: https://github.com/contao/core/issues/4364
##
Expand Down Expand Up @@ -246,7 +246,11 @@ FileETag None
# Note: If you are using a case-sensitive file system like HFS+ or ext4, you
# have to change the <FilesMatch> directive as follows:
#
# <FilesMatch "\.(?i:htm|php|js|css| … |gz)$">
# <FilesMatch "\.(?i:htm|php|js|css|…|gz)$">
#
# Note: The directive will disable mod_rewrite entirely for the configured
# file types, so if you want to apply custom rules such as domain redirects,
# make sure to comment the lines (see #6588).
#
# For more information see: https://github.com/contao/core/issues/4364
##
Expand Down Expand Up @@ -281,7 +285,7 @@ FileETag None

##
# The following rules are required if you want to pass the language as first
# URL parameter (added in Contao 2.11). The first rule rewrites an empty URL
# URL parameter (added in Contao 2.11). The first rule rewrites the empty URL
# to the front end controller, the second one adds a missing trailing slash.
##
RewriteRule ^[a-z]{2}(\-[A-Z]{2})?/$ index.php [L]
Expand Down
Loading