- Jul 11, 2013
-
-
TYPO3 Release Team authored
Change-Id: Ib7566d7b13a7e2c091158ea77d7f8e2077d475e0 Reviewed-on: https://review.typo3.org/22210 Reviewed-by: TYPO3 Release Team Tested-by: TYPO3 Release Team
-
Ernesto Baschny authored
Resolves: #49889 Related: #49164 Releases: 6.2 Change-Id: I09276b37134f3f781e28ac098596966f7866ec04 Reviewed-on: https://review.typo3.org/22200 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Felix Kopp Tested-by: Felix Kopp
-
Anja Leichsenring authored
In preparation of the Alpha2 release of TYPO3 CMS 6.2 the latest changes in extbase were added to the ChangeLog file. Releases: 6.2 Resolves: #49896 Change-Id: Ib59f741a4427ba093e459545c823f9bfd0277d5e Reviewed-on: https://review.typo3.org/22203 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Anja Leichsenring Tested-by: Anja Leichsenring
-
Anja Leichsenring authored
In preparation of the Alpha2 release of TYPO3 CMS 6.2 the latest changes in extbase were added to the ChangeLog file. Releases: 6.2 Resolves: #49894 Change-Id: I3ca728147dc4eed7c27dd5f2039336d1d2b52472 Reviewed-on: https://review.typo3.org/22202 Reviewed-by: Stefan Neufeind Tested-by: Stefan Neufeind Reviewed-by: Anja Leichsenring Tested-by: Anja Leichsenring
-
- Jul 10, 2013
-
-
Francois Suter authored
The TCA property "requestUpdate" is sensitive to spaces, although this is documented nowhere. Indeed "foo1, foo2" will not work whereas "foo1,foo2" does. This patch strips spaces from the "requestUpdate" string before testing it. Resolves: #42789 Releases: 6.2, 6.1, 6.0, 4.7, 4.5 Change-Id: I340090e93e7b8645493f8db0c8c374cb1227f684 Reviewed-on: https://review.typo3.org/22174 Reviewed-by: Xavier Perseguers Tested-by: Xavier Perseguers Reviewed-by: Stefan Neufeind Tested-by: Stefan Neufeind Reviewed-by: Francois Suter Tested-by: Francois Suter
-
Georg Ringer authored
There is no reason to hide those 2 fields in list view => extended view > fields and make them admin only Change-Id: I390e2b0ac974098edb53d7e36681d6f3df0124eb Resolves: #49810 Releases: 6.2 Reviewed-on: https://review.typo3.org/22157 Reviewed-by: Georg Ringer Tested-by: Georg Ringer
-
Wouter Wolters authored
Move all old language includes (php,xml) in the core to .xlf Change-Id: I804b5970a360cbfdc2940736632c55c535ccbd40 Resolves: #49832 Releases: 6.2 Reviewed-on: https://review.typo3.org/22167 Reviewed-by: Markus Klein Reviewed-by: Georg Ringer Tested-by: Georg Ringer
-
- Jul 09, 2013
-
-
Robert Vock authored
Logging PHP errors stopped working after changeset 3e309294 when the DatabaseConnection class was changed. The changed line tries to determine, if a database connection is available and only writes the log entry if the connection was already established. Resolves: #49645 Releases: 6.1, 6.2 Change-Id: Idee413ed911a8c2d23f034ceadd17c955c98a337 Reviewed-on: https://review.typo3.org/22166 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Jigal van Hemert Tested-by: Jigal van Hemert
-
Ingo Renner authored
When installing extensions they may register plugins in ext_localconf.php. By doing so some default TypoScript is generated in Extensionutility::configurePlugin() that is then added using ExtensionManagementUtility::addTypoScript(). Parts of the generated TypoScript are stored in $TYPO3_CONF_VARS['FE']['contentRenderingTemplates']* and are loaded later during TypoScript parsing after including the content rendering template. These TS parts are used to resolve which classes and methods to call when a plugin needs to be rendered on a page. You can find them in tt_content.list.20.* "content default" used to be the old content rendering template with uid 43, today we use css_styled_content instead. The part in the TypoScript processing chain to load these generated snippets - TemplateService::includeStaticTypoScriptSources() - is only executed when loading the content rendering templates using the "Include static (from extensions)" field in template records. In return this means if you try to move as much TS to files as possible you will still have to include css_styled_content through the Template records in the backend. In other words when actually trying to include css_styled_content TS from a file, the generated snippets for tt_content.list.20.* will not be loaded and thus no plugin can be executed. Resolves: #49461 Resolves: #44983 Releases: 6.2, 6.1, 6.0 Change-Id: I77c0d64759fa0b5b27cac0ae1acd55e9abefe7f8 Reviewed-on: https://review.typo3.org/21679 Reviewed-by: Markus Klein Reviewed-by: Marc Bastian Heinrichs Tested-by: Marc Bastian Heinrichs Reviewed-by: Ingo Renner Tested-by: Ingo Renner
-
Francois Suter authored
File links made inside a RTE-enabled field are currently not migrated to FAL references. This patch adds such an update wizard. Resolves: #49233 Releases: 6.1, 6.2 Change-Id: I12b6d9da87b734c0a9d5f884d5067e3c9b08efc3 Reviewed-on: https://review.typo3.org/22002 Reviewed-by: Nico de Haen Tested-by: Nico de Haen Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Sebastian Michaelsen Tested-by: Sebastian Michaelsen Reviewed-by: Francois Suter Tested-by: Francois Suter
-
- Jul 08, 2013
-
-
Alexander Schnitzler authored
Currently we are using inject methods like: /* * @param $foo Foo */ public function injectFoo(Foo $foo) { $this->foo = $foo; } This patch removes these methods and introduces property annotations: /** * @var Foo * @inject */ protected $foo; Change-Id: I5b6f1aae29f95c31b9dd69629f05d8451fe30261 Releases: 6.2 Resolves: #46598 Reviewed-on: https://review.typo3.org/22006 Reviewed-by: Alexander Schnitzler Tested-by: Alexander Schnitzler Reviewed-by: Marc Bastian Heinrichs Tested-by: Marc Bastian Heinrichs Reviewed-by: Stefan Neufeind Reviewed-by: Anja Leichsenring Tested-by: Anja Leichsenring
-
Andreas Wolf authored
Change-Id: I8ae556930bd378a3756edbaa9ab86530f159f0da Relases: 6.2 Resolves: #49784 Reviewed-on: https://review.typo3.org/22119 Reviewed-by: Stefan Neufeind Tested-by: Stefan Neufeind Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
- Jul 07, 2013
-
-
Markus Klein authored
Resolves: #49765 Releases: 6.2, 6.1, 6.0 Change-Id: Ieb5e652bb35f406207f0f0b63db894c9efbb98ff Reviewed-on: https://review.typo3.org/22098 Reviewed-by: Philipp Gampe Tested-by: Philipp Gampe Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Markus Klein authored
Resolves: #49764 Releases: 6.2 Change-Id: I7bd8aee2ff9897cbfd0ea117d4afb66f49d50012 Reviewed-on: https://review.typo3.org/22097 Tested-by: Philipp Gampe Reviewed-by: Philipp Gampe Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Stefan Neufeind authored
Change-Id: I43d6ef559b0b46e6302ea891b4d39501a99423a6 Resolves: #49745 Releases: 6.2 Reviewed-on: https://review.typo3.org/22041 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Philipp Gampe authored
When you want to add a link in the RTE-Editor, you can upload files in the "File" tab. When you select a file and want to upload it, the reloaded content in the create-link-overlay will throw an error. The method is feed with a translation of "none - new file". Bypass the file or folder lookup if we do not have an integer id and print the message instead. Resolves: #48219 Releases: 6.2, 6.1, 6.0 Change-Id: I9e1e6bc84b21fb04608841515ac414eec8c04130 Reviewed-on: https://review.typo3.org/20850 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Wouter Wolters authored
This reverts commit 2219d228 This breaks Travis big time! Change-Id: I7135b9478e01a5f95ad20df3a6b24bb5d9715ec8 Reviewed-on: https://review.typo3.org/22078 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Francois Suter authored
Improve the features provided by the BE container view helper so that extensions don't need to provide their own so often. Added features: - load several JS and CSS files instead of just one - load jQuery - load some inline language labels Note: the old way of loading a single JS and CSS file is preserved for backwards compatibility, but marked as deprecated. With this patch all BE modules in the Core can use the default BE container view helper. The Extension Manager needs some special initialization which is moved to a dedicated view helper. The customized BE container view helpers are removed. Resolves: #49749 Releases: 6.2 Change-Id: I236134451a31f08afe5886337cfb1144dac7ad90 Reviewed-on: https://review.typo3.org/22063 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Felix Kopp Tested-by: Felix Kopp
-
- Jul 06, 2013
-
-
Stefan Neufeind authored
When adding a file or requesting a file by an identifier cleanup any . and .. in the path before handing off to the driver so files are not indexed multiple times. Change-Id: I324c4637621165a56470fb95864eeff1254f62dc Fixes: #46989 Releases: 6.2, 6.1, 6.0 Reviewed-on: https://review.typo3.org/19684 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Felix Kopp authored
In order to decouple extensions from each other and to fasten bonding between files to specific extensions the folder typo3/stylesheets should be moved to EXT: backend. Change-Id: I2ecf68e9c8d412c1c9b097db63743bde518f52b0 Resolves: #49747 Releases: 6.2 Reviewed-on: https://review.typo3.org/22048 Reviewed-by: Stefan Neufeind Tested-by: Stefan Neufeind Reviewed-by: Jigal van Hemert Tested-by: Jigal van Hemert
-
Steffen Ritter authored
File is deleted by driver and deleted property of FileObject is set by ResourceStorage but new state is not persisted. Update deleted property in updateProperties array in FileObject and persist change. Reintroduced after fixing tests in f3778d8c. Change-Id: I0784c84af4bfb8021c648139c2feee577f3e9dc1 Fixes: #48336 Releases: 6.2, 6.1, 6.0 Reviewed-on: https://review.typo3.org/22056 Reviewed-by: Steffen Ritter Tested-by: Steffen Ritter
-
Markus Klein authored
Make use of the additional parameters of git clone to vastly reduce the amount of data transfered when cloning the repositories. Releases: 6.2, 6.1, 6.0, 4.7, 4.5 Change-Id: Id0c5f3a4ed7ee0bdeb6053c6e0dc606362909d1e Reviewed-on: https://review.typo3.org/22054 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Christian Kuhn authored
Install tool -> important actions -> system information does not break correctly on the definition list. Adapt css a bit. Resolves: #49748 Related: #49162 Releases: 6.2 Change-Id: Ia2f1c5e4152c238e9c53fb383588fd12d72df1d8 Reviewed-on: https://review.typo3.org/22053 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Anja Leichsenring Tested-by: Anja Leichsenring
-
Steffen Ritter authored
ext:core File/ExtendedFileUtilityTest unit test is not really a unit test, but more a functional test case since it does no mocking at all and writes data directly to database. The test case has side effects and is move to the functional section for now. Resolves: #49746 Releases: 6.2, 6.1, 6.0 Change-Id: I3f3917f0800a9492b01676bf2b67e81eea1ae16f Reviewed-on: https://review.typo3.org/22046 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Felix Kopp authored
EXT: lowlevel brings a tree view to display configurations. This configuration has been wrapped into a <table> tag in order to prohibit wrapping of long lines. Removes <table> tag and brings nowrap replacement. Also moves headline to pole position. Change-Id: I0358c90cd890101e5e8f7b8d4056d4e8a571d8ee Resolves: #49743 Releases: 6.2 Reviewed-on: https://review.typo3.org/22042 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Max Roesch Tested-by: Max Roesch Reviewed-by: Markus Klein Tested-by: Markus Klein
-
Christian Kuhn authored
This reverts commit d22cea3b The patch kills unit tests. We guess there is some incomplete mocking in Resource tests but are not able to quickly find the root of it. The patch is reverted for now until the tests are green again. Change-Id: I5e7bb6e14187f7179e00b0b00decda644e1c6efe Resolves: #48336 Releases: 6.2, 6.1, 6.0 Reviewed-on: https://review.typo3.org/22034 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Tim Spiekerkoetter authored
The Backend preview does not reflect the sorting of the elements in the content element. This patch added the sorting field from the TCA to the thumbCode method. Resolves: #48645 Releases: 6.2, 6.1, 6.0 Change-Id: I9dcec1c2baae226aeded9c4c93d368c067c0bad2 Reviewed-on: https://review.typo3.org/21975 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Francois Suter authored
The update wizard that migrates RTE magic images relies on sys_refindex for finding the magic images. There should be a warning in the wizard description that users should be sure their reference index is up to date. Resolves: #49727 Releases: 6.1, 6.2 Change-Id: I7301a4a52174424655a76b58c7b7856f5f5209a2 Reviewed-on: https://review.typo3.org/22007 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Frans Saris authored
File is deleted by driver and deleted property of FileObject is set by ResourceStorage but new state is not persisted. Update deleted property in updateProperties array in FileObject and persist change. Fixes: #48336 Releases: 6.2, 6.1, 6.0 Change-Id: I6cac106dcf89125e0b98b8b12a03c0b3f56d484f Reviewed-on: https://review.typo3.org/20982 Reviewed-by: Steffen Ritter Tested-by: Steffen Ritter
-
Helmut Hummel authored
The admin_get_tables method in the DatabaseConnection uses the constant instead of the class property. This delivers wrong results if using multiple DatabaseConnection objects. Use the class property instead. Change-Id: I93e05fdabb53b170782c61ef4ebfa97190cddfb6 Resolves: #49738 Releases: 6.2, 6.1 Reviewed-on: https://review.typo3.org/22021 Reviewed-by: Markus Klein Tested-by: Markus Klein
-
Felix Kopp authored
During icon clean-up regrettably too many were removed. This patch set reintroduces the missing revert icons. Kudos to Mister Wouter. Change-Id: Ice5fcdee292f968b16c55f8682e87d0dc63e6668 Resolves: #49594 Releases: 6.2 Reviewed-on: https://review.typo3.org/22020 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Felix Kopp authored
Docheader row1/row2 are kept for former html structures. When inner-body paddings were increased before docheader row1/row2 fall-back was forgotten. Follow-up CSS. Change-Id: I7f0346dbd548b7cdc35514d423f779b792ab633a Resolves: #49735 Releases: 6.2 Reviewed-on: https://review.typo3.org/22018 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Christian Kuhn authored
DefaultConfiguration now contains sane values for fileCreateMask and folderCreateMask, so the values from FactoryConfiguration can be removed. Resolves: #49732 Related: #49162 Releases: 6.2 Change-Id: I7225648cebad697850fd2a728c021ad4ffe80b88 Reviewed-on: https://review.typo3.org/22012 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Christian Zenker authored
flushByTags removes cache entries tagged with a given tag, but if those cache entries have other tags assigned, they are not deleted in the tags table. The patch fixes this with an additional query. Resolves: #48984 Releases: 6.2, 6.1, 6.0 Change-Id: I7096e63cf823633f0c8a47f698bd475d7d02b83c Reviewed-on: https://review.typo3.org/21309 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-
Steffen Ritter authored
In TYPO3 6.1 the Flash-Uploader has been removed and the upload functionality has been reduced to the basic HTML5 multi-upload field. In the times of HTML5, CSS3 and modern browser our users expect a way more advanced experience. This patch adds the possibility to just drag files into the file list. The dragged files are asynchronously uploaded to the currently open folder and an reload of the frame is done. There are still some minor issues and ideas for a even better user experience, which have to be discussed if they should be included in the original patch. Change-Id: I4221f7ff5a06ee11555906f170b37cc08489d875 Resolves: #47005 Releases: 6.2 Reviewed-on: https://review.typo3.org/19714 Reviewed-by: Steffen Ritter Tested-by: Steffen Ritter Reviewed-by: Frans Saris Tested-by: Frans Saris Reviewed-by: Markus Klein Tested-by: Markus Klein
-
Stefan Neufeind authored
* "case" needs to be indented one level more than switch(). * default-case should not have a break-statement Change-Id: I8215ba2bdb19b9abbfe6ed45af3905d7e6c688d6 Resolves: #49527 Releases: 6.2 Reviewed-on: https://review.typo3.org/21748 Reviewed-by: Markus Klein Tested-by: Markus Klein
-
Markus Klein authored
The parent category tree should only show categories in default language. Resolves: #44915 Releases: 6.2, 6.1, 6.0 Change-Id: I7920cf7ae208ba2db3bd24f7da5439824064c167 Reviewed-on: https://review.typo3.org/21626 Reviewed-by: Philipp Gampe Tested-by: Philipp Gampe Reviewed-by: Stefan Neufeind Tested-by: Stefan Neufeind
-
Marc Bastian Heinrichs authored
This reverts commit 09bc4929 We should not support this annotation in extbase, because it has no benefit and breaks with the annotation concept in Flow. "Flow" is only an alias for "TYPO3\Flow\Annotations" in Flow and needs to be registered by "use TYPO3\Flow\Annotations as Flow". Change-Id: Ic0ecdc58754c176b1140db463c2405cb47bf9933 Reviewed-on: https://review.typo3.org/21997 Reviewed-by: Marc Bastian Heinrichs Tested-by: Marc Bastian Heinrichs
-
Marc Bastian Heinrichs authored
This reverts commit ad7219c2 See https://review.typo3.org/#/c/21997/ More notes on this: A regex to replace @inject with @Flow\Inject when porting Extbase extensions to Flow is very simple and fast. Additionally @Flow\Inject makes only sense with using "use TYPO3\Flow\Annotations as Flow". But with a backported annotation parser I expect that we would have annotations in "TYPO3\CMS\Extbase\Annotations". Using them as alias "Flow" is a bad style as the alias should be "Extbase" then. Change-Id: I2113b5320f2a6f5dd56cfa7b06469fa1628d2645 Reviewed-on: https://review.typo3.org/22004 Reviewed-by: Marc Bastian Heinrichs Tested-by: Marc Bastian Heinrichs
-
Patrick Broens authored
The CSV rendering in CType table is not done properly in css_styled_content method render_table. It uses explode with the delimiter, but this character can also be in the cell itself. This patch uses the PHP function str_getcsv, which is supported from PHP version 5.3 > Change-Id: I5707b006ab1143c108473e5ed7079e6e65cdddca Fixes: #47356 Releases: 6.0, 6.1, 6.2 Reviewed-on: https://review.typo3.org/20157 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters
-