Skip to content
Snippets Groups Projects
  1. Jun 12, 2013
  2. 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
  3. 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
  4. Jun 08, 2013
  5. 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
  6. 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
  7. Jun 03, 2013
  8. 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
    • Felix Kopp's avatar
      [BUGFIX] CSS: Default vertical spacing for blocks · 600bc8dd
      Felix Kopp authored
      Forms, tables, texts need a clear structure and obvious
      visual distinction. Our Backend currently does not
      deliver strong defaults for extensions.
      
      Many modules already work around this lack of structure
      by adding extra spacing and horizontal rules:
      
      - DocumentTemplate::spacer(x-Pixel)
      - DocumentTemplate::divider()
      
      This patch brings vertical spacing based on CSS for:
      
      - p
      - ul / ol
      - dl
      - blockquote
      
      Change-Id: I93a1a43b21d6e56db822558c6d4be0103097ed98
      Resolves: #48540
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21050
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      600bc8dd
    • Lienhart Woitok's avatar
      [FEATURE] Automatically determine page type for URIs with format · 81bd717d
      Lienhart Woitok authored
      When rendering a special format a custom page type is required.
      This adds a mapping configuration to define which page type
      should be used for which format.
      
      Example:
      plugin.tx_myext {
          view.formatToPageTypeMapping {
              txt = 99
              pdf = 123
          }
      }
      
      The formats defined will apply to all Plugins in your extension.
      
      Change-Id: I22beb6334a094711abfb2ee7b53fb3e065ec8580
      Releases: 6.2
      Resolves: #27498
      Reviewed-on: https://review.typo3.org/21123
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      81bd717d
    • Jigal van Hemert's avatar
      [BUGFIX] changing FE user password updates tstamp · c3a9446f
      Jigal van Hemert authored
      When an FE user changes his/her password the tstamp field of the
      record is also updated to reflect that the record is changed.
      
      Change-Id: I6907c7af6c46612f5e1d2e6aca6a38e9216d3af3
      Fixes: #48685
      Releases: 6.2, 6.1, 6.0
      Reviewed-on: https://review.typo3.org/21186
      Reviewed-by: Thomas Maroschik
      Tested-by: Thomas Maroschik
      Reviewed-by: Steffen Müller
      Tested-by: Steffen Müller
      c3a9446f
  9. May 31, 2013
    • Felix Kopp's avatar
      [TASK] Clean-up and update INSTALL.txt · e392adea
      Felix Kopp authored
      - Update copyright year
      - Include required module "fileinfo" in recommended section
      - Add reference to recommended library FreeType 2
      - Correct typo3.org deep links accordingly (T3O)
      
      Change-Id: I067b2d930c1a6ffa15ea61f10723e29eb434f491
      Resolves: #48541
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/21064
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      e392adea
  10. May 28, 2013
    • Anja Leichsenring's avatar
      [TASK] Bring back int_from_ver · 160ddfea
      Anja Leichsenring authored
      Due to many failing extensions relying on this function,
      Release Management decided to bring it back as a redirect
      to VersionNumberUtility::convertVersionNumberToInteger.
      
      Resolves: #48536
      Relates: #44763
      Releases: 6.2, 6.1
      Change-Id: Id76758c10a542bdbe0cc033466f494b0a6350692
      Reviewed-on: https://review.typo3.org/21047
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Daniel Hürtgen
      Tested-by: Daniel Hürtgen
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      160ddfea
    • Helmut Hummel's avatar
      [FEATURE] Backport Object Type Converter from Flow · 37c11069
      Helmut Hummel authored
      In Flow there is a Type Converter which can map array sources
      to not persistent objects. This is very useful if you need
      transitional objects built from request arguments.
      
      Backporting this converter needs some minor modifications
      in the reflection service, which are included in this commit
      as well as registering the new converter.
      
      Resolves: #48548
      Releases: 6.2
      
      Change-Id: Ic88b732076ae19ece490cf1376b2d1bbcaf1ebff
      Reviewed-on: https://review.typo3.org/21114
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      Reviewed-by: Daniel Hürtgen
      Tested-by: Daniel Hürtgen
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      37c11069
  11. May 27, 2013