config.properties 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # +----------------------------------------------------------------------------+
  2. # | IBM Confidential
  3. # | OCO Source Materials
  4. # | IBM Cognos Products: BUX
  5. # | (C) Copyright IBM Corp. 2009, 2011
  6. # |
  7. # | The source code for this program is not published or otherwise
  8. # | divested of its trade secrets, irrespective of what has been deposited
  9. # | with the U.S. Copyright Office.
  10. # +---------------------------------------------------------------------------+
  11. #bibus settings
  12. atom.config.bibus.dispatcherURI = http://localhost:9300/p2pd/servlet/dispatch
  13. atom.config.bibus.contentManagerURI = http://localhost:9300/p2pd/servlet
  14. #http client settings
  15. atom.http.maxConnectionsPerHost = 50
  16. atom.http.maxTotalConnections = 50
  17. atom.http.connectionTimeout = 30
  18. #http client cache settings, maxage (in secs)
  19. atom.http.cache.maxage = 0
  20. #proxy settings for debugging
  21. atom.proxy.enabled = false
  22. atom.proxy.host = localhost
  23. atom.proxy.port = 8888
  24. #compact output for json and dojo
  25. atom.view.compact = true
  26. #setting for showing or hiding report parts header and footer atom entries
  27. atom.filters.entry.showReportPartsHeaders = false
  28. atom.filters.entry.showReportPartsFooters = false
  29. #setting for auto-expanding single page report parts in atom entry
  30. atom.filters.entry.expandReportPartsSinglePage = true
  31. # settings that control which link we use to build a link to the HTML
  32. # viewer iwidget. The idea is that if the entry doesn't have an iwidget
  33. # link added by a more specific test then well add a link to the HTML
  34. # viewer widget. That widget will display one of the rel=alternate links of the
  35. # entry. But what if the entry has more than one alternate representation?
  36. # We pick the one with the mime-type with highest weight as configured by these
  37. # properties.
  38. # negative weight means never build a link for this type. Note that we
  39. # use this to prevent building a HTML viewer link for application/atom+xml. I
  40. # did this mainly to avoid breaking a bunch of unit tests. We may have to
  41. # revisit that.
  42. atom.config.htmlviewer.defaultweight=0.01
  43. atom.config.htmlviewer.type.1=text/html
  44. atom.config.htmlviewer.weight.1=1.0
  45. atom.config.htmlviewer.type.2=application/pdf
  46. atom.config.htmlviewer.weight.2=1.0
  47. atom.config.htmlviewer.type.3=application/atom+xml
  48. atom.config.htmlviewer.weight.3=-9.999
  49. # settings for RDS service
  50. # waitThreshold is in unit of second
  51. atom.config.rds.thumbnail.waitThreshold = 0