- May 28, 2016
-
-
Valentin Despa authored
Remove the second parameter of sL and replace it with htmlspecialchars directly in the code. Resolves: #76325 Related: #71917 Releases: master Change-Id: I6668eea01d80446a6b6f2ec95435c6e3d93cb0c3 Reviewed-on: https://review.typo3.org/48346 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- May 05, 2016
-
-
Michael Oehlhof authored
Resolves: #75718 Releases: master Change-Id: I27a14e694cd17132bf71d2687b8ea2366409fa27 Reviewed-on: https://review.typo3.org/47763 Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
- Apr 27, 2016
-
-
Michael Oehlhof authored
Resolves: #75636 Releases: master Change-Id: I49611c3d0e6a0ec56e05871c5beb7f7de4bce949 Reviewed-on: https://review.typo3.org/47682 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>
-
- Apr 19, 2016
-
-
Morton Jonuschat authored
This name change transports the intent of the query context better and makes it more intuitive to use. Instead of explicitly disabling all enable fields and the deleted flag using the following code: $queryBuilder->getQueryContext() ->setIgnoreEnableFields(true) ->setIncludeDeleted(true); the more descriptive predefined context can be used: $queryBuilder->getQueryContext()->setContext('unrestricted') Releases: master Resolves: #75751 Change-Id: I4d38a328c2b6707a32f26022b4abfc48e945c0ed Reviewed-on: https://review.typo3.org/47759 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de>
-
- Apr 18, 2016
-
-
Michael Oehlhof authored
Resolves: #75717 Releases: master Change-Id: I210f838568c47469eb9926b7b4b6774578a28732 Reviewed-on: https://review.typo3.org/47733 Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Michael Oehlhof authored
Resolves: #75713 Releases: master Change-Id: Ia82c7055e71ec154264f6b658addf49c5f9187a5 Reviewed-on: https://review.typo3.org/47730 Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org> Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de>
-
- Jan 16, 2016
-
-
Bernhard Kraft authored
When using the recycler as normal user (non admin) it isn't possible to restore any pages as the underlying BE API methods by default only allow to check for access to non-deleted pages. This situation is circumvented by disabling the "delete" flag in TCA while checking for access to deleted pages. Resolves: #70863 Releases: 7.6, master Change-Id: Ibf6ff305a6dbcf3eaf99fdca89b7bf7c78677319 Reviewed-on: https://review.typo3.org/45292 Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- Jan 14, 2016
-
-
Andreas Fernandez authored
If enabled for an user or being an admin, deleted pages above the selected item are also recovered. If an user does not have this ability, the recover button is locked. Resolves: #1835 Releases: master Change-Id: I98d9876ee95f36cda64fc0730169197b153a2e7f Reviewed-on: https://review.typo3.org/36744 Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- Dec 21, 2015
-
-
Benni Mack authored
The recycler module handles conversions to UTF8 and to other charsets, although the backend is solely UTF-8 since TYPO3 4.5. The logic and the according functions have been removed as they have no effect and only add complexity to code and slows down processing. Resolves: #72334 Releases: master Change-Id: Ifdae4a494e84dec1a7c42e96f36e48ecbf840ff3 Reviewed-on: https://review.typo3.org/45373 Reviewed-by:
Michael Oehlhof <typo3@oehlhof.de> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
- Nov 29, 2015
-
-
Nicole Cordes authored
Multiple button settings are double encoded with htmlspecialchars. This patch removes the hsc within the setters as the button settings are already escaped during render method. Resolves: #71915 Releases: master Change-Id: I470b6e4ce42859d4147e21acf9e7b6334a776848 Reviewed-on: https://review.typo3.org/45014 Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Michael Oehlhof <typo3@oehlhof.de> Tested-by:
Michael Oehlhof <typo3@oehlhof.de> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
- Nov 22, 2015
-
-
Michael Oehlhof authored
Resolves: #71768 Releases: master Change-Id: I6527ccb5bbb11817989c7c9f6ba1ee3da9812e14 Reviewed-on: https://review.typo3.org/44888 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
- Nov 20, 2015
-
-
Wouter Wolters authored
Resolves: #71726 Releases: master Change-Id: I4a356c8da668acee555149eee9cf56ccdb4dc0ee Reviewed-on: https://review.typo3.org/44822 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>
-
- Nov 08, 2015
-
-
Helmut Hummel authored
* Reverts the change that allowed HTML tags by default in flash messages * Simplifies flash message markup to be bootstrap alert style * Delegate flash message rendering completely to module template * Deprecate render method in flash message * Minor cleanups in flash message view helper and flash message class Resolves: #71249 Releases: master Change-Id: Idbb4bc31372fbc435519496168715e0bcc5cebf2 Reviewed-on: https://review.typo3.org/44592 Reviewed-by:
Philipp Gampe <philipp.gampe@typo3.org> Tested-by:
Philipp Gampe <philipp.gampe@typo3.org> Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org> Reviewed-by:
Helmut Hummel <helmut.hummel@typo3.org> Tested-by:
Helmut Hummel <helmut.hummel@typo3.org>
-
- Oct 13, 2015
-
-
Mathias Schreiber authored
With the introduction of the new Button types HelpButton and ShortcutButton we no longer need to use FullyRenderedButtons in the core thus changing all old code to use the new Button types Resolves: #70653 Releases: master Change-Id: Ie89cc2e2154af9a117f084ec8551192ffe4d6ef9 Reviewed-on: http://review.typo3.org/44032 Reviewed-by:
Daniel Goerz <ervaude@gmail.com> Tested-by:
Daniel Goerz <ervaude@gmail.com> Reviewed-by:
Michael Oehlhof <typo3@oehlhof.de> Tested-by:
Michael Oehlhof <typo3@oehlhof.de> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de>
-
- Oct 09, 2015
-
-
TYPO3 Release Team authored
In our efforts to achieve a better interoperability with other PHP projects, the PHP code base of the TYPO3 Core switches to the PHP coding guideline standard PSR-2. See http://www.php-fig.org/psr/psr-2/ for more information. Resolves: #70515 Releases: master Change-Id: I734c0d838af157003decfeb5fc0a11dddcb87bf5 Reviewed-on: http://review.typo3.org/43918 Reviewed-by:
TYPO3 Release Team <typo3cms@typo3.org> Tested-by:
TYPO3 Release Team <typo3cms@typo3.org>
-
- Oct 05, 2015
-
-
Michael Oehlhof authored
Resolves: #70367 Releases: master Change-Id: I5861cd2de035e2b730aca2f40adf74ff913a7d95 Reviewed-on: http://review.typo3.org/43803 Reviewed-by:
Daniel Goerz <ervaude@gmail.com> Tested-by:
Daniel Goerz <ervaude@gmail.com> Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info>
-
Benjamin Mack authored
The AjaxRequestHandler now first checks in the Router if an AJAX route exists. A new flag "ajax" in the routing mechanism allows to call ajax-based URLs which are then handed to the AJAX Request Handler. All controllers now receive proper Request and Response objects. All previous logic still works, but can slowly be migrated to the Routing concept. Resolves: #69916 Releases: master Change-Id: I1e67d5a341a4dd2769247531246c9e1fad900c76 Reviewed-on: http://review.typo3.org/43365 Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
- Sep 22, 2015
-
-
Frank Nägler authored
Deprecate the IconUtility class from EXT:backend and handle its calls using the new IconFactory from EXT:core. Kudos to Benjamin Kott, Stephan Großberndt, Andreas Fernandez and Frans Saris for the great support on this big project. Resolves: #69057 Releases: master Change-Id: I27a045b7a3b9d31e6e3e915e1452d44af56b0cee Reviewed-on: http://review.typo3.org/42613 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Tested-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Sep 20, 2015
-
-
Stephan Großberndt authored
Implement replacement and replace all core usages of IconUtility::getSpriteIconForRecord() with IconFactory->getIconForRecord(). Register and fix several icon definitions for core tables. Resolves: #69754 Releases: master Change-Id: I5adf4f58a0331c77458049e19c7c8ca441b9e4cf Reviewed-on: http://review.typo3.org/43272 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Jul 15, 2015
-
-
Markus Klein authored
@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>
-
- Jul 14, 2015
-
-
Nicole Cordes authored
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>
-
- Jul 13, 2015
-
-
Stefan Neufeind authored
The usage of the ternary operator just for conversion to boolean like ... ? TRUE : FALSE is be replaced by a normal (bool) typecast. Change-Id: Ia32f63b423ffa7e066c9cf8bb002dde51b419bfa Resolves: #68063 Releases: master Reviewed-on: http://review.typo3.org/41110 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de>
-
- Mar 26, 2015
-
-
Benjamin Mack authored
Resolves: #65292 Releases: master Change-Id: Ib94e59bf5d9896186aa6923eab50a2236308bd6a Reviewed-on: http://review.typo3.org/38113 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- Mar 15, 2015
-
-
Andreas Fernandez authored
The used bitmasks of JsConfirmation and Permission are put into "enums" and their representing constants are used instead of the raw bitmask values. Resolves: #65455 Releases: master Change-Id: I1910bb960b69836ea29c16c91d730ac74c22f929 Reviewed-on: http://review.typo3.org/37455 Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co> Reviewed-by:
Mathias Brodala <mbrodala@pagemachine.de> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
- Mar 10, 2015
-
-
Nicole Cordes authored
Due to a wrong language file path no setting information for the CleanerTask of the recycler are shown. Releases: master Resolves: #65647 Change-Id: I21b45a0efd1e9c03d4b6bae6475826ac55262b6f Reviewed-on: http://review.typo3.org/37713 Reviewed-by:
Steffen Müller <typo3@t3node.com> Tested-by:
Steffen Müller <typo3@t3node.com> Reviewed-by:
Markus Klein <klein.t3@reelworx.at> Tested-by:
Markus Klein <klein.t3@reelworx.at>
-
- Mar 06, 2015
-
-
Andreas Fernandez authored
Fix two broken tasks in the scheduler: "Remove deleted records" from EXT:recycler refers to the right xlf now. "System Status Update" belongs to EXT:reports again Resolves: #65558 Releases: master Change-Id: I50319632f1a26cd48f36b1ec872d8cf04da8992b Reviewed-on: http://review.typo3.org/37583 Reviewed-by:
Nicole Cordes <typo3@cordes.co> Reviewed-by:
Markus Klein <klein.t3@reelworx.at> Tested-by:
Markus Klein <klein.t3@reelworx.at> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- Mar 02, 2015
-
-
Philipp Bergsmann authored
Scheduler task to remove deleted records from content table(s) which are older than x days. If a deleted record also contains an upload field, then the file is also deleted. Releases: master Resolves: #32651 Change-Id: I58577c05a1a3b228579c05578cc8fdf2e3b393fa Reviewed-on: http://review.typo3.org/9013 Reviewed-by:
Markus Klein <klein.t3@reelworx.at> Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Frederic Gaus authored
Rename label "table" to "record type" in recycler Change-Id: I81226203e3bcb705320563bc508d74f69d8142c1 Resolves: #43368 Releases: master Reviewed-on: http://review.typo3.org/36710 Reviewed-by:
Andreas Fernandez <andreas.fernandez@aspedia.de> Tested-by:
Andreas Fernandez <andreas.fernandez@aspedia.de> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Feb 06, 2015
-
-
Andreas Fernandez authored
This patch improves the usability and fixes a small bug: - Add the clearable to the search form - Count deleted records correctly Resolves: #64911 Releases: master Change-Id: I0fc702697ce1c630d39f6b127f605c9d8aa5afb4 Reviewed-on: http://review.typo3.org/36716 Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- Feb 04, 2015
-
-
Frederic Gaus authored
Fix a few coding issues in new EXT:recycler * Remove IDE warnings * Correct phpDoc * Remove an unused variable * Introduce a int typecast of GP:id * Replace spaces with tabs Change-Id: I8eaadd51c29506958d7fa80c375ddf943dfbac2f Resolves: #64844 Releases: master Reviewed-on: http://review.typo3.org/36646 Reviewed-by:
Andreas Fernandez <andreas.fernandez@aspedia.de> Tested-by:
Andreas Fernandez <andreas.fernandez@aspedia.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- Jan 31, 2015
-
-
Göran Bodenschatz authored
Resolves: #64690 Releases: master Change-Id: Ia785278f0210416a0075e8e6eed712d97fd7272a Reviewed-on: http://review.typo3.org/36513 Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Tested-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Steffen Müller <typo3@t3node.com> Tested-by:
Steffen Müller <typo3@t3node.com>
-
- Jan 30, 2015
-
-
Andreas Fernandez authored
Due to the use of a wrong _GP variable, the recycler can only load the first two pages. Also, reset the paginator upon table change. Resolves: #64652 Releases: master Change-Id: I0519b5fd721e46f07e9b9e0003d812317d88660e Reviewed-on: http://review.typo3.org/36450 Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Jan 29, 2015
-
-
Felix Kopp authored
Refactors the recycler extension to a modern architecture. The backend is based on Extbase and Fluid, the UI is based on jQuery and Twitter Bootstrap now. Due to restrictions in the core, non-admin users cannot restore deleted pages for now. Kudos to Felix Kopp for porting the base to Extbase and Fluid. Releases: master Resolves: #64420 Change-Id: I9d330981af0b42703b8352c1d61bec818e08b38e Reviewed-on: http://review.typo3.org/36109 Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Jan 18, 2015
-
-
Markus Klein authored
It is faster to compare a string with === '' to find out if it's empty than to run strlen() on it. The replacement rules are applied as follows: * if (strlen($str)) => if ((string)$str !== '') * if (!is_string($str) || strlen($str) === 0) => if (!is_string($str) || $str === '') * If it can be seen easily that $str is a string, the typecast is omitted. Change-Id: I888d70e42f925bd57ad23b873b72d6a38acb39ef Resolves: #54091 Releases: master Reviewed-on: http://review.typo3.org/27794 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>
-
- Jan 03, 2015
-
-
Pascal Dürsteler authored
This refactors the copy-pasted method from ext:recycler into LanguageService.php. Resolves: #57225 Releases: master Change-Id: I0312068b70583feeff9d4cbf5f96fbac75baa793 Reviewed-on: http://review.typo3.org/28694 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- Dec 29, 2014
-
-
Mathias Schreiber authored
This lowers the memory usage. Iterate on the original array instead of an array_keys()-copy which lowers memory usage and enhances performance. Change-Id: If65fae1665e242667d621f086a55a22a8d5309ed Resolves: #64004 Releases: master, 6.2 Reviewed-on: http://review.typo3.org/35373 Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Jigal van Hemert <jigal.van.hemert@typo3.org> Tested-by:
Jigal van Hemert <jigal.van.hemert@typo3.org>
-
- Dec 17, 2014
-
-
Roland Waldner authored
Most of TYPO3's PHP files have an empty line before a class' closing curly brace. This commit adds this empty line (if it is missing) before a class' closing curly brace. This is not part of the TYPO3 CMS CGL but increases consistency in this area. This regular expression was used to add the empty lines: Search: (}\n)(}) Replace: $1\n$2 Resolves: #63942 Release: master Change-Id: Icd6547322ac8b7310956d347fd73c90bde2bbfa7 Reviewed-on: http://review.typo3.org/35527 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Dec 13, 2014
-
-
Roland Waldner authored
This regular expression was used to replace PHPDoc style comments with ordinary comments: Search: /\*\*(\n \* This file is part of the TYPO3 CMS project.) Replace with: /*$1 Resolves: #63328 Releases: master Change-Id: Ic8f11dbfefee94a19657c8fe8426c81d1cb435d8 Reviewed-on: http://review.typo3.org/35103 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org>
-
- Dec 08, 2014
-
-
Wouter Wolters authored
Resolves: #63587 Releases: master Change-Id: I3a1fa569374f1bc65c82c0c34a73fa339f384e4c Reviewed-on: http://review.typo3.org/35064 Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Markus Klein <klein.t3@reelworx.at> Tested-by:
Markus Klein <klein.t3@reelworx.at>
-
- Nov 13, 2014
-
-
Benjamin Mack authored
Due to a BackendUtility cleanup there were some methods related to help texts that were broken and unstructured. Additionally, some methods are deprecated for removal as they haven't been used since TYPO3 CMS 4.5. Resolves: #62864 Releases: master Change-Id: I3e51e25d74b282aa698df493fa4f87a54d87f823 Reviewed-on: http://review.typo3.org/33987 Reviewed-by:
Christian Buelter <buelter@kennziffer.com> Tested-by:
Christian Buelter <buelter@kennziffer.com> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-