You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by jo...@apache.org on 2020/05/31 16:34:59 UTC

[incubator-heron] branch master updated: correcting heron urls (#3532)

This is an automated email from the ASF dual-hosted git repository.

joshfischer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new b16853b  correcting heron urls (#3532)
b16853b is described below

commit b16853beabf13e67de02796fa5d9f6830b676c2e
Author: Josh Fischer <jo...@joshfischer.io>
AuthorDate: Sun May 31 11:34:50 2020 -0500

    correcting heron urls (#3532)
    
    * correcting heron urls
    
    * clean up
---
 heron/tools/admin/src/python/main.py                                  | 2 +-
 heron/tools/cli/src/python/main.py                                    | 2 +-
 heron/tools/common/src/python/utils/heronparser.py                    | 2 +-
 heron/tools/explorer/src/python/main.py                               | 4 ++--
 heron/tools/ui/src/python/args.py                                     | 2 +-
 release/maven/heron-kafka.template.pom                                | 2 +-
 release/maven/heron-no-kryo.template.pom                              | 2 +-
 release/maven/heron-with-kryo.template.pom                            | 2 +-
 scripts/packages/template_bin.sh                                      | 2 +-
 scripts/packages/tests_template_bin.sh                                | 2 +-
 website2/docs/getting-started-local-single-node.md                    | 2 +-
 website2/docs/user-manuals-heron-cli.md                               | 2 +-
 .../version-0.20.0-incubating/getting-started-local-single-node.md    | 2 +-
 .../version-0.20.0-incubating/user-manuals-heron-cli.md               | 2 +-
 14 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/heron/tools/admin/src/python/main.py b/heron/tools/admin/src/python/main.py
index 4986d30..9d01881 100644
--- a/heron/tools/admin/src/python/main.py
+++ b/heron/tools/admin/src/python/main.py
@@ -34,7 +34,7 @@ Log = log.Log
 HELP_EPILOG = '''Getting more help:
   heron help <command> Prints help and options for <command>
 
-For detailed documentation, go to http://heronstreaming.io'''
+For detailed documentation, go to https://heron.incubator.apache.org'''
 
 # pylint: disable=protected-access,superfluous-parens
 class _HelpAction(argparse._HelpAction):
diff --git a/heron/tools/cli/src/python/main.py b/heron/tools/cli/src/python/main.py
index c37ce09..ac43e8d 100644
--- a/heron/tools/cli/src/python/main.py
+++ b/heron/tools/cli/src/python/main.py
@@ -51,7 +51,7 @@ Log = log.Log
 HELP_EPILOG = '''Getting more help:
   heron help <command> Prints help and options for <command>
 
-For detailed documentation, go to http://heronstreaming.io'''
+For detailed documentation, go to https://heron.incubator.apache.org'''
 
 
 # pylint: disable=protected-access,superfluous-parens
diff --git a/heron/tools/common/src/python/utils/heronparser.py b/heron/tools/common/src/python/utils/heronparser.py
index 7a7acae..142e7e9 100755
--- a/heron/tools/common/src/python/utils/heronparser.py
+++ b/heron/tools/common/src/python/utils/heronparser.py
@@ -44,7 +44,7 @@ expressions = [re.compile(x) for x in filters]
 help_epilog = '''Getting more help:
   heron help <command> Prints help and options for <command>
 
-For detailed documentation, go to http://heronstreaming.io'''
+For detailed documentation, go to https://heron.incubator.apache.org'''
 
 class HeronArgumentParser(argparse.ArgumentParser):
   """
diff --git a/heron/tools/explorer/src/python/main.py b/heron/tools/explorer/src/python/main.py
index 4147e04..3093ac9 100644
--- a/heron/tools/explorer/src/python/main.py
+++ b/heron/tools/explorer/src/python/main.py
@@ -54,8 +54,8 @@ class SubcommandHelpFormatter(argparse.RawDescriptionHelpFormatter):
 def create_parser():
   """ create parser """
   help_epilog = '''Getting more help:
-  heron-explorer help <command>     Disply help and options for <command>\n
-  For detailed documentation, go to http://heronstreaming.io'''
+  heron-explorer help <command>     Display help and options for <command>\n
+  For detailed documentation, go to https://heron.incubator.apache.org'''
 
   parser = argparse.ArgumentParser(
       prog='heron-explorer',
diff --git a/heron/tools/ui/src/python/args.py b/heron/tools/ui/src/python/args.py
index 14f996d..3fbf806 100644
--- a/heron/tools/ui/src/python/args.py
+++ b/heron/tools/ui/src/python/args.py
@@ -102,7 +102,7 @@ def create_parsers():
   :return:
   '''
   parser = argparse.ArgumentParser(
-      epilog='For detailed documentation, go to http://heronstreaming.io',
+      epilog='For detailed documentation, go to https://heron.incubator.apache.org',
       usage="%(prog)s [options] [help]",
       add_help=False)
 
diff --git a/release/maven/heron-kafka.template.pom b/release/maven/heron-kafka.template.pom
index 5e5e2ca..781d722 100644
--- a/release/maven/heron-kafka.template.pom
+++ b/release/maven/heron-kafka.template.pom
@@ -41,7 +41,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
   <packaging>jar</packaging>
   <name>NAME</name>
   <description>DESCRIPTION</description>
-  <url>http://www.heronstreaming.io</url>
+  <url>https://heron.incubator.apache.org</url>
   <licenses>
     <license>
       <name>The Apache License, Version 2.0</name>
diff --git a/release/maven/heron-no-kryo.template.pom b/release/maven/heron-no-kryo.template.pom
index 055c1c3..28d4a6c 100644
--- a/release/maven/heron-no-kryo.template.pom
+++ b/release/maven/heron-no-kryo.template.pom
@@ -24,7 +24,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
   <packaging>jar</packaging>
   <name>NAME</name>
   <description>DESCRIPTION</description>
-  <url>http://www.heronstreaming.io</url>
+  <url>https://heron.incubator.apache.org</url>
   <licenses>
     <license>
       <name>The Apache License, Version 2.0</name>
diff --git a/release/maven/heron-with-kryo.template.pom b/release/maven/heron-with-kryo.template.pom
index d4f250d..6413908 100644
--- a/release/maven/heron-with-kryo.template.pom
+++ b/release/maven/heron-with-kryo.template.pom
@@ -24,7 +24,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
   <packaging>jar</packaging>
   <name>NAME</name>
   <description>DESCRIPTION</description>
-  <url>http://www.heronstreaming.io</url>
+  <url>https://heron.incubator.apache.org</url>
   <licenses>
     <license>
       <name>The Apache License, Version 2.0</name>
diff --git a/scripts/packages/template_bin.sh b/scripts/packages/template_bin.sh
index d66ffb6..5ca3a48 100755
--- a/scripts/packages/template_bin.sh
+++ b/scripts/packages/template_bin.sh
@@ -15,7 +15,7 @@
 # Heron self-extractable installer for client package
 
 # Set help URL
-getting_started_url=http://heronstreaming.io/docs/getting-started
+getting_started_url=https://heron.incubator.apache.org/docs/getting-started-local-single-node/
 
 # Installation and etc prefix can be overriden from command line
 install_prefix=${1:-"/usr/local/heron"}
diff --git a/scripts/packages/tests_template_bin.sh b/scripts/packages/tests_template_bin.sh
index b3604a2..1ca166a 100755
--- a/scripts/packages/tests_template_bin.sh
+++ b/scripts/packages/tests_template_bin.sh
@@ -16,7 +16,7 @@
 # used only for integration tests
 
 # Set help URL
-getting_started_url=http://heronstreaming.io/docs/getting-started
+getting_started_url=https://heron.incubator.apache.org/docs/getting-started-local-single-node/
 
 # Installation and etc prefix can be overriden from command line
 install_prefix=${1:-"/usr/local/herontests"}
diff --git a/website2/docs/getting-started-local-single-node.md b/website2/docs/getting-started-local-single-node.md
index 6b94d68..984b090 100644
--- a/website2/docs/getting-started-local-single-node.md
+++ b/website2/docs/getting-started-local-single-node.md
@@ -214,7 +214,7 @@ Available commands:
     submit             Submit a topology
     version            Print version of heron-cli
 
-For detailed documentation, go to http://heronstreaming.io
+For detailed documentation, go to https://heron.incubator.apache.org
 ```
 
 To invoke help output for a command, run `heron help COMMAND`. Here's an
diff --git a/website2/docs/user-manuals-heron-cli.md b/website2/docs/user-manuals-heron-cli.md
index 2d2c96c..02892c7 100644
--- a/website2/docs/user-manuals-heron-cli.md
+++ b/website2/docs/user-manuals-heron-cli.md
@@ -42,7 +42,7 @@ Heron is now installed!
 
 Make sure you have "/Users/$USER/bin" in your path.
 
-See http://heronstreaming.io/docs/getting-started.html on how to use Heron!
+See https://heron.incubator.apache.org/docs/getting-started-local-single-node/ on how to use Heron!
 
 ....
 ```
diff --git a/website2/website/versioned_docs/version-0.20.0-incubating/getting-started-local-single-node.md b/website2/website/versioned_docs/version-0.20.0-incubating/getting-started-local-single-node.md
index b6e05db..130eeb4 100644
--- a/website2/website/versioned_docs/version-0.20.0-incubating/getting-started-local-single-node.md
+++ b/website2/website/versioned_docs/version-0.20.0-incubating/getting-started-local-single-node.md
@@ -215,7 +215,7 @@ Available commands:
     submit             Submit a topology
     version            Print version of heron-cli
 
-For detailed documentation, go to http://heronstreaming.io
+For detailed documentation, go to https://heron.incubator.apache.org
 ```
 
 To invoke help output for a command, run `heron help COMMAND`. Here's an
diff --git a/website2/website/versioned_docs/version-0.20.0-incubating/user-manuals-heron-cli.md b/website2/website/versioned_docs/version-0.20.0-incubating/user-manuals-heron-cli.md
index 1f8de7f..609cac3 100644
--- a/website2/website/versioned_docs/version-0.20.0-incubating/user-manuals-heron-cli.md
+++ b/website2/website/versioned_docs/version-0.20.0-incubating/user-manuals-heron-cli.md
@@ -43,7 +43,7 @@ Heron is now installed!
 
 Make sure you have "/Users/$USER/bin" in your path.
 
-See http://heronstreaming.io/docs/getting-started.html on how to use Heron!
+See https://heron.incubator.apache.org/docs/getting-started-local-single-node/ on how to use Heron!
 
 ....
 ```