Skip to content

Commit 4568b56

Browse files
committed
standardize labextension plugin IDs
1 parent 401675f commit 4568b56

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],
@@ -81,7 +81,7 @@ export const rtcContentProvider: JupyterFrontEndPlugin<ICollaborativeContentProv
8181
* Plugin to register the shared model factory for the content type 'file'.
8282
*/
8383
export const yfile: JupyterFrontEndPlugin<void> = {
84-
id: '@jupyter/server-documents/docprovider-extension:yfile',
84+
id: '@jupyter/server-documents:yfile',
8585
description:
8686
"Plugin to register the shared model factory for the content type 'file'",
8787
autoStart: true,
@@ -106,7 +106,7 @@ export const yfile: JupyterFrontEndPlugin<void> = {
106106
* Plugin to register the shared model factory for the content type 'notebook'.
107107
*/
108108
export const ynotebook: JupyterFrontEndPlugin<void> = {
109-
id: '@jupyter/server-documents/docprovider-extension:ynotebook',
109+
id: '@jupyter/server-documents:ynotebook',
110110
description:
111111
"Plugin to register the shared model factory for the content type 'notebook'",
112112
autoStart: true,
@@ -157,7 +157,7 @@ export const ynotebook: JupyterFrontEndPlugin<void> = {
157157
* The default collaborative drive provider.
158158
*/
159159
export const logger: JupyterFrontEndPlugin<void> = {
160-
id: '@jupyter/server-documents/docprovider-extension:logger',
160+
id: '@jupyter/server-documents:rtc-drive-logger',
161161
description: 'A logging plugin for debugging purposes.',
162162
autoStart: true,
163163
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)