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 .
- 05 Oct, 2015 1 commit
-
-
Resolves: #70417 Releases: master Change-Id: Ie855b996636b749562acf3baa67b1756c2ad3db2 Reviewed-on: http://review.typo3.org/43826 Reviewed-by:
Daniel Goerz <ervaude@gmail.com> Tested-by:
Daniel Goerz <ervaude@gmail.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- 25 Sep, 2015 1 commit
-
-
This patch cares about overrideVals which might be set. They have to be added to the database record information and should turn the field into a hidden input element. Resolves: #70058 Releases: master Change-Id: I116177e5bdf3511621842221dd7289446337cd0c Reviewed-on: http://review.typo3.org/43441 Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- 16 Sep, 2015 1 commit
-
-
The newly introduced Backend Routing is updated so that Routes must define not just the controller but also the action which should be called. It is now also possible to use a Closure / callable directly to be called as a Route. The RequestHandler now creates the Response object, which is handed to the Dispatcher and to the respective action. This way each action can already use the existing Response object. The Dispatcher resolves the action and hands over the request and response object. All existing routes have been adapted to use controller and actions. The fixed ControllerInterface is not needed anymore. Resolves: #69855 Releases: master Change-Id: I6edcf8e0f6b49580052f24ca9fd7ad352b6d6f34 Reviewed-on: http://review.typo3.org/43337 Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
- 14 Sep, 2015 1 commit
-
-
While passing values via GET or POST, those values have been lost to the form. The handling has passed to a dedicated element class, that handles them correctly. Change-Id: If41ae361e8e4fd4012a13bf888dc62d94d5e079c Resolves: #69784 Resolves: #69661 Resolves: #69664 Releases: master Reviewed-on: http://review.typo3.org/43304 Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- 10 Sep, 2015 1 commit
-
-
Christian Kuhn authored
Resolves: #69653 Releases: master Change-Id: I0fd8546ec865770657e8937f7151ff378eaf6d9e Reviewed-on: http://review.typo3.org/43176 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Markus Klein <markus.klein@typo3.org>
-
- 08 Sep, 2015 1 commit
-
-
Christian Kuhn authored
tl;dr: This patch makes FormEngine insanely flexible, extensions however should not rely on structures for now, since class names and array content will change. The patch applies a separation of concerns to the FormEngine class structure by extracting the data processing from rendering. As a main goal the render part consisting of container and element classes routed through the flexible NodeFactory only works on data created by the new FormDataCompiler class construct. This makes the FormEngine much more flexible and opens ways to not only use the render part in the context of database driven data, but on anything that is fed to it. This patch creates the main structure for this. The FormDataCompiler class returns a defined array container and elements can work on it. Data is added by single FormDataProvider, which are combined in FormDataGroups. FormDataProvider may depend on each other and a FormDataGroup "knows" its providers and calls them in a dedicated order. For instance, the "FullDatabaseRecord" FormDataGroup first calls a provider that fetches the record defined by uid and table name and a later called provider determines the given record type this record is assigned to, so another provider can then work on TCA to determine the list of record fields to be shown. The FormDataProvider used for the main FormDataGroup are defined in TYPO3_CONF_VARS, so extensions can add and remove their own providers to add or change certain data if needed. This is highly flexible and extensions are able to hook in at a specific position within the provider chain for the main data groups. This construct obsoletes the DataPreprocessor as well as several other side classes. With this patch the main architecture is created and lots of data preparation is transfered already, supported by a high unit test coverage. The FormEngine class itself is removed: The inline ajax entry point is moved to an own controller class, the getMainFields() and friends methods are substituted with FormDataCompiler / NodeFactory combinations and the data gathering is for now parked in a FormResultCompiler class. However, this process is not yet finished and lots of @todo statements are added to the code base to document open ends and to further separate the data handling from the render engine. Especially the IRRE data handling is currently still located within the render engine and makes the whole thing much more complicated than it should be. Lots of detail patches need to follow to bring this code to a level where it belongs to be. Warning: While this patch is already insanely huge touching more than 22 thousands lines of code, lots of loose ends need to be tackled and the API is not final yet. The arrays will be reduced and sharpened during the next weeks, class names may change and structures will change. Change-Id: Ief1769f478373cc26d1bf6c49114258f0dae8355 Resolves: #69568 Releases: master Reviewed-on: http://review.typo3.org/41933 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Florian Peters <fpeters1392@googlemail.com> Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Alexander Opitz <opitz.alexander@googlemail.com> Tested-by:
Alexander Opitz <opitz.alexander@googlemail.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- 07 Sep, 2015 2 commits
-
-
Resolves: #69575 Releases: master Change-Id: I62ff951816107fd9f7e656065781b29a433f4dae Reviewed-on: http://review.typo3.org/43080 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> 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>
-
The CSRF tokens for edit document and tce actions were introduced, to protect these entry scripts. Since the entry scripts are removed now and any entry point is protected with a CSRF token by default, we do not need these additional tokens any more. The helper methods can now also be deprecated and the check for the tokens is removed in the controllers. Please note that in the deprecated.php the tokens still must be checked, as third party modules still might generate URLs to the old entry scripts and we want to have this deprecated entry point still be protected. Resolves: #69562 Releases: master Change-Id: I9df443c7fcb4c7db4f7f682d3643b780480ed5de Reviewed-on: http://review.typo3.org/43069 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
- 05 Sep, 2015 2 commits
-
-
Resolves: #69554 Releases: master Change-Id: I0564f908ecebf0e6b317b299b43e1b4d4f9af576 Reviewed-on: http://review.typo3.org/43058 Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Frans Saris <franssaris@gmail.com> Tested-by:
Frans Saris <franssaris@gmail.com>
-
Replaces all IconUtility::getSpriteIcon calls for the icon actions-document-save-new with the new IconFactory. Resolves: #68868 Releases: master Change-Id: I8dfeed0a1299a69b3e892da6c38c56e16dceda82 Reviewed-on: http://review.typo3.org/43043 Reviewed-by:
Daniel Goerz <ervaude@gmail.com> Tested-by:
Daniel Goerz <ervaude@gmail.com> Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Tested-by:
Xavier Perseguers <xavier@typo3.org>
-
- 04 Sep, 2015 4 commits
-
-
Replaces all IconUtility::getSpriteIcon calls for the icon actions-document-open with the new IconFactory. Change-Id: I8bdff1bb752f2735d553da859cec71256ceb2d2c Resolves: #68845 Releases: master Reviewed-on: http://review.typo3.org/42411 Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de> Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org>
-
Replaces all IconUtility::getSpriteIcon calls for the icon actions-document-save with the new IconFactory. Resolves: #68867 Releases: master Change-Id: Ie0591197ade6473af9a470b34e3f5e2e56eabb60 Reviewed-on: http://review.typo3.org/43003 Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Resolves: #69523 Related: #68866 Releases: master Change-Id: I3315056e2c651565e52fb4c79eef126d4a13e8d8 Reviewed-on: http://review.typo3.org/43012 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:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Replaces all IconUtility::getSpriteIcon calls for the icon actions-document-save with the new IconFactory. Resolves: #68866 Releases: master Change-Id: I29540eed175d642fae67a5b4453520c926cd2cae Reviewed-on: http://review.typo3.org/42973 Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org> Reviewed-by:
Michael Oehlhof <typo3@oehlhof.de> Tested-by:
Michael Oehlhof <typo3@oehlhof.de> Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- 27 Aug, 2015 1 commit
-
-
The static MarkerUtility introduced by #69262 can easily replaced with an object. This makes mocking for tests easier. Deprecation will be easier as soon the marker support is dropped, too. Change-Id: I14c2a8402888dfaaa48b0fb9e6c9b40475fd800d Resolves: #69329 Relates: #69262 Releases: master Reviewed-on: http://review.typo3.org/42882 Reviewed-by:
Philipp Gampe <philipp.gampe@typo3.org> Tested-by:
Philipp Gampe <philipp.gampe@typo3.org> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
- 26 Aug, 2015 1 commit
-
-
The marker substitution functionality has been moved from core/Classes/Html/HtmlParser.php to own class core/Classes/Utility/MarkerUtility.php The following methods within HtmlParser have been marked as deprecated. * HtmlParser::getSubpart() * HtmlParser::substituteSubpart() * HtmlParser::substituteSubpartArray() * HtmlParser::substituteMarker() * HtmlParser::substituteMarkerArray() * HtmlParser::substituteMarkerAndSubpartArrayRecursive() Resolves: #69262 Releases: master Change-Id: Ia0ffb3715b3ecef9739db4f6aad53bae9c224b90 Reviewed-on: http://review.typo3.org/41381 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
- 20 Aug, 2015 2 commits
-
-
Submit buttons need to have a value set, otherwise submit checks in the PHP code won't work. Some useless POST checks are removed after the removal of the type=image input fields for saving data. Resolves: #69194 Releases: master Change-Id: If42da73242d82d96d0042e0bedce69ad2a302427 Reviewed-on: http://review.typo3.org/42764 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info>
-
Resolves: #68981 Releases: master Change-Id: I203ed2a58c30cf0da89bedb266453eeff32b34cc Reviewed-on: http://review.typo3.org/42647 Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Daniel Maier <dani-maier@gmx.de> Tested-by:
Daniel Maier <dani-maier@gmx.de> Reviewed-by:
Daniel Goerz <ervaude@gmail.com> Tested-by:
Daniel Goerz <ervaude@gmail.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- 18 Aug, 2015 1 commit
-
-
Resolves: #69162 Releases: master Change-Id: I1cd25425cf344212c192c78bdf4e2f002fb66173 Reviewed-on: http://review.typo3.org/42721 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- 17 Aug, 2015 1 commit
-
-
Markus Klein authored
Next step in cleanup and separation of concerns. Removal of unused or redundant code. Resolves: #69136 Releases: master Change-Id: I4a81c6856bf44cf15ceea1cad9e41f00ba43f70a Reviewed-on: http://review.typo3.org/42689 Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de>
-
- 13 Aug, 2015 1 commit
-
-
This fixes a wrong JS call that was introduced with #68166 Resolves: #69013 Releases: master Change-Id: I1181b9e1dbf2aff04910f704d5833f809baa4945 Reviewed-on: http://review.typo3.org/42561 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
- 12 Aug, 2015 2 commits
-
-
Replaces all IconUtility::getSpriteIcon calls for the icon actions-edit-undo with the new IconFactory. Change-Id: I42ed3f6368fc27c47bdc0ce7e74380ba0fbd5b12 Resolves: #68845 Releases: master Reviewed-on: http://review.typo3.org/42503 Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Markus Guenther authored
Replaces all IconUtility::getSpriteIcon calls for the icon actions-edit-delete with the new IconFactory. Change-Id: I6b4bb25d9dd4113257a2d7eda6d5eadb36ea22dc Resolves: #68879 Releases: master Reviewed-on: http://review.typo3.org/42466 Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de>
-
- 08 Aug, 2015 1 commit
-
-
Replaces all IconUtility::getSpriteIcon calls for the icon actions-document-close with the new IconFactory. Change-Id: I097d1b83bd7b76ec14c9050fb5bc74411729809e Resolves: #68839 Releases: master Reviewed-on: http://review.typo3.org/42383 Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- 07 Aug, 2015 2 commits
-
-
This patch adds rsa encryption to password fields. It introduces an own rsaInput render type which turns fields into true password fields and removes JavaScript default value '********'. Furthermore the rsa Api is adjusted to handle the incoming data correctly. Releases: master Resolves: #68166 Change-Id: I4eb8186f77e5b9215310f65d606bc49c71b19880 Reviewed-on: http://review.typo3.org/41286 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>
-
Replaces all IconUtility::getSpriteIcon calls for the icon actions-document-history-open with the new IconFactory. Change-Id: Ie0432cdced84d145da6bf9749f1275f398861146 Resolves: #68830 Releases: master Reviewed-on: http://review.typo3.org/42365 Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- 06 Aug, 2015 1 commit
-
-
BACK_PATH in Backend context is always empty string. The patch removes a couple of simple usages, mostly related to DocumentTemplate. Resolves: #68790 Releases: master Change-Id: Ic4897642abf216fbcec430051723bc4b412b321a Reviewed-on: http://review.typo3.org/42312 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- 05 Aug, 2015 3 commits
-
-
With changing the input type=image to input type=submit, the x/y values are no longer transferred the EditDocumentController checked for, and content is no longer saved. Adapt the controller code for the new parameters. Resolves: #68776 Releases: master Change-Id: Id1f3ec59ec728b48583c8ef79020c2feede4fd54 Reviewed-on: http://review.typo3.org/42297 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Type image without src attribute is not allowed. Use type submit instead. Resolves: #68304 Releases: master Change-Id: I3e85595f6320c3057a59309fe391a02fcfe43744 Reviewed-on: http://review.typo3.org/42293 Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org>
-
Resolves: #68304 Related: #68025 Releases: master Change-Id: I90f372ac7570dcc57517b2f9b1e9efcd01b3b9ca Reviewed-on: http://review.typo3.org/41606 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Sascha Wilking <sascha.wilking@hmmh.de> Tested-by:
Sascha Wilking <sascha.wilking@hmmh.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- 20 Jul, 2015 1 commit
-
-
Resolves: #68380 Releases: master Change-Id: I9520e9d9e57899b1079ce7aa8a2203d3d20485c2 Reviewed-on: http://review.typo3.org/41719 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- 19 Jul, 2015 2 commits
-
-
Per default the save&view button is not rendered anymore for the doktypes 254, 255 and 199. This behaviour can be changed by TSConfig. Resolves: #49972 Resolves: #20194 Releases: master Change-Id: I0eba112827521af0efb3c8049898e3e72d0d0838 Reviewed-on: http://review.typo3.org/22245 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Andreas Wolf <andreas.wolf@typo3.org> Tested-by:
Andreas Wolf <andreas.wolf@typo3.org>
-
In our efforts to streamline the JavaScript base with RequireJS and jQuery, the prototype.js and scriptaculous libraries are removed from the Core completely. Releases: master Resolves: #39721 Change-Id: If4d70842dcdf7e0fe9d0dd3c1f19c7e35647ce5d Reviewed-on: http://review.typo3.org/41318 Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de> Reviewed-by:
Andreas Wolf <andreas.wolf@typo3.org> Tested-by:
Andreas Wolf <andreas.wolf@typo3.org> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
- 16 Jul, 2015 2 commits
-
-
Resolves: #68245 Related: #68026 Releases: master Change-Id: Ic1baa2c9341ae8757b45c125f65b06c6509549f0 Reviewed-on: http://review.typo3.org/41498 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de> Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org>
-
Resolves: #68212 Releases: master Change-Id: I9bd840c014bec704d8e16faab0cca7abce4cc330 Reviewed-on: http://review.typo3.org/41424 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- 15 Jul, 2015 2 commits
-
-
The ancient form_enctype setting was a fallback from the old days when some hosters decided uploading files in PHP is a bad idea. The fallback was thought to still allow casual data transfer. This is dropped now, the setting no longer used and removed from configuration. Resolves: #68178 Releases: master Change-Id: If16db4de44c0654b18efc5b1a9f0e3f46e079687 Reviewed-on: http://review.typo3.org/41314 Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
@author information can be found in version control. Cluttering our code with these tags does not make much sense and they are outdated by definition or would sum up to impressive lists. As decided on acme 2015, we drop them now. Releases: master Resolves: #68152 Change-Id: Iec1ea0f873b44ab6027c94ba8353a9fdb5477bdd Reviewed-on: http://review.typo3.org/41264 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- 14 Jul, 2015 2 commits
-
-
The PageRenderer is a Singleton and only one instance exists during runtime. This patch cleans up the usage and prevents sharing the PageRenderer object over public getters. This helps to improve the api and get rid of unnecessary functions. Releases: master Resolves: #68074 Change-Id: I66abd565df96ff0b8fb31d24a04721ca8ecb3f3a Reviewed-on: http://review.typo3.org/41131 Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org>
-
To clean the typo3/ directory we move close.html to ext:backend. Resolves: #68108 Releases: master Change-Id: Ieee52bd3ebea8f5c3f1c7f594d6d565864e07a76 Reviewed-on: http://review.typo3.org/41169 Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
- 13 Jul, 2015 1 commit
-
-
Resolves: #68078 Releases: master Change-Id: I1cc0abe0a6d0f962472061017a91c7fa8f5f8995 Reviewed-on: http://review.typo3.org/41134 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>
-