Skip to content

Commit 02b9972

Browse files
committed
Purge references to PyImageJ
This script engine is for use with scyjava, which is part of SciJava. The PyImageJ project does not need to be used (although it can be!).
1 parent 51831b4 commit 02b9972

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<version>0.3.1-SNAPSHOT</version>
1414

1515
<name>SciJava Scripting: Python</name>
16-
<description>Python scripting language plugin to be used with PyImageJ.</description>
16+
<description>Python scripting language plugin to be used via scyjava.</description>
1717
<url>https://github.com/scijava/scripting-python</url>
1818
<inceptionYear>2021</inceptionYear>
1919
<organization>

src/main/java/org/scijava/plugins/scripting/python/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*-
22
* #%L
3-
* Python scripting language plugin to be used with PyImageJ.
3+
* Python scripting language plugin to be used via scyjava.
44
* %%
55
* Copyright (C) 2021 - 2023 SciJava developers.
66
* %%

src/main/java/org/scijava/plugins/scripting/python/PythonScriptEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* #%L
3-
* Python scripting language plugin to be used with PyImageJ.
3+
* Python scripting language plugin to be used via scyjava.
44
* %%
55
* Copyright (C) 2021 - 2023 SciJava developers.
66
* %%

src/main/java/org/scijava/plugins/scripting/python/PythonScriptLanguage.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* #%L
3-
* Python scripting language plugin to be used with PyImageJ.
3+
* Python scripting language plugin to be used via scyjava.
44
* %%
55
* Copyright (C) 2021 - 2023 SciJava developers.
66
* %%
@@ -37,13 +37,13 @@
3737
import org.scijava.script.ScriptLanguage;
3838

3939
/**
40-
* An adapter for Python (PyImageJ) to the SciJava scripting interface.
40+
* An adapter for Python (scyjava) to the SciJava scripting interface.
4141
*
4242
* @author Curtis Rueden
4343
* @author Karl Duderstadt
4444
* @see ScriptEngine
4545
*/
46-
@Plugin(type = ScriptLanguage.class, name = "Python (PyImageJ)", priority = Priority.VERY_LOW)
46+
@Plugin(type = ScriptLanguage.class, name = "Python (scyjava)", priority = Priority.VERY_LOW)
4747
public class PythonScriptLanguage extends AbstractScriptLanguage {
4848

4949
@Override

src/main/java/org/scijava/plugins/scripting/python/PythonScriptSyntaxHighlighter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* #%L
3-
* Python scripting language plugin to be used with PyImageJ.
3+
* Python scripting language plugin to be used via scyjava.
44
* %%
55
* Copyright (C) 2021 - 2023 SciJava developers.
66
* %%
@@ -34,11 +34,11 @@
3434
import org.scijava.ui.swing.script.SyntaxHighlighter;
3535

3636
/**
37-
* SyntaxHighlighter for Python (PyImageJ).
37+
* SyntaxHighlighter for Python (scyjava).
3838
*
3939
* @author Karl Duderstadt
4040
*/
41-
@Plugin(type = SyntaxHighlighter.class, name = "python-(pyimagej)")
41+
@Plugin(type = SyntaxHighlighter.class, name = "python-(scyjava)")
4242
public class PythonScriptSyntaxHighlighter extends PythonTokenMaker implements
4343
SyntaxHighlighter
4444
{

0 commit comments

Comments
 (0)