You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2017/05/10 19:19:21 UTC

[1/3] beam git commit: Remove trailing whitespace

Repository: beam
Updated Branches:
  refs/heads/release-2.0.0 4ab73a999 -> d6bc8b834


Remove trailing whitespace


Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/6602cd3a
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/6602cd3a
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/6602cd3a

Branch: refs/heads/release-2.0.0
Commit: 6602cd3af074b866a5c06d3ed19116dd2bfec610
Parents: 4ab73a9
Author: Sourabh Bajaj <so...@google.com>
Authored: Tue May 9 17:02:57 2017 -0700
Committer: Sourabh Bajaj <so...@google.com>
Committed: Wed May 10 12:13:34 2017 -0700

----------------------------------------------------------------------
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/6602cd3a/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 1202c54..52c056f 100644
--- a/README.md
+++ b/README.md
@@ -71,8 +71,8 @@ Have ideas for new Runners? See the [JIRA](https://issues.apache.org/jira/browse
 
 Please refer to the [Quickstart](http://beam.apache.org/get-started/quickstart/) available on our website.
 
-If you'd like to build and install the whole project from the source distribution, you may need some additional tools installed 
-in your system. In a Debian-based distribution: 
+If you'd like to build and install the whole project from the source distribution, you may need some additional tools installed
+in your system. In a Debian-based distribution:
 
 ```
 sudo apt-get install \


[3/3] beam git commit: This closes #3058

Posted by al...@apache.org.
This closes #3058


Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/d6bc8b83
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/d6bc8b83
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/d6bc8b83

Branch: refs/heads/release-2.0.0
Commit: d6bc8b83449c953dd615830cf9365c14a4f000ea
Parents: 4ab73a9 4ba330a
Author: Ahmet Altay <al...@google.com>
Authored: Wed May 10 12:19:07 2017 -0700
Committer: Ahmet Altay <al...@google.com>
Committed: Wed May 10 12:19:07 2017 -0700

----------------------------------------------------------------------
 README.md                     |  4 ++--
 sdks/python/generate_pydoc.sh | 15 +++++++++------
 2 files changed, 11 insertions(+), 8 deletions(-)
----------------------------------------------------------------------



[2/3] beam git commit: [BEAM-2250] remove experimental and internal things from pydoc

Posted by al...@apache.org.
[BEAM-2250] remove experimental and internal things from pydoc


Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/4ba330a5
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/4ba330a5
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/4ba330a5

Branch: refs/heads/release-2.0.0
Commit: 4ba330a5a22e9b9f0aec49dcd6cb51f303ebbd9b
Parents: 6602cd3
Author: Sourabh Bajaj <so...@google.com>
Authored: Wed May 10 12:04:20 2017 -0700
Committer: Sourabh Bajaj <so...@google.com>
Committed: Wed May 10 12:13:57 2017 -0700

----------------------------------------------------------------------
 sdks/python/generate_pydoc.sh | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/4ba330a5/sdks/python/generate_pydoc.sh
----------------------------------------------------------------------
diff --git a/sdks/python/generate_pydoc.sh b/sdks/python/generate_pydoc.sh
index 6039942..1fea6f1 100755
--- a/sdks/python/generate_pydoc.sh
+++ b/sdks/python/generate_pydoc.sh
@@ -31,21 +31,24 @@ rm -rf target/docs/*
 
 mkdir -p target/docs/source
 
-# Exclude autogenerated API message definition files that aren't part of SDK.
-excluded_internal_clients=(
+# Exclude internal/experimental files from the documentation.
+excluded_internal_code=(
+    apache_beam/examples/
     apache_beam/internal/clients/
     apache_beam/io/gcp/internal/clients/
+    apache_beam/runners/api/
+    apache_beam/runners/test/
+    apache_beam/runners/portability/
+    apache_beam/runners/worker/
     apache_beam/runners/dataflow/internal/clients/
-    apache_beam/examples/complete/juliaset/setup.py)
+    apache_beam/testing/data/)
 
 python $(type -p sphinx-apidoc) -f -o target/docs/source apache_beam \
-    "${excluded_internal_clients[@]}" "*_test.py"
+    "${excluded_internal_code[@]}" "*_test.py"
 
 # Remove Cython modules from doc template; they won't load
 sed -i -e '/.. automodule:: apache_beam.coders.stream/d' \
     target/docs/source/apache_beam.coders.rst
-sed -i -e '/.. automodule:: apache_beam.runners.worker.statesampler/d' \
-    target/docs/source/apache_beam.runners.worker.rst
 
 # Create the configuration and index files
 cat > target/docs/source/conf.py <<'EOF'