Fix included XBean property table - still need Scalate/Wikitext fix for {html} macro

git-svn-id: https://svn.apache.org/repos/asf/servicemix/documentation/trunk@1060273 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom.xml b/pom.xml
index ab0d415..760095a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,7 +50,7 @@
     <scalate.mode>production</scalate.mode>
     <scalate.workdir>${basedir}/target/scalateWorkDir</scalate.workdir>
 
-    <components.version>2010.02-SNAPSHOT</components.version>
+    <components.version>2011.01-SNAPSHOT</components.version>
     <karaf.version>2.1.99-SNAPSHOT</karaf.version>
     <servicemix.version>4.3.0-SNAPSHOT</servicemix.version>
   </properties>
diff --git a/src/main/scripts/GenerateComponentDocs.scala b/src/main/scripts/GenerateComponentDocs.scala
index 4f87d9f..8d2b8ed 100644
--- a/src/main/scripts/GenerateComponentDocs.scala
+++ b/src/main/scripts/GenerateComponentDocs.scala
@@ -71,14 +71,11 @@
 
   try {
     for (line <- lines.map(_.trim).dropWhile(!_.startsWith("|"))) {
-      // dirty hack to make sure that the {html} macro is processed correctly
-      val result = if (line.endsWith("{html} |")) {
-        val tuple = line.splitAt(line.length - 8)
-        Array(tuple._1, tuple._2)
-      } else {
-        Array(line)
-      }
-      result.foreach(writer.println)
+      writer.printf(if (line.endsWith("|")) {
+                        "%s%n"
+                    } else {
+                        "%s "
+                    }, line)
     }
     writer.flush
   } finally {
diff --git a/src/main/webapp/quickstart/index.conf b/src/main/webapp/quickstart/index.conf
new file mode 100644
index 0000000..86b7e3e
--- /dev/null
+++ b/src/main/webapp/quickstart/index.conf
@@ -0,0 +1,3 @@
+h2. Purpose
+
+The goal of this quickstart guide is to give you a 15 minute tour around ServiceMix.  You can find more in depth information in the others guides available on http://servicemix.apache.org/documentation/${project.version}.
\ No newline at end of file