List limits

Posted by & filed under TYPO3.

New User TS settings allow to modify limits, that were previously hardcoded: mod.web_list.itemsLimitSingleTable = 50 mod.web_list.itemsLimitPerTable = 10 More info: RFC: #10550: Listview: default limits are hardcoded http://bugs.typo3.org/view.php?id=10550

Disable available languages

Posted by & filed under TYPO3.

New setting mod.SHARED.disableLanguages (available from PageTS) takes a list of languages, and makes them unavailable for part of the page tree. More info: RFC #10432: Page TS option to disable avaiable languages http://bugs.typo3.org/view.php?id=10432

Backend Lockdown

Posted by & filed under TYPO3.

BE can be locked by maintenance. For that a file typo3conf/LOCK_BACKEND needs to be created – either manually, or using the CLI script lowlevel_admin. CLI scripts will still have access to the system, and could be used for maintenance during that time. More info: http://forge.typo3.org/repositories/diff/typo3v4-core?rev=4901 RFC: #10322: Send Notification if BE is locked http://bugs.typo3.org/view.php?id=10322

Collapse list

Posted by & filed under TYPO3.

List of records can be collapsed by type. The new icons are visible in the List module: More info: RFC #2859: Feature: List view should have ‘collapse’ / ‘expand’ functionality for all list types http://bugs.typo3.org/view.php?id=2859

JS libraries in the BE

Posted by & filed under TYPO3.

There are some new functions that load JS libraries: $this->doc->getPageRenderer()->loadPrototype(); Loads prototype if it wasn’t loaded already $this->doc->getPageRenderer()->loadScriptaculous(); Loads Scriptaculous, if it wasn’t loaded already $this->doc->getPageRenderer()->loadScriptaculous(‘effects,dragdrop’); Loads Scriptaculous with modules $this->doc->getPageRenderer()->loadExtJS(); Loads ExtJS. This function also accepts two parameters: if first is set to true, ext-all.css will be loaded, if second is set to true,… Read more »