123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- {
- "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.",
- "label":"Notebook",
- "features":[
- {
- "id":"com.ibm.bi.notebook",
- "actions":[
- {
- "id":"com.ibm.bi.contentApps.defaultAction.jupyterNotebook",
- "items":[
- {
- "controller":"notebook/OpenNotebookActionHandler",
- "weight":1200
- }
- ]
- }
- ],
- "contextMenus": [
- {
- "id": "listMenuContribution",
- "containerId": "com.ibm.bi.contentApps.listViewMenu",
- "actionController": "notebook/OpenNotebookActionHandler",
- "type": "MenuContribution",
- "environment": {
- "capabilities": [
- "canEditJupyterNotebook"
- ]
- },
- "items": [
- {
- "id": "com.ibm.bi.notebook.edit",
- "label": "%edit_notebook",
- "icon": "common-edit",
- "weight": 1100
- },
- {
- "id": "com.ibm.bi.notebook.view",
- "label": "%view_notebook",
- "icon": "common-view",
- "weight": 1100
- }
- ]
- }
- ],
- "collectionItems": [
- {
- "containerId": "com.ibm.bi.glass.common.sharedResources",
- "id": "shareNotebook",
- "label": "Share",
- "types": ["jupyterNotebook"],
- "perspectives": ["notebook"],
- "actionController": "notebook/ShareNotebookActionHandler"
- }
- ],
- "toolItems":[
- {
- "id":"createNotebook",
- "containerId":"com.ibm.bi.glass.common.createMenu",
- "type":"MenuContribution",
- "actionController":"notebook/NewNotebookActionHandler",
- "items":[
- {
- "id":"createNotebook",
- "label":"%notebook",
- "icon":"data-notebook",
- "weight":650,
- "environment": {
- "capabilities": ["canEditJupyterNotebook"]
- }
- }
- ]
- }
- ]
- },
- {
- "id":"com.ibm.bi.notebook.run",
- "contextMenus": [
- {
- "id": "listMenuContributionRun",
- "containerId": "com.ibm.bi.contentApps.listViewMenu",
- "actionController": "notebook/RunNotebookActionHandler",
- "type": "MenuContribution",
- "environment": {
- "capabilities": [
- "canEditJupyterNotebook"
- ]
- },
- "items": [
- {
- "id": "com.ibm.bi.notebook.run",
- "label": "%run_notebook",
- "icon": "common-run",
- "weight": 1100
- }
- ]
- }
- ]
- },
- {
- "id": "com.ibm.bi.notebook.quickLaunch",
- "collectionItems": [{
- "id": "quickLaunchNotebook",
- "containerId": "com.ibm.bi.bahome_common.quickLaunchTargets",
- "type": "DropTargetContribution",
- "actionController": "notebook/OpenNotebookActionHandler",
- "fileUploadModule": "notebook/UploadModuleActionHandler",
- "targetId": "jupyterNotebook",
- "requiredType": "jupyterNotebook",
- "label": "%notebook",
- "icon": "data-notebook",
- "fileTypes": ["ipynb"],
- "weight": 200,
- "environment": {
- "capabilities": [
- "canEditJupyterNotebook"
- ]
- }
- }]
- }
- ],
- "config": {
- "requirejs": {
- "paths": {
- "notebook": "js/notebook"
- },
- "map": {
- "*": {}
- },
- "bundles": {
- "notebook/bundles/glass.bridge": [
- "notebook/NewNotebookActionHandler",
- "notebook/OpenNotebookActionHandler",
- "notebook/ShareNotebookActionHandler",
- "notebook/PropertyMenuNotebook",
- "notebook/UploadModuleActionHandler",
- "notebook/RunNotebookActionHandler"
- ]
- }
- }
- }
- }
|