diff --git a/README.md b/README.md index e74fee0..5d2ac8a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/com.coala.core/src/com/coala/core/utils/DialogUtils.java b/com.coala.core/src/com/coala/core/utils/DialogUtils.java index 4d28e7d..f858230 100644 --- a/com.coala.core/src/com/coala/core/utils/DialogUtils.java +++ b/com.coala.core/src/com/coala/core/utils/DialogUtils.java @@ -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(); } diff --git a/com.coala.core/src/com/coala/core/utils/ExternalUtils.java b/com.coala.core/src/com/coala/core/utils/ExternalUtils.java index 7cf4552..e0ed29a 100644 --- a/com.coala.core/src/com/coala/core/utils/ExternalUtils.java +++ b/com.coala.core/src/com/coala/core/utils/ExternalUtils.java @@ -29,7 +29,7 @@ public class ExternalUtils { /** * Invoke coala binary. - * + * * @param file * The IFile to run the analysis on. * @param bear @@ -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"); @@ -108,7 +108,7 @@ public void onProcessFailed(ExecuteException executeException) { /** * Run coala using the .coafile in the project directory. - * + * * @param path * The path to the project's root. * @param project @@ -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"); @@ -174,7 +174,7 @@ public void onProcessFailed(ExecuteException executeException) { /** * Get details of all bears that are available on the user's system. - * + * * @return JSONArray containing details of bears. */ public static JSONArray getAvailableBears() throws ExecuteException, IOException { @@ -214,7 +214,7 @@ private static ArrayList getBearSettings(String bearName) /** * Process the JSON output of coala and add marker for each problem. - * + * * @param json * Output of running coala. * @param file @@ -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. - * + * * @param json * Output of running coala. * @param project @@ -300,7 +300,7 @@ public static void processJsonAndMark(String json, IProject project) throws IOEx /** * Searches for the given binary in the PATH environmental variable. - * + * * @param binary * The executable that needs to be checked * @return True is the binary is present, false otherwise @@ -333,7 +333,7 @@ private static boolean isWindows() { /** * Creates a problem marker. - * + * * @param file * The IFile to add markers on. * @param lineNum diff --git a/com.coala.feature/feature.xml b/com.coala.feature/feature.xml index e9b8e0c..02e0618 100644 --- a/com.coala.feature/feature.xml +++ b/com.coala.feature/feature.xml @@ -5,9 +5,9 @@ version="1.0.0.qualifier" provider-name="coala"> - + 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.