This project is mirrored from https://git.typo3.org/typo3/typo3.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
- 24 May, 2019 1 commit
-
-
This patch refactors the IRRE handling on client side, the JavaScript land has been rewritten to have a better structure and do less repeating on-the-fly calculations. Each IRRE container is represented by a independent instance of InlineControlContainer. Most of the internally used `scriptCall` directives have been removed. Currently, `scriptCall` can't get removed completely, as further refactorings in different areas are required. All of the "external" communication via `inline.foobar()` has been replaced by a event-driven approach. This also affects ElementBrowser windows, those use a minimalistic API based on postMessage. Some code that was never evaluated in ElementBrowser is considered dead and has been removed regarding inserting multiple items. A new sorting library has been added in order to replace jqueryui piece by piece. Executed command: yarn add --dev sortablejs On PHP side, some code has been removed as well since the rewritten client code is event-based and doesn't depend on external calls anymore. Resolves: #88182 Releases: master Change-Id: I4176483d2882cef49fbaddb5e2e1914c1f76c908 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/59324 Tested-by:
TYPO3com <noreply@typo3.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Frank Naegler <frank.naegler@typo3.org> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org>
-
- 10 May, 2019 1 commit
-
-
Frank Nägler authored
Resolves: #87924 Releases: master Change-Id: I50332d97fbbfa9b04f1a2d8de761aabe84b3c367 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/60260 Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
TYPO3com <noreply@typo3.com> Tested-by:
Josef Glatz <josefglatz@gmail.com> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Josef Glatz <josefglatz@gmail.com>
-
- 26 Apr, 2019 2 commits
-
-
To ensure that we incorporate the latest known vulnerabilities and issues in Twitter Bootstrap 3.x, the dependency is updated. Executed tasks: cd Build yarn add bootstrap-sass@^3.4.1 --dev yarn exec grunt Then copying the contents of Build/node_modules/bootstrap-sass/assets/javascripts/bootstrap.min.js into typo3/sysext/core/Resources/Public/JavaScript/Contrib/bootstrap/bootstrap.js additionally adding the AMD factory wrapper. Resolves: #88213 Releases: master, 9.5, 8.7 Change-Id: Iae1274b1ca557f6337eea090e39292938b9571f2 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/60556 Tested-by:
TYPO3com <noreply@typo3.com> Tested-by:
Mathias Brodala <mbrodala@pagemachine.de> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Susanne Moog <look@susi.dev> Reviewed-by:
Mathias Brodala <mbrodala@pagemachine.de> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de>
-
Andreas Fernandez authored
All jQuery versions prior to 3.4 are susceptible to prototype pollution. In order to fix this issue, jQuery has been updated to version 3.4.0. http://blog.jquery.com/2019/04/10/jquery-3-4-0-released/ Executed commands: yarn add --dev jquery@^3.4 grunt build Resolves: #88214 Releases: master, 9.5, 8.7 Change-Id: I8c8eed08b0dcec7fe6762dbc70b62064a60c1e73 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/60557 Tested-by:
TYPO3com <noreply@typo3.com> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
Susanne Moog <look@susi.dev> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Susanne Moog <look@susi.dev> Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de>
-
- 23 Apr, 2019 1 commit
-
-
The indentations in the HTML templates are out of control. Even if we provide an EditorConfig, which should ensure that the files are all uniformly indented. There seems to have been an increasing aversion to TABS over time. This has led to the fact that above all newly created templates have always been indented with SPACES instead of TABS. We now have a mix of TABS and SPACES in our project, partly also in a single file. To avoid this in the future, all existing templates were converted to indentations with SPACES and the provided EditorConfig was adapted. In order to really, really make sure that it doesn't get out of hand, we also introduce a new linter, which ensures that all HTML templates are properly indented. Resolves: #88180 Releases: master Change-Id: I86d23120bc68e3696f398b1ae76f1efc4804d501 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/60522 Tested-by:
TYPO3com <noreply@typo3.com> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Oliver Wand <wand@itaw.de> Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de> Reviewed-by:
Helmut Hummel <typo3@helhum.io> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- 05 Apr, 2019 1 commit
-
-
Andreas Fernandez authored
TypeScript: Due to issues with upcoming TypeScript versions, the TypeScript sources are moved into the Build directory before building JavaScript. The unused Grunt task `tsdev` has been removed. Additionally, some type defintions have been installed: yarn add --dev \ @types/bootstrap-slider \ @types/datatables.net \ @types/chosen-js Sass: The Sass sources have been moved into the common "Sources" directory. Those source files are moved to have a less cluttered Build directory. Note: With this patch, all TypeScript files must be placed into `Build/Sources/TypeScript` to be compiled by tsc again. Resolves: #88043 Releases: master Change-Id: I4d3e5f69564c38a35bf083652ea7262f5b85e4f3 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/60335 Tested-by:
TYPO3com <noreply@typo3.com> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de>
-
- 14 Mar, 2019 1 commit
-
-
This patch updates ckeditor to the latest version 4.11.3. Used command: yarn upgrade ckeditor List of changes: https://github.com/ckeditor/ckeditor-releases/compare/4.11.1...4.11.3 Resolves: #87905 Releases: master, 9.5, 8.7 Change-Id: Iafbde59625de902774997ca0acffc9a92ba36534 Reviewed-on: https://review.typo3.org/c/60243 Tested-by:
TYPO3com <noreply@typo3.com> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
Josef Glatz <josef.glatz@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Josef Glatz <josef.glatz@typo3.org>
-
- 22 Jan, 2019 1 commit
-
-
Fixes an XSS issue in Alert, Carousel, Collapse, Dropdown, Modal, and Tab components. Executed tasks: cd Build yarn add bootstrap-sass@^3.4.0 --dev yarn exec grunt Then copying the contents of Build/node_modules/bootstrap-sass/assets/javascripts/bootstrap.min.js into typo3/sysext/core/Resources/Public/JavaScript/Contrib/bootstrap/bootstrap.js additionally adding the AMD factory wrapper. Resolves: #86580 Releases: master, 9.5, 8.7 Security-Commit: f456e3c185b23c51d08a579ceef1082df473b01b Security-Bulletin: TYPO3-CORE-SA-2019-006 Change-Id: I235a4b5f6865afd9283cd1e692b25d3a572513ba Reviewed-on: https://review.typo3.org/59538 Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
Oliver Hader <oliver.hader@typo3.org>
-
- 17 Dec, 2018 1 commit
-
-
Benni Mack authored
Several changes to Build/package.json are adapted: - define compatible node/yarn versions - adapt version and URL to typo3.org Resolves: #87177 Releases: master, 9.5, 8.7 Change-Id: Ie812cd69913e2969dc88db8e8c52edbb6d482243 Reviewed-on: https://review.typo3.org/59174 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Matthias Stegmann <matthias.stegmann@b13.de> Tested-by:
Matthias Stegmann <matthias.stegmann@b13.de> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
- 11 Dec, 2018 1 commit
-
-
CKEditor 4.11 was released including a XSS fix where an attacker could add invalid HTML markup by switching to the Source mode of CKEditor and back. Used commands: cd Build/ yarn add ckeditor#4.11.1 --dev grunt build Resolves: #84800 Releases: master, 8.7 Security-Commit: 4a44c536a4f80b1fbf4599070761368e7919980c Security-Bulletin: TYPO3-CORE-SA-2018-005 Change-Id: I50412f24393c306a989dac448d7c0ee66a6760fb Reviewed-on: https://review.typo3.org/59099 Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
Oliver Hader <oliver.hader@typo3.org>
-
- 30 Oct, 2018 1 commit
-
-
karma is used for JavaScript based unit tests. The currently installed version is aged and doesn't compile on newer systems anymore, thus the package is updated to a recent version. Used command: yarn add karma@^3.1.0 --dev Resolves: #86798 Releases: master, 8.7 Change-Id: I1cea78cf3759227a2cd09b8560f37121ae580202 Reviewed-on: https://review.typo3.org/58782 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
Oliver Hader <oliver.hader@typo3.org>
-
- 27 Oct, 2018 1 commit
-
-
Used commands: yarn add codemirror@^5.40.0 --dev grunt build Resolves: #86700 Releases: master Change-Id: I07a146e2ca108339092e16d769fef8031e783511 Reviewed-on: https://review.typo3.org/58662 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Daniel Goerz <daniel.goerz@posteo.de> Tested-by:
Daniel Goerz <daniel.goerz@posteo.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- 01 Oct, 2018 1 commit
-
-
Following commands were used to update the external package and copy the files/folders to the final location: `yarn upgrade @typo3/icons@1.8.0 && yarn build` Resolves: #86499 Releases: master Change-Id: I87b571234257d82b1f2f09f523817c2eea2b26d2 Reviewed-on: https://review.typo3.org/58518 Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
TYPO3com <no-reply@typo3.com>
-
- 29 Sep, 2018 1 commit
-
-
This patch re-adds a missing functionality to CKEditor. Due to the move from htmlArea to CKEditor, the well-known wordcount information was gone. The wordcount information is added to all existing CKEditor presets per default. In addition, it is now possible to customize the displayed information below the editor. - It's possible to switch paragraph-, word- and/or character count. - You can define if spaces are counted as charactars. - You can define if HTML tags are taken into account. - You can define if linebreaks are taken into account. Beside that, the used plugin enables also setting up maximum values for word- and/or character count. This can be easily used for custom RTE presets. The fact that the global configuration is located in the Base.yaml makes it possible to overwrite settings partially or completely in any inherited RTE preset. With that it is easy possible to realize word/character limits. Following commands were used to add the external package as a dependency and copy the plugin files/folders to the final location: `yarn add --dev ckeditor-wordcount-plugin && yarn build` Resolves: #86395 Releases: master Change-Id: I2c76d7bfebc9a5a57c1f105788af206bdffb00f2 Reviewed-on: https://review.typo3.org/58405 Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
TYPO3com <no-reply@typo3.com> Tested-by:
Riccardo De Contardi <erredeco@gmail.com> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
- 20 Sep, 2018 1 commit
-
-
Update CKEditor to the lastest version that fixes a lot of bugs. Release notes: https://ckeditor.com/cke4/release-notes https://ckeditor.com/cke4/release/CKEditor-4.9.2 https://ckeditor.com/cke4/release/CKEditor-4.10.0 https://ckeditor.com/cke4/release/CKEditor-4.10.1 @types/ckeditor has also been updated. Following commands were used to update dependencies: - yarn upgrade ckeditor@4.10.1 -E -D - yarn upgrade @types/ckeditor@4.9.1 -E -D (As there is no newer types definition, version 4.9.1 must be used) The following command was used to update the files in EXT:rte_ckeditor: - yarn build Releases: master Resolves: #86305 Change-Id: I8e5210316454854b93c979e0e7ac1eea3b54e7d4 Reviewed-on: https://review.typo3.org/58324 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
- 06 Jul, 2018 1 commit
-
-
Resolves: #82595 Releases: master Change-Id: Iebec35d3f1be6b70e3976a04c9820c9277a845e3 Reviewed-on: https://review.typo3.org/57475 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de>
-
- 25 Jun, 2018 1 commit
-
-
yarn upgrade moment@2.22.2 yarn upgrade moment-timezone@0.5.20 Resolves: #85223 Releases: master Change-Id: If353c4ac8d5c41ff51112745faa6e3c2b2356221 Reviewed-on: https://review.typo3.org/57179 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
- 15 Jun, 2018 1 commit
-
-
yarn upgrade tslint@^5.10.0 Resolves: #85222 Releases: master Change-Id: I6964d4a2d7cf1d9eefb5e19468b4fca8876c055a Reviewed-on: https://review.typo3.org/57178 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- 19 Apr, 2018 1 commit
-
-
Following command was used to add grunt-contrib-imagemin yarn add grunt-contrib-imagemin --dev Resolves: #84783 Releases: master Change-Id: Ia4bc6ec492f698dc6224adb83098d2625cc749cb Reviewed-on: https://review.typo3.org/56727 Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
TYPO3com <no-reply@typo3.com> Tested-by:
Kay Strobach <typo3@kay-strobach.de> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de>
-
- 17 Apr, 2018 1 commit
-
-
Resolves: #84770 Releases: master Change-Id: Ic6a0299235de3d8901db7efcadbedf07baa4ec7e Reviewed-on: https://review.typo3.org/56712 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de>
-
- 04 Apr, 2018 1 commit
-
-
Josef Glatz authored
Update CKEditor to the lastest version that fixes a lot of bugs. Release notes: https://ckeditor.com/cke4/release-notes https://ckeditor.com/cke4/release/CKEditor-4.7.3 https://ckeditor.com/cke4/release/CKEditor-4.8.0 https://ckeditor.com/cke4/release/CKEditor-4.9.0 https://ckeditor.com/cke4/release/CKEditor-4.9.1 @types/ckeditor has also been updated Following commands were used to update dependencies: - yarn add ckeditor@4.9.1 -E -D - yarn add @types/ckeditor@0.0.46 -E -D Resolves: #84565 Releases: master Change-Id: I47f81e1ecafb06770e18ac83cbe2a15e904623dd Reviewed-on: https://review.typo3.org/56488 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Susanne Moog <susanne.moog@typo3.org> Tested-by:
Susanne Moog <susanne.moog@typo3.org> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de>
-
- 07 Mar, 2018 1 commit
-
-
New icons: - content/content-clock.svg - content/content-map.svg - content/content-marker.svg - content/content-menu-card.svg - content/content-store.svg - content/content-target.svg - mimetypes/mimetypes-x-sys_redirect.svg Resolves: #84162 Releases: master Change-Id: Ic500110e48f221ae5c69d9ca85280da96f769114 Reviewed-on: https://review.typo3.org/56036 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Mathias Schreiber <mathias.schreiber@typo3.com> Tested-by:
Mathias Schreiber <mathias.schreiber@typo3.com> Reviewed-by:
Benjamin Kott <benjamin.kott@outlook.com> Tested-by:
Benjamin Kott <benjamin.kott@outlook.com>
-
- 28 Feb, 2018 2 commits
-
-
Change-Id: Iafb5d62329d70704aac0dc73f8a6254e2745ffea Resolves: #82611 Releases: master Reviewed-on: https://review.typo3.org/55894 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Commands: yarn upgrade grunt-contrib-uglify --latest Upgrades: uglify-js 2.7.5 > 3.3.12 Change-Id: I082a92d87ef1616488c0d8ddcf3801617a37eb50 Resolves: #84075 Releases: master Reviewed-on: https://review.typo3.org/55932 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
- 11 Jan, 2018 1 commit
-
-
Resolves: #83537 Releases: master Change-Id: I8da8f31447bd2ca73aa7d7c22a929b918a085da8 Reviewed-on: https://review.typo3.org/55332 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- 24 Nov, 2017 1 commit
-
-
Because of the broken dependency manager logic in NPM this patch introduce yarn as dependency manager for node modules. Also this patch downgrade some libs, which was updated accidentally in past. To install node modules you have to install yarn first and call `yarn install`, do not use `yarn update` until you really want update a dependency. Resolves: #83038 Releases: master, 8.7 Change-Id: I842636241d76b88f2b9e3836230fdb6629d22fc3 Reviewed-on: https://review.typo3.org/54602 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Benjamin Kott <benjamin.kott@outlook.com> Tested-by:
Benjamin Kott <benjamin.kott@outlook.com>
-
- 11 Oct, 2017 1 commit
-
-
The package `codemirror-minified` used as a drop-in replacement of `codemirror` is not maintained well and is replaced with the original package again. To still get the benefits of page loading speed, at least the JavaScript files are compressed by our own toolchain now. CSS can't get compressed now as the original copyright gets replaced by our own "banner". Resolves: #82713 Releases: master Change-Id: Ic12a7e9e70c63f2c0ae322e470453fe056c99155 Reviewed-on: https://review.typo3.org/54346 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- 09 Sep, 2017 2 commits
-
-
To improve readability in the backend, Source Sans Pro typeface is now introduced and replaces the Share Font. Resolves: #82410 Releases: master Change-Id: Id9a71b37bb41ff0e0b7fb514e62aebd380ff3d2b Reviewed-on: https://review.typo3.org/54063 Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Joerg Kummer <typo3@enobe.de> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de> Reviewed-by:
Nathan Boiron <nathan.boiron@gmail.com> Tested-by:
Nathan Boiron <nathan.boiron@gmail.com> Tested-by:
Patricia Tiedemann <pixelaeffchen@googlemail.com> Reviewed-by:
Simon Praetorius <simon@praetorius.me> Tested-by:
Simon Praetorius <simon@praetorius.me> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Until now all of the backend icons were a manually edited array of file paths. With this patch defined icon folders in the core are scanned for existing icon files and build most of that static array automatically. For historic reason (and hopefully soon to be removed alltogether) a second array of statically declared icons is added and merged into. Some icons that were in the original static list but whose files actually are missing or misnamed are marked as deprecated. Resolves: #82348 Releases: master Change-Id: I8dc4fbbe815d923eda55e1c1b072369e62f66d87 Reviewed-on: https://review.typo3.org/54020 Reviewed-by:
Benjamin Kott <benjamin.kott@outlook.com> Tested-by:
Benjamin Kott <benjamin.kott@outlook.com> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
- 29 Aug, 2017 1 commit
-
-
Update CKEditor to the lastest version that fixes a lot of bugs. Release notes: https://ckeditor.com/release-notes Fixes: * Added Advanced Content Filter integration with the Justify plugin. * [Chrome] Fixed: Clicking the scrollbar throws an Uncaught TypeError: element.is is not a functionerror. * Fixed: Widgets cannot be properly pasted into a table cell. * Fixed: Internal cke_table-faked-selection-table class is visible in the Stylesheet Classes field of the Table Properties dialog. * [Edge] Fixed: Error thrown when pressing the Select All button in Source Mode. * Fixed: Double slash in the path to stylesheet needed by the Table Selection plugin. * Fixed: Unnecessary dependency on the Editor Toolbar plugin inside the Notification plugin. * Fixed: Error thrown into the browser console after opening the Styles Combo plugin menu in the editor without any selection. * Fixed: Double click does not open the dialog for modifying anchors inserted via the Link plugin. * [IE8-9] Fixed: Clicking inside an empty read-only editor throws an error. * [IE10] Fixed: Clicking below a single horizontal rule throws an error. * Fixed: The range.cloneContents method selects the whole element when the selection starts at the beginning of that element. * Fixed: The range.extractContents method returns an incorrect result when multiple nodes are selected. * Fixed: The elementPath.contains method incorrectly excludes the last element instead of root when the fromTop parameter is set to true. * Fixed: SCAYT leaves underlined word after the CKEditor Replace dialog corrects it. * Added the CKEDITOR.dom.nodeList.toArray method which returns an array representation of a node list. Resolves: #82143 Releases: master, 8.7 Change-Id: I6f6037e48d768e4a2887c799c1791f3201ce40c8 Reviewed-on: https://review.typo3.org/53751 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Kasper Ligaard <kasperligaard+typo3.org@gmail.com> Tested-by:
Kasper Ligaard <kasperligaard+typo3.org@gmail.com> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
- 25 Aug, 2017 1 commit
-
-
CodeMirror is offered as a minified version. As there is no benefit of using a "full-blown" version, switch to minified version instead. Resolves: #82204 Releases: master Change-Id: I8e15e1ea8266951430ebeb86445b3cd2db524caf Reviewed-on: https://review.typo3.org/53806 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
- 22 Aug, 2017 1 commit
-
-
Updates D3.js to the latest release version, 4.10.0. Release notes: https://github.com/d3/d3/releases/tag/v4.10.0 Fixes: * Add d3.areaRadial; deprecate d3.radialArea. * Add d3.lineRadial; deprecate d3.radialLine. * Add d3.pointRadial. * Add zoom.translateTo. * Re-implement d3.packEnclose using Matoušek-Sharir-Welzl. * Fix d3.packSiblings to center the circles more consistently around a fixed origin. * Fix axis rendering when a scale has a non-numeric range. * Fix interval.offset on filtered time intervals when step is negative. * Fix invocation of requestAnimationFrame in Edge. * Invoke nest.sortValues comparator prior to nest.rollup aggregator. * Drag & zoom behaviors now only register touch event listeners when touch is supported. * Drag & zoom behaviors now set the touch-action style to “none” when touch is supported. Resolves: #81945 Releases: master, 8.7 Change-Id: Idcd0826d2bd50467558d1bd6229d84651b93f4b0 Reviewed-on: https://review.typo3.org/53574 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Kasper Ligaard <kasperligaard+typo3.org@gmail.com> Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Morten Pless <mpl@systime.dk> Tested-by:
Morten Pless <mpl@systime.dk> Reviewed-by:
Faton Haliti <fha@systime.dk> Reviewed-by:
Josef Glatz <josef.glatz@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
- 17 Aug, 2017 1 commit
-
-
EXT:t3editor is refactored to use the latest CodeMirror version (at the time of writing it's 5.28.0). Developers are now able to easily register and use custom modes for syntax highlighting. Also, addons for CodeMirror can be added easily. As CodeMirror provides these already, some useful addons are already registered, for example a search with hit annotations, fullscreen mode and jump-to-line functionality. A positive side-effect is that a lot of custom code was removed. Since the architecture allows to register additional modes, the TypoScript mode has been refactored and might be moved into a separate extension in further iterations. Resolves: #81901 Releases: master Change-Id: I432d1fdb3ba1f2a0b9246207dd70843b4bdbfbd9 Reviewed-on: https://review.typo3.org/53413 Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
- 13 Jul, 2017 1 commit
-
-
Resolves: #81772 Releases: master Change-Id: I2dc8f61c1ec888d58f00f49a19f4f4ff27c2e7db Reviewed-on: https://review.typo3.org/53385 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- 05 Jul, 2017 1 commit
-
-
This updates the version of D3 to the latest release, 4.9.1. The realese can be seen here: https://github.com/d3/d3/releases A lot of fixes have been added in the latest versions. v4.8.0: * Add d3.tickIncrement. * Fix d3.ticks to always return the most-precise representable values in IEEE 754! * Fix histogram.thresholds to retain thresholds equal to the domain’s upper bound. * Number format locales can now override the percent sign suffix. Thanks, @davinov! v4.9.0: * Change selection.style to return the inline style, if present. * Change transition.style to start from the inline style, if present. * Add link shapes! * Add d3.stackOffsetDiverging. * Add random.source to allow custom sources of randomness. Thanks, @rolyatmax! * Add drag.clickDistance for setting the click distance threshold. Thanks, @Epiphero! * Add zoom.clickDistance for setting the click distance threshold. * Add d3.style. * Fix rounding errors in continuous.nice. * Fix inconsistency between continuous.ticks and continous.nice. Thanks, @danielyule! * Fix axis tick offset for band and point scales. * Fix drag click suppression to ignore mousemove events that don’t actually move. * Fix zoom click suppression to ignore mousemove events that don’t actually move. * Fix error trying to interpolate objects without prototypes. Thanks, @devgru! * Optimize generated axis DOM slightly. * Improve error message descriptions in d3.queue. Thanks, @ethervoid! v4.9.1: * Fix d3.linkRadial to use radians rather than degrees. * Optimize path.pointRadius slightly. Resolves: #81652 Releases: master, 8.7 Change-Id: Ife6db0031c3a8341df6abb2dac43f64dafaeaa5e Reviewed-on: https://review.typo3.org/53296 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Anders Kostending <aha@systime.dk> Tested-by:
Anders Kostending <aha@systime.dk> Reviewed-by:
Kasper Ligaard <kasperligaard+typo3.org@gmail.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- 03 Jul, 2017 1 commit
-
-
CKEditor have realeased a new version, containing fixes primarily for table selection, but also some general fixes. Mexican spanish have also been added as a supported language. Changes: * Added a new Mexican Spanish localization * Added Paste as Plain Text keyboard shortcut to the Accessibility Help instructions. * [Chrome] Fixed: Mouse actions on CKEditor scrollbar throw an exception when the Table Selection plugin is loaded. * Fixed: Selection started from a nested table causes an error in the browser while scrolling down. * [Firefox] Fixed: Enter key breaks the table structure when pressed in a table selection. * Fixed: Error thrown when deleting content from the editor with no selection. * [Chrome] Fixed: Error thrown by the Enter Key plugin when pressing Enter with no selection. * Fixed: Error thrown by Tab Key Handling and Indent List plugins when pressing Tab with no selection in inline editor. * Fixed: Anchors inserted with the Link plugin on collapsed selection cannot be edited. * Fixed: The Table Resize plugin throws an error when used with a table with only header or footer rows. * Fixed: The editor.getCommandKeystroke method does not obtain the correct keystroke. * [IE] Fixed: Paste from Word does not work in Quirks Mode. * Fixed: CKEDITOR.filter incorrectly transforms the margin CSS property. Release blog post: http://ckeditor.com/blog/CKEditor-4.7.1-released Release notes: http://ckeditor.com/release-notes Resolves: #81752 Releases: master, 8.7 Change-Id: I75b7b8d134c01c6541144e462402e733ce8e1dab Reviewed-on: https://review.typo3.org/53362 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
- 13 Jun, 2017 1 commit
-
-
Updates the version of CKEditor to 4.7. This update fixes 30+ bugs, that can be seen here: http://ckeditor.com/release/CKEditor-4.7.0 In addition there will be simpler tables, better support for CSP, better paste from Excel and Word and so on. Added one fix to the typo3link plugin. Resolves: #81483 Releases: master, 8.7 Change-Id: Id5a023e5bf9ad9bfac5e7c9c103670978ef95d8f Reviewed-on: https://review.typo3.org/53138 Reviewed-by:
Anders Kostending <aha@systime.dk> Tested-by:
Anders Kostending <aha@systime.dk> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Josef Glatz <josef.glatz@typo3.org> Tested-by:
Josef Glatz <josef.glatz@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
- 09 Jun, 2017 1 commit
-
-
After this patch you need no local grunt-cli you can run all task with npm like `npm run build-css` Resolves: #81491 Releases: master, 8.7 Change-Id: I112ec3f2102c23ecfa8a715933905d03ef35e55f Reviewed-on: https://review.typo3.org/53145 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
- 08 Jun, 2017 1 commit
-
-
Since using flexbox for displaying boxes at the same height in module 'About' the jQuery plugin 'matchHeight' is not needed anymore. Resolves: #81493 Releases: master Change-Id: I1f593111804cd34f66beee472cbdd4ac258fc0ab Reviewed-on: https://review.typo3.org/53149 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- 05 Jun, 2017 1 commit
-
-
Resolves: #81416 Releases: master, 8.7 Change-Id: If7e3893baa73c1392f3317d5b871be51eeab41b5 Reviewed-on: https://review.typo3.org/53021 Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-