- Mar 20, 2017
-
-
Thomas Hohn authored
Check for EXT:Compatibility7 instead of EXT:Compatibility6 in the Typo3Status Report. Resolves: #80348 Releases: master Change-Id: Iec4b7faa5eacd6007d0871278eeb23aa8e2b8448 Reviewed-on: https://review.typo3.org/52096 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:
Josef Glatz <josef.glatz@typo3.org> Tested-by:
Josef Glatz <josef.glatz@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Georg Ringer authored
The previous change disabled the lookup on the parent UID which resulted in getting all possible relations due to the missing constraint. Now the behavior is mitigated by resetting non-numeric values to zero which will lead to an empty result set - like implicitly for MySQL before. Resolved: #80172 Releases: master Change-Id: If6c8d2e3b2c2b2ddf15727196f7da294fe2ada06 Reviewed-on: https://review.typo3.org/51978 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:
Thomas Hohn <thomas@hohn.dk> Tested-by:
Thomas Hohn <thomas@hohn.dk> Reviewed-by:
Marcus Schwemer <ms@schwemer.de> Tested-by:
Marcus Schwemer <ms@schwemer.de> Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
Oliver Hader <oliver.hader@typo3.org>
-
Oliver Hader authored
This change is focussed on runtime processing of l10n_mode which is not required anymore. Thus accordant internal functionality is deprecated. Change-Id: I19b8eabdfc98bfe83ff80d8205b0c9f029330ed5 Resolves: #80345 Releases: master Reviewed-on: https://review.typo3.org/52013 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:
Susanne Moog <susanne.moog@typo3.org> Tested-by:
Susanne Moog <susanne.moog@typo3.org>
-
Oliver Hader authored
TCA type's inline localizationMode can either be "keep" or "select". At least "keep" is counter-productive if allowLanguageSynchronization is enabled. That's why the whole localizationMode behaviour setting shall be deprecated and ignored in case allowLanguageSynchronization is enabled for the very same TCA field. This change does not migrate non-conflicting localizationMode settings automatically, since this potentially might be breaking and cannot be done without side-effects. Besides that calls to the static function BackendUtility::getInlineLocalizationMode() do not trigger a new entry in the deprectation log since the usage of localizationMode in TCA is logged already. Resolves: #79770 Releases: master Change-Id: Ic2072877d08bb880e9e957d6d31f0527333c2cc5 Reviewed-on: https://review.typo3.org/51650 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
- Mar 19, 2017
-
-
Gianluigi Martino authored
The inline styles were removed from CSS Styled Content but not in Fluid Styled Content. Now this is also removed in EXT:fluid_styled_content. Releases: master Resolves: #80171 Change-Id: I91343b803d6da0b651b6984c8c94c2583730aa40 Reviewed-on: https://review.typo3.org/52059 Reviewed-by:
Josef Glatz <josef.glatz@typo3.org> Tested-by:
Josef Glatz <josef.glatz@typo3.org> Reviewed-by:
Benjamin Kott <benjamin.kott@outlook.com> Tested-by:
Benjamin Kott <benjamin.kott@outlook.com>
-
- Mar 18, 2017
-
-
Anja Leichsenring authored
Upon DuplicationBehaviour::RENAME and ~::REPLACE, the according function is called for the given file. For DuplicationBehaviour::CANCEL, the same exception as before is thrown. For a better UX, the existance of a possible duplicate is checked and a modal window is rendered to the users to let them choose the desired action if a duplicate was found. Resolves: #80282 Releases: master Change-Id: Ie67f04184a232fc23a3cda648692783771ba5171 Reviewed-on: https://review.typo3.org/52048 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Christian Kuhn authored
While the two NodeExpansion API's allow the usual returnArray from single expansion nodes, fieldControl does not, due to its restricted format. The patch improves the single return value result merging and adds support especially for 'requireJsModules' to fieldControl. Change-Id: I7b8e44076aadd27fa5b9780ff97c1bab7141b55f Resolves: #80330 Releases: master Reviewed-on: https://review.typo3.org/52085 Tested-by:
TYPO3com <no-reply@typo3.com> 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>
-
- Mar 17, 2017
-
-
Christian Kuhn authored
Add the 'valuePicker' functionality to the colorpicker. This is useful for editors to have a series of defaults. A similar configuration worked in the past based on 'select' wizard. Example TCA from styleguide master input_37: 'config' => [ 'type' => 'input', 'renderType' => 'colorpicker', 'size' => 10, 'valuePicker' => [ 'items' => [ [ 'blue', '#0000FF', ], [ 'red', '#FF0000', ], [ 'typo3 orange', '#FF8700', ], ], ], ], Change-Id: Idf24ecc1b47e84f6e4aa985191beebeb3631b202 Resolves: #80337 Releases: master Reviewed-on: https://review.typo3.org/52090 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> Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org>
-
Ralf Zimmermann authored
Add method for setting the identifier for renderables. Resolves: #80319 Releases: master Change-Id: I9103068aef1b71eb86e589ddb7d107d7a738621e Reviewed-on: https://review.typo3.org/52076 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Martin Kutschker <martin.kutschker@ymail.com> Tested-by:
Martin Kutschker <martin.kutschker@ymail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Ralf Zimmermann authored
Move this fluid form VH attributes into the EXT:form configuration * f:form -> additionalParams * f:form -> addQueryString * f:form -> argumentsToBeExcludedFromQueryString * f:form -> action * f:form -> enctype * f:form -> method Resolves: #80236 Releases: master Change-Id: Id820e06678ec18ea6013c451ab5f42458863adb3 Reviewed-on: https://review.typo3.org/52005 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Ralf Zimmermann <ralf.zimmermann@tritum.de> Tested-by:
Ralf Zimmermann <ralf.zimmermann@tritum.de> Reviewed-by:
Martin Kutschker <martin.kutschker@ymail.com> Tested-by:
Martin Kutschker <martin.kutschker@ymail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Christian Kuhn authored
Deprecation should be Feature to fix the list on https://docs.typo3.org/typo3cms/extensions/core/8-dev/Changelog/8.6/Index.html Change-Id: Ic514b1adbb6e624ff9f740a0a9f020f848d7b0df Resolves: #80332 Releases: master Reviewed-on: https://review.typo3.org/52087 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Tymoteusz Motylewski <t.motylewski@gmail.com> Tested-by:
Tymoteusz Motylewski <t.motylewski@gmail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Oliver Hader authored
Fix PHPdoc comments of return types. Change-Id: I58686de41b135694305ca146590cba1c66ee6716 Resolves: #80271 Releases: master Reviewed-on: https://review.typo3.org/52081 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Tymoteusz Motylewski <t.motylewski@gmail.com> Tested-by:
Tymoteusz Motylewski <t.motylewski@gmail.com>
-
Christian Kuhn authored
This reverts commit 51b5fad9. The patch introduced some delays and the acceptance tests fail, reverted for now. Change-Id: I2214932f4aadb8cb98c1e44752111dbaeaf04587 Resolves: #80328 Reverts: #80058 Releases: master Reviewed-on: https://review.typo3.org/52083 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Georg Ringer authored
To make inline proper working in JS, the name of the field must be escaped as it can contain dots. Resolves: #78985 Releases: master, 7.6 Change-Id: I18c1d85906b9710c25b326b89e8104f3ea3c8a29 Reviewed-on: https://review.typo3.org/51014 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Tymoteusz Motylewski <t.motylewski@gmail.com> Tested-by:
Tymoteusz Motylewski <t.motylewski@gmail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Josef Glatz authored
Improve the error message for non valid index keywords in changelog RST files. Resolves: #80310 Releases: master Change-Id: Ibca4f135a7f43c7c936fd57c14b1f7b7fc0a9d1f Reviewed-on: https://review.typo3.org/52068 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:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Christian Kuhn authored
Merging columnsOverrides into columns in FormEngine data provider TcaColumnsOverrides is done via ArrayUtility::mergeRecursiveWithOverrule() which supports the '__UNSET' feature to kick array parts from the original array. This is problematic since TCA should be additive only, for instance the 'isloaded' display condition has been removed for that reason, too. Specific issue is here that using __UNSET stops working if there is a second mergeRecursiveWithOverrule() later, for instance in the element expansion classes. This leads to hard to track issues and almost always does not end up with a result a developer expects. Solution is switching to php built-in array_replace_recursive() instead which does not do __UNSET magic. In general, always only add things to the columns array in columnsOverrides, columns should have the common dominator of all overrides. Disabling of specific features can be done only by adding a new key 'disableFoo' = true or similar, the according TCA feature has to explicitely support that. Change-Id: Ieba262c899ae2df2e3aa2c63d7dfa6b86e3fa4f4 Resolves: #80321 Releases: master Reviewed-on: https://review.typo3.org/52074 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Helmut Hummel <typo3@helhum.io> Tested-by:
Helmut Hummel <typo3@helhum.io> Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Oliver Hader authored
l10n_state fields are not created automatically when installing an extension since there is no slot defined for the according signal InstallUtility::tablesDefinitionIsBeingBuilt. Change-Id: Ib4d05d3c3a2dde9b6d0a77f89dee650a3872544d Resolves: #80271 Releases: master Reviewed-on: https://review.typo3.org/52080 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:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Benni Mack authored
* Register "formvh:" as global namespace, simplifying the templates * Remove formvh:be.pageRenderer and add the missing files to EXT:fluid * Migrate callbacks to signal slots and deprecate the callbacks * Fix plain mail viewhelper, and deprecated it as it can be done in Fluid directly * Code cleanup (fix indention, unused variables etc.) * Deprecate custom checkbox VH because the fluid bug is gone * Change tx_form view properties to ".0" instead of ".5" to be in line with FSC * Streamline fluid VH additionalAttributes usage; add compatibility for previous configuration; Add BE form editor auto migration * Fix small JavaScript bugs * Fix small configuration bugs Resolves: #80301 Resolves: #80287 Releases: master Change-Id: Icf68b8a9a6876805af7bf273735d3d30984136ed Reviewed-on: https://review.typo3.org/51972 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Ralf Zimmermann <ralf.zimmermann@tritum.de> Tested-by:
Ralf Zimmermann <ralf.zimmermann@tritum.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Mathias Brodala authored
We're only deprecating these two methods, not the whole file. Resolves: #80316 Releases: master Change-Id: Ia1727c0996f53caa35d4755d2d5caa04bc48de46 Reviewed-on: https://review.typo3.org/52071 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Tymoteusz Motylewski <t.motylewski@gmail.com> Tested-by:
Tymoteusz Motylewski <t.motylewski@gmail.com>
-
- Mar 16, 2017
-
-
Thorben Nissen authored
Opening a record with a FormEngine field type='select' and renderType='selectTree' just renders boilerplate HTML that triggers an ajax request to fetch actual tree node data for each field. The server side ajax controller reduces the TCA to contain only the field the items should be calculated for to reduce parse times. In flex form context, if now that tree field has a FIELD display condition, the standard data group 'tcaDatabaseRecord' which calls 'all' providers fails, since it can't find a database value of the condition target. Solution is to create an own data provider group for this 'fetch tree data' ajax context: This group contains only providers needed by the 'TcaSelectTreeItems' provider and ignores everything else, most importantly the EvaluateDisplayConditions provider. Leaving out a series of other not needed data providers gives an additional performance improvement in this context. Resolves: #79657 Releases: master Change-Id: I29bdd659d5f5ee28f8ae017c47df0233abefd6f5 Reviewed-on: https://review.typo3.org/51574 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:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Claus Due authored
This patch moves frontend-editing intialisation from the EditDocumentController (EXT:backend) to a signal listener in EXT:feedit. Step towards extracting EXT:feedit to TER. Change-Id: I09a7e5a2205e7020e7145023d7d63c61d9be508c Resolves: #80244 Releases: master Reviewed-on: https://review.typo3.org/52011 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Tymoteusz Motylewski <t.motylewski@gmail.com> 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>
-
- Mar 15, 2017
-
-
Josef Glatz authored
Add the current content element as section to the un-/hide link. Releases: master, 7.6 Resolves: #80274 Change-Id: I0d6ec4ea8274f82f6d4c66a4e9e77860819d4d15 Reviewed-on: https://review.typo3.org/52045 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Riccardo De Contardi <erredeco@gmail.com> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
Stefan Fruhen authored
Subfolder requires identifier when parent folder is expanded. Resolves: #80166 Releases: master, 7.6 Change-Id: I5226f425951f9124dcaa3e9780b52354e266382d Reviewed-on: https://review.typo3.org/51974 Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Tymoteusz Motylewski <t.motylewski@gmail.com> Tested-by:
Tymoteusz Motylewski <t.motylewski@gmail.com>
-
Eric Chavaillaz authored
Resolves: #79551 Releases: master, 7.6 Change-Id: I76bf3996b3f76b18f9ff9cc95b70b2e41bbc4143 Reviewed-on: https://review.typo3.org/51469 Reviewed-by:
Daniel Goerz <ervaude@gmail.com> Tested-by:
Riccardo De Contardi <erredeco@gmail.com> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Joerg Boesche <typo3@joergboesche.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Helmut Hummel authored
Instead of merging different inlineData results, the FormResultCompiler has one seemingly leftover line of code which overwrites the inlineData, leading to the situation that only the last inlineData is kept. In the list module when editing multiple fields with IRRE relations, this leads to the fact that children can only be added to the last element. For some reason the same code does not expose the bug to the end user, most likely due to different handling of the context data. Nevertheless this obviously wrong line should also be removed in 7.6. Releases: master, 7.6 Resolves: #80181 Change-Id: I56cef1c56a36d1760a99c239130c6791869a1978 Reviewed-on: https://review.typo3.org/51984 Tested-by:
TYPO3com <no-reply@typo3.com> Tested-by:
Volker Kemeter <volker@kemeter.de> Tested-by:
Josef Glatz <josef.glatz@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Cedric Ziel authored
Releases: master Fixes: #80278 Change-Id: Idcb7efa0fb7a5ad819ce0f65a837916cdeb13c56 Reviewed-on: https://review.typo3.org/52043 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org>
-
Torben Hansen authored
Add a max value of 255 chars for the field "title" and increase size of field "alternative" in sys_file_reference to the same size of "parent" field sys_file_metadata in db definition. Resolves: #80122 Releases: master, 7.6 Change-Id: I9f1e4ef57fbd56e5d6a253409186e16a58c60e2b Reviewed-on: https://review.typo3.org/51941 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Torben Hansen <derhansen@gmail.com> Tested-by:
Torben Hansen <derhansen@gmail.com> Reviewed-by:
Thomas Hohn <thomas@hohn.dk> Tested-by:
Thomas Hohn <thomas@hohn.dk> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Benni Mack authored
Since the ExtJS viewport refactoring in 8.5, it is not possible anymore to load any other registered navigation component, which makes EXT:commerce to not work anymore. The patch changes the hard-coded pagetree app component to fetch it from the pool of available navigation components. Resolves: #80058 Releases: master Change-Id: I1ce4cfa068f72f39cd5d993df6f9ebbdb7d07b2e Reviewed-on: https://review.typo3.org/51888 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Thomas Maroschik <tmaroschik@dfau.de> Tested-by:
Thomas Maroschik <tmaroschik@dfau.de> Reviewed-by:
Sebastian Fischer <typo3@evoweb.de> Tested-by:
Sebastian Fischer <typo3@evoweb.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Benni Mack authored
The TypoScript option `config.sys_language_softExclude` allows to set certain fields on tables to l10n_mode=exclude during Frontend runtime. This TCA option has been migrated to "allowLanguageSynchronization", but with the clean way that the database values are consistent across all translations already. Any special runtime logic and changes can still be done via hooks for specific use-cases. Resolves: #80266 Releases: master Change-Id: I15c55a556b6f1c100e300299410e26d45409e09c Reviewed-on: https://review.typo3.org/52036 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
- Mar 14, 2017
-
-
Oliver Hader authored
The configuration $GLOBALS['TYPO3_CONF_VARS']['FE']['pageOverlayFields'] is removed from the default configuration as well as from the overlay handling in PageRepository and RootlineUtility. This setting has been used to determine overlay fields in the table pages_language_overlay at a time in the runtime processing when the complete TCA was not fully available. Since the allowLanguageSynchronization possibility has been integrated into TYPO3 CMS 8, l10n_mode was available already and the TCA is loaded as well, the pageOverlayFields settings are superfluous. Change-Id: I36198d7dec94204fc761048de705aa03a5e931c3 Resolves: #80149 Releases: master Reviewed-on: https://review.typo3.org/51954 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:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Francois Suter authored
Prevent a PHP error in the HTML parser when saving a content element containing an <a> tag without "href" attribute by using an empty string instead of null in the link resolver. Resolves: #80268 Releases: master Change-Id: I249f8ad13ebd0b2e9430868fdce287b2745ae9bc Reviewed-on: https://review.typo3.org/52038 Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Tested-by:
Stephan Großberndt <stephan@grossberndt.de> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Gianluigi Martino <gmartino27@gmail.com> Tested-by:
Gianluigi Martino <gmartino27@gmail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Cedric Ziel authored
Resolves: #80277 Releases: master Change-Id: I4aeab3c0c45d88d8e8934407dfaa3e845d6dd376 Reviewed-on: https://review.typo3.org/52042 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Christian Kuhn authored
Styleguide moved from 7elix/styleguide to typo3/cms-styleguide Change-Id: Ib11cd3d21121214ed5828aa26166d4a7b1419a3c Resolves: #80118 Releases: master Reviewed-on: https://review.typo3.org/51940 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de> Reviewed-by:
Susanne Moog <susanne.moog@typo3.org> Tested-by:
Susanne Moog <susanne.moog@typo3.org> Reviewed-by:
Mathias Schreiber <mathias.schreiber@typo3.com> Tested-by:
Mathias Schreiber <mathias.schreiber@typo3.com>
-
Tobias Kretschmann authored
mod.SHARED.colPos_list is now also respected in Web > Page > Language View. Since TYPO3 6.2 the setting was only respected in Page > Columns View, but should also be taken into account by the Language View as it is a SHARED setting. Releases: master, 7.6 Resolves: #80275 Change-Id: Ibdc90103208d5abbcfba1dbbfee3b87d045885f9 Reviewed-on: https://review.typo3.org/52041 Reviewed-by: Steffen Frese Tested-by: Steffen Frese Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Joerg Boesche <typo3@joergboesche.de> Tested-by:
Joerg Boesche <typo3@joergboesche.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Georg Ringer authored
Add the current content element as section to the edit link. Since #70074, the edit link in the header has been already improved but other links have been missing. Resolves: #80273 Releases: master Change-Id: Id7cc236819ccd3306d4638cb65e87aee011a35b3 Reviewed-on: https://review.typo3.org/52040 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:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
- Mar 13, 2017
-
-
Josef Glatz authored
The suggest result (which is used for autocomplete) within the TYPO3 backend is now left aligned which is especially useful, if the form element fills the entire width of the form. Releases: master Resolves: #80254 Change-Id: Id6e166272e2e9b2eb3562edb815bb6d053b7fbe8 Reviewed-on: https://review.typo3.org/52034 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Thomas Hohn <thomas@hohn.dk> 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>
-
Georg Ringer authored
The configuration "max" of TCA type "text" should be overridable via TsConfig. This makes it possible limit textarea input by using TsConfig like TCEFORM.tx_table.teaser.config.max = 20 Resolves: #80265 Releases: master Change-Id: I84b0dc5ce240b0da1f5619353e8e525fba685e2d Reviewed-on: https://review.typo3.org/52035 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Thomas Hohn <thomas@hohn.dk> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Michael Oehlhof authored
Update and proofread 8.6 docs Add changes from https://review.typo3.org/#/c/51599/ which is now abandoned. Resolves: #80260 Releases: master Change-Id: If4398ee1a4c9223b4b4072e82a9171b590e9b29b Reviewed-on: https://review.typo3.org/52010 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de>
-
Christian Kuhn authored
When the localizationStateSelector has been added, it has been forgotten for some elements. Add the wizard to both RTE's and t3editor. Change-Id: If1ad3503f4ffde7d1dd8153708bb7da21c87e308 Resolves: #80234 Releases: master Reviewed-on: https://review.typo3.org/52001 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> 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>
-
Susanne Moog authored
Currently pages can be hidden for different reasons: - page is disabled - page has a start time in the future - page has an end time in the past - page has an access restriction When previewing a page the fe_groups and disabled restriction are already ignored when TYPO3 is configured to preview hidden pages. Start and endtime should be ignored, too, so an editor is able to preview pages with start or end times set. Change-Id: I634076af7219b70ccfc46f470ba046417177d29a Resolves: #66451 Releases: master Reviewed-on: https://review.typo3.org/52023 Reviewed-by:
Tobi Kretschmann <tobi@tobishome.de> Tested-by:
Tobi Kretschmann <tobi@tobishome.de> Reviewed-by: Steffen Frese Tested-by: Steffen Frese Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de>
-