[python, ds] convert jupyter-core and ds.remoteInterpreter to v2,

GitOrigin-RevId: 1e9d89af8a64e3cc20fc78b08c7adf87b5a1cf6b
This commit is contained in:
Ilya.Kazakevich
2024-01-17 22:07:32 +01:00
committed by intellij-monorepo-bot
parent 0a074b85f4
commit ec41330082
3 changed files with 13 additions and 4 deletions

View File

@@ -0,0 +1,3 @@
<idea-plugin package="com.intellij.jupyter.core" xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="/META-INF/jupyter-core.xml"/>
</idea-plugin>

View File

@@ -1,9 +1,12 @@
<!-- Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. --> <!-- Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude"> <idea-plugin package="com.intellij.jupyter.viewOnly">
<xi:include href="/META-INF/jupyter-core.xml" xpointer="xpointer(/idea-plugin/*)"/> <dependencies>
<module name="intellij.jupyter.core"/>
</dependencies>
<extensions defaultExtensionNs="com.intellij"> <extensions defaultExtensionNs="com.intellij">
<httpRequestHandler id="jupyter-view-only" implementation="com.intellij.jupyter.viewOnly.JupyterViewOnlyHandler"/> <httpRequestHandler id="jupyter-view-only" implementation="com.intellij.jupyter.viewOnly.JupyterViewOnlyHandler"/>
<fileEditorProvider id="jupyter-view-only-provider" implementation="com.intellij.jupyter.viewOnly.JupyterViewOnlyProvider" fileType="Jupyter"/> <fileEditorProvider id="jupyter-view-only-provider" implementation="com.intellij.jupyter.viewOnly.JupyterViewOnlyProvider"
fileType="Jupyter"/>
</extensions> </extensions>
</idea-plugin> </idea-plugin>

View File

@@ -12,7 +12,10 @@
<xi:include href="/META-INF/pycharm-community-and-pro-customization.xml"/> <xi:include href="/META-INF/pycharm-community-and-pro-customization.xml"/>
<xi:include href="/META-INF/pycharm-community-promo.xml"/> <xi:include href="/META-INF/pycharm-community-promo.xml"/>
<xi:include href="/META-INF/tips-pycharm-community.xml"/> <xi:include href="/META-INF/tips-pycharm-community.xml"/>
<xi:include href="/META-INF/jupyter-view-only.xml"/> <content>
<module name="intellij.jupyter.core"/>
<module name="intellij.jupyter.viewOnly"/>
</content>
</idea-plugin> </idea-plugin>