mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-20 13:31:28 +07:00
Migrate python copyright to v2
GitOrigin-RevId: bb3d02627319556681d4a192d83df4a2bfed21e1
This commit is contained in:
committed by
intellij-monorepo-bot
parent
85ac2fa3f3
commit
6a308b21a0
@@ -27,13 +27,13 @@ The Python plug-in provides smart editing for Python scripts. The feature set of
|
||||
<depends optional="true" config-file="python-plugin-goland.xml">com.intellij.modules.go</depends>
|
||||
<depends optional="true" config-file="python-plugin-rustrover.xml">com.intellij.modules.rustrover</depends>
|
||||
<depends optional="true" config-file="python-rest-plugin.xml">org.jetbrains.plugins.rest</depends>
|
||||
<depends optional="true" config-file="python-copyright-plugin.xml">com.intellij.copyright</depends>
|
||||
<content>
|
||||
<module name="intellij.python.terminal"/>
|
||||
<module name="intellij.python.featuresTrainer"/>
|
||||
<module name="intellij.python.markdown"/>
|
||||
<module name="intellij.python.grazie"/>
|
||||
<module name="intellij.python.langInjection"/>
|
||||
<module name="intellij.python.copyright"/>
|
||||
</content>
|
||||
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
<idea-plugin>
|
||||
<extensions defaultExtensionNs="com.intellij.copyright">
|
||||
<updater filetype="Python" implementationClass="com.jetbrains.python.copyright.PyUpdateCopyrightsProvider"/>
|
||||
</extensions>
|
||||
</idea-plugin>
|
||||
@@ -0,0 +1,8 @@
|
||||
<idea-plugin package="com.intellij.python.copyright">
|
||||
<dependencies>
|
||||
<plugin id="com.intellij.copyright"/>
|
||||
</dependencies>
|
||||
<extensions defaultExtensionNs="com.intellij.copyright">
|
||||
<updater filetype="Python" implementationClass="com.intellij.python.copyright.PyUpdateCopyrightsProvider"/>
|
||||
</extensions>
|
||||
</idea-plugin>
|
||||
@@ -1,5 +1,5 @@
|
||||
// Copyright 2000-2018 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.
|
||||
package com.jetbrains.python.copyright
|
||||
package com.intellij.python.copyright
|
||||
|
||||
import com.intellij.openapi.fileTypes.FileType
|
||||
import com.intellij.openapi.module.Module
|
||||
@@ -2,13 +2,13 @@
|
||||
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||
<xi:include href="/META-INF/PlatformLangXmlPlugin.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
||||
<xi:include href="/META-INF/python-core-plugin.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
||||
<xi:include href="python-copyright-plugin.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
||||
<xi:include href="python-rest-plugin.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
<applicationService serviceInterface="com.jetbrains.python.console.PythonConsoleRunnerFactory"
|
||||
serviceImplementation="com.jetbrains.python.console.PydevConsoleRunnerFactory" />
|
||||
</extensions>
|
||||
<content>
|
||||
<module name="intellij.python.copyright"/>
|
||||
<module name="intellij.python.markdown"/>
|
||||
<module name="intellij.python.grazie"/>
|
||||
<module name="intellij.python.langInjection"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// Copyright 2000-2018 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.
|
||||
package com.jetbrains.python.copyright
|
||||
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
package com.intellij.python.copyright
|
||||
|
||||
import com.jetbrains.python.fixtures.PyTestCase
|
||||
import com.maddyhome.idea.copyright.CopyrightProfile
|
||||
Reference in New Issue
Block a user