Skip to content

Commit 3f0f101

Browse files
committed
standardize labextension plugin IDs
1 parent 866b683 commit 3f0f101

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/docprovider/filebrowser.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const TWO_SESSIONS_WARNING =
4141

4242
export const rtcContentProvider: JupyterFrontEndPlugin<ICollaborativeContentProvider> =
4343
{
44-
id: '@jupyter/server-documents/docprovider-extension:content-provider',
44+
id: '@jupyter/server-documents:rtc-content-provider',
4545
description: 'The RTC content provider',
4646
provides: ICollaborativeContentProvider,
4747
requires: [ITranslator],
@@ -82,7 +82,7 @@ export const rtcContentProvider: JupyterFrontEndPlugin<ICollaborativeContentProv
8282
* Plugin to register the shared model factory for the content type 'file'.
8383
*/
8484
export const yfile: JupyterFrontEndPlugin<void> = {
85-
id: '@jupyter/server-documents/docprovider-extension:yfile',
85+
id: '@jupyter/server-documents:yfile',
8686
description:
8787
"Plugin to register the shared model factory for the content type 'file'",
8888
autoStart: true,
@@ -107,7 +107,7 @@ export const yfile: JupyterFrontEndPlugin<void> = {
107107
* Plugin to register the shared model factory for the content type 'notebook'.
108108
*/
109109
export const ynotebook: JupyterFrontEndPlugin<void> = {
110-
id: '@jupyter/server-documents/docprovider-extension:ynotebook',
110+
id: '@jupyter/server-documents:ynotebook',
111111
description:
112112
"Plugin to register the shared model factory for the content type 'notebook'",
113113
autoStart: true,
@@ -158,7 +158,7 @@ export const ynotebook: JupyterFrontEndPlugin<void> = {
158158
* The default collaborative drive provider.
159159
*/
160160
export const logger: JupyterFrontEndPlugin<void> = {
161-
id: '@jupyter/server-documents/docprovider-extension:logger',
161+
id: '@jupyter/server-documents:rtc-drive-logger',
162162
description: 'A logging plugin for debugging purposes.',
163163
autoStart: true,
164164
optional: [ILoggerRegistry, IEditorTracker, INotebookTracker, ITranslator],

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const plugin: JupyterFrontEndPlugin<void> = {
9090
* Jupyter plugin creating a global awareness for RTC.
9191
*/
9292
export const rtcGlobalAwarenessPlugin: JupyterFrontEndPlugin<IAwareness> = {
93-
id: '@jupyter/server-documents/collaboration-extension:rtcGlobalAwareness',
93+
id: '@jupyter/server-documents:rtc-global-awareness',
9494
description: 'Add global awareness to share working document of users.',
9595
requires: [IStateDB],
9696
provides: IGlobalAwareness,
@@ -172,7 +172,7 @@ export const executionIndicator: JupyterFrontEndPlugin<void> = {
172172
* A plugin that provides a kernel status item to the status bar.
173173
*/
174174
export const kernelStatus: JupyterFrontEndPlugin<IKernelStatusModel> = {
175-
id: '@jupyterlab/apputils-extension:awareness-kernel-status',
175+
id: '@jupyter/server-documents:awareness-kernel-status',
176176
description: 'Provides the kernel status indicator model.',
177177
autoStart: true,
178178
requires: [IStatusBar],

src/notebook-factory/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type NotebookFactoryPlugin =
1414
* Custom `Notebook` factory plugin.
1515
*/
1616
export const notebookFactoryPlugin: NotebookFactoryPlugin = {
17-
id: '@jupyter/server-documents/notebook-extension:factory',
17+
id: '@jupyter/server-documents:notebook-factory',
1818
description: 'Provides the notebook cell factory.',
1919
provides: NotebookPanel.IContentFactory,
2020
requires: [IEditorServices],

0 commit comments

Comments
 (0)