Skip to content

Commit ade62e2

Browse files
authored
Rename python-runner to python-editor (elyra-ai#721)
1 parent 2e8c788 commit ade62e2

16 files changed

+12
-12
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ uninstall:
5555
$(call UNINSTALL_LAB_EXTENSION,@elyra/code-snippet-extension)
5656
$(call UNINSTALL_LAB_EXTENSION,@elyra/metadata-editor-extension)
5757
$(call UNINSTALL_LAB_EXTENSION,@elyra/pipeline-editor-extension)
58-
$(call UNINSTALL_LAB_EXTENSION,@elyra/python-runner-extension)
58+
$(call UNINSTALL_LAB_EXTENSION,@elyra/python-editor-extension)
5959
$(call UNINSTALL_LAB_EXTENSION,@jupyterlab/toc)
6060
pip uninstall -y jupyterlab-git
6161
pip uninstall -y elyra
@@ -96,7 +96,7 @@ install-ui: build-ui
9696
$(call INSTALL_LAB_EXTENSION,code-snippet)
9797
$(call INSTALL_LAB_EXTENSION,metadata-editor)
9898
$(call INSTALL_LAB_EXTENSION,pipeline-editor)
99-
$(call INSTALL_LAB_EXTENSION,python-runner)
99+
$(call INSTALL_LAB_EXTENSION,python-editor)
100100

101101
install-external-extensions:
102102
pip install --upgrade jupyterlab-git==$(GIT_VERSION)
@@ -133,7 +133,7 @@ dist-ui: build-ui
133133
$(call PACKAGE_LAB_EXTENSION,code-snippet)
134134
$(call PACKAGE_LAB_EXTENSION,metadata-editor)
135135
$(call PACKAGE_LAB_EXTENSION,pipeline-editor)
136-
$(call PACKAGE_LAB_EXTENSION,python-runner)
136+
$(call PACKAGE_LAB_EXTENSION,python-editor)
137137
cd dist && curl -o jupyterlab-git-$(GIT_VERSION).tgz $$(npm view @jupyterlab/git@$(GIT_VERSION) dist.tarball) && cd -
138138
cd dist && curl -o jupyterlab-toc-$(TOC_VERSION).tgz $$(npm view @jupyterlab/toc@$(TOC_VERSION) dist.tarball) && cd -
139139

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Known labextensions:
102102
@elyra/code-snippet-extension <VERSION> enabled OK*
103103
@elyra/metadata-editor-extension <VERSION> enabled OK*
104104
@elyra/pipeline-editor-extension <VERSION> enabled OK*
105-
@elyra/python-runner-extension <VERSION> enabled OK*
105+
@elyra/python-editor-extension <VERSION> enabled OK*
106106
@elyra/theme-extension <VERSION> enabled OK*
107107
@jupyterlab/git v0.20.0 enabled OK
108108
@jupyterlab/toc v4.0.0 enabled OK

docs/source/developer_guide/trackers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const tracker = new WidgetTracker<PythonFileEditor>({
3535
namespace: PYTHON_EDITOR_NAMESPACE
3636
});
3737
```
38-
where `PYTHON_EDITOR_NAMESPACE = 'elyra-python-runner-extension'`
38+
where `PYTHON_EDITOR_NAMESPACE = 'elyra-python-editor-extension'`
3939

4040

4141
### Pipeline Editor Trackers

docs/source/getting_started/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Known labextensions:
6969
@elyra/code-snippet-extension <VERSION> enabled OK*
7070
@elyra/metadata-editor-extension <VERSION> enabled OK*
7171
@elyra/pipeline-editor-extension <VERSION> enabled OK*
72-
@elyra/python-runner-extension <VERSION> enabled OK*
72+
@elyra/python-editor-extension <VERSION> enabled OK*
7373
@elyra/theme-extension <VERSION> enabled OK*
7474
@jupyterlab/git v0.20.0 enabled OK
7575
@jupyterlab/toc v4.0.0 enabled OK

docs/source/getting_started/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ create python scripts directly from the workspace launcher, and leveraging the
7676
**Hybrid Runtime Support** to allow users to locally edit their scripts and execute
7777
them against local or cloud-based resources seamlessly.
7878

79-
![Enhanced Python Support](../images/python-runner.png)
79+
![Enhanced Python Support](../images/python-editor.png)
8080

8181
#### Reusable Code Snippets
8282

File renamed without changes.
File renamed without changes.

docs/source/user_guide/enhanced-python-support.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Elyra provides **Enhanced Python Support** where Python scripts can be developed
2121
executed. It also leverages the **Hybrid Runtime Support** to enable running
2222
these scripts in remote environments.
2323

24-
![Enhanced Python Support](../images/python-runner.gif)
24+
![Enhanced Python Support](../images/python-editor.gif)
2525

2626
The execution of the python script leverages the available `Python based Kernels`. This enables
2727
users to run their scripts in different configurations and environments.
@@ -37,4 +37,4 @@ allowing users to run their scripts with remote kernels with more specialized re
3737

3838
The Elyra python editor is based on the JupyterLab editor which is currently based on CodeMirror.
3939

40-
![Python Editor Components](../images/python-runner-components.png)
40+
![Python Editor Components](../images/python-editor-components.png)

packages/python-runner/package.json packages/python-editor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@elyra/python-runner-extension",
2+
"name": "@elyra/python-editor-extension",
33
"version": "1.0.0-dev",
44
"description": "JupyterLab extension - Run python files using a kernel runtime",
55
"keywords": [

packages/python-runner/src/index.ts packages/python-editor/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import { PythonFileEditorFactory, PythonFileEditor } from './PythonFileEditor';
3737

3838
const PYTHON_FACTORY = 'PyEditor';
3939
const PYTHON = 'python';
40-
const PYTHON_EDITOR_NAMESPACE = 'elyra-python-runner-extension';
40+
const PYTHON_EDITOR_NAMESPACE = 'elyra-python-editor-extension';
4141

4242
const commandIDs = {
4343
createNewPython: 'pyeditor:create-new-python-file',
@@ -71,7 +71,7 @@ const extension: JupyterFrontEndPlugin<void> = {
7171
menu: IMainMenu | null,
7272
launcher: ILauncher | null
7373
) => {
74-
console.log('Elyra - python-runner extension is activated!');
74+
console.log('Elyra - python-editor extension is activated!');
7575

7676
const factory = new PythonFileEditorFactory({
7777
editorServices,
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)