Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# coala for Eclipse

[![Build Status](https://travis-ci.org/coala-analyzer/coala-eclipse.svg?branch=master)](https://travis-ci.org/coala-analyzer/coala-eclipse)
[![Build Status](https://travis-ci.org/coala/coala-eclipse.svg?branch=master)](https://travis-ci.org/coala/coala-eclipse)

This package offers a plugin for the Eclipse to use the code analysis software [coala](https://github.com/coala-analyzer/coala) inside the IDE.
This package offers a plugin for the Eclipse to use the code analysis software [coala](https://github.com/coala/coala) inside the IDE.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion com.coala.core/src/com/coala/core/utils/DialogUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class DialogUtils {
public static void installcoalaDialog() {
URI coalaWebsite = null;
try {
coalaWebsite = new URI("http://coala-analyzer.org");
coalaWebsite = new URI("http://coala.io");
} catch (URISyntaxException ex) {
ex.printStackTrace();
}
Expand Down
18 changes: 9 additions & 9 deletions com.coala.core/src/com/coala/core/utils/ExternalUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ExternalUtils {

/**
* Invoke coala binary.
*
*
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unrelated change

* @param file
* The IFile to run the analysis on.
* @param bear
Expand Down Expand Up @@ -80,7 +80,7 @@ public void onProcessFailed(ExecuteException executeException) {
System.out.println("coala ran successfully.");
} else if (exitValue == 2 | exitValue == 130) {
DialogUtils.showErrorDialog("Running coala failed",
"Invalid arguments were passed.\nThis is a bug please report this at https://gitter.im/coala-analyzer/coala");
"Invalid arguments were passed.\nThis is a bug please report this at https://gitter.im/coala/coala");
} else if (exitValue == 4) {
DialogUtils.showErrorDialog("Unsupported Python version",
"The Python version installed is not supported by coala");
Expand Down Expand Up @@ -108,7 +108,7 @@ public void onProcessFailed(ExecuteException executeException) {

/**
* Run coala using the .coafile in the project directory.
*
*
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unrelated change

* @param path
* The path to the project's root.
* @param project
Expand Down Expand Up @@ -145,7 +145,7 @@ public void onProcessFailed(ExecuteException executeException) {
System.out.println("coala ran successfully.");
} else if (exitValue == 2 | exitValue == 130) {
DialogUtils.showErrorDialog("Running coala failed",
"Invalid arguments were passed.\nThis is a bug please report this at https://gitter.im/coala-analyzer/coala");
"Invalid arguments were passed.\nThis is a bug please report this at https://gitter.im/coala/coala");
} else if (exitValue == 4) {
DialogUtils.showErrorDialog("Unsupported Python version",
"The Python version installed is not supported by coala");
Expand Down Expand Up @@ -174,7 +174,7 @@ public void onProcessFailed(ExecuteException executeException) {

/**
* Get details of all bears that are available on the user's system.
*
*
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unrelated change

* @return JSONArray containing details of bears.
*/
public static JSONArray getAvailableBears() throws ExecuteException, IOException {
Expand Down Expand Up @@ -214,7 +214,7 @@ private static ArrayList<String> getBearSettings(String bearName)

/**
* Process the JSON output of coala and add marker for each problem.
*
*
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unrelated change

* @param json
* Output of running coala.
* @param file
Expand Down Expand Up @@ -256,7 +256,7 @@ public static void processJsonAndMark(String json, IFile file) throws IOExceptio

/**
* Process the JSON output of coala and add marker for each problem.
*
*
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unrelated change

* @param json
* Output of running coala.
* @param project
Expand Down Expand Up @@ -300,7 +300,7 @@ public static void processJsonAndMark(String json, IProject project) throws IOEx

/**
* Searches for the given binary in the PATH environmental variable.
*
*
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unrelated change

* @param binary
* The executable that needs to be checked
* @return True is the binary is present, false otherwise
Expand Down Expand Up @@ -333,7 +333,7 @@ private static boolean isWindows() {

/**
* Creates a problem marker.
*
*
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unrelated change

* @param file
* The IFile to add markers on.
* @param lineNum
Expand Down
4 changes: 2 additions & 2 deletions com.coala.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
version="1.0.0.qualifier"
provider-name="coala">

<description url="http://coala-analyzer.org/">
<description url="http://coala.io/">
The coala Eclipse plug-in provides static code analysis using coala.
Visit http://coala-analyzer.org/ for more information.
Visit http://coala.io/ for more information.
</description>

<license url="https://www.gnu.org/licenses/agpl.txt">
Expand Down