- Oct 03, 2015
-
-
Benjamin Kott authored
You can now show or hide the top menu in any module, depending on the scroll speed used. Resolves: #70328 Releases: master Change-Id: I744058151ccd0b64c4e818544ae2c5272ffc1b2e Reviewed-on: http://review.typo3.org/43763 Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
Oliver Hader <oliver.hader@typo3.org>
-
Mathias Schreiber authored
A new class structure around "ModuleTemplate" is introduced to substitute the rusty "DocumentTemplate". The architecture can be seen as wrapper around the main html content a backend controller action creates. ModuleTemplate provides an API especially for the "doc header" and unifies its display and creation. The patch releases single controller actions from fiddling with doc header details like actual button HTML and hands over this concern to the framework, so it can steer these parts at a central place. Since this API and its embedding in the framework is a rather complex task that will require further tweaks, this main API is mostly marked as "experimental" for now: It will further settle with 8. For extension authors it means that *if* this API is used, there may be code adaptions required in version 8 since parts of the API will be adapted to further needs. Resolves: #69814 Releases: master Change-Id: I81cb9f01ebc4b13d8d88a928811e563d83ec97cd Reviewed-on: http://review.typo3.org/43465 Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de>
-
- Sep 23, 2015
-
-
Josef Glatz authored
Since http://typo3.org has been changed to https, adopt all links in the core as well. Replace some outdated links to newer once (if it could be replaced). Resolves: #69989 Releases: master Change-Id: I5d612b3b01cb75b613483649e8c754336c0fe516 Reviewed-on: http://review.typo3.org/43459 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Josef Glatz <jousch@gmail.com> Tested-by:
Josef Glatz <jousch@gmail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Sep 17, 2015
-
-
Patrick Broens authored
This patch adds the new reworked content elements based on Fluid templating instead of css_styled_content. It also introduces a new CType "textmedia" which allows images, but also media elements (videos etc) directly. The content elements are added to the extension "fluid_styled_content". Do not forget to include the static templates. Change-Id: Ia0d0a9f9f2699d6bbff761c4896f9daa876f3b86 Resolves: #38732 Related: #65922 Releases: master Reviewed-on: http://review.typo3.org/38258 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Sascha Egerer <sascha@sascha-egerer.de> Tested-by:
Sascha Egerer <sascha@sascha-egerer.de> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Frans Saris <franssaris@gmail.com> Tested-by:
Frans Saris <franssaris@gmail.com>
-
- Sep 08, 2015
-
-
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>
-
- Sep 07, 2015
-
-
Frank Nägler authored
This patch removes the SpriteManagerIconViewHelper and all usages within the core. Resolves: #69531 Releases: master Change-Id: I75e3c345973a9b51fb26cc1aeb305536e8c77d14 Reviewed-on: http://review.typo3.org/43019 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>
-
- Sep 03, 2015
-
-
Florian Peters authored
Remove the toggle functionality from the HTML template and use jQuery + require.js for page and list. Resolves: #69500 Releases: master Change-Id: I815239acdf74e94c4f0af3a74aacab565c8f5d03 Reviewed-on: http://review.typo3.org/42997 Reviewed-by:
Alexander Opitz <opitz.alexander@googlemail.com> Tested-by:
Alexander Opitz <opitz.alexander@googlemail.com> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
- Aug 09, 2015
-
-
Daniel Goerz authored
Change-Id: Ia01c9083cc0eda52725efdec93106e911884f097 Resolves: #68873 Releases: master, 6.2 Reviewed-on: http://review.typo3.org/42426 Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by:
Jan Runte <jan.runte@hmmh.de> Tested-by:
Jan Runte <jan.runte@hmmh.de> Reviewed-by:
Daniel Maier <dani-maier@gmx.de> Tested-by:
Daniel Maier <dani-maier@gmx.de> 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>
-
- Jul 22, 2015
-
-
Andreas Fernandez authored
This patch extends the "Copy from default elements" buttons by a dropdown list of available languages. Clicking one of those languages creates independent copies (not references!) of the selected language. Resolves: #68395 Releases: master Change-Id: I2ce443644ca1fbc6f0c41bc5917515b2784bc155 Reviewed-on: http://review.typo3.org/41768 Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de>
-
- Jul 16, 2015
-
-
Benjamin Mack authored
Remove leftover styles. Resolves: #67354 Releases: master Change-Id: Iac6607b0efbb3b59f120d163418e78b84eff9123 Reviewed-on: http://review.typo3.org/41488 Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org>
-
- Jul 15, 2015
-
-
Sven Hartmann authored
Provides a new button "replace" at the extended view in FAL equal to DAM. Its possible to replace a file * with a new one -> old file will be overwritten; identifier of the file object will be kept * with a new one -> old file will be deleted; identifier of the file object will be changed to the new filename The file replacing also respects unique filenames. To allow editors to replace files the need the "Files: Replace" permissing needs to be set. Change-Id: If5882ef620135d4e7238eb8bb56f020304cd1c0c Resolves: #56133 Releases: master Reviewed-on: http://review.typo3.org/40797 Reviewed-by:
Frans Saris <franssaris@gmail.com> Tested-by:
Frans Saris <franssaris@gmail.com> Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org>
-
- Jul 14, 2015
-
-
Nicole Cordes authored
This patch introduces new API which eases the use of RSA encryption across the core and for third party extensions. For backend encryption a new RequireJS module is included which finds fields to encrypt automatically by their data attribute. For frontend encryption the JavaScript was rewritten to work the same way the RequireJS module works but with plain (vanilla) JavaScript. Releases: master Resolves: #67932 Resolves: #34568 Change-Id: Id35dd65d1019a8c16858f03989ff48e3434698e4 Reviewed-on: http://review.typo3.org/40938 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
Wouter Wolters authored
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>
-
- Jul 09, 2015
-
-
Wouter Wolters authored
Move language files to correct locations. Resolves: #67991 Releases: master Change-Id: Ic16d218c608ba2a7b3311cdde603472e01088073 Reviewed-on: http://review.typo3.org/41006 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>
-
- Jul 07, 2015
-
-
Christian Kuhn authored
Main refactoring of RTE on PHP side. Classes AbstractRte, RteHtmlAreaBase and the instantiator API RTEgetObj() are dropped and inlined to the FormEngine class construct. Lots of code is simplified or moved around. Change-Id: Ibd4ff3e7fa8fe695a96b03355c905640d2efa351 Resolves: #67917 Releases: master Reviewed-on: http://review.typo3.org/40842 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> Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org>
-
- Jun 26, 2015
-
-
Frank Nägler authored
This patch removes the required images and adds CSS based styling for required fields and minitems/maxitems validation. Resolves: #67354 Releases: master Change-Id: I5dbccb1c84035fa21079b09748c767bc4f3d06d0 Reviewed-on: http://review.typo3.org/39302 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> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org>
-
- Jun 23, 2015
-
-
Christian Kuhn authored
This reverts commit 13d0fcc0. Moving these tiny html snippets to fluid gives no real benefit. Change-Id: I0f186028bd9bdb5b22ac5a3a325ca844a9d40beb Reverts: #67537 Reviewed-on: http://review.typo3.org/40521 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> Reviewed-by:
Markus Klein <markus.klein@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>
-
- Jun 20, 2015
-
-
Andreas Fernandez authored
The toolbar dropdown menus are ported to Fluid. Also, some small improvements are made in this patch. Resolves: #67537 Related: #67568 Releases: master Change-Id: I41b502e97108494bf6d4acfa0dedb32bb18a5e18 Reviewed-on: http://review.typo3.org/40329 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
- Jun 05, 2015
-
-
Frank Nägler authored
With the new login screen (introduced in 7.2) the possibility to override or extend the login template was removed. The old globals ``$GLOBALS['TBE_STYLES']['htmlTemplates']`` was removed without replacement. With this patch we introduce a new way to extend the login form and add a BE login form API. Resolves: #66669 Releases: master Change-Id: I36ab4cdabbab55f370d1fd19b7212cf2f858db57 Reviewed-on: http://review.typo3.org/39234 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net> 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>
-
- May 18, 2015
-
-
Benjamin Kott authored
A problem with the autofocus chain and the autofocus attribute, prevented users on IE10+ to enter their login credentials for backend access directly after initial load. Releases: master Resolves: #67024 Change-Id: I21af4156345f610433d3f4f8d02aa1804dae2f2b Reviewed-on: http://review.typo3.org/39604 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
- May 12, 2015
-
-
Benjamin Mack authored
There is one span too many in the module menu after the switch to sprite icons. The change removes one span tag, but leaves it for the default span tag. Resolves: #66908 Releases: master Change-Id: I84f621c5fae4c6739acd1e0254da2702e58ee8b7 Reviewed-on: http://review.typo3.org/39477 Reviewed-by:
Daniel Sattler <sattler@b13.de> Tested-by:
Daniel Sattler <sattler@b13.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org>
-
Wouter Wolters authored
When the startModule setting is empty a strange behaviour takes place. This happens because the module menu classes are in use in the topbar too. Fix this by adding a specific t3js-mainmodule class. Resolves: #66893 Releases: master Change-Id: I46768c1f81a2616bd279eacfa5b2e38c863b582e Reviewed-on: http://review.typo3.org/39461 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org>
-
- May 09, 2015
-
-
Benjamin Mack authored
In the course of the 7.x development, the main modules (web / file etc.) have received a hard-coded list of fontawesome sprite icons. This way it is not (easily) possible to override the icons and to give a custom main module its own custom sprite icon. A new property in the module configuration "icon" allows now to hand in a sprite icon instead of a path to png/gif file. At the same time the property handling for the "icon" property inside the module menu is now simplified as a string instead of an array with all additional information as everything is already compiled together in the BackendModuleRepository. All main modules shipped with the core now have proper icons mapped inside ext_tables.php in the core. Resolves: #66822 Releases: master Change-Id: If1a62528d9de56034a0330c0051dfcb66e59469c Reviewed-on: http://review.typo3.org/39316 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- May 02, 2015
-
-
Nicole Cordes authored
If a user hasn't any file mount defined or the defined file mounts don't exist the root folder of the storage is shown. To prevent disallowed listing of folders only admin users are allowed see and browse root folder and editors get an information that no file mounts are configured. Releases: master, 6.2 Resolves: #66687 Change-Id: I301d05773f10885351034dae2b0bbd16ac20ac55 Reviewed-on: http://review.typo3.org/39089 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>
-
Frank Nägler authored
In several places in the core, the InfoboxViewHelper was used in controller context. This patch changes this and makes use of a StandaloneView. Resolves: #66753 Related: #66723 Releases: master Change-Id: I16044a4c663aad4eb0cffce0b11bbf63047118f5 Reviewed-on: http://review.typo3.org/39205 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>
-
- Apr 27, 2015
-
-
Felix Kopp authored
Explains the accepted login logo and background image paths "EXT:…" or "fileadmin/…" or "/fileadmin/…". Resolves: #66476 Releases: master Change-Id: I68824eca21601ed69e96fe5ee9fc5472b889f314 Reviewed-on: http://review.typo3.org/38923 Reviewed-by:
Markus Klein <klein.t3@reelworx.at> Tested-by:
Markus Klein <klein.t3@reelworx.at> Reviewed-by:
Andreas Fernandez <andreas.fernandez@aspedia.de> Tested-by:
Andreas Fernandez <andreas.fernandez@aspedia.de>
-
Benjamin Kott authored
- Resolve image paths equally without fal compat layer - Remove border if background image is set - Increase border radius Releases: master Resolves: #66431 Change-Id: Icf5217c46467268f67d4e7fd91903e916535ebfa Reviewed-on: http://review.typo3.org/38926 Reviewed-by:
Andreas Fernandez <andreas.fernandez@aspedia.de> Tested-by:
Andreas Fernandez <andreas.fernandez@aspedia.de> Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co>
-
- Apr 21, 2015
-
-
Andreas Fernandez authored
Store the access time of modules linked in the System Information menu in the UC of the current backend user to make it possible to reset the counter. Resolves: #66234 Releases: master Change-Id: I605680e50a04974455a30837463f51fe77fec56b Reviewed-on: http://review.typo3.org/38781 Reviewed-by:
Markus Klein <klein.t3@reelworx.at> Tested-by:
Markus Klein <klein.t3@reelworx.at> Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co>
-
- Apr 16, 2015
-
-
Frans Saris authored
When the visible image in the cropping wizard is a scaled version of the original image we need to take the scaled ratio into account when setting the crop info. Scaling of the original images occurs when it is bigger then 1000px x 700px. This patch makes sure the crop info is correctly calculated. Resolves: #66440 Releases: master Change-Id: I7852b19a47f462120c6ea4b72ec388254a210d3e Reviewed-on: http://review.typo3.org/38717 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Markus Klein <klein.t3@reelworx.at> Tested-by:
Markus Klein <klein.t3@reelworx.at> Reviewed-by:
Andreas Fernandez <andreas.fernandez@aspedia.de> Tested-by:
Andreas Fernandez <andreas.fernandez@aspedia.de>
-
Benjamin Kott authored
The login screen is now supporting background images and adjustable highlight colors out of the box. Settings for the login screen can now be accessed in the backend extension setting. To keep the focus on the most important stuff, the news that can be displayed are reduced to a single view carousel where you can slide through the latest news. Releases: master Resolves: #66431 Change-Id: I12aa4e078cd9782ba4f73921164731a055226004 Reviewed-on: http://review.typo3.org/38366 Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Tested-by:
Xavier Perseguers <xavier@typo3.org> Reviewed-by:
Felix Kopp <felix-source@phorax.com> Tested-by:
Felix Kopp <felix-source@phorax.com> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
- Apr 15, 2015
-
-
Frans Saris authored
TCA type image_manipulation brings a image manipulation wizard to the core. This first version brings image cropping with the possibility to set a certain aspect ratio for the cropped area. The sys_file_reference.crop property is extended and can now also hold a json string to describe the image manipulation. The LocalCropScaleMaskHelper that is used by the core to create adjusted images is also adjusted to handle the new format. Overriding TCA by TSConfig will be done in a followup. Resolves: #65585 Releases: master Change-Id: I58dee33e0f884ba2907259e8b03254c43f4c9186 Reviewed-on: http://review.typo3.org/37622 Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Andreas Fernandez <andreas.fernandez@aspedia.de> Tested-by:
Andreas Fernandez <andreas.fernandez@aspedia.de> 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>
-
- Apr 07, 2015
-
-
Andreas Fernandez authored
* Do not render failed logins * Render menu by AJAX call * Add JavaScript method to invoke a reload of the menu Related: #66234 Resolves: #65767 Releases: master Change-Id: Ic3d3fcacbf86ad728c200cc3f2e103d138f33680 Reviewed-on: http://review.typo3.org/38434 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Markus Klein <klein.t3@reelworx.at> Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Tested-by:
Xavier Perseguers <xavier@typo3.org>
-
- Apr 01, 2015
-
-
Andreas Fernandez authored
This patch introduces a new System Information dropdown item that contains several system information. By default it displays: * PHP version * Database version * Application context * git revision (if TYPO3 version has "-dev" suffix) * Operating system The item list is extendable by the SystemInformationHookInterface. Resolves: #65767 Releases: master Change-Id: I2e7489f53198d44edea9995fe4cce49696a2f888 Reviewed-on: http://review.typo3.org/37881 Reviewed-by:
Markus Klein <klein.t3@reelworx.at> Tested-by:
Markus Klein <klein.t3@reelworx.at> Tested-by:
Frank Nägler <typo3@naegler.net> Reviewed-by:
Jigal van Hemert <jigal.van.hemert@typo3.org> Tested-by:
Jigal van Hemert <jigal.van.hemert@typo3.org>
-
- Mar 30, 2015
-
-
Markus Klein authored
Releases: master Resolves: #66163 Change-Id: Ia16247cb5dd34abfa97701012b7f652677739acb Reviewed-on: http://review.typo3.org/38361 Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Tested-by:
Xavier Perseguers <xavier@typo3.org> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- Mar 29, 2015
-
-
Frank Nägler authored
Refactoring of LoginController and introducing a complete new login screen. Resolves: #65939 Releases: master Change-Id: I89d98754377b6529828dcbf2a56051a8052ccda2 Reviewed-on: http://review.typo3.org/38043 Reviewed-by:
Markus Klein <klein.t3@reelworx.at> Tested-by:
Markus Klein <klein.t3@reelworx.at> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- Mar 26, 2015
-
-
Benjamin Mack authored
The backend logo in the left corner was rendered via it's own simple class which can easily be replaced by Fluid and the logic for that. The old LogoView class is now marked for deprecation. Resolves: #66065 Releases: master Change-Id: Ief36fece1fcde3633cf67367153db4f75985e166 Reviewed-on: http://review.typo3.org/38263 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Andreas Fernandez <andreas.fernandez@aspedia.de> Tested-by:
Andreas Fernandez <andreas.fernandez@aspedia.de>
-
- Mar 11, 2015
-
-
Frank Nägler authored
This patch deprecate the getDynTabMenu() function and introduce a new function called getDynamicTabMenu() The new function creates bootstrap HTML markup. All places in the core was updated to use the new method. Resolves: #65111 Releases: master Change-Id: I0965c3cfc0b40da3ef76ef566df28c7c6ad38a71 Reviewed-on: http://review.typo3.org/37078 Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- Feb 02, 2015
-
-
Benjamin Kott authored
The patch brings responsive layout for FormEngine and its elements. It fixes a couple of issues along the way, escpecially DatePicker and palettes field are aligned in a better way and wizard icons look much better. Adjustments: - Change datepicker to work directly on input without wrapper - Change clearableJs to bootstrap - Change dyntabs to bootstrap classes - Change fixed-font to text-monospace - Port CheckboxElement to boostrap - Port GroupElement to bootstrap - Port InputElement to bootstrap - Port Irre/Inline to bootstrap - Port Flexform to bootstrap - Port Palettes to bootstrap - Port RadioElements to bootstrap - Port TextElement to bootstrap - Port NoneElement to bootstrap Removes: - Unused change image javascript removed Deprecations: - cssClassTypeElementPrefix not used anymore - maxTextareaWidth not used anymore - paletteFieldTemplate not used anymore - palFieldTemplateHeader not used anymore - wizard config _PADDING - wizard config _DISTANCE - wrapOpenPalette not used anymore - wrapPaletteField not used anymore - formWidth not used anymore - formWidthAsArray not used anymore - addUserTemplateMarkers not used anymore Releases: master Resolves: #64762 Change-Id: I04ce24e63d2395fe25f7d5a314f5868882b2cd74 Reviewed-on: http://review.typo3.org/35951 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Michael Oehlhof <typo3@oehlhof.de> Tested-by:
Michael Oehlhof <typo3@oehlhof.de> Reviewed-by:
Frederic Gaus <gaus@flagbit.de> Tested-by:
Frederic Gaus <gaus@flagbit.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- Jan 31, 2015
-
-
Benjamin Mack authored
Due to the replacement of the better EXT:form logic, the fallback and default mailform when EXT:form is not installed, is moved to compatibility6. There are certain parts that are migrated as well and therefore removed from the main core installation. * Various methods in ContentObjectRenderer, and especially TypoScriptFrontendRenderer which specifically served the purpose. * The FORM Content Object * The TCA tt_content mailform configuration * The TypoScript from css styled content * The newContentElement wizard configuration * Related tests to the form-related methods * The preview functionality for a mailform in "Web"=>"Page" The submission class (DataSubmissionController) has been moved and renamed as well, and now hooks into the checkDataSubmission of TSFE. Additionally, the related tests to the methods have been removed. Resolves: #64668 Releases: master Change-Id: Iefbaf11322678f811d5c38d82f7d81be56b1d378 Reviewed-on: http://review.typo3.org/36479 Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Jan 29, 2015
-
-
Georg Ringer authored
Remove a wrong second form tag in the backend login Change-Id: I50ad624adcfbf6987f555dfe4951c90d661727ff Resolves: #64592 Releases: master Reviewed-on: http://review.typo3.org/36356 Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-