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/8b84da8a
Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/8b84da8a
Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/8b84da8a

Branch: refs/heads/asf-site
Commit: 8b84da8ab6f210e90fcf53c125af4ce16cb787d7
Parents: c71edc8
Author: Davor Bonaci <[email protected]>
Authored: Mon Mar 6 15:21:07 2017 -0800
Committer: Davor Bonaci <[email protected]>
Committed: Mon Mar 6 15:21:07 2017 -0800

----------------------------------------------------------------------
 content/contribute/contribution-guide/index.html               | 6 ++++++
 .../documentation/pipelines/create-your-pipeline/index.html    | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam-site/blob/8b84da8a/content/contribute/contribution-guide/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/contribution-guide/index.html 
b/content/contribute/contribution-guide/index.html
index 5f8ec98..92e009a 100644
--- a/content/contribute/contribution-guide/index.html
+++ b/content/contribute/contribution-guide/index.html
@@ -156,6 +156,7 @@
   <li><a href="#engage" id="markdown-toc-engage">Engage</a>    <ul>
       <li><a href="#mailing-lists" id="markdown-toc-mailing-lists">Mailing 
list(s)</a></li>
       <li><a href="#jira-issue-tracker" 
id="markdown-toc-jira-issue-tracker">JIRA issue tracker</a></li>
+      <li><a href="#online-discussions" 
id="markdown-toc-online-discussions">Online discussions</a></li>
     </ul>
   </li>
   <li><a href="#design" id="markdown-toc-design">Design</a></li>
@@ -254,6 +255,11 @@
 
 <p>For moderate or large contributions, you should not start coding or writing 
a design document unless there is a corresponding JIRA issue assigned to you 
for that work. Simple changes, like fixing typos, do not require an associated 
issue.</p>
 
+<h3 id="online-discussions">Online discussions</h3>
+<p>We don’t have an official IRC channel. Most of the online discussions 
happen in the <a href="https://apachebeam.slack.com/";>Apache Beam Slack 
channel</a>. If you want access, you need to send an email to the user mailing 
list to <a href="mailto:[email protected]?subject=Regarding Beam Slack 
Channel&amp;body=Hello%0D%0A%0ACan someone please add me to the Beam slack 
channel?%0D%0A%0AThanks.">request access</a>.</p>
+
+<p>Chat rooms are great for quick questions or discussions on specialized 
topics. Remember that we strongly encourage communication via the mailing 
lists, and we prefer to discuss more complex subjects by email. Developers 
should be careful to move or duplicate all the official or useful discussions 
to the issue tracking system and/or the dev mailing list.</p>
+
 <h2 id="design">Design</h2>
 
 <p>To avoid potential frustration during the code review cycle, we encourage 
you to clearly scope and design non-trivial contributions with the Beam 
community before you start coding.</p>

http://git-wip-us.apache.org/repos/asf/beam-site/blob/8b84da8a/content/documentation/pipelines/create-your-pipeline/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/pipelines/create-your-pipeline/index.html 
b/content/documentation/pipelines/create-your-pipeline/index.html
index c7cf3fb..e360299 100644
--- a/content/documentation/pipelines/create-your-pipeline/index.html
+++ b/content/documentation/pipelines/create-your-pipeline/index.html
@@ -272,7 +272,7 @@
 <p>The following example code shows how to <code 
class="highlighter-rouge">apply</code> a <code 
class="highlighter-rouge">TextIO.Read</code> root transform to read data from a 
text file. The transform is applied to a <code 
class="highlighter-rouge">Pipeline</code> object <code 
class="highlighter-rouge">p</code>, and returns a pipeline data set in the form 
of a <code class="highlighter-rouge">PCollection&lt;String&gt;</code>:</p>
 
 <div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PCollection</span><span 
class="o">&lt;</span><span class="n">String</span><span class="o">&gt;</span> 
<span class="n">lines</span> <span class="o">=</span> <span 
class="n">p</span><span class="o">.</span><span class="na">apply</span><span 
class="o">(</span>
-  <span class="n">apply</span><span class="o">(</span><span 
class="s">"ReadLines"</span><span class="o">,</span> <span 
class="n">TextIO</span><span class="o">.</span><span 
class="na">Read</span><span class="o">.</span><span class="na">from</span><span 
class="o">(</span><span class="s">"gs://some/inputData.txt"</span><span 
class="o">));</span>
+  <span class="s">"ReadLines"</span><span class="o">,</span> <span 
class="n">TextIO</span><span class="o">.</span><span 
class="na">Read</span><span class="o">.</span><span class="na">from</span><span 
class="o">(</span><span class="s">"gs://some/inputData.txt"</span><span 
class="o">));</span>
 </code></pre>
 </div>
 

Reply via email to