Regenerate website

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

Branch: refs/heads/asf-site
Commit: d9ade0584b0c4683594825df233a54ac3132787c
Parents: 57c0a0d
Author: Dan Halperin <[email protected]>
Authored: Wed Dec 28 23:46:00 2016 -0800
Committer: Dan Halperin <[email protected]>
Committed: Wed Dec 28 23:46:00 2016 -0800

----------------------------------------------------------------------
 content/documentation/programming-guide/index.html | 4 ++--
 content/documentation/runners/dataflow/index.html  | 2 +-
 content/documentation/runners/direct/index.html    | 2 +-
 content/documentation/runners/flink/index.html     | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam-site/blob/d9ade058/content/documentation/programming-guide/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/programming-guide/index.html 
b/content/documentation/programming-guide/index.html
index 1042062..2549abe 100644
--- a/content/documentation/programming-guide/index.html
+++ b/content/documentation/programming-guide/index.html
@@ -233,7 +233,7 @@
 
 <p>The pipeline configuration options determine, among other things, the <code 
class="highlighter-rouge">PipelineRunner</code> that determines where the 
pipeline gets executed: locally, or using a distributed back-end of your 
choice. Depending on where your pipeline gets executed and what your specifed 
Runner requires, the options can also help you specify other aspects of 
execution.</p>
 
-<p>To set your pipeline’s configuration options and create the pipeline, 
create an object of type <span class="language-java"><a 
href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/options/PipelineOptions.html">PipelineOptions</a></span><span
 class="language-py"><a 
href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py";>PipelineOptions</a></span>
 and pass it to <code class="highlighter-rouge">Pipeline.Create()</code>. The 
most common way to do this is by parsing arguments from the command-line:</p>
+<p>To set your pipeline’s configuration options and create the pipeline, 
create an object of type <span class="language-java"><a 
href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/sdk/options/PipelineOptions.html">PipelineOptions</a></span><span
 class="language-py"><a 
href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/pipeline_options.py";>PipelineOptions</a></span>
 and pass it to <code class="highlighter-rouge">Pipeline.Create()</code>. The 
most common way to do this is by parsing arguments from the command-line:</p>
 
 <div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="kd">public</span> <span 
class="kd">static</span> <span class="kt">void</span> <span 
class="nf">main</span><span class="o">(</span><span 
class="n">String</span><span class="o">[]</span> <span 
class="n">args</span><span class="o">)</span> <span class="o">{</span>
    <span class="c1">// Will parse the arguments passed into the application 
and construct a PipelineOptions</span>
@@ -246,7 +246,7 @@
 </code></pre>
 </div>
 
-<div class="language-py highlighter-rouge"><pre class="highlight"><code><span 
class="kn">from</span> <span class="nn">apache_beam.utils.options</span> <span 
class="kn">import</span> <span class="n">PipelineOptions</span>
+<div class="language-py highlighter-rouge"><pre class="highlight"><code><span 
class="kn">from</span> <span 
class="nn">apache_beam.utils.pipeline_options</span> <span 
class="kn">import</span> <span class="n">PipelineOptions</span>
 
 <span class="c"># Will parse the arguments passed into the application and 
construct a PipelineOptions</span>
 <span class="c"># Note that --help will print registered options.</span>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/d9ade058/content/documentation/runners/dataflow/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/dataflow/index.html 
b/content/documentation/runners/dataflow/index.html
index cc4e510..f61b477 100644
--- a/content/documentation/runners/dataflow/index.html
+++ b/content/documentation/runners/dataflow/index.html
@@ -256,7 +256,7 @@
 </tr>
 </table>
 
-<p>See the reference documentation for the  <span class="language-java"><a 
href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/dataflow/options/DataflowPipelineOptions.html">DataflowPipelineOptions</a></span><span
 class="language-python"><a 
href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py";>PipelineOptions</a></span>
 interface (and its subinterfaces) for the complete list of pipeline 
configuration options.</p>
+<p>See the reference documentation for the  <span class="language-java"><a 
href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/dataflow/options/DataflowPipelineOptions.html">DataflowPipelineOptions</a></span><span
 class="language-python"><a 
href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/pipeline_options.py";>PipelineOptions</a></span>
 interface (and its subinterfaces) for the complete list of pipeline 
configuration options.</p>
 
 <h2 id="additional-information-and-caveats">Additional information and 
caveats</h2>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/d9ade058/content/documentation/runners/direct/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/direct/index.html 
b/content/documentation/runners/direct/index.html
index 53d07db..335632f 100644
--- a/content/documentation/runners/direct/index.html
+++ b/content/documentation/runners/direct/index.html
@@ -180,7 +180,7 @@
 
 <p>When executing your pipeline from the command-line, set <code 
class="highlighter-rouge">runner</code> to <code 
class="highlighter-rouge">direct</code>. The default values for the other 
pipeline options are generally sufficient.</p>
 
-<p>See the reference documentation for the  <span class="language-java"><a 
href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/direct/DirectOptions.html"><code
 class="highlighter-rouge">DirectOptions</code></a></span><span 
class="language-python"><a 
href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py";><code
 class="highlighter-rouge">PipelineOptions</code></a></span> interface (and its 
subinterfaces) for defaults and the complete list of pipeline configuration 
options.</p>
+<p>See the reference documentation for the  <span class="language-java"><a 
href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/direct/DirectOptions.html"><code
 class="highlighter-rouge">DirectOptions</code></a></span><span 
class="language-python"><a 
href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/pipeline_options.py";><code
 class="highlighter-rouge">PipelineOptions</code></a></span> interface (and its 
subinterfaces) for defaults and the complete list of pipeline configuration 
options.</p>
 
 <h2 id="additional-information-and-caveats">Additional information and 
caveats</h2>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/d9ade058/content/documentation/runners/flink/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/runners/flink/index.html 
b/content/documentation/runners/flink/index.html
index d6fe0eb..0b3f87f 100644
--- a/content/documentation/runners/flink/index.html
+++ b/content/documentation/runners/flink/index.html
@@ -271,7 +271,7 @@
 </tr>
 </table>
 
-<p>See the reference documentation for the  <span class="language-java"><a 
href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/flink/FlinkPipelineOptions.html">FlinkPipelineOptions</a></span><span
 class="language-python"><a 
href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/options.py";>PipelineOptions</a></span>
 interface (and its subinterfaces) for the complete list of pipeline 
configuration options.</p>
+<p>See the reference documentation for the  <span class="language-java"><a 
href="/documentation/sdks/javadoc/0.3.0-incubating/index.html?org/apache/beam/runners/flink/FlinkPipelineOptions.html">FlinkPipelineOptions</a></span><span
 class="language-python"><a 
href="https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/utils/pipeline_options.py";>PipelineOptions</a></span>
 interface (and its subinterfaces) for the complete list of pipeline 
configuration options.</p>
 
 <h2 id="additional-information-and-caveats">Additional information and 
caveats</h2>
 

Reply via email to