Author: pwendell
Date: Mon Mar  3 01:57:26 2014
New Revision: 1573418

URL: http://svn.apache.org/r1573418
Log:
Adding google analytics to the 0.9 docs.


Modified:
    spark/site/docs/0.9.0/README.md
    spark/site/docs/0.9.0/api.html
    spark/site/docs/0.9.0/bagel-programming-guide.html
    spark/site/docs/0.9.0/building-with-maven.html
    spark/site/docs/0.9.0/cluster-overview.html
    spark/site/docs/0.9.0/configuration.html
    spark/site/docs/0.9.0/contributing-to-spark.html
    spark/site/docs/0.9.0/ec2-scripts.html
    spark/site/docs/0.9.0/graphx-programming-guide.html
    spark/site/docs/0.9.0/hadoop-third-party-distributions.html
    spark/site/docs/0.9.0/hardware-provisioning.html
    spark/site/docs/0.9.0/index.html
    spark/site/docs/0.9.0/java-programming-guide.html
    spark/site/docs/0.9.0/job-scheduling.html
    spark/site/docs/0.9.0/mllib-guide.html
    spark/site/docs/0.9.0/monitoring.html
    spark/site/docs/0.9.0/python-programming-guide.html
    spark/site/docs/0.9.0/quick-start.html
    spark/site/docs/0.9.0/running-on-mesos.html
    spark/site/docs/0.9.0/running-on-yarn.html
    spark/site/docs/0.9.0/scala-programming-guide.html
    spark/site/docs/0.9.0/spark-debugger.html
    spark/site/docs/0.9.0/spark-standalone.html
    spark/site/docs/0.9.0/streaming-custom-receivers.html
    spark/site/docs/0.9.0/streaming-programming-guide.html
    spark/site/docs/0.9.0/tuning.html

Modified: spark/site/docs/0.9.0/README.md
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/README.md?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/README.md (original)
+++ spark/site/docs/0.9.0/README.md Mon Mar  3 01:57:26 2014
@@ -10,9 +10,21 @@ We include the Spark documentation as pa
 
 In this directory you will find textfiles formatted using Markdown, with an 
".md" suffix. You can read those text files directly if you want. Start with 
index.md.
 
-To make things quite a bit prettier and make the links easier to follow, 
generate the html version of the documentation based on the src directory by 
running `jekyll` in the docs directory. Use the command `SKIP_SCALADOC=1 
jekyll` to skip building and copying over the scaladoc which can be timely. To 
use the `jekyll` command, you will need to have Jekyll installed, the easiest 
way to do this is via a Ruby Gem, see the [jekyll installation 
instructions](https://github.com/mojombo/jekyll/wiki/install). This will create 
a directory called _site containing index.html as well as the rest of the 
compiled files. Read more about Jekyll at 
https://github.com/mojombo/jekyll/wiki.
-
-In addition to generating the site as html from the markdown files, jekyll can 
serve up the site via a webserver. To build and run a webserver use the command 
`jekyll --server` which (currently) runs the webserver on port 4000, then visit 
the site at http://localhost:4000.
+The markdown code can be compiled to HTML using the 
+[Jekyll tool](http://jekyllrb.com). To use the `jekyll` command, you will 
+need to have Jekyll installed. The easiest way to do this is via a Ruby Gem, 
see the 
+[jekyll installation instructions](http://jekyllrb.com/docs/installation). 
+Compiling the site with Jekyll will create a directory called 
+_site containing index.html as well as the rest of the compiled files.
+
+You can modify the default Jekyll build as follows:
+
+    # Skip generating API docs (which takes a while)
+    $ SKIP_SCALADOC=1 jekyll build
+    # Serve content locally on port 4000
+    $ jekyll serve --watch
+    # Build the site with extra features used on the live page
+    $ PRODUCTION=1 jekyll build
 
 ## Pygments
 

Modified: spark/site/docs/0.9.0/api.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/api.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/api.html (original)
+++ spark/site/docs/0.9.0/api.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/bagel-programming-guide.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/bagel-programming-guide.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/bagel-programming-guide.html (original)
+++ spark/site/docs/0.9.0/bagel-programming-guide.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/building-with-maven.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/building-with-maven.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/building-with-maven.html (original)
+++ spark/site/docs/0.9.0/building-with-maven.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/cluster-overview.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/cluster-overview.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/cluster-overview.html (original)
+++ spark/site/docs/0.9.0/cluster-overview.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/configuration.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/configuration.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/configuration.html (original)
+++ spark/site/docs/0.9.0/configuration.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/contributing-to-spark.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/contributing-to-spark.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/contributing-to-spark.html (original)
+++ spark/site/docs/0.9.0/contributing-to-spark.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/ec2-scripts.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/ec2-scripts.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/ec2-scripts.html (original)
+++ spark/site/docs/0.9.0/ec2-scripts.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/graphx-programming-guide.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/graphx-programming-guide.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/graphx-programming-guide.html (original)
+++ spark/site/docs/0.9.0/graphx-programming-guide.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/hadoop-third-party-distributions.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/hadoop-third-party-distributions.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/hadoop-third-party-distributions.html (original)
+++ spark/site/docs/0.9.0/hadoop-third-party-distributions.html Mon Mar  3 
01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/hardware-provisioning.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/hardware-provisioning.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/hardware-provisioning.html (original)
+++ spark/site/docs/0.9.0/hardware-provisioning.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/index.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/index.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/index.html (original)
+++ spark/site/docs/0.9.0/index.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/java-programming-guide.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/java-programming-guide.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/java-programming-guide.html (original)
+++ spark/site/docs/0.9.0/java-programming-guide.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/job-scheduling.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/job-scheduling.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/job-scheduling.html (original)
+++ spark/site/docs/0.9.0/job-scheduling.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/mllib-guide.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/mllib-guide.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/mllib-guide.html (original)
+++ spark/site/docs/0.9.0/mllib-guide.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/monitoring.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/monitoring.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/monitoring.html (original)
+++ spark/site/docs/0.9.0/monitoring.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/python-programming-guide.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/python-programming-guide.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/python-programming-guide.html (original)
+++ spark/site/docs/0.9.0/python-programming-guide.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/quick-start.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/quick-start.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/quick-start.html (original)
+++ spark/site/docs/0.9.0/quick-start.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/running-on-mesos.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/running-on-mesos.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/running-on-mesos.html (original)
+++ spark/site/docs/0.9.0/running-on-mesos.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/running-on-yarn.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/running-on-yarn.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/running-on-yarn.html (original)
+++ spark/site/docs/0.9.0/running-on-yarn.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/scala-programming-guide.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/scala-programming-guide.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/scala-programming-guide.html (original)
+++ spark/site/docs/0.9.0/scala-programming-guide.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/spark-debugger.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/spark-debugger.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/spark-debugger.html (original)
+++ spark/site/docs/0.9.0/spark-debugger.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/spark-standalone.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/spark-standalone.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/spark-standalone.html (original)
+++ spark/site/docs/0.9.0/spark-standalone.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/streaming-custom-receivers.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/streaming-custom-receivers.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/streaming-custom-receivers.html (original)
+++ spark/site/docs/0.9.0/streaming-custom-receivers.html Mon Mar  3 01:57:26 
2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/streaming-programming-guide.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/streaming-programming-guide.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/streaming-programming-guide.html (original)
+++ spark/site/docs/0.9.0/streaming-programming-guide.html Mon Mar  3 01:57:26 
2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>

Modified: spark/site/docs/0.9.0/tuning.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/0.9.0/tuning.html?rev=1573418&r1=1573417&r2=1573418&view=diff
==============================================================================
--- spark/site/docs/0.9.0/tuning.html (original)
+++ spark/site/docs/0.9.0/tuning.html Mon Mar  3 01:57:26 2014
@@ -24,9 +24,9 @@
 
         <link rel="stylesheet" href="css/pygments-default.css">
 
+        
         <!-- Google analytics script -->
         <script type="text/javascript">
-          /*
           var _gaq = _gaq || [];
           _gaq.push(['_setAccount', 'UA-32518208-1']);
           _gaq.push(['_trackPageview']);
@@ -36,8 +36,8 @@
             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
             var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
           })();
-          */
         </script>
+         
 
     </head>
     <body>


Reply via email to