Merge pull request #981 from jdtoy/060rc1-releasenotes

Release notes for 0.6.0 (GA)
Merging autonomously, per procurationem @aledsage.
diff --git a/docs/use/examples/before-begin.include.md b/docs/use/examples/before-begin.include.md
index bc706cf..ad9bc19 100644
--- a/docs/use/examples/before-begin.include.md
+++ b/docs/use/examples/before-begin.include.md
@@ -17,7 +17,7 @@
 and export `BROOKLYN_HOME`:
 
 {% highlight bash %}
-% curl -L -o brooklyn-dist-{{ site.brooklyn-version }}-dist.tar.gz {{ this_dist_tgz_url }}
+% curl -L -o brooklyn-dist-{{ site.brooklyn-version }}-dist.tar.gz "{{ this_dist_url_tgz }}"
 % tar xvzf brooklyn-dist-{{ site.brooklyn-version }}-dist.tar.gz
 % export BROOKLYN_HOME=$(pwd)/brooklyn-{{ site.brooklyn-version }}/
 {% endhighlight %}
@@ -27,7 +27,7 @@
 Grab a copy of the Brooklyn distribution and set up `BROOKLYN_HOME`:
 
 {% highlight bash %}
-% curl -LO {{ this_dist_url_tgz }}
+% curl -LO "{{ this_dist_url_tgz }}"
 % tar xvzf brooklyn-dist-{{ site.brooklyn-version }}-dist.tar.gz
 % export BROOKLYN_HOME=$(pwd)/brooklyn-{{ site.brooklyn-version }}/
 {% endhighlight %}
diff --git a/docs/use/examples/nosql-cassandra/cassandra.include.md b/docs/use/examples/nosql-cassandra/cassandra.include.md
index a28ac55..148ae35 100644
--- a/docs/use/examples/nosql-cassandra/cassandra.include.md
+++ b/docs/use/examples/nosql-cassandra/cassandra.include.md
@@ -268,12 +268,11 @@
 
 ## Putting it all together: CumulusRDF
 
-Let's put all this together to run an example application: 
-[CumulusRDF](https://code.google.com/p/cumulusrdf)
-with a wide-area high-availability Cassandra cluster.
+If you want to try this with a real example application using the Cassandra cluster, take a look at
+[CumulusRDF](https://code.google.com/p/cumulusrdf). There is an example Brooklyn application at:
 
 {% highlight bash %}
-% ${BROOKLYN_HOME}/bin/brooklyn launch --app brooklyn.demo.CumulusRDFApplication \
+% ${BROOKLYN_HOME}/bin/brooklyn launch --app brooklyn.demo.CumulusRdfApplication \
   --location "aws-ec2:us-east-1,aws-ec2:us-east-1"
 {% endhighlight %}
 
diff --git a/docs/use/examples/toc.json b/docs/use/examples/toc.json
index 92f3208..2f36c50 100644
--- a/docs/use/examples/toc.json
+++ b/docs/use/examples/toc.json
@@ -6,5 +6,8 @@
 { "title": "Whirr Hadoop Cluster",
   "file":  "{{ site.url }}/use/examples/whirrhadoop/index.html" },
 { "title": "Publish-Subscribe Messaging",
-  "file":  "{{ site.url }}/use/examples/messaging/index.html" }
+  "file":  "{{ site.url }}/use/examples/messaging/index.html" },
+{ "title": "Cassandra Cluster",
+  "file":  "{{ site.url }}/use/examples/nosql-cassandra/index.html" }
+
 ]