plugin.tx_solr {
solr {
scheme = http
host = YY.YY.YY.YY
port = 8080
path = /solr/core_XXXX/
| <?php | |
| // Not needed in current RealURL versions: $TYPO3_CONF_VARS['FE']['addRootLineFields'] .= ',tx_realurl_pathsegment'; | |
| $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array( | |
| '_DEFAULT' => array( | |
| 'init' => array( | |
| 'enableCHashCache' => true, | |
| 'appendMissingSlash' => 'ifNotFile,redirect[301]', | |
| 'enableUrlDecodeCache' => true, | |
| 'enableUrlEncodeCache' => true, | |
| 'adminJumpToBackend' => true, |
| <?php | |
| return array( | |
| // ... | |
| 'SYS' => array( | |
| 'caching' => array( | |
| 'cacheConfigurations' => array( | |
| 'cf_cache_hash' => array( | |
| 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\RedisBackend', | |
| 'options' => array( | |
| 'database' => 10, |
| index index.php index.html; | |
| location ~ ^/(favicon\.ico|robots\.txt)$ { | |
| allow all; | |
| log_not_found off; | |
| access_log off; | |
| } | |
| # don't show templates | |
| location ~* \.(tpl|html5|xhtml)$ { |
| #default | |
| page.headerData.5 = TEXT | |
| page.headerData.5.field = subtitle | |
| page.headerData.5.ifEmpty.field = title | |
| page.headerData.5.wrap =| - {$pageTitle} | |
| # auf der News Detailseite wird der Newstitel als Browsertitel ausgegeben | |
| # id ändern!! | |
| #[globalVar = TSFE:id=999999] | |
| [PIDinRootline = 1,2,3] |
| ################# Title ############################ | |
| config.noPageTitle = 2 | |
| page.headerData.5 = TEXT | |
| page.headerData.5.field = subtitle//title | |
| page.headerData.5.noTrimWrap = |<title>Kunden-Name: |</title>| | |
| ################# Meta-Tags ######################## | |
| page.meta{ | |
| keywords.stdWrap.cObject = COA | |
| keywords.stdWrap.cObject { | |
| 10 = TEXT |
| # | |
| # CORS header support | |
| # | |
| # One way to use this is by placing it into a file called "cors_support" | |
| # under your Nginx configuration directory and placing the following | |
| # statement inside your **location** block(s): | |
| # | |
| # include cors_support; | |
| # | |
| # As of Nginx 1.7.5, add_header supports an "always" parameter which |
| <?php | |
| /** | |
| * categories | |
| * | |
| * \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\TYPO3\CMS\Extbase\Domain\Model\Category> | |
| * @lazy | |
| */ | |
| protected $categories; | |
| /** | |
| * MyModel constructor. |
| // https://dvcs.w3.org/hg/FXTF/raw-file/tip/filters/index.html | |
| // | |
| // grayscale ex: filter: grayscale(100%); | |
| // sepia ex: filter: sepia(100%); | |
| // saturate ex: filter: saturate(0%); | |
| // hue-rotate ex: filter: hue-rotate(45deg); | |
| // invert ex: filter: invert(100%); | |
| // brightness ex: filter: brightness(15%); | |
| // contrast ex: filter: contrast(200%); | |
| // blur ex: filter: blur(2px); |
| var socket = null; | |
| function bootstrap() { | |
| // 適当な図形を描画 | |
| var c = document.getElementById('mycanvas'); | |
| var ctx = c.getContext('2d'); | |
| ctx.globalalpha = 0.3; | |
| for(var i=0; i<1000; i++) { | |
| ctx.beginPath(); |