mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 06:50:54 +07:00
[pycharm] DataView (fix): Moved invasive module intellij.notebooks.tables to a proper place. Dependencies cleanup. #CPP-38829 Fixed
GitOrigin-RevId: 2b9226d765d8242d3eb37248b9542145a632f8c5
This commit is contained in:
committed by
intellij-monorepo-bot
parent
1d8e237eeb
commit
3f6407f38f
1
.idea/modules.xml
generated
1
.idea/modules.xml
generated
@@ -595,7 +595,6 @@
|
||||
<module fileurl="file://$PROJECT_DIR$/plugins/ml-local-models/intellij.ml.models.local.iml" filepath="$PROJECT_DIR$/plugins/ml-local-models/intellij.ml.models.local.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/plugins/ml-local-models/java/intellij.ml.models.local.java.iml" filepath="$PROJECT_DIR$/plugins/ml-local-models/java/intellij.ml.models.local.java.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/platform/built-in-server/client/node-rpc-client/intellij.nodeRpcClient.iml" filepath="$PROJECT_DIR$/platform/built-in-server/client/node-rpc-client/intellij.nodeRpcClient.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/notebooks/tables/intellij.notebooks.tables.iml" filepath="$PROJECT_DIR$/notebooks/tables/intellij.notebooks.tables.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/notebooks/notebook-ui/intellij.notebooks.ui.iml" filepath="$PROJECT_DIR$/notebooks/notebook-ui/intellij.notebooks.ui.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/notebooks/visualization/intellij.notebooks.visualization.iml" filepath="$PROJECT_DIR$/notebooks/visualization/intellij.notebooks.visualization.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/plugins/package-search/intellij.packageSearch.iml" filepath="$PROJECT_DIR$/plugins/package-search/intellij.packageSearch.iml" />
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
<content>
|
||||
<module name="intellij.notebooks.visualization"/>
|
||||
<module name="intellij.notebooks.ui"/>
|
||||
<module name="intellij.notebooks.tables"/>
|
||||
<module name="intellij.xml.xmlbeans"/>
|
||||
<module name="intellij.platform.ide.newUiOnboarding"/>
|
||||
<module name="intellij.platform.ml.embeddings"/>
|
||||
|
||||
@@ -186,7 +186,6 @@
|
||||
<orderEntry type="module" module-name="intellij.toml" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.platform.tracing.ide" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.notebooks.visualization" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.notebooks.tables" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.keymap.eclipse" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.keymap.visualStudio" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.keymap.netbeans" scope="RUNTIME" />
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-resource" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="library" name="kotlin-stdlib" level="project" />
|
||||
<orderEntry type="module" module-name="intellij.platform.util" />
|
||||
</component>
|
||||
</module>
|
||||
@@ -1,2 +0,0 @@
|
||||
<idea-plugin package="com.intellij.notebooks.tables">
|
||||
</idea-plugin>
|
||||
@@ -6,7 +6,6 @@
|
||||
<content>
|
||||
<module name="intellij.notebooks.visualization"/>
|
||||
<module name="intellij.notebooks.ui"/>
|
||||
<module name="intellij.notebooks.tables"/>
|
||||
<module name="intellij.platform.ide.newUiOnboarding"/>
|
||||
<module name="intellij.platform.ml.embeddings"/>
|
||||
<module name="intellij.ide.startup.importSettings"/>
|
||||
|
||||
@@ -148,6 +148,5 @@
|
||||
<orderEntry type="module" module-name="intellij.commandInterface" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.python.community.impl.huggingFace" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.python.syntax" />
|
||||
<orderEntry type="module" module-name="intellij.notebooks.tables" />
|
||||
</component>
|
||||
</module>
|
||||
@@ -20,6 +20,5 @@
|
||||
<orderEntry type="module" module-name="intellij.platform.ide.util.io" />
|
||||
<orderEntry type="module" module-name="intellij.platform.debugger.impl" />
|
||||
<orderEntry type="module" module-name="intellij.python.syntax.core" />
|
||||
<orderEntry type="module" module-name="intellij.notebooks.tables" />
|
||||
</component>
|
||||
</module>
|
||||
@@ -14,8 +14,8 @@ import com.jetbrains.python.debugger.pydev.dataviewer.DataViewerCommandBuilder;
|
||||
import com.jetbrains.python.debugger.pydev.dataviewer.DataViewerCommandResult;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import com.intellij.notebooks.tables.TableCommandParameters;
|
||||
import com.intellij.notebooks.tables.TableCommandType;
|
||||
import com.jetbrains.python.tables.TableCommandParameters;
|
||||
import com.jetbrains.python.tables.TableCommandType;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@ import com.jetbrains.python.debugger.pydev.dataviewer.DataViewerCommandBuilder;
|
||||
import com.jetbrains.python.debugger.pydev.dataviewer.DataViewerCommandResult;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import com.intellij.notebooks.tables.TableCommandParameters;
|
||||
import com.intellij.notebooks.tables.TableCommandType;
|
||||
import com.jetbrains.python.tables.TableCommandParameters;
|
||||
import com.jetbrains.python.tables.TableCommandType;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.*;
|
||||
|
||||
@@ -18,8 +18,8 @@ import com.jetbrains.python.debugger.pydev.dataviewer.DataViewerCommandBuilder;
|
||||
import com.jetbrains.python.debugger.pydev.dataviewer.DataViewerCommandResult;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import com.intellij.notebooks.tables.TableCommandParameters;
|
||||
import com.intellij.notebooks.tables.TableCommandType;
|
||||
import com.jetbrains.python.tables.TableCommandParameters;
|
||||
import com.jetbrains.python.tables.TableCommandType;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.PrintWriter;
|
||||
|
||||
@@ -12,8 +12,8 @@ import com.jetbrains.python.debugger.pydev.dataviewer.DataViewerCommandBuilder;
|
||||
import com.jetbrains.python.debugger.pydev.dataviewer.DataViewerCommandResult;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import com.intellij.notebooks.tables.TableCommandParameters;
|
||||
import com.intellij.notebooks.tables.TableCommandType;
|
||||
import com.jetbrains.python.tables.TableCommandParameters;
|
||||
import com.jetbrains.python.tables.TableCommandType;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
@@ -28,8 +28,8 @@ import com.jetbrains.python.debugger.pydev.transport.DebuggerTransport;
|
||||
import com.jetbrains.python.debugger.pydev.transport.ServerModeDebuggerTransport;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import com.intellij.notebooks.tables.TableCommandParameters;
|
||||
import com.intellij.notebooks.tables.TableCommandType;
|
||||
import com.jetbrains.python.tables.TableCommandParameters;
|
||||
import com.jetbrains.python.tables.TableCommandType;
|
||||
|
||||
import java.net.ServerSocket;
|
||||
import java.security.SecureRandom;
|
||||
|
||||
@@ -3,8 +3,8 @@ package com.jetbrains.python.debugger.pydev
|
||||
|
||||
import com.intellij.util.asSafely
|
||||
import com.jetbrains.python.debugger.pydev.tables.PyDevCommandParameters
|
||||
import com.intellij.notebooks.tables.TableCommandParameters
|
||||
import com.intellij.notebooks.tables.TableCommandType
|
||||
import com.jetbrains.python.tables.TableCommandParameters
|
||||
import com.jetbrains.python.tables.TableCommandType
|
||||
|
||||
class TableCommand(debugger: RemoteDebugger?,
|
||||
threadId: String?,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
package com.jetbrains.python.debugger.pydev.tables
|
||||
|
||||
import com.intellij.notebooks.tables.TableCommandParameters
|
||||
import com.jetbrains.python.tables.TableCommandParameters
|
||||
|
||||
class PyDevCommandParameters(val start: Int, val end: Int) : TableCommandParameters
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.intellij.notebooks.tables
|
||||
package com.jetbrains.python.tables
|
||||
|
||||
import com.intellij.openapi.util.IntellijInternalApi
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.intellij.notebooks.tables
|
||||
package com.jetbrains.python.tables
|
||||
|
||||
import com.intellij.openapi.util.IntellijInternalApi
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.intellij.notebooks.tables
|
||||
package com.jetbrains.python.tables
|
||||
|
||||
import com.intellij.openapi.util.IntellijInternalApi
|
||||
|
||||
@@ -46,8 +46,8 @@ import org.apache.thrift.TException;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import org.jetbrains.annotations.TestOnly;
|
||||
import com.intellij.notebooks.tables.TableCommandParameters;
|
||||
import com.intellij.notebooks.tables.TableCommandType;
|
||||
import com.jetbrains.python.tables.TableCommandParameters;
|
||||
import com.jetbrains.python.tables.TableCommandType;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
|
||||
@@ -76,8 +76,8 @@ import com.jetbrains.python.testing.AbstractPythonTestRunConfiguration;
|
||||
import org.jetbrains.annotations.Nls;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import com.intellij.notebooks.tables.TableCommandParameters;
|
||||
import com.intellij.notebooks.tables.TableCommandType;
|
||||
import com.jetbrains.python.tables.TableCommandParameters;
|
||||
import com.jetbrains.python.tables.TableCommandType;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.ServerSocket;
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
<plugin id="com.intellij.modules.platform"/>
|
||||
<plugin id="com.intellij.modules.lang"/>
|
||||
<plugin id="org.toml.lang"/>
|
||||
<module name="intellij.notebooks.tables"/>
|
||||
</dependencies>
|
||||
|
||||
<resource-bundle>messages.PyBundle</resource-bundle>
|
||||
|
||||
Reference in New Issue
Block a user