application.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "copyright":"Licensed Materials - Property of IBM. IBM Cognos Products: Notebook Copyright IBM Corp.2018,2019. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.",
  3. "label":"Notebook",
  4. "localizationFileName": "notebook-application",
  5. "features": [{
  6. "id": "com.ibm.bi.notebook",
  7. "toolItems":
  8. [
  9. {
  10. "id": "saveMenu",
  11. "containerId": "com.ibm.bi.glass.appbarLeadingGroup",
  12. "title": "%save_label",
  13. "label": "",
  14. "type": "Menu",
  15. "icon": "common-save",
  16. "weight": 990,
  17. "defaultAction": "com.ibm.bi.notebook.save",
  18. "actionController": "notebook/NotebookSaveActionHandler",
  19. "items":
  20. [
  21. {
  22. "id": "save",
  23. "label": "%save_label",
  24. "icon": "common-save",
  25. "weight": 500
  26. },
  27. {
  28. "id": "saveAs",
  29. "label": "%saveas_label",
  30. "icon": "common-save",
  31. "weight": 400
  32. }
  33. ]
  34. },
  35. {
  36. "id" : "insertableDataBtn",
  37. "containerId" : "com.ibm.bi.glass.navbarLeadingGroup",
  38. "icon": "tree-view_32",
  39. "label":"%sources",
  40. "type": "Button",
  41. "actionController": "notebook/NewDatasetActionHandler",
  42. "weight": 1000,
  43. "environment": {
  44. "capabilities": [
  45. "canEditJupyterNotebook"
  46. ]
  47. }
  48. }
  49. ],
  50. "excludeItems":
  51. [
  52. "com.ibm.bi.contentApps.teamFoldersSlideout",
  53. "com.ibm.bi.contentApps.myContentFoldersSlideout",
  54. "com.ibm.bi.contentApps.customFoldersSlideout",
  55. "com.ibm.bi.contentApps.mruSlideout",
  56. "com.ibm.bi.glass.common.operations",
  57. "com.ibm.bi.search.search",
  58. "com.ibm.ca.conversation.conversation"
  59. ],
  60. "content": {
  61. "module": "notebook/NotebookView"
  62. }
  63. }],
  64. "config": {
  65. "requirejs": {
  66. "paths": {
  67. "notebook": "js/notebook"
  68. },
  69. "map": {
  70. "*": {}
  71. },
  72. "bundles": {
  73. "notebook/bundles/component.bridge": [
  74. "notebook/NewDatasetActionHandler",
  75. "notebook/NotebookSaveActionHandler",
  76. "notebook/NotebookView"
  77. ]
  78. }
  79. }
  80. }
  81. }