You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by uc...@apache.org on 2014/11/05 01:02:22 UTC

svn commit: r1636783 - in /incubator/flink: _posts/ site/ site/blog/ site/blog/page2/ site/news/2012/08/21/ site/news/2012/10/15/ site/news/2012/11/12/ site/news/2012/11/21/ site/news/2013/03/27/ site/news/2013/10/21/ site/news/2013/12/13/ site/news/20...

Author: uce
Date: Wed Nov  5 00:02:22 2014
New Revision: 1636783

URL: http://svn.apache.org/r1636783
Log:
Fix typo in blog post

Modified:
    incubator/flink/_posts/2014-11-04-release-0.7.0.md
    incubator/flink/site/asf.html
    incubator/flink/site/blog/index.html
    incubator/flink/site/blog/page2/index.html
    incubator/flink/site/coding_guidelines.html
    incubator/flink/site/community.html
    incubator/flink/site/downloads.html
    incubator/flink/site/how-to-contribute.html
    incubator/flink/site/index.html
    incubator/flink/site/material.html
    incubator/flink/site/news/2012/08/21/release02.html
    incubator/flink/site/news/2012/10/15/icde2013.html
    incubator/flink/site/news/2012/11/12/btw2013demo.html
    incubator/flink/site/news/2012/11/21/previewICDE2013.html
    incubator/flink/site/news/2013/03/27/www-demo-paper.html
    incubator/flink/site/news/2013/10/21/cikm2013-paper.html
    incubator/flink/site/news/2013/12/13/humboldt-innovation-award.html
    incubator/flink/site/news/2014/01/10/stratosphere-hadoop-summit.html
    incubator/flink/site/news/2014/01/12/0.4-migration-guide.html
    incubator/flink/site/news/2014/01/13/stratosphere-release-0.4.html
    incubator/flink/site/news/2014/01/26/optimizer_plan_visualization_tool.html
    incubator/flink/site/news/2014/01/28/querying_mongodb.html
    incubator/flink/site/news/2014/02/18/amazon-elastic-mapreduce-cloud-yarn.html
    incubator/flink/site/news/2014/02/24/stratosphere-google-summer-of-code-2014.html
    incubator/flink/site/news/2014/04/16/stratosphere-goes-apache-incubator.html
    incubator/flink/site/news/2014/05/31/release-0.5.html
    incubator/flink/site/news/2014/08/26/release-0.6.html
    incubator/flink/site/news/2014/09/26/release-0.6.1.html
    incubator/flink/site/news/2014/10/03/upcoming_events.html
    incubator/flink/site/news/2014/11/04/release-0.7.0.html
    incubator/flink/site/privacy-policy.html
    incubator/flink/site/project.html

Modified: incubator/flink/_posts/2014-11-04-release-0.7.0.md
URL: http://svn.apache.org/viewvc/incubator/flink/_posts/2014-11-04-release-0.7.0.md?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/_posts/2014-11-04-release-0.7.0.md (original)
+++ incubator/flink/_posts/2014-11-04-release-0.7.0.md Wed Nov  5 00:02:22 2014
@@ -17,7 +17,7 @@ See the release changelog [here](https:/
 
 **New Scala API:** The Scala API has been completely rewritten. The Java and Scala APIs have now the same syntax and transformations and will be kept from now on in sync in every future release. See the new Scala API [here](http://flink.incubator.apache.org/docs/0.7-incubating/programming_guide.html).
 
-**Logical key expressions:** You can now specify grouping and joing keys with logical names for member variables of POJO data types. For example, you can join two data sets as ``persons.join(cities).where(“zip”).equalTo(“zipcode”)``. Read more [here](http://flink.incubator.apache.org/docs/0.7-incubating/programming_guide.html#specifying-keys).
+**Logical key expressions:** You can now specify grouping and joining keys with logical names for member variables of POJO data types. For example, you can join two data sets as ``persons.join(cities).where(“zip”).equalTo(“zipcode”)``. Read more [here](http://flink.incubator.apache.org/docs/0.7-incubating/programming_guide.html#specifying-keys).
 
 **Hadoop MapReduce compatibility:** You can run unmodified Hadoop Mappers and Reducers (mapred API) in Flink, use all Hadoop data types, and read data with all Hadoop InputFormats.
 

Modified: incubator/flink/site/asf.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/asf.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/asf.html (original)
+++ incubator/flink/site/asf.html Wed Nov  5 00:02:22 2014
@@ -126,7 +126,7 @@
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/blog/index.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/blog/index.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/blog/index.html (original)
+++ incubator/flink/site/blog/index.html Wed Nov  5 00:02:22 2014
@@ -131,7 +131,7 @@
 
 <p><strong>New Scala API:</strong> The Scala API has been completely rewritten. The Java and Scala APIs have now the same syntax and transformations and will be kept from now on in sync in every future release. See the new Scala API <a href="http://flink.incubator.apache.org/docs/0.7-incubating/programming_guide.html">here</a>.</p>
 
-<p><strong>Logical key expressions:</strong> You can now specify grouping and joing keys with logical names for member variables of POJO data types. For example, you can join two data sets as <code>persons.join(cities).where(“zip”).equalTo(“zipcode”)</code>. Read more <a href="http://flink.incubator.apache.org/docs/0.7-incubating/programming_guide.html#specifying-keys">here</a>.</p>
+<p><strong>Logical key expressions:</strong> You can now specify grouping and joining keys with logical names for member variables of POJO data types. For example, you can join two data sets as <code>persons.join(cities).where(“zip”).equalTo(“zipcode”)</code>. Read more <a href="http://flink.incubator.apache.org/docs/0.7-incubating/programming_guide.html#specifying-keys">here</a>.</p>
 
 <p><strong>Hadoop MapReduce compatibility:</strong> You can run unmodified Hadoop Mappers and Reducers (mapred API) in Flink, use all Hadoop data types, and read data with all Hadoop InputFormats.</p>
 
@@ -839,7 +839,7 @@ var disqus_shortname = 'stratosphere-eu'
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/blog/page2/index.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/blog/page2/index.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/blog/page2/index.html (original)
+++ incubator/flink/site/blog/page2/index.html Wed Nov  5 00:02:22 2014
@@ -485,7 +485,7 @@ var disqus_shortname = 'stratosphere-eu'
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/coding_guidelines.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/coding_guidelines.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/coding_guidelines.html (original)
+++ incubator/flink/site/coding_guidelines.html Wed Nov  5 00:02:22 2014
@@ -158,7 +158,7 @@
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/community.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/community.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/community.html (original)
+++ incubator/flink/site/community.html Wed Nov  5 00:02:22 2014
@@ -322,7 +322,7 @@
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/downloads.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/downloads.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/downloads.html (original)
+++ incubator/flink/site/downloads.html Wed Nov  5 00:02:22 2014
@@ -112,16 +112,16 @@
 
 <h1>Downloads</h1>
 
-<p><script type="text/javascript">
+<script type="text/javascript">
 $( document ).ready(function() {
   // Handler for .ready() called.
-  $(&#39;.ga-track&#39;).on(&#39;click&#39;, function() {
+  $('.ga-track').on('click', function() {
     // we just use the element id for tracking with google analytics
-    ga(&#39;send&#39;, &#39;event&#39;, &#39;button&#39;, &#39;click&#39;, $(this).attr(&#39;id&#39;));
-  });</p>
+    ga('send', 'event', 'button', 'click', $(this).attr('id'));
+  });
 
-<p>});
-</script></p>
+});
+</script>
 
 <p class="lead">Pick the <strong>Apache Flink</strong> package matching your Hadoop version.</p>
 
@@ -221,7 +221,7 @@ mvn clean package -DskipTests
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/how-to-contribute.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/how-to-contribute.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/how-to-contribute.html (original)
+++ incubator/flink/site/how-to-contribute.html Wed Nov  5 00:02:22 2014
@@ -283,7 +283,7 @@ To merge pull requests from our GitHub m
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/index.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/index.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/index.html (original)
+++ incubator/flink/site/index.html Wed Nov  5 00:02:22 2014
@@ -250,7 +250,7 @@ File System) can act as data sources.</p
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/material.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/material.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/material.html (original)
+++ incubator/flink/site/material.html Wed Nov  5 00:02:22 2014
@@ -232,7 +232,7 @@ Big Data Beers Berlin Meetup, November 2
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2012/08/21/release02.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2012/08/21/release02.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2012/08/21/release02.html (original)
+++ incubator/flink/site/news/2012/08/21/release02.html Wed Nov  5 00:02:22 2014
@@ -164,7 +164,7 @@
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2012/10/15/icde2013.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2012/10/15/icde2013.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2012/10/15/icde2013.html (original)
+++ incubator/flink/site/news/2012/10/15/icde2013.html Wed Nov  5 00:02:22 2014
@@ -165,7 +165,7 @@ We demonstrate our optimizer and a job s
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2012/11/12/btw2013demo.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2012/11/12/btw2013demo.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2012/11/12/btw2013demo.html (original)
+++ incubator/flink/site/news/2012/11/12/btw2013demo.html Wed Nov  5 00:02:22 2014
@@ -163,7 +163,7 @@ Analyzing big data sets as they occur in
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2012/11/21/previewICDE2013.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2012/11/21/previewICDE2013.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2012/11/21/previewICDE2013.html (original)
+++ incubator/flink/site/news/2012/11/21/previewICDE2013.html Wed Nov  5 00:02:22 2014
@@ -158,7 +158,7 @@ The demo shows how static code analysis 
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2013/03/27/www-demo-paper.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2013/03/27/www-demo-paper.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2013/03/27/www-demo-paper.html (original)
+++ incubator/flink/site/news/2013/03/27/www-demo-paper.html Wed Nov  5 00:02:22 2014
@@ -162,7 +162,7 @@ The importance of social-media platforms
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2013/10/21/cikm2013-paper.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2013/10/21/cikm2013-paper.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2013/10/21/cikm2013-paper.html (original)
+++ incubator/flink/site/news/2013/10/21/cikm2013-paper.html Wed Nov  5 00:02:22 2014
@@ -195,7 +195,7 @@ in the majority of cases.</p>
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2013/12/13/humboldt-innovation-award.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2013/12/13/humboldt-innovation-award.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2013/12/13/humboldt-innovation-award.html (original)
+++ incubator/flink/site/news/2013/12/13/humboldt-innovation-award.html Wed Nov  5 00:02:22 2014
@@ -167,7 +167,7 @@
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/01/10/stratosphere-hadoop-summit.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/01/10/stratosphere-hadoop-summit.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/01/10/stratosphere-hadoop-summit.html (original)
+++ incubator/flink/site/news/2014/01/10/stratosphere-hadoop-summit.html Wed Nov  5 00:02:22 2014
@@ -156,7 +156,7 @@
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/01/12/0.4-migration-guide.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/01/12/0.4-migration-guide.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/01/12/0.4-migration-guide.html (original)
+++ incubator/flink/site/news/2014/01/12/0.4-migration-guide.html Wed Nov  5 00:02:22 2014
@@ -233,7 +233,7 @@ For a complete overview of the renamings
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/01/13/stratosphere-release-0.4.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/01/13/stratosphere-release-0.4.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/01/13/stratosphere-release-0.4.html (original)
+++ incubator/flink/site/news/2014/01/13/stratosphere-release-0.4.html Wed Nov  5 00:02:22 2014
@@ -236,7 +236,7 @@ Follow <a href="/docs/0.4/setup/yarn.htm
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/01/26/optimizer_plan_visualization_tool.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/01/26/optimizer_plan_visualization_tool.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/01/26/optimizer_plan_visualization_tool.html (original)
+++ incubator/flink/site/news/2014/01/26/optimizer_plan_visualization_tool.html Wed Nov  5 00:02:22 2014
@@ -171,7 +171,7 @@
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/01/28/querying_mongodb.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/01/28/querying_mongodb.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/01/28/querying_mongodb.html (original)
+++ incubator/flink/site/news/2014/01/28/querying_mongodb.html Wed Nov  5 00:02:22 2014
@@ -239,7 +239,7 @@ You can now press the &quot;Run&quot; bu
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/02/18/amazon-elastic-mapreduce-cloud-yarn.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/02/18/amazon-elastic-mapreduce-cloud-yarn.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/02/18/amazon-elastic-mapreduce-cloud-yarn.html (original)
+++ incubator/flink/site/news/2014/02/18/amazon-elastic-mapreduce-cloud-yarn.html Wed Nov  5 00:02:22 2014
@@ -346,7 +346,7 @@ Inspect the result in HDFS using:</p>
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/02/24/stratosphere-google-summer-of-code-2014.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/02/24/stratosphere-google-summer-of-code-2014.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/02/24/stratosphere-google-summer-of-code-2014.html (original)
+++ incubator/flink/site/news/2014/02/24/stratosphere-google-summer-of-code-2014.html Wed Nov  5 00:02:22 2014
@@ -163,7 +163,7 @@ Applying students can use our wiki (crea
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/04/16/stratosphere-goes-apache-incubator.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/04/16/stratosphere-goes-apache-incubator.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/04/16/stratosphere-goes-apache-incubator.html (original)
+++ incubator/flink/site/news/2014/04/16/stratosphere-goes-apache-incubator.html Wed Nov  5 00:02:22 2014
@@ -158,7 +158,7 @@
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/05/31/release-0.5.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/05/31/release-0.5.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/05/31/release-0.5.html (original)
+++ incubator/flink/site/news/2014/05/31/release-0.5.html Wed Nov  5 00:02:22 2014
@@ -237,7 +237,7 @@
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/08/26/release-0.6.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/08/26/release-0.6.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/08/26/release-0.6.html (original)
+++ incubator/flink/site/news/2014/08/26/release-0.6.html Wed Nov  5 00:02:22 2014
@@ -230,7 +230,7 @@ robust, as well as breaking API changes.
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/09/26/release-0.6.1.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/09/26/release-0.6.1.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/09/26/release-0.6.1.html (original)
+++ incubator/flink/site/news/2014/09/26/release-0.6.1.html Wed Nov  5 00:02:22 2014
@@ -161,7 +161,7 @@ of the system. We suggest all users of F
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/10/03/upcoming_events.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/10/03/upcoming_events.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/10/03/upcoming_events.html (original)
+++ incubator/flink/site/news/2014/10/03/upcoming_events.html Wed Nov  5 00:02:22 2014
@@ -229,7 +229,7 @@ properties, some algorithms)</p></li>
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/news/2014/11/04/release-0.7.0.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/11/04/release-0.7.0.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/news/2014/11/04/release-0.7.0.html (original)
+++ incubator/flink/site/news/2014/11/04/release-0.7.0.html Wed Nov  5 00:02:22 2014
@@ -131,7 +131,7 @@
 
 <p><strong>New Scala API:</strong> The Scala API has been completely rewritten. The Java and Scala APIs have now the same syntax and transformations and will be kept from now on in sync in every future release. See the new Scala API <a href="http://flink.incubator.apache.org/docs/0.7-incubating/programming_guide.html">here</a>.</p>
 
-<p><strong>Logical key expressions:</strong> You can now specify grouping and joing keys with logical names for member variables of POJO data types. For example, you can join two data sets as <code>persons.join(cities).where(“zip”).equalTo(“zipcode”)</code>. Read more <a href="http://flink.incubator.apache.org/docs/0.7-incubating/programming_guide.html#specifying-keys">here</a>.</p>
+<p><strong>Logical key expressions:</strong> You can now specify grouping and joining keys with logical names for member variables of POJO data types. For example, you can join two data sets as <code>persons.join(cities).where(“zip”).equalTo(“zipcode”)</code>. Read more <a href="http://flink.incubator.apache.org/docs/0.7-incubating/programming_guide.html#specifying-keys">here</a>.</p>
 
 <p><strong>Hadoop MapReduce compatibility:</strong> You can run unmodified Hadoop Mappers and Reducers (mapred API) in Flink, use all Hadoop data types, and read data with all Hadoop InputFormats.</p>
 
@@ -219,7 +219,7 @@
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/privacy-policy.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/privacy-policy.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/privacy-policy.html (original)
+++ incubator/flink/site/privacy-policy.html Wed Nov  5 00:02:22 2014
@@ -141,7 +141,7 @@ manner and for the purpose described abo
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is

Modified: incubator/flink/site/project.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/project.html?rev=1636783&r1=1636782&r2=1636783&view=diff
==============================================================================
--- incubator/flink/site/project.html (original)
+++ incubator/flink/site/project.html Wed Nov  5 00:02:22 2014
@@ -121,7 +121,7 @@
 
      <div class="footer">
 
-<p><hr class="divider"></p>
+<hr class="divider">
 
 <p><small>Apache Flink is an effort undergoing incubation at The Apache Software
 Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is