You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by pa...@apache.org on 2015/06/07 14:10:28 UTC

[1/2] incubator-groovy git commit: change JRuby link to jruby.org

Repository: incubator-groovy
Updated Branches:
  refs/heads/GROOVY_2_4_X 7f6496add -> 236cffb13


change JRuby link to jruby.org


Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/8b4d48bc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/8b4d48bc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/8b4d48bc

Branch: refs/heads/GROOVY_2_4_X
Commit: 8b4d48bcb6f68b00557b0adde8b192378d76d96d
Parents: 7f6496a
Author: pascalschumacher <pa...@gmx.net>
Authored: Sun Jun 7 14:04:35 2015 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Jun 7 14:04:35 2015 +0200

----------------------------------------------------------------------
 subprojects/groovy-bsf/src/spec/doc/integrating-bsf.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/8b4d48bc/subprojects/groovy-bsf/src/spec/doc/integrating-bsf.adoc
----------------------------------------------------------------------
diff --git a/subprojects/groovy-bsf/src/spec/doc/integrating-bsf.adoc b/subprojects/groovy-bsf/src/spec/doc/integrating-bsf.adoc
index c79101d..257881e 100644
--- a/subprojects/groovy-bsf/src/spec/doc/integrating-bsf.adoc
+++ b/subprojects/groovy-bsf/src/spec/doc/integrating-bsf.adoc
@@ -9,7 +9,7 @@ normally hidden away by the BSF APIs. You just treat Groovy like any of the othe
 API.
 
 NOTE: Since Groovy has its own native support for integration with Java, you only need to worry about BSF if you also
-want to also be able to call other languages, e.g. http://jruby.codehaus.org/[JRuby] or if you want to remain very
+want to also be able to call other languages, e.g. http://jruby.org/[JRuby] or if you want to remain very
 loosely coupled from your scripting language.
 
 == Getting started


[2/2] incubator-groovy git commit: change JIRA links from codehaus to apache

Posted by pa...@apache.org.
change JIRA links from codehaus to apache


Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/236cffb1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/236cffb1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/236cffb1

Branch: refs/heads/GROOVY_2_4_X
Commit: 236cffb13f53689f61c5690321270c165a43e09c
Parents: 8b4d48b
Author: pascalschumacher <pa...@gmx.net>
Authored: Sun Jun 7 14:10:09 2015 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Jun 7 14:10:09 2015 +0200

----------------------------------------------------------------------
 src/main/org/codehaus/groovy/classgen/AsmClassGenerator.java     | 2 +-
 .../groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java        | 2 +-
 src/test/groovy/bugs/BadLineNumberOnExceptionBugTest.groovy      | 4 ++--
 src/test/groovy/bugs/Groovy3871Bug.groovy                        | 2 +-
 .../org/codehaus/groovy/transform/BaseScriptTransformTest.groovy | 2 +-
 .../transform/tailrec/TailRecursiveTransformationTest.groovy     | 2 +-
 .../main/groovy/org/codehaus/groovy/tools/DocGenerator.groovy    | 2 +-
 subprojects/groovy-groovysh/src/spec/doc/groovysh.adoc           | 2 +-
 .../groovy-json/src/test/groovy/groovy/json/CharBufTest.groovy   | 4 ++--
 .../groovy-json/src/test/groovy/groovy/json/IOTest.groovy        | 2 +-
 .../src/main/java/groovy/servlet/AbstractHttpServlet.java        | 4 ++--
 .../src/main/groovy/groovy/text/SimpleTemplateEngine.java        | 2 +-
 12 files changed, 15 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/src/main/org/codehaus/groovy/classgen/AsmClassGenerator.java
----------------------------------------------------------------------
diff --git a/src/main/org/codehaus/groovy/classgen/AsmClassGenerator.java b/src/main/org/codehaus/groovy/classgen/AsmClassGenerator.java
index 9e8437e..1c9a155 100644
--- a/src/main/org/codehaus/groovy/classgen/AsmClassGenerator.java
+++ b/src/main/org/codehaus/groovy/classgen/AsmClassGenerator.java
@@ -691,7 +691,7 @@ public class AsmClassGenerator extends ClassGenerator {
         Expression subExpression = expression.getExpression();
         // to not record the underlying MapExpression twice,
         // we disable the assertion tracker
-        // see http://jira.codehaus.org/browse/GROOVY-3421
+        // see https://issues.apache.org/jira/browse/GROOVY-3421
         controller.getAssertionWriter().disableTracker();
         subExpression.visit(this);
         controller.getOperandStack().box();

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java
----------------------------------------------------------------------
diff --git a/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java b/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java
index e4b115d..dddd8ea 100644
--- a/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java
+++ b/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java
@@ -632,7 +632,7 @@ public class StaticTypesCallSiteWriter extends CallSiteWriter implements Opcodes
                 "At line "+receiver.getLineNumber() + " column " + receiver.getColumnNumber() + "\n" +
                 "On receiver: "+receiver.getText() + " with message: "+message+" and arguments: "+arguments.getText()+"\n"+
                 "This method should not have been called. Please try to create a simple example reproducing this error and file" +
-                "a bug report at http://jira.codehaus.org/browse/GROOVY");
+                "a bug report at https://issues.apache.org/jira/browse/GROOVY");
     }
 
     private boolean trySubscript(final Expression receiver, final String message, final Expression arguments, ClassNode rType, final ClassNode aType) {

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/src/test/groovy/bugs/BadLineNumberOnExceptionBugTest.groovy
----------------------------------------------------------------------
diff --git a/src/test/groovy/bugs/BadLineNumberOnExceptionBugTest.groovy b/src/test/groovy/bugs/BadLineNumberOnExceptionBugTest.groovy
index c5103a5..7b82945 100644
--- a/src/test/groovy/bugs/BadLineNumberOnExceptionBugTest.groovy
+++ b/src/test/groovy/bugs/BadLineNumberOnExceptionBugTest.groovy
@@ -22,8 +22,8 @@ package groovy.bugs
  * Ensure that the correct line information is reported when an exception is thrown.
  * <p>
  * This test covers: <ul>
- * <li><a href="http://jira.codehaus.org/browse/GROOVY-3067">GROOVY-3067</a></li>
- * <li><a href="http://jira.codehaus.org/browse/GROOVY-2983">GROOVY-2983</a></li>
+ * <li><a href="https://issues.apache.org/jira/browse/GROOVY-3067">GROOVY-3067</a></li>
+ * <li><a href="https://issues.apache.org/jira/browse/GROOVY-2983">GROOVY-2983</a></li>
  *
  * @author Guillaume Laforge
  */

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/src/test/groovy/bugs/Groovy3871Bug.groovy
----------------------------------------------------------------------
diff --git a/src/test/groovy/bugs/Groovy3871Bug.groovy b/src/test/groovy/bugs/Groovy3871Bug.groovy
index f94d62d..692b282 100644
--- a/src/test/groovy/bugs/Groovy3871Bug.groovy
+++ b/src/test/groovy/bugs/Groovy3871Bug.groovy
@@ -19,7 +19,7 @@
 package groovy.bugs
 
 /**
- * Fix for http://jira.codehaus.org/browse/GROOVY-3871
+ * Fix for https://issues.apache.org/jira/browse/GROOVY-3871
  * @author Guillaume Laforge
  */
 class Groovy3871Bug extends GroovyTestCase {

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/src/test/org/codehaus/groovy/transform/BaseScriptTransformTest.groovy
----------------------------------------------------------------------
diff --git a/src/test/org/codehaus/groovy/transform/BaseScriptTransformTest.groovy b/src/test/org/codehaus/groovy/transform/BaseScriptTransformTest.groovy
index fc4c920..5ff2fa6 100644
--- a/src/test/org/codehaus/groovy/transform/BaseScriptTransformTest.groovy
+++ b/src/test/org/codehaus/groovy/transform/BaseScriptTransformTest.groovy
@@ -128,7 +128,7 @@ class BaseScriptTransformTest extends CompilableTestSupport {
     }
 
     void testBaseScriptAbstractMethod() {
-        // http://jira.codehaus.org/browse/GROOVY-6585
+        // https://issues.apache.org/jira/browse/GROOVY-6585
         CompilerConfiguration config = new CompilerConfiguration()
         config.scriptBaseClass = MyCustomScript.name
         GroovyShell shell = new GroovyShell(config)

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/src/test/org/codehaus/groovy/transform/tailrec/TailRecursiveTransformationTest.groovy
----------------------------------------------------------------------
diff --git a/src/test/org/codehaus/groovy/transform/tailrec/TailRecursiveTransformationTest.groovy b/src/test/org/codehaus/groovy/transform/tailrec/TailRecursiveTransformationTest.groovy
index 2372f7d..690685d 100644
--- a/src/test/org/codehaus/groovy/transform/tailrec/TailRecursiveTransformationTest.groovy
+++ b/src/test/org/codehaus/groovy/transform/tailrec/TailRecursiveTransformationTest.groovy
@@ -341,7 +341,7 @@ class TailRecursiveTransformationTest extends GroovyShellTestCase {
     }
 
     /**
-     * https://jira.codehaus.org/browse/GROOVY-6573
+     * https://issues.apache.org/jira/browse/GROOVY-6573
      */
     void testParameterIsUsedInRecursiveArgPositionedEarlier() {
         def target = evaluate('''

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/subprojects/groovy-docgenerator/src/main/groovy/org/codehaus/groovy/tools/DocGenerator.groovy
----------------------------------------------------------------------
diff --git a/subprojects/groovy-docgenerator/src/main/groovy/org/codehaus/groovy/tools/DocGenerator.groovy b/subprojects/groovy-docgenerator/src/main/groovy/org/codehaus/groovy/tools/DocGenerator.groovy
index f36502a..c787aa5 100644
--- a/subprojects/groovy-docgenerator/src/main/groovy/org/codehaus/groovy/tools/DocGenerator.groovy
+++ b/subprojects/groovy-docgenerator/src/main/groovy/org/codehaus/groovy/tools/DocGenerator.groovy
@@ -461,7 +461,7 @@ class DocGenerator {
 
         private static String linkify(String text, String packageName) {
             text.replaceAll(/\{@link\s+([^}]*)\s*\}/) { String all, String destination ->
-                // A class name cannot be omitted: https://jira.codehaus.org/browse/GROOVY-6740 TODO: remove DocUtil once fixed?
+                // A class name cannot be omitted: https://issues.apache.org/jira/browse/GROOVY-6740 TODO: remove DocUtil once fixed?
                 DocUtil.getLinkAnchor(destination, packageName)
             }
         }

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/subprojects/groovy-groovysh/src/spec/doc/groovysh.adoc
----------------------------------------------------------------------
diff --git a/subprojects/groovy-groovysh/src/spec/doc/groovysh.adoc b/subprojects/groovy-groovysh/src/spec/doc/groovysh.adoc
index 1fcd310..5a96b9d 100644
--- a/subprojects/groovy-groovysh/src/spec/doc/groovysh.adoc
+++ b/subprojects/groovy-groovysh/src/spec/doc/groovysh.adoc
@@ -534,7 +534,7 @@ Note that the command class must be found on classpath: you cannot define a new
 [[GroovyShell-Troubleshooting]]
 === Troubleshooting
 
-Please http://jira.codehaus.org/browse/GROOVY[report] any problems you
+Please https://issues.apache.org/jira/browse/GROOVY[report] any problems you
 run into. Please be sure to mark the JIRA issue with the `Groovysh`
 component.
 

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/subprojects/groovy-json/src/test/groovy/groovy/json/CharBufTest.groovy
----------------------------------------------------------------------
diff --git a/subprojects/groovy-json/src/test/groovy/groovy/json/CharBufTest.groovy b/subprojects/groovy-json/src/test/groovy/groovy/json/CharBufTest.groovy
index 80976ed..d19718e 100644
--- a/subprojects/groovy-json/src/test/groovy/groovy/json/CharBufTest.groovy
+++ b/subprojects/groovy-json/src/test/groovy/groovy/json/CharBufTest.groovy
@@ -64,8 +64,8 @@ class CharBufTest extends GroovyTestCase {
     }
 
     /**
-     * http://jira.codehaus.org/browse/GROOVY-6937
-     * http://jira.codehaus.org/browse/GROOVY-6852
+     * https://issues.apache.org/jira/browse/GROOVY-6937
+     * https://issues.apache.org/jira/browse/GROOVY-6852
      */
     void testGroovy6937and6852() {
         // using raw CharBuf directly

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/subprojects/groovy-json/src/test/groovy/groovy/json/IOTest.groovy
----------------------------------------------------------------------
diff --git a/subprojects/groovy-json/src/test/groovy/groovy/json/IOTest.groovy b/subprojects/groovy-json/src/test/groovy/groovy/json/IOTest.groovy
index a784336..3ec2266 100644
--- a/subprojects/groovy-json/src/test/groovy/groovy/json/IOTest.groovy
+++ b/subprojects/groovy-json/src/test/groovy/groovy/json/IOTest.groovy
@@ -43,7 +43,7 @@ class IOTest extends GroovyTestCase {
     }
 
     /**
-     * See https://jira.codehaus.org/browse/GROOVY-7132
+     * See https://issues.apache.org/jira/browse/GROOVY-7132
      */
     void testReadBumpy() {
         IO io = new IO()

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/subprojects/groovy-servlet/src/main/java/groovy/servlet/AbstractHttpServlet.java
----------------------------------------------------------------------
diff --git a/subprojects/groovy-servlet/src/main/java/groovy/servlet/AbstractHttpServlet.java b/subprojects/groovy-servlet/src/main/java/groovy/servlet/AbstractHttpServlet.java
index 9ad29c8..6ba0191 100644
--- a/subprojects/groovy-servlet/src/main/java/groovy/servlet/AbstractHttpServlet.java
+++ b/subprojects/groovy-servlet/src/main/java/groovy/servlet/AbstractHttpServlet.java
@@ -65,7 +65,7 @@ import javax.servlet.http.HttpServletRequest;
  * <p>
  * In order to support class-loading-troubles-debugging with Tomcat 4 or
  * higher, you can log the class loader responsible for loading some classes.
- * See <a href="http://jira.codehaus.org/browse/GROOVY-861">GROOVY-861</a> for details.
+ * See <a href="https://issues.apache.org/jira/browse/GROOVY-861">GROOVY-861</a> for details.
  * The servlet init parameter name is:
  * <pre>
  * log.GROOVY861 = false(default) | true
@@ -244,7 +244,7 @@ public abstract class AbstractHttpServlet extends HttpServlet implements Resourc
      */
     protected String getScriptUri(HttpServletRequest request) {
         /*
-         * Log some debug information for http://jira.codehaus.org/browse/GROOVY-861
+         * Log some debug information for https://issues.apache.org/jira/browse/GROOVY-861
          */
         if (logGROOVY861) {
             log("Logging request class and its class loader:");

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/236cffb1/subprojects/groovy-templates/src/main/groovy/groovy/text/SimpleTemplateEngine.java
----------------------------------------------------------------------
diff --git a/subprojects/groovy-templates/src/main/groovy/groovy/text/SimpleTemplateEngine.java b/subprojects/groovy-templates/src/main/groovy/groovy/text/SimpleTemplateEngine.java
index ec558dd..0d98178 100644
--- a/subprojects/groovy-templates/src/main/groovy/groovy/text/SimpleTemplateEngine.java
+++ b/subprojects/groovy-templates/src/main/groovy/groovy/text/SimpleTemplateEngine.java
@@ -320,7 +320,7 @@ public class SimpleTemplateEngine extends TemplateEngine {
                     }
                 }
                 /* Don't eat EOL chars in sections - as they are valid instruction separators.
-                 * See http://jira.codehaus.org/browse/GROOVY-980
+                 * See https://issues.apache.org/jira/browse/GROOVY-980
                  */
                 // if (c != '\n' && c != '\r') {
                 sw.write(c);