1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- # +----------------------------------------------------------------------------+
- # | IBM Confidential
- # | OCO Source Materials
- # | IBM Cognos Products: BUX
- # | (C) Copyright IBM Corp. 2009, 2011
- # |
- # | 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.
- # +---------------------------------------------------------------------------+
- #bibus settings
- atom.config.bibus.dispatcherURI = http://localhost:9300/p2pd/servlet/dispatch
- atom.config.bibus.contentManagerURI = http://localhost:9300/p2pd/servlet
- #http client settings
- atom.http.maxConnectionsPerHost = 50
- atom.http.maxTotalConnections = 50
- atom.http.connectionTimeout = 30
- #http client cache settings, maxage (in secs)
- atom.http.cache.maxage = 0
- #proxy settings for debugging
- atom.proxy.enabled = false
- atom.proxy.host = localhost
- atom.proxy.port = 8888
- #compact output for json and dojo
- atom.view.compact = true
- #setting for showing or hiding report parts header and footer atom entries
- atom.filters.entry.showReportPartsHeaders = false
- atom.filters.entry.showReportPartsFooters = false
- #setting for auto-expanding single page report parts in atom entry
- atom.filters.entry.expandReportPartsSinglePage = true
- # settings that control which link we use to build a link to the HTML
- # viewer iwidget. The idea is that if the entry doesn't have an iwidget
- # link added by a more specific test then well add a link to the HTML
- # viewer widget. That widget will display one of the rel=alternate links of the
- # entry. But what if the entry has more than one alternate representation?
- # We pick the one with the mime-type with highest weight as configured by these
- # properties.
- # negative weight means never build a link for this type. Note that we
- # use this to prevent building a HTML viewer link for application/atom+xml. I
- # did this mainly to avoid breaking a bunch of unit tests. We may have to
- # revisit that.
- atom.config.htmlviewer.defaultweight=0.01
- atom.config.htmlviewer.type.1=text/html
- atom.config.htmlviewer.weight.1=1.0
- atom.config.htmlviewer.type.2=application/pdf
- atom.config.htmlviewer.weight.2=1.0
- atom.config.htmlviewer.type.3=application/atom+xml
- atom.config.htmlviewer.weight.3=-9.999
- # settings for RDS service
- # waitThreshold is in unit of second
- atom.config.rds.thumbnail.waitThreshold = 0
|