- Oct 24, 2016
-
-
Frank Naegler authored
This patch removes *.js.map files from the repository and adds a new rule to the .gitignore file. Resolves: #78407 Releases: master Change-Id: I227dc1748a0b53910d7fc2050ccf92bfd555d4ec Reviewed-on: https://review.typo3.org/50348 Reviewed-by:
Patricia Tiedemann <pixelaeffchen@googlemail.com> Tested-by:
Patricia Tiedemann <pixelaeffchen@googlemail.com> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Frank Naegler authored
This patch adds a new option to the admin panel to show debug information about partials and sections in frontend. Resolves: #76085 Releases: master Change-Id: I3d37118280ef713db6d92a734f30c0f8bd4ae8eb Reviewed-on: https://review.typo3.org/50095 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de>
-
Christian Kuhn authored
There are two FormEngine data provider for type=select: TcaSelectItems for "normal" renderTypes and TcaSelectTreeItems for renderType="selectTree". While this is hacky in the first place - the data provider should not depend on renderType at all but only on type, this can not be changed easily and a real solution is to make "trees" an own type instead, later. However, if extensions add a new renderType for select at the moment, the normal TcaSelectItems data provider does not kick in since it is restricted to the known renderTypes. This is usually not what an extension wants, typically just the rendering is different while the data providing from TcaSelectItems is used. The patch allows this by now blacklisting "selectTree" in TcaSelectItems instead of whitelisting the known types. Change-Id: Ic71177e22b191a5abee90a7cfb9871167fe4611e Resolves: #78381 Releases: master, 7.6 Reviewed-on: https://review.typo3.org/50325 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Mathias Brodala <mbrodala@pagemachine.de> Reviewed-by:
Mamadou Mbow <mmbow@dfau.de> Tested-by:
Mamadou Mbow <mmbow@dfau.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Marc Willmann authored
Resolves: #77852 Change-Id: I60aae1b35219ac91e74d62cc57e1a48ec630a831 Reviewed-on: https://review.typo3.org/49865 Reviewed-by:
Marco Bresch <marco.bresch@starfinanz.de> Tested-by:
Marco Bresch <marco.bresch@starfinanz.de> Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de>
-
Frank Naegler authored
This patch add the role „typescript“ to the Includes.txt. With this patch code in a rst file can be declared as TypeScript. Resolves: #78406 Releases: master Change-Id: I0351089bda104562ea191a05d0c188b732ba7f08 Reviewed-on: https://review.typo3.org/50346 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de>
-
Frank Naegler authored
Resolves: #78403 Releases: master Change-Id: I55ec9f662cd7ddd827f1f46ab9c1664aac22a5b6 Reviewed-on: https://review.typo3.org/50342 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Stefan Bürk <stefan.buerk@impactmedia.de> Tested-by:
Stefan Bürk <stefan.buerk@impactmedia.de> Reviewed-by:
Patricia Tiedemann <pixelaeffchen@googlemail.com> Tested-by:
Patricia Tiedemann <pixelaeffchen@googlemail.com> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Frank Naegler authored
This patch add jasmine typings as dev dependency which brings IDE support / code completion for the testing framework. Resolves: #78397 Releases: master Change-Id: I174cc178ded87670dcd8baba6d08a42e633cec34 Reviewed-on: https://review.typo3.org/50340 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Stefan Bürk <stefan.buerk@impactmedia.de> Tested-by:
Stefan Bürk <stefan.buerk@impactmedia.de> Reviewed-by:
Patricia Tiedemann <pixelaeffchen@googlemail.com> Tested-by:
Patricia Tiedemann <pixelaeffchen@googlemail.com> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Frank Naegler authored
Resolves: #78396 Releases: master Change-Id: I9a132a547b3be04417094b3ce5a2e1eed6dd843c Reviewed-on: https://review.typo3.org/50339 Reviewed-by:
Stefan Bürk <stefan.buerk@impactmedia.de> Tested-by:
Stefan Bürk <stefan.buerk@impactmedia.de> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Stefan Froemken authored
if pasteFormat or pasteStructur is activated in user settings, pastings in rtehtmlarea will be inserted twice. Once as plaintext and a second time as html. Instead of appending all different text types of ClipBoard we now override the complete clipboardText, if it is not of the expected type. To prevent pasting header data from OpenOffice/LibreOffice/Word we have added a default value for removeTagsAndContents which is configurable now. Resolves: #67661 Releases: master,7.6 Change-Id: I62418ed2d1ce72bb1fb2839e23eaeaa76f42a4c8 Reviewed-on: https://review.typo3.org/49871 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:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de>
-
Frank Naegler authored
Resolves: #78389 Releases: master Change-Id: Ic022f1a19859cf48d92a1e50d45327c42ea7be21 Reviewed-on: https://review.typo3.org/50335 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Michael Oehlhof <typo3@oehlhof.de> Tested-by:
Michael Oehlhof <typo3@oehlhof.de> Reviewed-by:
Patricia Tiedemann <pixelaeffchen@googlemail.com> Tested-by:
Patricia Tiedemann <pixelaeffchen@googlemail.com> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Stefan Neufeind authored
So far a comma was required before the comment. But CGL says that the last element in an array should have no trailing comma. Change-Id: Ia8149624e1b5bb1d4a685b70f3c197344733e22f Resolves: #78333 Releases: master, 7.6 Reviewed-on: https://review.typo3.org/50265 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:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Frank Naegler authored
Resolves: #78388 Releases: master Change-Id: Id73c21676ebb0225429bb81334be23fd5f01ed66 Reviewed-on: https://review.typo3.org/50332 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Stefan Bürk <stefan.buerk@impactmedia.de> Tested-by:
Stefan Bürk <stefan.buerk@impactmedia.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Claus Due authored
This patch changes the SQL field type of two fields on sys_file_metadata, caption and copyright, to increase the allowed size of content in the field. The change is marked as a bug fix since currently, attempting to save more than the allowed 255 chars truncates every byte beyond the barrier. See forge issue for further details about performance concerns and reasoning behind increasing the size. Change-Id: I7a407d3ed6eb4bd157330bd57b0093f3f3deb5ca Resolves: #78149 Releases: master, 7.6 Reviewed-on: https://review.typo3.org/50248 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Philipp Gampe <philipp.gampe@typo3.org> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- Oct 23, 2016
-
-
Tymoteusz Motylewski authored
t3_origuid field is covered in Workspaces Regular/Modify functional tests. Releases: 7.6, master Resolves: #78382 Change-Id: If4408534038fc695e28e507fd34cd41735d730dc Reviewed-on: https://review.typo3.org/50326 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Daniel Maier <dani-maier@gmx.de> Tested-by:
Daniel Maier <dani-maier@gmx.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Oct 22, 2016
-
-
Christian Kuhn authored
Change-Id: Ifc6a7b251d216d3a3ab9b68752eb14444bc53474 Resolves: #78380 Releases: master Reviewed-on: https://review.typo3.org/50324 Tested-by:
TYPO3com <no-reply@typo3.com> 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>
-
- Oct 21, 2016
-
-
Benni Mack authored
The AutoPublishTask and the WorkspacesUtility are actually very encapsulated and never used nor registered in EXT:version. Instead, EXT:workspaces provides EXACTLY the same functionality, and the scheduler task there is registered. Looking back in history, I did not find any functionality where this was actually used, so the files are removed. A class alias map is added to provide ultra-compatibility without any breaking changes nor deprecations. Resolves: #78374 Releases: master Change-Id: I86c7424f1dac7ea809a2f4e02993ffc69a9769b8 Reviewed-on: https://review.typo3.org/50315 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Wouter Wolters authored
When ref_table is sys_file the references to sys_file_metadata should be excluded. Otherwise the deletion of sys_file records can throw a message that there still is a reference but that is not listed in the filelist column "Ref". Resolves: #78368 Releases: master,7.6,6.2 Change-Id: I8cbfd93f53e1c3bf78e1f5a23f84ccae731da3ff Reviewed-on: https://review.typo3.org/50299 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Frans Saris <franssaris@gmail.com> Reviewed-by:
Robert van Kammen <rvkammen@hotmail.com> Tested-by:
Robert van Kammen <rvkammen@hotmail.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Morton Jonuschat authored
In contrast to a case insensitive query a case sensitive query can not be enforced as it largely depends on the settings of the database system. Deprecate the parameter as it isn't used at all and log an appropriate notice. Change-Id: Ie767c6a9d5d3de5857c7a3bf38a5dd43ce580d07 Resolves: #57385 Releases: master Reviewed-on: https://review.typo3.org/49856 Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Benni Mack authored
The functionality to display / explain DB select queries does not work with DBAL and doctrine anymore. The leftovers in admin panel caused a fatal PHP error due to a missing method, which was now removed. Resolves: #78375 Releases: master Change-Id: I5cc69508f82855985d3f78449a4672952c633f63 Reviewed-on: https://review.typo3.org/50291 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Tim Rücker authored
This parameter indicates whether the player should show related videos when playback of the initial video ends. Supported values are 0 and 1. The default value is 1. Releases: master,7.6 Resolves: #77710 Change-Id: I95576369b8dae579b39298095024bdbddc75ebc6 Reviewed-on: https://review.typo3.org/50031 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Josef Glatz authored
Change the page module default mode from "QuickEdit" to "Columns". Especially for TYPO3 newcomers it's much easier to get an overview of how to create content elements. Resolves: #78312 Releases: master, 7.6 Change-Id: I5768b4a88d5f38a94fcad854f9a52e09d65cd7b7 Reviewed-on: https://review.typo3.org/50283 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>
-
Claus Due authored
This change prevents the creation of a malformed SQL query in AbstractDatabaseRecordList::makeQueryArray. The problem was caused by the makeSearchString method returning `1=1` from two early decisions, whereas before it would return a valid query prepended with AND but containing no search clauses. Returning an empty string from these two early decisions will completely solve the issue without breaking the search feature that uses this function. Change-Id: Ic9b48bc498a7423d158057fbcee05f976ee1dadf Resolves: #78353 Releases: master Reviewed-on: https://review.typo3.org/50284 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Markus Klein <markus.klein@typo3.org> 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>
-
Frank Naegler authored
Set correct reference to forge issue in rst file. Resolves: #78103 Releases: master Change-Id: I80267a5578f5fcfbc914310df965bcdfa57b93b7 Reviewed-on: https://review.typo3.org/50314 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Christopher Orth authored
Adds the possibility to pass and set status parameter TYPO3\CMS\Backend\Toolbar\Enumeration\InformationStatus through addSystemInformation() in SystemInformationToolbarItem. Resolves: #78103 Releases: master Change-Id: I9a6027ec6f144a1aee4341fc592f362e0e7f2681 Reviewed-on: https://review.typo3.org/50060 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Mathias Brodala <mbrodala@pagemachine.de> Reviewed-by:
Michael Oehlhof <typo3@oehlhof.de> Reviewed-by:
Joerg Boesche <typo3@joergboesche.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Josef Glatz <josef.glatz@typo3.org> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Wouter Wolters authored
Resolves: #78371 Releases: master,7.6 Change-Id: Iaa4c6065bdf3beb0ce226733e89d14485efa0fea Reviewed-on: https://review.typo3.org/50308 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Wouter Wolters authored
Raise version number to 7.6.4. Resolves: #78369 Releases: master,7.6 Change-Id: Iabaddaa0c0223f7a1564e1ea0ec2d4c6d2e523e9 Reviewed-on: https://review.typo3.org/50305 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Tymoteusz Motylewski authored
The value of the t3_origuid is now checked in Datahandler functional tests. Releases: master, 7.6 Resolves: #78303 Change-Id: I8f47ecf3cc6e297cd5e01e07f724b75720e69fe2 Reviewed-on: https://review.typo3.org/50232 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> 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>
-
- Oct 20, 2016
-
-
Markus Sommer authored
* Remove <col> calculate and use short syntax * Add CSS to render the table fixed Resolves: #78296 Releases: master, 7.6 Change-Id: Ibd698ac0ea19f005534d891debe1d8b17848d036 Reviewed-on: https://review.typo3.org/50228 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Eric Chavaillaz authored
If the first palette of a form is hidden, a tiny line is append under the tab title. This patch removes it. Resolves: #78327 Releases: master, 7.6 Change-Id: Ibf0f3b9ed243a3d30de9bb726b17ffdec8414c65 Reviewed-on: https://review.typo3.org/50295 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Jérémie Roulin <jeremie@hemmer.ch> Tested-by:
Jérémie Roulin <jeremie@hemmer.ch> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Frank Naegler authored
This patch prevent JS errors in case a tree is rendered in a FlexForm, before the record was saved for the first time. In this case the data can’t be loaded and we display a message. This is a bit hacky but at the moment the best way to fix the issue. Resolves: #78350 Releases: master Change-Id: Ic11ae6e5c22711fe9a10fe3287b015ea1d87a30f Reviewed-on: https://review.typo3.org/50275 Tested-by:
TYPO3com <no-reply@typo3.com> 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>
-
Oliver Hader authored
Scenario: * within a workspace * using a MM intermediate table for relations * having versioned entities on both sides of the relation to be defined * however, the live uids of the entities are submitted to the data handler Problem: * MM relation is created with the live uids on one side Solution: * convert submitted relation uids to accordant version uids in workspace Resolves: #77375 Releases: master, 7.6 Change-Id: Id099845258d3e2820ac9c369acc0339689b768a9 Reviewed-on: https://review.typo3.org/49338 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Susanne Moog <susanne.moog@typo3.org> Tested-by:
Susanne Moog <susanne.moog@typo3.org>
-
Josef Glatz authored
Fix rendering of rst file which is part of the 8.4 changelog Releases: master Change-Id: I8aa75cdca1ad581eace9c0ada852a536044bc4af Reviewed-on: https://review.typo3.org/50268 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de>
-
- Oct 19, 2016
-
-
Christian Kuhn authored
phantomJS is too unstable. Base the acceptance tests on firefox only for now, free composer from phantom installers. Change-Id: Id3ec1cb42488d14df442502681938c23efa2cbe4 Resolves: #78322 Releases: master Reviewed-on: https://review.typo3.org/50281 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Mathias Brodala authored
Initialize the array directly. Resolves: #78341 Releases: master Change-Id: I3ae5688d0cee452979c18eb334e575144a222380 Reviewed-on: https://review.typo3.org/50272 Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de> 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:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Frank Naegler authored
This followup fixes an error in jsfunc.inline.js related to the jQuery update. Resolves: #77249 Releases: master Change-Id: Ia2e1394b45f73285abb352ce4e965d78b6a5f3a2 Reviewed-on: https://review.typo3.org/50273 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> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Benni Mack authored
A missing deprecation log entry was added while removing BACK_PATH Relates: #72491 Resolves: #78314 Releases: master Change-Id: Ie4126a3188ccdcc8f71d18b6788e60a13d01df11 Reviewed-on: https://review.typo3.org/50237 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de>
-
Mathias Schreiber authored
Documentation snippets are now checked for validity. Every rst file needs: * An include line at the very top * A reference to a ticket via "See :issue:`ISSUE_ID` * An index at the very bottom of the file Resolves: #78284 Releases: master Change-Id: I538a089cece283fdc64b751e5a3275e65db598cc Reviewed-on: https://review.typo3.org/50215 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Benni Mack authored
All extension icons of all system and test extensions shipped with the core are now located at EXT:.../Resources/Public/Icons/Extension.* instead of ext_icon.gif. This is one further step to make it possible to publish only public assets of an extension to the htdocs/ folder. Resolves: #78334 Releases: master Change-Id: Ic65036bb74d4a156c1a0a9fdfa0c8d4b5a28e9ed Reviewed-on: https://review.typo3.org/50233 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:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Frank Naegler authored
This patch prevent an Uncaught TypeError ClickMenu.js. In case the reloadFrame parameter not exist, the variable res is null. This is ok, because not in any case the parameter is set. Resolves: #78329 Releases: master, 7.6 Change-Id: I8590a37c55ed794d62620af4c487b57a972761f7 Reviewed-on: https://review.typo3.org/50259 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de> Reviewed-by:
Michael Oehlhof <typo3@oehlhof.de> Tested-by:
Michael Oehlhof <typo3@oehlhof.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Wouter Wolters authored
Fix path in karma.js configuration to use new jQuery version. Resolves: #77249 Releases: master Change-Id: I555fd90422895d4c786f0ef385a2711eb5e2745a Reviewed-on: https://review.typo3.org/50267 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org> Reviewed-by:
Susanne Moog <susanne.moog@typo3.org> Tested-by:
Susanne Moog <susanne.moog@typo3.org>
-