Skip to content
Snippets Groups Projects
  1. Jun 16, 2013
    • Felix Kopp's avatar
      [TASK] Move video-js to contrib · 064c9b9c
      Felix Kopp authored
      To resolve /t3lib few more files should be moved:
      Moves video-js styles controls to contrib.
      
      Change-Id: I648d3bdd17ed0414e6ef1041f3630c343c73747d
      Resolves: #49152
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21451
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      064c9b9c
  2. Jun 15, 2013
  3. Jun 14, 2013
    • Philipp Gampe's avatar
      [BUGFIX] compressJs returns wrong filenames · 1c8856fa
      Philipp Gampe authored
      If you enable
          config.concatenateJs = 1
          config.compressJs = 1
      then the uncompressed version of the file is linked.
      
      This does not change much, because compression is disabled and the files
      will always be uncompressed, however the right link should be generated.
      
      The allows extension to override the compress method and implement
      compression without fixing the rest of the code.
      
      The bug is a regression introduced with: #27694 (4.6).
      
      Return the correct filename by overriding the filename with the returned
      value of compressJsFile.
      
      Resolves: #48213
      Related: #27694
      Releases: 6.2, 6.1, 6.0, 4.7
      Change-Id: I1f65576db8084b54f9e5a13947ced258eef893d7
      Reviewed-on: https://review.typo3.org/20845
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      1c8856fa
    • Jigal van Hemert's avatar
      [BUGFIX] Insert rows only once in exec_INSERTmultipleRows · aeba1e64
      Jigal van Hemert authored
      For native handler types multiple rows can be inserted using the mysql
      INSERTmultipleRows API call. When another handler was used, the operation
      was done twice, due to a missing else after the native handler condition.
      This resulted in two database records for every INSERT statement.
      
      The patch adds the missing else branch for the condition, preventing
      the second run that was only meant to handle non-native handler types.
      
      Change-Id: Ibab98a0c73b379bac063c8d1c19e30e93f38faf4
      Resolves: #48220
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Related: #34327
      Reviewed-on: https://review.typo3.org/21085
      Tested-by: Alexander Opitz
      Reviewed-by: Alexander Opitz
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      aeba1e64
  4. Jun 13, 2013
    • Ernesto Baschny's avatar
      [TASK] Cleanup ChangeLog · db9efd32
      Ernesto Baschny authored
      Remove mistakenly introduced submodule history in 6.2.0alpha1
      release.
      
      Resolves: #49110
      Releases: 6.2
      Change-Id: I00cb44c5ff718a2bf53f61c5ce7cdf778c783325
      Reviewed-on: https://review.typo3.org/21403
      Reviewed-by: Ernesto Baschny
      Tested-by: Ernesto Baschny
      db9efd32
    • Anja Leichsenring's avatar
      [BUGFIX] Repair broken unit tests · 90734e17
      Anja Leichsenring authored
      In patch 21171 some tests broke due to forgotten adjustments after
      code change.
      This patch brings the missing adjustment.
      
      Releases: 6.2, 6.1
      Resolves: #49100
      Relates: #48571
      Change-Id: I9a07e14ea050fad95bcc424ad07afc54f6aea1e1
      Reviewed-on: https://review.typo3.org/21389
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      Tested-by: Philipp Gampe
      Reviewed-by: Philipp Gampe
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      90734e17
    • Alexander Schnitzler's avatar
      [BUGFIX] findByUid should respect query settings of repository · c4c4b5ee
      Alexander Schnitzler authored
      Prior to 6.1 findByUid built its own query which respected
      the settings of its repository. Now findByUid just fetches
      the object from the persistence manager which builds its own
      query without respecting the query setting of the repository.
      
      This leads to the error that the user isn't able to fetch
      hidden records by uid any more. Therefore the
      old behaviour of the repository must be used.
      An according deprecation hint is added.
      
      Releases: 6.2, 6.1
      Resolves: #48571
      Change-Id: Ic9a48d5d06f20b2ab8032c39eecb89cd52f898af
      Reviewed-on: https://review.typo3.org/21171
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      c4c4b5ee
  5. Jun 12, 2013
    • Alexander Opitz's avatar
      [BUGFIX] Do not add category to empty table names · f5074a57
      Alexander Opitz authored
      If the $GLOBALS['TYPO3_CONF_VARS']['SYS']['defaultCategorizedTables']
      is empty or you have empty strings between commas then we try to add
      empty tablenames to the table definitions.
      
      This is fixed by setting removeEmptyValues to true in trimExplode
      and adding a RuntimeException to the add function to prevent
      others (extensions) breaking the functionality.
      
      Resolves: #48381
      Releases: 6.2, 6.1
      Change-Id: I4a8d43a0ff75da298ace4f1d33a5dcf2d2ac569f
      Reviewed-on: https://review.typo3.org/20938
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Peter Niederlag
      Tested-by: Peter Niederlag
      f5074a57
    • Wouter Wolters's avatar
      [BUGFIX] Fix missing single quotes in SchemaMigratorTest · 1af5a134
      Wouter Wolters authored
      Change-Id: I452252096e39d8986dfa414016011d16f33523b8
      Resolves: #49072
      Related: #41344
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21371
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      1af5a134
    • Francois Suter's avatar
      [BUGFIX] Avoid double wrap in css_styled_content · f720c969
      Francois Suter authored
      Since TYPO3 6.0, USER objects have stdWrap property. The
      various render methods of css_styled_content still call
      stdWrap themselves, resulting in a double wrap.
      
      Remove the stdWrap calls in css_styled_content render methods.
      
      Resolves: #49051
      Releases: 6.0, 6.1, 6.2
      Change-Id: I3092990a4d1efb12597dc543c222a727135d63ec
      Reviewed-on: https://review.typo3.org/21358
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      f720c969
    • Georg Ringer's avatar
      [TASK] Move t3lib/csconvtbl && t3lib/unidata · fc9988a2
      Georg Ringer authored
      Move the 2 folders t3lib/csconvtbl && t3lib/unidata to
      sysext/core/Resources/Private/Charsets/
      
      Change-Id: If721bfe5ab7887f67ca774ae5a409d6f67ef009e
      Resolves: #49005
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21326
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      fc9988a2
  6. Jun 11, 2013
    • Mario Rimann's avatar
      [BUGFIX] False-Positives in SQL comparison · 4e6cc614
      Mario Rimann authored
      When one has e.g. a field "foo INT(11) DEFAULT '0' NOT NULL" in
      it's ext_tables.sql definition, the comparison will always complain
      about that field, since the underlying DB lists this field as "int(11)"
      which is lowercased.
      
      This integrates a regex that lowercases the field types before
      comparing the field from the definition against the existing field.
      
      Change-Id: If76abbbca56d0ef0ab796a7f4e6bee1197ac39e6
      Resolves: #41344
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Reviewed-on: https://review.typo3.org/19630
      Tested-by: Dmitry Dulepov
      Tested-by: Wouter Wolters
      Reviewed-by: Dmitry Dulepov
      Reviewed-by: Markus Klein
      Reviewed-by: Wouter Wolters
      4e6cc614
    • Stefan Galinski's avatar
      [BUGFIX] Missing file extension class with "file links" type · 06299cce
      Stefan Galinski authored
      The content element type "file links" can't render
      the the css class for the file extension, because
      it uses a non-existing reference from pre-FAL
      times. You can find the specific css class on the
      generated list item.
      
      Fixes: #48996
      Releases: 6.2, 6.1, 6.0
      Change-Id: I3031770a6741a331647f3bd5699ea1a2c0d444a9
      Reviewed-on: https://review.typo3.org/21318
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      06299cce
    • Stefan Galinski's avatar
      [BUGFIX] List Module - Reference count limited to 20 · 083e9b01
      Stefan Galinski authored
      The reference count in the list view is limited
      to 20. Use the extended view to render the counter.
      
      Fixes: #49004
      Releases: 6.2, 6.1, 6.0
      Change-Id: I295f3c5ea93c5cad5e5f64ba4bfd15a8f9193e61
      Reviewed-on: https://review.typo3.org/21323
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      083e9b01
    • Stefan Froemken's avatar
      [TASK] Allow sys_category in rootpage · e6af651b
      Stefan Froemken authored
      Allow sys_category records to be stored in the rootpage. (pid=0)
      
      Resolves: #47530
      Releases: 6.2, 6.1, 6.0
      Change-Id: Ie71a13ec9a1be65c57e28fff63f003fc5caa6ac1
      Reviewed-on: https://review.typo3.org/20123
      Reviewed-by: Markus Klein
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Oliver Hader
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      e6af651b
    • Stefan Galinski's avatar
      [BUGFIX] Recycler ignores depth setting · ba7e83ee
      Stefan Galinski authored
      The recycler currently ignores the depth
      setting, because of a wrong type check
      since the migration to mysqli.
      
      Fixes: #48997
      Releases: 6.2, 6.1
      Change-Id: Ib7a4eb1fc68468ce09944bb9342e070a6ab3860f
      Reviewed-on: https://review.typo3.org/21321
      Reviewed-by: Wouter Wolters
      Reviewed-by: Alexander Opitz
      Tested-by: Alexander Opitz
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      ba7e83ee
    • Felix Kopp's avatar
      [TASK] Remove "require_once" in /typo3/ · 3c801955
      Felix Kopp authored
      During the namespace switch many classes were renamed
      and moved to different locations based on the new names.
      
      This patch removes the "require_once" statements that are
      automatically resolved and auto loaded in makeInstance.
      
      Change-Id: I5f788fad6ea63b2aa0b9f33e3d068b93ec04dc31
      Resolves: #48934
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21283
      Reviewed-by: Philipp Gampe
      Reviewed-by: Wouter Wolters
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      Reviewed-by: Oliver Klee
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      3c801955
    • Bernhard Kraft's avatar
      [BUGFIX] Bad English in system extensions: "screen shot" · 6baac6c1
      Bernhard Kraft authored
      According to wiktionary [1] the word "screenshot" is a compound
      word and not two separate words.
      
      [1] http://en.wiktionary.org/wiki/screenshot
      
      Resolves: #48989
      Releases: 6.2, 6.1
      Change-Id: Id7b9aa7eb98c4a2c6b0d47bddfb7cb9d51580aec
      Reviewed-on: https://review.typo3.org/21296
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Alexander Opitz
      Tested-by: Alexander Opitz
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      6baac6c1
    • Felix Kopp's avatar
      [TASK] Move JavaScript files out of t3lib · 291f7c2f
      Felix Kopp authored
      t3lib folder should diminish and finally dissolve itself.
      Moves JS files out of t3lib to corresponding extension folders.
      
      Change-Id: Iffdbd1a919dadae923034d38dedafa68a902da26
      Resolves: #48379
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/20903
      Tested-by: Wouter Wolters
      Reviewed-by: Wouter Wolters
      Reviewed-by: Markus Klein
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      291f7c2f
  7. Jun 10, 2013
    • Steffen Müller's avatar
      [BUGFIX] FileLogWriter ignores log file configuration · 34dc73da
      Steffen Müller authored
      If there are several instances of TYPO3\CMS\Core\Log\Writer\FileLogWriter
      with different log files configured in $logFile, all log records end up
      in one file.
      
      This is caused by improper use of static variable $logFileHandle.
      All filehandles except the one of the latest instance are ignored.
      
      Resolves: #48918
      Releases: 6.2, 6.1, 6.0
      Change-Id: Ie6de5e4789d107b541117daf6c7e9855015e0a46
      Reviewed-on: https://review.typo3.org/21258
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      34dc73da
  8. Jun 08, 2013
  9. Jun 05, 2013
    • Felix Kopp's avatar
      [TASK] EXT: t3skin - extract table styling · cfc7e437
      Felix Kopp authored
      In order to be able to introduce common table css definition,
      CSS must be concentrated in a common file "main_table.css".
      
      Change-Id: I3b051577bd0549be074347ce20a41cbeeb3b4b8f
      Resolves: #48786
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21197
      Reviewed-by: Susanne Moog
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      cfc7e437
    • Felix Kopp's avatar
      [TASK] EXT: t3skin: Extract form styling into own file · 0856df46
      Felix Kopp authored
      File main_content.css currently includes styles definitions
      for <form> and corresponding fields.
      
      Extract CSS styling definitions from main_content.css into an
      own file "main_form.css" (for /structure + /visual directory).
      
      Change-Id: I77fb16fb32d28a1e946e5f6093ee4389289e0ca1
      Resolves: #48783
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21196
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      0856df46
  10. Jun 04, 2013
    • Wouter Wolters's avatar
      [FEATURE] Switch View Helper · fe22a97f
      Wouter Wolters authored
      Simple view helper that allows you to render content depending
      on a given value or expression.
      It bahaves similar to a basic switch statement in PHP.
      
      Usage:
      
      <f:switch expression="{person.gender}">
        <f:case value="male">Mr.</f:case>
        <f:case value="female">Mrs.</f:case>
      </f:switch>
      
      Change-Id: I44a7066dfa86785f795069e0f06391cb45fa373c
      Resolves: #48653
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21155
      Reviewed-by: Alexander Schnitzler
      Tested-by: Alexander Schnitzler
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      Reviewed-by: Felix Kopp
      Tested-by: Felix Kopp
      fe22a97f
    • Felix Kopp's avatar
      [TASK] Remove styles for former ExtensionManager · 8311353f
      Felix Kopp authored
      Deleted CSS files that bring styles for former EXT: em.
      
      Change-Id: Ia8bd3c8971ba5aabb7792a08b4cff577d1f95ec6
      Resolves: #48550
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21073
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      8311353f
    • TYPO3 Release Team's avatar
      [TASK] Set TYPO3 version to 6.2-dev · 24288dbe
      TYPO3 Release Team authored
      Change-Id: I70f9ae0972a71aa4a62c5c99ddc46d7a2f3e3e6d
      Reviewed-on: https://review.typo3.org/21234
      Reviewed-by: TYPO3 Release Team
      Tested-by: TYPO3 Release Team
      24288dbe
    • TYPO3 Release Team's avatar
      [RELEASE] Release of TYPO3 6.2.0alpha1 · 18592906
      TYPO3 Release Team authored
      Change-Id: I85317f149a345b67ddaa6e6d2ec67c90f02a4256
      Reviewed-on: https://review.typo3.org/21233
      Reviewed-by: TYPO3 Release Team
      Tested-by: TYPO3 Release Team
    • Alexander Schnitzler's avatar
      [TASK] Make preperations for backporting Flow validation api · af610eb3
      Alexander Schnitzler authored
      Synced some parts of Extbase validation with the one of
      Flow without changing actual behaviour.
      
      Releases: 6.2
      Resolves: #48767
      Change-Id: I0801f4faaa2d9e0fea31e51704ff0a30ca2c4ccb
      Reviewed-on: https://review.typo3.org/21190
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      af610eb3
    • Alexander Schnitzler's avatar
      [TASK] Mark Extbase\Mvc\Controller\FlashMessageContainer deprecated · f521dc2c
      Alexander Schnitzler authored
      As Extbase uses the new FlashMessageService provided by the core the
      old FlashMessageContainer has to be marked deprecated. Therefore also
      TYPO3\CMS\Extbase\Mvc\Controller\AbstractController->injectFlash
      MessageContainer has to be marked deprecated but must not throw
      create a deprecation log entry.
      
      Releases: 6.2
      Resolves: #48669
      Change-Id: I2583f6a72aae6ee8abc50ebd053ffc23bc74d30b
      Reviewed-on: https://review.typo3.org/21166
      Reviewed-by: Wouter Wolters
      Reviewed-by: Alexander Schnitzler
      Tested-by: Alexander Schnitzler
      f521dc2c
    • Alexander Schnitzler's avatar
      [FEATURE] Add ObjectManager->getScope like in TYPO3.Flow · 67ab0c70
      Alexander Schnitzler authored
      This method detects if a class is of type prototype or
      singleton. We need this method as it is a dependency for
      further backporting of the Flow validation api.
      
      Releases: 6.2
      Resolves: #48766
      Change-Id: I4d6b043a4015c31ede0b099eebed4491a38723cd
      Reviewed-on: https://review.typo3.org/21189
      Tested-by: Wouter Wolters
      Reviewed-by: Wouter Wolters
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      67ab0c70
    • Alexander Schnitzler's avatar
      [BUGFIX] FormFieldVH->getPropertyValue() must work without form object · 1fffaa99
      Alexander Schnitzler authored
      Since the new property mapper is active by default it is
      possible to create forms without object="{object}", e.g.
      using a newAction. This leads to some view helpers throwing
      an exception as they rely on a present object to receive the
      property value. As this object may not be present a missing
      check has to be added to method getPropertyValue().
      
      This check also exists in Flow.Fluid and is necessary to
      fix malfunctioning view helpers.
      
      Releases: 6.2, 6.1
      Resolves: #48750
      Relates: #48628
      Change-Id: I6c42725d6daf9003358f8b6fbe9af3e62f011213
      Reviewed-on: https://review.typo3.org/21181
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Alexander Schnitzler
      Tested-by: Alexander Schnitzler
      1fffaa99
    • Alexander Schnitzler's avatar
      [BUGFIX] Enable CheckboxViewHelper binding to ArrayObject and Null · 5ffb7339
      Alexander Schnitzler authored
      Currently the checkbox view helper relies on a present
      form object which is not necessary any longer since 6.1
      as the new property mapper is active by default.
      
      Therefore the viewhelper must be adjusted to be able to
      be bound to ArrayObject objects or Null which throws an
      exception till now.
      
      Releases: 6.2, 6.1
      Resolves: #48628
      Change-Id: I35b70fb0a09ddd72da1c64ec5c7c5456e9af9471
      Reviewed-on: https://review.typo3.org/21184
      Tested-by: Adrian Dymorz
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      5ffb7339
    • Stefan Froemken's avatar
      [BUGFIX] Wrong position for beforeCallActionMethod · 7a0a5224
      Stefan Froemken authored
      The SignalSlot "beforeCallActionMethod" is at the
      wrong position
      
      Resolves: #47826
      Releases: 6.2, 6.1
      Change-Id: Id80297deb26c544bb703fa1fe7dd05b58b2b9230
      Reviewed-on: https://review.typo3.org/21116
      Tested-by: Alexander Schnitzler
      Reviewed-by: Alexander Schnitzler
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      7a0a5224
  11. Jun 03, 2013
  12. Jun 02, 2013
    • Felix Kopp's avatar
      [TASK] Clean-up EXT: t3skin css files · 6f29cc6a
      Felix Kopp authored
      Few styles are unused or defined multiple times. Few files are not
      in use any longer. Also comments and newlines could be unified.
      
      Change-Id: If38a33291454e5b53247d79b78d2c7141f768512
      Resolves: #48776
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21194
      Reviewed-by: Thomas Maroschik
      Tested-by: Thomas Maroschik
      Reviewed-by: Felix Kopp
      Tested-by: Felix Kopp
      6f29cc6a
    • Felix Kopp's avatar
      [TASK] Remove tabs_images for module groups · d2b2f0c5
      Felix Kopp authored
      Backend Modules are mostly recognized by their icons. Those
      modules are accessed via the module menu on the left.
      Modules are grouped into module groups.
      
      Since module groups are defined the same way as
      sub-modules are - also module *groups* have icons.
      
      Those icons are not displayed widely and not maintained.
      Because these module -group- icons do not bring benefits:
      
      This patch removes tabs_images from module groups.
      
      Change-Id: I1a1de5d1fa8899c362dcf1d2c592ec85cf32e59b
      Resolves: #48774
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21193
      Reviewed-by: Soren Malling
      Tested-by: Soren Malling
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Felix Kopp
      Tested-by: Felix Kopp
      d2b2f0c5