123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- ##########################
- # IBM Confidential
- #
- # OCO Source Materials
- #
- # IBM Cognos Products: cpscrn
- #
- # (C) Copyright IBM Corp. 2005, 2013
- #
- # The source code for this program is not published or otherwise divested of its trade secrets, irrespective of what has been deposited with the U.S. Copyright Office.
- #
- ##########################
- #################################################################
- # Properties file for Cognos Portal Services #
- # #
- # This file should be loaded by the XTS engine upon startup. #
- # #
- # Values contained in this file override those specified in #
- # xts.properties, or in additional properties files loaded #
- # prior to this one. See the comments for the property #
- # "resource.properties" in xts.properties. #
- # #
- #################################################################
- #################################
- # XTS Function Classes #
- #################################
- function.class.getVersion=com.cognos.cps.bseries.xts.CCPSGetVersionFunction
- function.class.delay=com.cognos.cps.bseries.xts.CPSDelayFunction
- #################################
- # XTS Transform Classes #
- #################################
- transform.class.WSRPRewrite=com.cognos.cps.bseries.xts.CCPSWSRPMarkupResponseTransform
- transform.class.AsmStateEncode=com.cognos.cps.bseries.xts.pagelet.assembler.AssemblerStateEncode
- transform.class.AsmStateDecode=com.cognos.cps.bseries.xts.pagelet.assembler.AssemblerStateDecode
- transform.class.CPSWEB=com.cognos.cps.portlet.CPSWebRewriter
- #################################
- # XTS Request Classes #
- #################################
- request.class.CACHE=com.cognos.cps.bseries.xts.CPSCacheRequest
- request.class.NAV=com.cognos.cps.bseries.xts.request.nav.NAVRequest
- request.class.ASSEMBLER=com.cognos.cps.bseries.xts.pagelet.assembler.AssemblerRequest
- request.class.CONSUMER=com.cognos.cps.bseries.xts.pagelet.consumer.ConsumerRequest
- request.class.STORAGE=com.cognos.cps.bseries.xts.pagelet.storage.StorageRequest
- request.class.PRODUCERS=com.cognos.cps.bseries.xts.CPSProducersRequest
- ######################################
- # CPS Cache configuration properties #
- ######################################
- properties.config.cps.cache.timeToIdleSeconds=1800
- properties.config.cps.cache.timeToLiveSeconds=86400
- properties.config.cps.cache.checkExpiryIntervalSeconds=300
- properties.config.cps.storage.cache.timeToIdleSeconds=86400
- properties.config.cps.storage.cache.timeToValidateSeconds=3600
- properties.config.cps.storage.cache.checkExpiryIntervalSeconds=7200
- #####################################
- # Prefetch configuration properties #
- #####################################
- properties.config.prefetch.cps=gateway,webcontentRootURI,internalDispatcher,sdk,CPS,cps2.platform,serverLocale,cps4.portlet.ui.hide.empty.selector,cps4.portlet.ui.rss.timeoutSeconds
- #################################
- # Portal Services settings #
- #################################
- # cps2.help.path: documentation folder path (e.g. "documentation" or "cwsdocs")
- #
- cps2.help.path=documentation
- # cps2.help.supportedLangs: space-delimited supported locales for help and copyright (e.g. "en")
- #
- cps2.help.supportedLangs=en fr de ja
- # cps2.help.file: help book name (e.g. "ug_cra.html" or "cps_ag.html")
- cps2.help.bookFile=ug_cra.html
- #cps2.help.file: help book name used from bux,(uses same help id as within cps)
- cps2.help.bookFileIWidget=ug_buxc.html
- # cps2.copyright.file: copyright file name (e.g. "cognos_copyright_en.html" or "cws_cpyright_en.html")
- # use "@@" as a placeholder replacement for the user's locale id.
- #
- cps2.copyright.file=documentation/cognos_copyright.html
- cps2.copyright.locale=true
- # cps2.about.notforresale: display the "NOT FOR RESALE" flag in our about dialog
- #
- cps2.about.notforresale=false
- # cps2.platform: combines all parameters above using XML syntax
- cps2.platform=<platform><help><path>$(cps2.help.path)</path><supportedLangs>$(cps2.help.supportedLangs)</supportedLangs><bookFile>$(cps2.help.bookFile)</bookFile><bookFileIWidget>$(cps2.help.bookFileIWidget)</bookFileIWidget><copyrightFile locale="$(cps2.copyright.locale)">$(cps2.copyright.file)</copyrightFile></help><about><notForResale>$(cps2.about.notforresale)</notForResale></about></platform>
- # cps4.portlet.ui.hide.empty.selector: hide the items selector when not needed
- cps4.portlet.ui.hide.empty.selector=true
- # cps4.portlet.ui.rss.timeout: connection timeout in seconds used in the RSS portlet when connecting to an RSS feed.
- cps4.portlet.ui.rss.timeoutSeconds=20
- # cps4.fragment.autoregistration: enable/disable fragment auto registration service when not needed.
- cps4.fragment.autoregistration=true
|