Skip to content
Snippets Groups Projects
  1. Mar 30, 2011
  2. Mar 29, 2011
  3. Mar 28, 2011
    • Tolleiv's avatar
      [TASK] Utilize hook_previewinfo to show the preview info · b6dbdd82
      Tolleiv authored
      Change-Id: Ia926b145e9eb184d4244ec4f6552487e72392483
      Related: #M17844
      Fixes: #M17846
      Reviewed-on: http://review.typo3.org/1005
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      b6dbdd82
    • Tolleiv's avatar
      [TASK] remove workspace previewInfo in frontend · 2f1a07a7
      Tolleiv authored
      The preview info should not contain workspace related code.
      The proposed patch removes all output from tslib_fe::previewInfo
      and adds the possibility to hook in it and render a specific
      message. The followup implements this for the regular preview.
      
      Change-Id: Ie3c05a1837bb2e11cdb66c72114218ae6e12c973
      Related: #13571
      Fixes: #M17844
      Reviewed-on: http://review.typo3.org/1003
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      2f1a07a7
    • Steffen Gebert's avatar
      [BUGFIX] Fix Extension Download with compressionLevel enabled · eac9550a
      Steffen Gebert authored
      To clear output buffers, the utility function t3lib_div::cleanOutputBuffers()
      has to be used. Otherwise things break with compressionLevel enabled.
      
      This change replaces the ob_end_clean() call in the Extension download process,
      which did not work, as crap is sent to the user agent.
      
      Change-Id: I078bab66c24d0667b3cd8c2397f26569ed2dbf8d
      Resolves: #M18029
      Also-Applies: TYPO3_4-5
      Reviewed-on: http://review.typo3.org/1264
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      eac9550a
    • Steffen Kamper's avatar
      [BUGFIX] CSH not showing "more info" link icon anymore · 72808f1f
      Steffen Kamper authored
      With the missing link icon it's not clear that there is more info on click.
      This cahnge brings back the icon to the tooltip.
      
      Change-Id: I6a09c830772e3b128d31a400c5a8e59959f371a9
      Resolves: #M18036
      Reviewed-on: http://review.typo3.org/1288
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      72808f1f
    • Joh. Feustel's avatar
      [BUGFIX] BE ajax request fails on some systems with php 5.3 · c156078a
      Joh. Feustel authored
      Because of a PHP bug on some systems the request to ajax.php fails because it
      includes '../t3lib/class.t3lib_div.php' with relative path while init.php uses
      PATH_t3lib . 'class.t3lib_div.php'.
      On some systems PHP is not able to detect the already included file when a
      different path is used.
      
      Change-Id: I66e39690747c4f78b4571cf63777d98cb88b6b75
      Resolves: #M17250
      Reviewed-on: http://review.typo3.org/1286
      Reviewed-by: Joh. Feustel
      Tested-by: Joh. Feustel
      Reviewed-by: Steffen Kamper
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      c156078a
  4. Mar 27, 2011
    • Alexander Stehlik's avatar
      [FEATURE] Improve usability of group fields · f92873b3
      Alexander Stehlik authored
      If only one value is allowed in a group field (maxitems==1), the
      present value will be removed when the user selects a new value via
      element browser or file upload field.
      
      If the list is disabled (by disable_controls setting) the user doesn't
      have the possibility to remove items. To prevent a "write once" field
      the first item in the list will be removed if the maxitems limit has
      been reached.
      
      Change-Id: Iac48371f672b78e7c2ea3450af581759986015bc
      Resolves: #M14430
      Reviewed-on: http://review.typo3.org/1142
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      Reviewed-by: Steffen Kamper
      Tested-by: Steffen Kamper
      f92873b3
  5. Mar 26, 2011
  6. Mar 25, 2011
  7. Mar 23, 2011
  8. Mar 22, 2011
  9. Mar 21, 2011
  10. Mar 19, 2011
    • Marco Huber's avatar
      [BUGFIX] TCA type="select", renderMode="tree", maxitems=1 doesn't work · 290529a7
      Marco Huber authored
      Description
      Problem:
      I want to use the new TCA tree, but when I configure 1 as maxitems I
      can't select a tree node.
      
      This happens, because this.countSelectedNodes in
      t3lib\js\extjs\tree\tree.js is 1 even when I create a new record.
      And this.countSelectedNodes is 1 because $valueArray in
      t3lib\tceforms\class.t3lib_tceforms_tree.php in the function
      renderField always has at least one entry.
      
      $valueArray is created by exploding $PA['itemFormElValue']. In fresh
      records $PA['itemFormElValue'] is 0 and not NULL (or not set) and
      has no other effects. But $valueArray has an entry and that's why
      count($valueArray) is 1 and then this.countSelectedNodes is also 1.
      
      To reproduce this issue you can use this TCA (Thanks to Steffen:
      http://lists.typo3.org/pipermail/typo3-team-core/2010-November/044931.html):
      $GLOBALS['TCA']['pages']['columns']['fe_group']['config']
      ['renderMode'] = 'tree';
      $GLOBALS['TCA']['pages']['columns']['fe_group']['config']['maxitems'] = 1;
      $GLOBALS['TCA']['pages']['columns']['fe_group']['config']['treeConfig']
      = array(
           'parentField' => 'subgroup',
           'appearance' => array(
               'expandAll' => TRUE,
               'showHeader' => TRUE,
           )
      );
      
      Solution:
      To fix this issue $PA['itemFormElValue'] should be only exploded if it's
      not 0. Like I wrote before, this is done in
      t3lib\tceforms\class.t3lib_tceforms_tree.php and fixed in the appended
      patch.
      
      Fixing this issue causes a little follow up in t3lib\js\extjs\tree\tree.js.
      This is also fixed in the patch.
      
      Change-Id: I5d23ea1d63b1107925e265392f4d13f4db3d1063
      Resolves: #M17976
      Reviewed-on: http://review.typo3.org/1188
      
      
      Reviewed-by: default avatarMoritz <moemos@gmail.com>
      Tested-by: default avatarMoritz <moemos@gmail.com>
      Reviewed-by: default avatarSteffen Ritter <info@rs-websystems.de>
      Tested-by: default avatarSteffen Ritter <info@rs-websystems.de>
      290529a7
  11. Mar 16, 2011
  12. Mar 12, 2011
  13. Mar 11, 2011
  14. Mar 10, 2011
  15. Mar 09, 2011
  16. Mar 08, 2011