00001 <?php
00002 # TYPO3 CVS ID: $Id: ext_localconf.php 1678 2006-08-17 08:45:24Z ingmars $
00003 if (!defined ('TYPO3_MODE')) die ('Access denied.');
00004
00005 $TYPO3_CONF_VARS['SYS']['contentTable'] = 'tt_content';
00006 $TYPO3_CONF_VARS['FE']['eID_include']['tx_cms_showpic'] = 'EXT:cms/tslib/showpic.php';
00007
00008 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['compat_version']['cms'] = array(
00009 'title' => 'CMS Frontend',
00010 'version' => 4000000,
00011 'description' => '<ul>' .
00012 '<li><p>Word separator character for simulateStaticDocument is changed from ' .
00013 'underscore (_) to hyphen (-) to make URLs more friendly for search engines' .
00014 'URLs that are already existing (e.g. external links to your site) will still work like before.</p>' .
00015 '<p>You can set the separator character back to an underscore by putting the following line into the '.
00016 '<b>Setup</b> section of your Page TypoScript template:</p>' .
00017 '<p style="margin-top: 5px; white-space: nowrap;"><code>config.simulateStaticDocuments_replacementChar = _</code></p></li>'.
00018 '<li><p>CSS Stylesheets and JavaScript are put into an external file by default.</p>'.
00019 '<p>Technically, that means that the default value of "config.inlineStyle2TempFile" is now set to "1" and that of "config.removeDefaultJS" to "external"</p></li>'.
00020 '</ul>',
00021 );
00022
00023
00024 ?>