http://mobiforge.com/developing/story/programming-apple-push-notification-services
Author Archive
Adding canonical tags
temp.canonical = COA
temp.canonical.10 = TEXT
temp.canonical.10 {
typolink {
parameter.data = TSFE:id
addQueryString = 1
addQueryString {
method = GET
// vermeide doppelte id:
exclude = id
}
returnLast = url
}
wrap =
}
BEUSER清除指定page缓存
You can enable “flash icon” clear cache command for common BEuser, just add this code to user’s and/or user’s group TSconfig
options.clearCache.pages = 1
options.clearCache.all = 1
TSMENU给指定页面加class
NO.ATagParams =
NO.ATagParams.append = TEXT
NO.ATagParams.append.value = class="lightbox"
NO.ATagParams.append.if {
value.field = uid
equals = 77
}
Use strong and em instead of b and i Tags
By default the RTE in TYPO3 creates and tags which have no semantic meaning but just represent a visual style. Therefore these tags are considered deprecated in modern web design, just like the font-tag. People use CSS to decide if something should be bold or italic. Therefore web developers have switched to strong and em tags which do have a semantic meaning.
Put the following in your TS Setup to convert and tags to and (continue reading…)
typo3 gzip
### Begin: Compression via TYPO3 ###
# Compressing resource files will save bandwidth and so improve loading speed especially for users
# with slower internet connections. TYPO3 can compress the .js and .css files for you.
# *) Uncomment the following lines and
# *) Set $TYPO3_CONF_VARS['BE']['compressionLevel'] = '9' for the Backend
# *) Set $TYPO3_CONF_VARS['FE']['compressionLevel'] = '9' together with the TypoScript properties
# config.compressJs=1 and config.compressCss=1 in typoscript for GZIP compression of Frontend JS and CSS files.
AddType "text/javascript" .gzip
AddType "text/css" .gzip
AddEncoding gzip .gzip
### End: Compression via TYPO3 ###


