Project

General

Profile

Bug #22782 ยป 14561.diff

Administrator Admin, 2010-05-31 22:19

View differences:

typo3/sysext/rtehtmlarea/class.tx_rtehtmlarea_base.php (working copy)
$filename = ($GLOBALS['TSFE']->absRefPrefix ? $GLOBALS['TSFE']->absRefPrefix : '') . t3lib_div::createVersionNumberedFilename($relativeFilename);
} else {
if ($compress) {
$compressor = t3lib_div::makeInstance('t3lib_compressor');
$compressor = t3lib_div::makeInstance('t3lib_Compressor');
$filename = $compressor->compressJsFile('../' . $this->backPath . $relativeFilename);
} else {
$filename = t3lib_div::createVersionNumberedFilename('../' . $this->backPath . $relativeFilename);
......
function is_FE() {
return is_object($GLOBALS['TSFE']) && !$this->isFrontendEditActive();
}
/**
* Checks whether frontend editing is active.
*
t3lib/spriteManager/class.t3lib_spritemanager_simplehandler.php (working copy)
/**
* loads all StyleSheets Files registered through t3lib_spriteManager::addIconSprite
* in fact the stylesheet-files are copied to t3lib_spriteManager::tempPath where they automatically
* will be included from via template.php and t3lib_compressor.
* will be included from via template.php and t3lib_Compressor.
*
* @return void
*/
t3lib/class.t3lib_pagerenderer.php (working copy)
protected $csConvObj;
protected $lang;
/* @var t3lib_compressor Instance of t3lib_compressor */
/* @var t3lib_Compressor Instance of t3lib_Compressor */
protected $compressor;
// static array containing associative array for the included files
......
}
/**
* Returns instance of t3lib_compressor
* Returns instance of t3lib_Compressor
*
* @return t3lib_compressor Instance of t3lib_compressor
* @return t3lib_Compressor Instance of t3lib_Compressor
*/
protected function getCompressor() {
if ($this->compressor === NULL) {
$this->compressor = t3lib_div::makeInstance('t3lib_compressor');
$this->compressor = t3lib_div::makeInstance('t3lib_Compressor');
}
return $this->compressor;
}
t3lib/class.t3lib_compressor.php (working copy)
* @subpackage t3lib
* $Id$
*/
class t3lib_compressor {
class t3lib_Compressor {
protected $targetDirectory = 'typo3temp/compressor/';
    (1-1/1)