http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a1891eca/content/components/index.html
----------------------------------------------------------------------
diff --git a/content/components/index.html b/content/components/index.html
new file mode 100644
index 0000000..23ba69f
--- /dev/null
+++ b/content/components/index.html
@@ -0,0 +1,258 @@
+<!DOCTYPE html>
+<!--
+ -
+ - Licensed to the Apache Software Foundation (ASF) under one
+ - or more contributor license agreements.  See the NOTICE file
+ - distributed with this work for additional information
+ - regarding copyright ownership.  The ASF licenses this file
+ - to you under the Apache License, Version 2.0 (the
+ - "License"); you may not use this file except in compliance
+ - with the License.  You may obtain a copy of the License at
+ -
+ -   http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing,
+ - software distributed under the License is distributed on an
+ - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ - KIND, either express or implied.  See the License for the
+ - specific language governing permissions and limitations
+ - under the License.
+ -
+-->
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
+  <head>
+    <title>Components - Apache Qpid&#8482;</title>
+    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+    <link rel="stylesheet" href="/site.css" type="text/css" async="async"/>
+    <link rel="stylesheet" href="/deferred.css" type="text/css" defer="defer"/>
+    <script type="text/javascript">var _deferredFunctions = [];</script>
+    <script type="text/javascript" src="/deferred.js" defer="defer"></script>
+    <!--[if lte IE 8]>
+      <link rel="stylesheet" href="/ie.css" type="text/css"/>
+      <script type="text/javascript" src="/html5shiv.js"></script>
+    <![endif]-->
+
+    <!-- Redirects for `go get` and godoc.org -->
+    <meta name="go-import"
+          content="qpid.apache.org git 
https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+    <meta name="go-source"
+          content="qpid.apache.org
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  </head>
+  <body>
+    <div id="-content">
+      <div id="-top" class="panel">
+        <a id="-menu-link"><img width="16" height="16" src="" alt="Menu"/></a>
+
+        <a id="-search-link"><img width="22" height="16" src="" 
alt="Search"/></a>
+
+        <ul id="-global-navigation">
+          <li><a id="-logotype" href="/index.html">Apache 
Qpid<sup>&#8482;</sup></a></li>
+          <li><a href="/documentation.html">Documentation</a></li>
+          <li><a href="/download.html">Download</a></li>
+          <li><a href="/discussion.html">Discussion</a></li>
+        </ul>
+      </div>
+
+      <div id="-menu" class="panel" style="display: none;">
+        <div class="flex">
+          <section>
+            <h3>Project</h3>
+
+            <ul>
+              <li><a href="/overview.html">Overview</a></li>
+              <li><a href="/components/index.html">Components</a></li>
+              <li><a href="/releases/index.html">Releases</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Messaging APIs</h3>
+
+            <ul>
+              <li><a href="/proton/index.html">Qpid Proton</a></li>
+              <li><a href="/components/jms/index.html">Qpid JMS</a></li>
+              <li><a href="/components/messaging-api/index.html">Qpid 
Messaging API</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Servers and tools</h3>
+
+            <ul>
+              <li><a href="/components/java-broker/index.html">Java 
broker</a></li>
+              <li><a href="/components/cpp-broker/index.html">C++ 
broker</a></li>
+              <li><a href="/components/dispatch-router/index.html">Dispatch 
router</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Resources</h3>
+
+            <ul>
+              <li><a href="/dashboard.html">Dashboard</a></li>
+              <li><a 
href="https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki</a></li>
+              <li><a href="/resources.html">More resources</a></li>
+            </ul>
+          </section>
+        </div>
+      </div>
+
+      <div id="-search" class="panel" style="display: none;">
+        <form action="http://www.google.com/search"; method="get">
+          <input type="hidden" name="sitesearch" value="qpid.apache.org"/>
+          <input type="text" name="q" maxlength="255" autofocus="autofocus" 
tabindex="1"/>
+          <button type="submit">Search</button>
+          <a href="/search.html">More ways to search</a>
+        </form>
+      </div>
+
+      <div id="-middle" class="panel">
+        <ul id="-path-navigation"><li><a 
href="/index.html">Home</a></li><li>Components</li></ul>
+
+        <div id="-middle-content">
+          <h1 id="components">Components</h1>
+
+<p>The Qpid project offers two kinds of components, <em>messaging APIs</em> for
+building AMQP applications, and <em>messaging servers</em> for deploying AMQP
+networks.  You can use them together to build robust distributed
+applications.</p>
+
+<p><strong>Messaging APIs</strong> give your application a tool for efficient,
+high-level interprocess communication.</p>
+
+<p>Qpid offers three messaging APIs.
+<a href="/proton/index.html">Qpid Proton</a> is a reactive API with
+full-spectrum AMQP control. In addition to being a messaging API, Qpid
+Proton is used by other Qpid components to implement AMQP 1.0 protocol
+support.  <a href="jms/index.html">Qpid JMS</a> is an AMQP-fluent 
implementation
+of the widely used
+<a href="http://en.wikipedia.org/wiki/Java_Message_Service";>Java Message 
Service</a>
+API.  The <a href="messaging-api/index.html">Qpid Messaging API</a> is a
+connection-oriented API that supports many languages.</p>
+
+<p>The term "client" is often used to refer to messaging APIs, but some
+messaging APIs, such as Qpid Proton, can be used to implement any kind
+of messaging component, including clients, servers, bridges, and
+proxies.</p>
+
+<p><strong>Messaging servers</strong> are message-transfer intermediaries that 
provide
+additional behaviors such as store-and-forward for improved
+reliability.</p>
+
+<p>The Qpid message brokers are full-featured
+<a 
href="http://en.wikipedia.org/wiki/Message-oriented_middleware";>message-oriented
 middleware</a>
+brokers.  They offer specialized queueing behaviors, message
+persistence, and manageability.  Qpid offers pure-Java and native-code
+implementations, the <a href="java-broker/index.html">Java broker</a> and the
+<a href="cpp-broker/index.html">C++ broker</a>.</p>
+
+<p><a href="dispatch-router/index.html">Dispatch router</a> is a new kind of
+messaging server.  It allows you to build redundant router networks
+connecting clients, brokers, and standalone services.</p>
+
+<h2 id="messaging-apis">Messaging APIs</h2>
+
+<ul>
+<li><a href="/proton/index.html">Qpid Proton</a> - A toolkit allowing any 
application to speak AMQP</li>
+<li><a href="jms/index.html">Qpid JMS</a> - An AMQP-fluent <a 
href="http://en.wikipedia.org/wiki/Java_Message_Service";>Java Message 
Service</a> implementation</li>
+<li><a href="messaging-api/index.html">Qpid Messaging API</a> - A 
connection-oriented messaging API that supports many languages</li>
+</ul>
+
+<h2 id="messaging-servers">Messaging servers</h2>
+
+<ul>
+<li><a href="java-broker/index.html">Java broker</a> - A pure-Java AMQP 
message broker</li>
+<li><a href="cpp-broker/index.html">C++ broker</a> - A native-code AMQP 
message broker</li>
+<li><a href="dispatch-router/index.html">Dispatch router</a> - An AMQP router 
for scalable messaging interconnect</li>
+</ul>
+
+<h2 id="compatibility">Compatibility</h2>
+
+<div class="scroll">
+
+<table>
+<thead>
+<tr>
+  <th>Component</th>
+  <th>Languages</th>
+  <th>Platforms</th>
+  <th>AMQP versions</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+  <td><a href="/components/cpp-broker/index.html">C++ broker</a></td>
+  <td>-</td>
+  <td>Linux, Windows</td>
+  <td>1.0, 0-10</td>
+</tr>
+<tr>
+  <td><a href="/components/dispatch-router/index.html">Dispatch router</a></td>
+  <td>-</td>
+  <td>Linux</td>
+  <td>1.0</td>
+</tr>
+<tr>
+  <td><a href="/components/java-broker/index.html">Java broker</a></td>
+  <td>-</td>
+  <td>JVM</td>
+  <td>1.0, 0-10, 0-9-1, 0-9, 0-8</td>
+</tr>
+<tr>
+  <td><a href="/components/jms/index.html">Qpid JMS</a></td>
+  <td>Java</td>
+  <td>JVM</td>
+  <td>1.0, 0-10, 0-9-1, 0-9, 0-8</td>
+</tr>
+<tr>
+  <td><a href="/components/messaging-api/index.html">Qpid Messaging 
API</a></td>
+  <td>C++, Perl, Python, Ruby, .NET</td>
+  <td>Linux, Windows</td>
+  <td>1.0, 0-10</td>
+</tr>
+<tr>
+  <td><a href="/proton/index.html">Qpid Proton</a></td>
+  <td>C, C++, Java, JavaScript, Python, Ruby</td>
+  <td>JVM, Linux, Windows</td>
+  <td>1.0</td>
+</tr>
+</tbody>
+</table>
+
+<p>Any Qpid components that share an AMQP version can interoperate.  For
+instance, the brokers are implemented in C++ and Java respectively,
+but they do not require C++ or Java clients for communication.</p>
+
+</div>
+
+
+          <hr/>
+
+          <ul id="-apache-navigation">
+            <li><a href="http://www.apache.org/";>Apache</a></li>
+            <li><a href="http://www.apache.org/licenses/";>License</a></li>
+            <li><a 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
+            <li><a 
href="http://www.apache.org/foundation/thanks.html";>Thanks!</a></li>
+            <li><a href="http://www.apache.org/security/";>Security</a></li>
+            <li><a href="http://www.apache.org/";><img id="-apache-feather" 
width="48" height="14" src="" alt="Apache"/></a></li>
+          </ul>
+
+          <p id="-legal">
+            Apache Qpid, Messaging built on AMQP; Copyright &#169; 2015
+            The Apache Software Foundation; Licensed under
+            the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache
+            License, Version 2.0</a>; Apache Qpid, Qpid, Qpid Proton,
+            Proton, Apache, the Apache feather logo, and the Apache Qpid
+            project logo are trademarks of The Apache Software
+            Foundation; All other marks mentioned may be trademarks or
+            registered trademarks of their respective owners
+          </p>
+        </div>
+      </div>
+    </div>
+  </body>
+</html>

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a1891eca/content/components/java-broker/index.html
----------------------------------------------------------------------
diff --git a/content/components/java-broker/index.html 
b/content/components/java-broker/index.html
new file mode 100644
index 0000000..6aea6d3
--- /dev/null
+++ b/content/components/java-broker/index.html
@@ -0,0 +1,229 @@
+<!DOCTYPE html>
+<!--
+ -
+ - Licensed to the Apache Software Foundation (ASF) under one
+ - or more contributor license agreements.  See the NOTICE file
+ - distributed with this work for additional information
+ - regarding copyright ownership.  The ASF licenses this file
+ - to you under the Apache License, Version 2.0 (the
+ - "License"); you may not use this file except in compliance
+ - with the License.  You may obtain a copy of the License at
+ -
+ -   http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing,
+ - software distributed under the License is distributed on an
+ - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ - KIND, either express or implied.  See the License for the
+ - specific language governing permissions and limitations
+ - under the License.
+ -
+-->
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
+  <head>
+    <title>Java Broker - Apache Qpid&#8482;</title>
+    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+    <link rel="stylesheet" href="/site.css" type="text/css" async="async"/>
+    <link rel="stylesheet" href="/deferred.css" type="text/css" defer="defer"/>
+    <script type="text/javascript">var _deferredFunctions = [];</script>
+    <script type="text/javascript" src="/deferred.js" defer="defer"></script>
+    <!--[if lte IE 8]>
+      <link rel="stylesheet" href="/ie.css" type="text/css"/>
+      <script type="text/javascript" src="/html5shiv.js"></script>
+    <![endif]-->
+
+    <!-- Redirects for `go get` and godoc.org -->
+    <meta name="go-import"
+          content="qpid.apache.org git 
https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+    <meta name="go-source"
+          content="qpid.apache.org
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  </head>
+  <body>
+    <div id="-content">
+      <div id="-top" class="panel">
+        <a id="-menu-link"><img width="16" height="16" src="" alt="Menu"/></a>
+
+        <a id="-search-link"><img width="22" height="16" src="" 
alt="Search"/></a>
+
+        <ul id="-global-navigation">
+          <li><a id="-logotype" href="/index.html">Apache 
Qpid<sup>&#8482;</sup></a></li>
+          <li><a href="/documentation.html">Documentation</a></li>
+          <li><a href="/download.html">Download</a></li>
+          <li><a href="/discussion.html">Discussion</a></li>
+        </ul>
+      </div>
+
+      <div id="-menu" class="panel" style="display: none;">
+        <div class="flex">
+          <section>
+            <h3>Project</h3>
+
+            <ul>
+              <li><a href="/overview.html">Overview</a></li>
+              <li><a href="/components/index.html">Components</a></li>
+              <li><a href="/releases/index.html">Releases</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Messaging APIs</h3>
+
+            <ul>
+              <li><a href="/proton/index.html">Qpid Proton</a></li>
+              <li><a href="/components/jms/index.html">Qpid JMS</a></li>
+              <li><a href="/components/messaging-api/index.html">Qpid 
Messaging API</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Servers and tools</h3>
+
+            <ul>
+              <li><a href="/components/java-broker/index.html">Java 
broker</a></li>
+              <li><a href="/components/cpp-broker/index.html">C++ 
broker</a></li>
+              <li><a href="/components/dispatch-router/index.html">Dispatch 
router</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Resources</h3>
+
+            <ul>
+              <li><a href="/dashboard.html">Dashboard</a></li>
+              <li><a 
href="https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki</a></li>
+              <li><a href="/resources.html">More resources</a></li>
+            </ul>
+          </section>
+        </div>
+      </div>
+
+      <div id="-search" class="panel" style="display: none;">
+        <form action="http://www.google.com/search"; method="get">
+          <input type="hidden" name="sitesearch" value="qpid.apache.org"/>
+          <input type="text" name="q" maxlength="255" autofocus="autofocus" 
tabindex="1"/>
+          <button type="submit">Search</button>
+          <a href="/search.html">More ways to search</a>
+        </form>
+      </div>
+
+      <div id="-middle" class="panel">
+        <ul id="-path-navigation"><li><a 
href="/index.html">Home</a></li><li><a 
href="/components/index.html">Components</a></li><li>Java Broker</li></ul>
+
+        <div id="-middle-content">
+          <div id="-left-column">
+
+<h1 id="java-broker">Java Broker</h1>
+
+<div class="feature">
+
+<p>A <a 
href="http://en.wikipedia.org/wiki/Message-oriented_middleware";>message-oriented
 middleware</a> message broker written in Java
+that stores, routes, and forwards messages using AMQP.</p>
+
+</div>
+
+<h2 id="features">Features</h2>
+
+<div class="two-column">
+
+<ul>
+<li><a href="http://www.oracle.com/technetwork/java/docs-136352.html";>JMS 
1.1</a> compliant</li>
+<li>Speaks and translates among all versions of AMQP</li>
+<li>Management via JMX, REST, QMF, and web console</li>
+<li><a 
href="/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Security-ACLs.html">Access
 control lists</a></li>
+<li>Flexible logging</li>
+<li>Flow to disk</li>
+<li>Header-based routing</li>
+<li>Heartbeats</li>
+<li><a 
href="/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-High-Availability.html">High
 availability</a></li>
+<li>Message groups</li>
+<li>Pluggable persistence supporting Derby, SQL, and BDB stores</li>
+<li><a 
href="/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Security.html#Java-Broker-Security-Authentication-Providers">Pluggable
 authentication</a> supporting LDAP, Kerberos, and SSL client certificates</li>
+<li><a 
href="/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Runtime-Disk-Space-Management.html#Qpid-Producer-Flow-Control">Producer
 flow control</a></li>
+<li>Secure connection via SSL</li>
+<li>Server-side selectors</li>
+<li>Specialized queuing with last value queue, priority queue, and sorted 
queue</li>
+<li>Threshold alerts</li>
+<li>Transactions</li>
+<li><a 
href="/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Runtime-Handling-Undeliverable-Messages.html">Undeliverable
 message handling</a></li>
+<li>Virtual hosts</li>
+<li>Support for message compression</li>
+</ul>
+
+</div>
+
+<h2 id="documentation">Documentation</h2>
+
+<ul>
+<li><a href="/releases/qpid-java-6.0.2/java-broker/book/index.html">Java 
broker book</a></li>
+<li><a 
href="https://cwiki.apache.org/confluence/display/qpid/qpid+java+build+how+to";>How
 to build Qpid Java</a></li>
+</ul>
+
+</div>
+
+<div id="-right-column" class="right-column-adjusted">
+
+<h2 id="releases">Releases</h2>
+
+<ul>
+<li><a href="/releases/qpid-java-6.0.2">Qpid Java 6.0.2</a></li>
+<li><a href="/releases/index.html#past-releases">Past releases</a></li>
+</ul>
+
+<h2 id="issues">Issues</h2>
+
+<ul>
+<li><a 
href="https://issues.apache.org/jira/secure/CreateIssue.jspa?pid=12310520&amp;issuetype=1&amp;priority=3";>Report
 a bug</a></li>
+<li><a 
href="https://issues.apache.org/jira/secure/CreateIssue.jspa?pid=12310520&amp;issuetype=4&amp;priority=3";>Request
 an improvement</a></li>
+<li><form id="-jira-goto-form">Go to issue <input name="jira" 
value="QPID-"/></form></li>
+<li><a href="https://issues.apache.org/jira/browse/QPID";>JIRA project 
page</a></li>
+</ul>
+
+<h2 id="source-code">Source code</h2>
+
+<ul>
+<li><a href="https://github.com/apache/qpid-java";>Browse via GitHub</a></li>
+<li><a href="https://svn.apache.org/repos/asf/qpid/java/trunk";>Subversion 
repository</a></li>
+</ul>
+
+<h2 id="resources">Resources</h2>
+
+<ul>
+<li><a 
href="https://cwiki.apache.org/confluence/display/qpid/qpid+java+faq";>FAQ</a></li>
+<li><a 
href="https://cwiki.apache.org/confluence/display/qpid/java+broker+design";>Design
 documents</a></li>
+<li><a 
href="https://cwiki.apache.org/confluence/display/qpid/qpid+extensions+to+amqp";>Qpid
 extensions to AMQP</a></li>
+<li><a 
href="https://cwiki.apache.org/confluence/display/qpid/qpid+java+documentation";>More
 on the wiki</a></li>
+</ul>
+
+</div>
+
+
+          <hr/>
+
+          <ul id="-apache-navigation">
+            <li><a href="http://www.apache.org/";>Apache</a></li>
+            <li><a href="http://www.apache.org/licenses/";>License</a></li>
+            <li><a 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
+            <li><a 
href="http://www.apache.org/foundation/thanks.html";>Thanks!</a></li>
+            <li><a href="http://www.apache.org/security/";>Security</a></li>
+            <li><a href="http://www.apache.org/";><img id="-apache-feather" 
width="48" height="14" src="" alt="Apache"/></a></li>
+          </ul>
+
+          <p id="-legal">
+            Apache Qpid, Messaging built on AMQP; Copyright &#169; 2015
+            The Apache Software Foundation; Licensed under
+            the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache
+            License, Version 2.0</a>; Apache Qpid, Qpid, Qpid Proton,
+            Proton, Apache, the Apache feather logo, and the Apache Qpid
+            project logo are trademarks of The Apache Software
+            Foundation; All other marks mentioned may be trademarks or
+            registered trademarks of their respective owners
+          </p>
+        </div>
+      </div>
+    </div>
+  </body>
+</html>

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a1891eca/content/components/jms/amqp-0-x.html
----------------------------------------------------------------------
diff --git a/content/components/jms/amqp-0-x.html 
b/content/components/jms/amqp-0-x.html
new file mode 100644
index 0000000..2959cc5
--- /dev/null
+++ b/content/components/jms/amqp-0-x.html
@@ -0,0 +1,187 @@
+<!DOCTYPE html>
+<!--
+ -
+ - Licensed to the Apache Software Foundation (ASF) under one
+ - or more contributor license agreements.  See the NOTICE file
+ - distributed with this work for additional information
+ - regarding copyright ownership.  The ASF licenses this file
+ - to you under the Apache License, Version 2.0 (the
+ - "License"); you may not use this file except in compliance
+ - with the License.  You may obtain a copy of the License at
+ -
+ -   http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing,
+ - software distributed under the License is distributed on an
+ - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ - KIND, either express or implied.  See the License for the
+ - specific language governing permissions and limitations
+ - under the License.
+ -
+-->
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
+  <head>
+    <title>JMS for Earlier AMQP Versions - Apache Qpid&#8482;</title>
+    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+    <link rel="stylesheet" href="/site.css" type="text/css" async="async"/>
+    <link rel="stylesheet" href="/deferred.css" type="text/css" defer="defer"/>
+    <script type="text/javascript">var _deferredFunctions = [];</script>
+    <script type="text/javascript" src="/deferred.js" defer="defer"></script>
+    <!--[if lte IE 8]>
+      <link rel="stylesheet" href="/ie.css" type="text/css"/>
+      <script type="text/javascript" src="/html5shiv.js"></script>
+    <![endif]-->
+
+    <!-- Redirects for `go get` and godoc.org -->
+    <meta name="go-import"
+          content="qpid.apache.org git 
https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+    <meta name="go-source"
+          content="qpid.apache.org
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  </head>
+  <body>
+    <div id="-content">
+      <div id="-top" class="panel">
+        <a id="-menu-link"><img width="16" height="16" src="" alt="Menu"/></a>
+
+        <a id="-search-link"><img width="22" height="16" src="" 
alt="Search"/></a>
+
+        <ul id="-global-navigation">
+          <li><a id="-logotype" href="/index.html">Apache 
Qpid<sup>&#8482;</sup></a></li>
+          <li><a href="/documentation.html">Documentation</a></li>
+          <li><a href="/download.html">Download</a></li>
+          <li><a href="/discussion.html">Discussion</a></li>
+        </ul>
+      </div>
+
+      <div id="-menu" class="panel" style="display: none;">
+        <div class="flex">
+          <section>
+            <h3>Project</h3>
+
+            <ul>
+              <li><a href="/overview.html">Overview</a></li>
+              <li><a href="/components/index.html">Components</a></li>
+              <li><a href="/releases/index.html">Releases</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Messaging APIs</h3>
+
+            <ul>
+              <li><a href="/proton/index.html">Qpid Proton</a></li>
+              <li><a href="/components/jms/index.html">Qpid JMS</a></li>
+              <li><a href="/components/messaging-api/index.html">Qpid 
Messaging API</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Servers and tools</h3>
+
+            <ul>
+              <li><a href="/components/java-broker/index.html">Java 
broker</a></li>
+              <li><a href="/components/cpp-broker/index.html">C++ 
broker</a></li>
+              <li><a href="/components/dispatch-router/index.html">Dispatch 
router</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Resources</h3>
+
+            <ul>
+              <li><a href="/dashboard.html">Dashboard</a></li>
+              <li><a 
href="https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki</a></li>
+              <li><a href="/resources.html">More resources</a></li>
+            </ul>
+          </section>
+        </div>
+      </div>
+
+      <div id="-search" class="panel" style="display: none;">
+        <form action="http://www.google.com/search"; method="get">
+          <input type="hidden" name="sitesearch" value="qpid.apache.org"/>
+          <input type="text" name="q" maxlength="255" autofocus="autofocus" 
tabindex="1"/>
+          <button type="submit">Search</button>
+          <a href="/search.html">More ways to search</a>
+        </form>
+      </div>
+
+      <div id="-middle" class="panel">
+        <ul id="-path-navigation"><li><a 
href="/index.html">Home</a></li><li><a 
href="/components/index.html">Components</a></li><li><a 
href="/components/jms/index.html">Qpid JMS</a></li><li>JMS for Earlier AMQP 
Versions</li></ul>
+
+        <div id="-middle-content">
+          <h1 id="jms-for-earlier-amqp-versions">JMS for Earlier AMQP 
Versions</h1>
+
+<p>A JMS 1.1 implementation supporting AMQP versions 0-10, 0-9-1, 0-9, and
+0-8.  For AMQP 1.0 support, use the newer <a href="index.html">Qpid JMS</a> 
client.</p>
+
+<h2 id="download">Download</h2>
+
+<p>This JMS implementation is released as part of <a 
href="/releases/qpid-java-6.0.2">Qpid Java 6.0.2</a>.</p>
+
+<div class="two-column">
+
+<ul>
+<li><a 
href="http://www.apache.org/dyn/closer.lua/qpid/java/6.0.2/binaries/qpid-client-6.0.2-bin.tar.gz";>Java
 binary</a></li>
+<li><a 
href="http://www.apache.org/dist/qpid/java/6.0.2/binaries/qpid-client-6.0.2-bin.tar.gz.asc";>PGP
 signature</a></li>
+<li><a 
href="http://www.apache.org/dist/qpid/java/6.0.2/binaries/qpid-client-6.0.2-bin.tar.gz.md5";>MD5
 checksum</a></li>
+<li><a 
href="http://www.apache.org/dist/qpid/java/6.0.2/binaries/qpid-client-6.0.2-bin.tar.gz.sha1";>SHA1
 checksum</a></li>
+</ul>
+
+</div>
+
+<p>The client is also available <a href="/maven.html">via Maven</a>.</p>
+
+<h2 id="documentation">Documentation</h2>
+
+<div class="two-column">
+
+<ul>
+<li><a 
href="http://docs.oracle.com/javaee/1.4/api/javax/jms/package-summary.html";>API 
reference</a></li>
+<li><a href="/releases/qpid-0.32/programming/book/QpidJMS.html">Using the Qpid 
JMS client (AMQP 0-10)</a></li>
+<li><a href="/releases/qpid-java-6.0.2/jms-client-0-8/book/index.html">Using 
the Qpid JMS client (AMQP 0-9-1, 0-9, 0-8)</a></li>
+<li><a href="/releases/qpid-0.32/qpid-jms/examples/index.html">Examples (AMQP 
0-10)</a></li>
+<li><a 
href="/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Examples.html">Examples
 (AMQP 0-9-1, 0-9, 0-8)</a></li>
+</ul>
+
+</div>
+
+<h2 id="issues">Issues</h2>
+
+<ul>
+<li><a 
href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&amp;issuetype=1&amp;priority=3&amp;components=12311389";>Report
 a bug</a></li>
+<li><a 
href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&amp;issuetype=4&amp;priority=3&amp;components=12311389";>Request
 an improvement</a></li>
+<li><a 
href="http://issues.apache.org/jira/browse/QPID/component/12311389";>Jira 
component page</a></li>
+</ul>
+
+
+          <hr/>
+
+          <ul id="-apache-navigation">
+            <li><a href="http://www.apache.org/";>Apache</a></li>
+            <li><a href="http://www.apache.org/licenses/";>License</a></li>
+            <li><a 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
+            <li><a 
href="http://www.apache.org/foundation/thanks.html";>Thanks!</a></li>
+            <li><a href="http://www.apache.org/security/";>Security</a></li>
+            <li><a href="http://www.apache.org/";><img id="-apache-feather" 
width="48" height="14" src="" alt="Apache"/></a></li>
+          </ul>
+
+          <p id="-legal">
+            Apache Qpid, Messaging built on AMQP; Copyright &#169; 2015
+            The Apache Software Foundation; Licensed under
+            the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache
+            License, Version 2.0</a>; Apache Qpid, Qpid, Qpid Proton,
+            Proton, Apache, the Apache feather logo, and the Apache Qpid
+            project logo are trademarks of The Apache Software
+            Foundation; All other marks mentioned may be trademarks or
+            registered trademarks of their respective owners
+          </p>
+        </div>
+      </div>
+    </div>
+  </body>
+</html>

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a1891eca/content/components/jms/amqp-1.0-prototype.html
----------------------------------------------------------------------
diff --git a/content/components/jms/amqp-1.0-prototype.html 
b/content/components/jms/amqp-1.0-prototype.html
new file mode 100644
index 0000000..1e98451
--- /dev/null
+++ b/content/components/jms/amqp-1.0-prototype.html
@@ -0,0 +1,189 @@
+<!DOCTYPE html>
+<!--
+ -
+ - Licensed to the Apache Software Foundation (ASF) under one
+ - or more contributor license agreements.  See the NOTICE file
+ - distributed with this work for additional information
+ - regarding copyright ownership.  The ASF licenses this file
+ - to you under the Apache License, Version 2.0 (the
+ - "License"); you may not use this file except in compliance
+ - with the License.  You may obtain a copy of the License at
+ -
+ -   http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing,
+ - software distributed under the License is distributed on an
+ - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ - KIND, either express or implied.  See the License for the
+ - specific language governing permissions and limitations
+ - under the License.
+ -
+-->
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
+  <head>
+    <title>Earlier AMQP 1.0 JMS Client - Apache Qpid&#8482;</title>
+    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+    <link rel="stylesheet" href="/site.css" type="text/css" async="async"/>
+    <link rel="stylesheet" href="/deferred.css" type="text/css" defer="defer"/>
+    <script type="text/javascript">var _deferredFunctions = [];</script>
+    <script type="text/javascript" src="/deferred.js" defer="defer"></script>
+    <!--[if lte IE 8]>
+      <link rel="stylesheet" href="/ie.css" type="text/css"/>
+      <script type="text/javascript" src="/html5shiv.js"></script>
+    <![endif]-->
+
+    <!-- Redirects for `go get` and godoc.org -->
+    <meta name="go-import"
+          content="qpid.apache.org git 
https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+    <meta name="go-source"
+          content="qpid.apache.org
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  </head>
+  <body>
+    <div id="-content">
+      <div id="-top" class="panel">
+        <a id="-menu-link"><img width="16" height="16" src="" alt="Menu"/></a>
+
+        <a id="-search-link"><img width="22" height="16" src="" 
alt="Search"/></a>
+
+        <ul id="-global-navigation">
+          <li><a id="-logotype" href="/index.html">Apache 
Qpid<sup>&#8482;</sup></a></li>
+          <li><a href="/documentation.html">Documentation</a></li>
+          <li><a href="/download.html">Download</a></li>
+          <li><a href="/discussion.html">Discussion</a></li>
+        </ul>
+      </div>
+
+      <div id="-menu" class="panel" style="display: none;">
+        <div class="flex">
+          <section>
+            <h3>Project</h3>
+
+            <ul>
+              <li><a href="/overview.html">Overview</a></li>
+              <li><a href="/components/index.html">Components</a></li>
+              <li><a href="/releases/index.html">Releases</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Messaging APIs</h3>
+
+            <ul>
+              <li><a href="/proton/index.html">Qpid Proton</a></li>
+              <li><a href="/components/jms/index.html">Qpid JMS</a></li>
+              <li><a href="/components/messaging-api/index.html">Qpid 
Messaging API</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Servers and tools</h3>
+
+            <ul>
+              <li><a href="/components/java-broker/index.html">Java 
broker</a></li>
+              <li><a href="/components/cpp-broker/index.html">C++ 
broker</a></li>
+              <li><a href="/components/dispatch-router/index.html">Dispatch 
router</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Resources</h3>
+
+            <ul>
+              <li><a href="/dashboard.html">Dashboard</a></li>
+              <li><a 
href="https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki</a></li>
+              <li><a href="/resources.html">More resources</a></li>
+            </ul>
+          </section>
+        </div>
+      </div>
+
+      <div id="-search" class="panel" style="display: none;">
+        <form action="http://www.google.com/search"; method="get">
+          <input type="hidden" name="sitesearch" value="qpid.apache.org"/>
+          <input type="text" name="q" maxlength="255" autofocus="autofocus" 
tabindex="1"/>
+          <button type="submit">Search</button>
+          <a href="/search.html">More ways to search</a>
+        </form>
+      </div>
+
+      <div id="-middle" class="panel">
+        <ul id="-path-navigation"><li><a 
href="/index.html">Home</a></li><li><a 
href="/components/index.html">Components</a></li><li><a 
href="/components/jms/index.html">Qpid JMS</a></li><li>Earlier AMQP 1.0 JMS 
Client</li></ul>
+
+        <div id="-middle-content">
+          <h1 id="earlier-amqp-10-jms-client">Earlier AMQP 1.0 JMS Client</h1>
+
+<p>Before the new <a href="index.html">Qpid JMS</a> AMQP 1.0 client became 
available, the Qpid
+project offered an earlier AMQP 1.0 JMS client based on some initial 
prototyping work.
+Its details are preserved here to support existing users during transition to 
the newer
+client. If you are using this earlier client or just starting out, we 
encourage you to
+look at the newer <a href="index.html">Qpid JMS</a> AMQP 1.0 client.</p>
+
+<h2 id="download">Download</h2>
+
+<p>The earlier AMQP 1.0 JMS client is released as part of <a 
href="/releases/qpid-0.32">Qpid 0.32</a>.</p>
+
+<div class="two-column">
+
+<ul>
+<li><a 
href="http://archive.apache.org/dist/qpid/0.32/binaries/qpid-amqp-1-0-client-jms-0.32-bin.tar.gz";>Java
 binary</a></li>
+<li><a 
href="http://archive.apache.org/dist/qpid/0.32/binaries/qpid-amqp-1-0-client-jms-0.32-bin.tar.gz.asc";>PGP
 signature</a></li>
+<li><a 
href="http://archive.apache.org/dist/qpid/0.32/binaries/qpid-amqp-1-0-client-jms-0.32-bin.tar.gz.md5";>MD5
 checksum</a></li>
+<li><a 
href="http://archive.apache.org/dist/qpid/0.32/binaries/qpid-amqp-1-0-client-jms-0.32-bin.tar.gz.sha1";>SHA1
 checksum</a></li>
+</ul>
+
+</div>
+
+<h2 id="documentation">Documentation</h2>
+
+<ul>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/branches/0.32/qpid/java/amqp-1-0-client-jms/example";>Examples</a></li>
+</ul>
+
+<h2 id="maven">Maven</h2>
+
+<p>The earlier AMQP 1.0 JMS client is also available via Maven. Use the 
following depencencies:</p>
+
+<div class="highlight"><pre>
+<span class="nt">&lt;dependency&gt;</span>
+  <span class="nt">&lt;groupId&gt;</span>org.apache.qpid<span 
class="nt">&lt;/groupId&gt;</span>
+  <span class="nt">&lt;artifactId&gt;</span>qpid-amqp-1-0-client-jms<span 
class="nt">&lt;/artifactId&gt;</span>
+  <span class="nt">&lt;version&gt;</span>0.32<span 
class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span>
+<span class="nt">&lt;dependency&gt;</span>
+  <span class="nt">&lt;groupId&gt;</span>org.apache.geronimo.specs<span 
class="nt">&lt;/groupId&gt;</span>
+  <span class="nt">&lt;artifactId&gt;</span>geronimo-jms_1.1_spec<span 
class="nt">&lt;/artifactId&gt;</span>
+  <span class="nt">&lt;version&gt;</span>1.0<span 
class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span>
+</pre></div>
+
+
+          <hr/>
+
+          <ul id="-apache-navigation">
+            <li><a href="http://www.apache.org/";>Apache</a></li>
+            <li><a href="http://www.apache.org/licenses/";>License</a></li>
+            <li><a 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
+            <li><a 
href="http://www.apache.org/foundation/thanks.html";>Thanks!</a></li>
+            <li><a href="http://www.apache.org/security/";>Security</a></li>
+            <li><a href="http://www.apache.org/";><img id="-apache-feather" 
width="48" height="14" src="" alt="Apache"/></a></li>
+          </ul>
+
+          <p id="-legal">
+            Apache Qpid, Messaging built on AMQP; Copyright &#169; 2015
+            The Apache Software Foundation; Licensed under
+            the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache
+            License, Version 2.0</a>; Apache Qpid, Qpid, Qpid Proton,
+            Proton, Apache, the Apache feather logo, and the Apache Qpid
+            project logo are trademarks of The Apache Software
+            Foundation; All other marks mentioned may be trademarks or
+            registered trademarks of their respective owners
+          </p>
+        </div>
+      </div>
+    </div>
+  </body>
+</html>

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a1891eca/content/components/jms/index.html
----------------------------------------------------------------------
diff --git a/content/components/jms/index.html 
b/content/components/jms/index.html
new file mode 100644
index 0000000..37755cf
--- /dev/null
+++ b/content/components/jms/index.html
@@ -0,0 +1,221 @@
+<!DOCTYPE html>
+<!--
+ -
+ - Licensed to the Apache Software Foundation (ASF) under one
+ - or more contributor license agreements.  See the NOTICE file
+ - distributed with this work for additional information
+ - regarding copyright ownership.  The ASF licenses this file
+ - to you under the Apache License, Version 2.0 (the
+ - "License"); you may not use this file except in compliance
+ - with the License.  You may obtain a copy of the License at
+ -
+ -   http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing,
+ - software distributed under the License is distributed on an
+ - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ - KIND, either express or implied.  See the License for the
+ - specific language governing permissions and limitations
+ - under the License.
+ -
+-->
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
+  <head>
+    <title>Qpid JMS - Apache Qpid&#8482;</title>
+    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+    <link rel="stylesheet" href="/site.css" type="text/css" async="async"/>
+    <link rel="stylesheet" href="/deferred.css" type="text/css" defer="defer"/>
+    <script type="text/javascript">var _deferredFunctions = [];</script>
+    <script type="text/javascript" src="/deferred.js" defer="defer"></script>
+    <!--[if lte IE 8]>
+      <link rel="stylesheet" href="/ie.css" type="text/css"/>
+      <script type="text/javascript" src="/html5shiv.js"></script>
+    <![endif]-->
+
+    <!-- Redirects for `go get` and godoc.org -->
+    <meta name="go-import"
+          content="qpid.apache.org git 
https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+    <meta name="go-source"
+          content="qpid.apache.org
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  </head>
+  <body>
+    <div id="-content">
+      <div id="-top" class="panel">
+        <a id="-menu-link"><img width="16" height="16" src="" alt="Menu"/></a>
+
+        <a id="-search-link"><img width="22" height="16" src="" 
alt="Search"/></a>
+
+        <ul id="-global-navigation">
+          <li><a id="-logotype" href="/index.html">Apache 
Qpid<sup>&#8482;</sup></a></li>
+          <li><a href="/documentation.html">Documentation</a></li>
+          <li><a href="/download.html">Download</a></li>
+          <li><a href="/discussion.html">Discussion</a></li>
+        </ul>
+      </div>
+
+      <div id="-menu" class="panel" style="display: none;">
+        <div class="flex">
+          <section>
+            <h3>Project</h3>
+
+            <ul>
+              <li><a href="/overview.html">Overview</a></li>
+              <li><a href="/components/index.html">Components</a></li>
+              <li><a href="/releases/index.html">Releases</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Messaging APIs</h3>
+
+            <ul>
+              <li><a href="/proton/index.html">Qpid Proton</a></li>
+              <li><a href="/components/jms/index.html">Qpid JMS</a></li>
+              <li><a href="/components/messaging-api/index.html">Qpid 
Messaging API</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Servers and tools</h3>
+
+            <ul>
+              <li><a href="/components/java-broker/index.html">Java 
broker</a></li>
+              <li><a href="/components/cpp-broker/index.html">C++ 
broker</a></li>
+              <li><a href="/components/dispatch-router/index.html">Dispatch 
router</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Resources</h3>
+
+            <ul>
+              <li><a href="/dashboard.html">Dashboard</a></li>
+              <li><a 
href="https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki</a></li>
+              <li><a href="/resources.html">More resources</a></li>
+            </ul>
+          </section>
+        </div>
+      </div>
+
+      <div id="-search" class="panel" style="display: none;">
+        <form action="http://www.google.com/search"; method="get">
+          <input type="hidden" name="sitesearch" value="qpid.apache.org"/>
+          <input type="text" name="q" maxlength="255" autofocus="autofocus" 
tabindex="1"/>
+          <button type="submit">Search</button>
+          <a href="/search.html">More ways to search</a>
+        </form>
+      </div>
+
+      <div id="-middle" class="panel">
+        <ul id="-path-navigation"><li><a 
href="/index.html">Home</a></li><li><a 
href="/components/index.html">Components</a></li><li>Qpid JMS</li></ul>
+
+        <div id="-middle-content">
+          <div id="-left-column">
+
+<h1 id="qpid-jms">Qpid JMS</h1>
+
+<div class="feature">
+
+<h2 id="jms-with-the-strength-of-amqp">JMS with the strength of AMQP</h2>
+
+<p>Qpid JMS is a complete AMQP 1.0 <a 
href="http://en.wikipedia.org/wiki/Java_Message_Service";>Java Message 
Service</a> 1.1 client built
+using <a href="/proton/index.html">Qpid Proton</a>.</p>
+
+<p>Qpid also provides an alternate JMS client supporting
+<a href="amqp-0-x.html">earlier AMQP versions</a>.</p>
+
+</div>
+
+<h2 id="features">Features</h2>
+
+<ul>
+<li><a href="http://www.oracle.com/technetwork/java/docs-136352.html";>JMS 
1.1</a>
+API compatible</li>
+<li>Secure communication via SSL and SASL </li>
+<li>Producer flow control</li>
+<li>Failover</li>
+<li>Pure-Java implementation</li>
+</ul>
+
+<h2 id="documentation">Documentation</h2>
+
+<div class="two-column">
+
+<ul>
+<li><a 
href="http://docs.oracle.com/javaee/1.4/api/javax/jms/package-summary.html";>API 
reference</a></li>
+<li><a 
href="https://github.com/apache/qpid-jms/tree/0.9.0/qpid-jms-examples";>Examples</a></li>
+<li><a href="/releases/qpid-jms-0.9.0/docs/index.html">Configuration</a></li>
+<li><a href="/releases/qpid-jms-0.9.0/building.html">Building Qpid JMS</a></li>
+</ul>
+
+</div>
+
+<p>For details about the AMQP 0-x JMS client, look <a 
href="amqp-0-x.html">here</a>.</p>
+
+</div>
+
+<div id="-right-column" class="right-column-adjusted">
+
+<h2 id="releases">Releases</h2>
+
+<ul>
+<li><a href="/releases/qpid-jms-0.9.0">Qpid JMS 0.9.0</a></li>
+<li><a href="/releases/index.html#past-releases">Past releases</a></li>
+</ul>
+
+<h2 id="issues">Issues</h2>
+
+<ul>
+<li><a 
href="https://issues.apache.org/jira/secure/CreateIssue.jspa?pid=12314524&amp;issuetype=1&amp;priority=3&amp;summary=[Enter%20a%20brief%20description]";>Report
 a bug</a></li>
+<li><a 
href="https://issues.apache.org/jira/secure/CreateIssue.jspa?pid=12314524&amp;issuetype=4&amp;priority=3";>Request
 an improvement</a></li>
+<li><form id="-jira-goto-form">Go to issue <input name="jira" 
value="QPIDJMS-"/></form></li>
+<li><a href="https://issues.apache.org/jira/browse/QPIDJMS";>JIRA project 
page</a></li>
+</ul>
+
+<h2 id="source-code">Source code</h2>
+
+<ul>
+<li><a href="https://github.com/apache/qpid-jms";>Browse via GitHub</a></li>
+<li><a href="https://git-wip-us.apache.org/repos/asf/qpid-jms.git";>Git clone 
URL</a></li>
+</ul>
+
+<h2 id="resources">Resources</h2>
+
+<ul>
+<li><a href="amqp-0-x.html">AMQP 0-x JMS Client</a></li>
+<li><a href="amqp-1.0-prototype.html">Earlier AMQP 1.0 JMS client</a></li>
+</ul>
+
+</div>
+
+
+          <hr/>
+
+          <ul id="-apache-navigation">
+            <li><a href="http://www.apache.org/";>Apache</a></li>
+            <li><a href="http://www.apache.org/licenses/";>License</a></li>
+            <li><a 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
+            <li><a 
href="http://www.apache.org/foundation/thanks.html";>Thanks!</a></li>
+            <li><a href="http://www.apache.org/security/";>Security</a></li>
+            <li><a href="http://www.apache.org/";><img id="-apache-feather" 
width="48" height="14" src="" alt="Apache"/></a></li>
+          </ul>
+
+          <p id="-legal">
+            Apache Qpid, Messaging built on AMQP; Copyright &#169; 2015
+            The Apache Software Foundation; Licensed under
+            the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache
+            License, Version 2.0</a>; Apache Qpid, Qpid, Qpid Proton,
+            Proton, Apache, the Apache feather logo, and the Apache Qpid
+            project logo are trademarks of The Apache Software
+            Foundation; All other marks mentioned may be trademarks or
+            registered trademarks of their respective owners
+          </p>
+        </div>
+      </div>
+    </div>
+  </body>
+</html>

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a1891eca/content/components/messaging-api/index.html
----------------------------------------------------------------------
diff --git a/content/components/messaging-api/index.html 
b/content/components/messaging-api/index.html
new file mode 100644
index 0000000..20433ee
--- /dev/null
+++ b/content/components/messaging-api/index.html
@@ -0,0 +1,266 @@
+<!DOCTYPE html>
+<!--
+ -
+ - Licensed to the Apache Software Foundation (ASF) under one
+ - or more contributor license agreements.  See the NOTICE file
+ - distributed with this work for additional information
+ - regarding copyright ownership.  The ASF licenses this file
+ - to you under the Apache License, Version 2.0 (the
+ - "License"); you may not use this file except in compliance
+ - with the License.  You may obtain a copy of the License at
+ -
+ -   http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing,
+ - software distributed under the License is distributed on an
+ - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ - KIND, either express or implied.  See the License for the
+ - specific language governing permissions and limitations
+ - under the License.
+ -
+-->
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
+  <head>
+    <title>Qpid Messaging API - Apache Qpid&#8482;</title>
+    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+    <link rel="stylesheet" href="/site.css" type="text/css" async="async"/>
+    <link rel="stylesheet" href="/deferred.css" type="text/css" defer="defer"/>
+    <script type="text/javascript">var _deferredFunctions = [];</script>
+    <script type="text/javascript" src="/deferred.js" defer="defer"></script>
+    <!--[if lte IE 8]>
+      <link rel="stylesheet" href="/ie.css" type="text/css"/>
+      <script type="text/javascript" src="/html5shiv.js"></script>
+    <![endif]-->
+
+    <!-- Redirects for `go get` and godoc.org -->
+    <meta name="go-import"
+          content="qpid.apache.org git 
https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+    <meta name="go-source"
+          content="qpid.apache.org
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  </head>
+  <body>
+    <div id="-content">
+      <div id="-top" class="panel">
+        <a id="-menu-link"><img width="16" height="16" src="" alt="Menu"/></a>
+
+        <a id="-search-link"><img width="22" height="16" src="" 
alt="Search"/></a>
+
+        <ul id="-global-navigation">
+          <li><a id="-logotype" href="/index.html">Apache 
Qpid<sup>&#8482;</sup></a></li>
+          <li><a href="/documentation.html">Documentation</a></li>
+          <li><a href="/download.html">Download</a></li>
+          <li><a href="/discussion.html">Discussion</a></li>
+        </ul>
+      </div>
+
+      <div id="-menu" class="panel" style="display: none;">
+        <div class="flex">
+          <section>
+            <h3>Project</h3>
+
+            <ul>
+              <li><a href="/overview.html">Overview</a></li>
+              <li><a href="/components/index.html">Components</a></li>
+              <li><a href="/releases/index.html">Releases</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Messaging APIs</h3>
+
+            <ul>
+              <li><a href="/proton/index.html">Qpid Proton</a></li>
+              <li><a href="/components/jms/index.html">Qpid JMS</a></li>
+              <li><a href="/components/messaging-api/index.html">Qpid 
Messaging API</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Servers and tools</h3>
+
+            <ul>
+              <li><a href="/components/java-broker/index.html">Java 
broker</a></li>
+              <li><a href="/components/cpp-broker/index.html">C++ 
broker</a></li>
+              <li><a href="/components/dispatch-router/index.html">Dispatch 
router</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Resources</h3>
+
+            <ul>
+              <li><a href="/dashboard.html">Dashboard</a></li>
+              <li><a 
href="https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki</a></li>
+              <li><a href="/resources.html">More resources</a></li>
+            </ul>
+          </section>
+        </div>
+      </div>
+
+      <div id="-search" class="panel" style="display: none;">
+        <form action="http://www.google.com/search"; method="get">
+          <input type="hidden" name="sitesearch" value="qpid.apache.org"/>
+          <input type="text" name="q" maxlength="255" autofocus="autofocus" 
tabindex="1"/>
+          <button type="submit">Search</button>
+          <a href="/search.html">More ways to search</a>
+        </form>
+      </div>
+
+      <div id="-middle" class="panel">
+        <ul id="-path-navigation"><li><a 
href="/index.html">Home</a></li><li><a 
href="/components/index.html">Components</a></li><li>Qpid Messaging 
API</li></ul>
+
+        <div id="-middle-content">
+          <h1 id="qpid-messaging-api">Qpid Messaging API</h1>
+
+<p>A connection-oriented messaging API that supports many languages and
+platforms.</p>
+
+<ul>
+<li><em>Languages</em> - C++, Perl, Python, Ruby, .NET</li>
+<li><em>Platforms</em> - Linux, Windows</li>
+<li><em>AMQP versions</em> - 1.0, 0-10</li>
+<li><em>Downloads</em> - C++, bindings: <a 
href="http://www.apache.org/dyn/closer.lua/qpid/cpp/0.34/qpid-cpp-0.34.tar.gz";>qpid-cpp-0.34.tar.gz</a>
 [<a 
href="http://www.apache.org/dist/qpid/cpp/0.34/qpid-cpp-0.34.tar.gz.asc";>ASC</a>,
 <a 
href="http://www.apache.org/dist/qpid/cpp/0.34/qpid-cpp-0.34.tar.gz.md5";>MD5</a>,
 <a 
href="http://www.apache.org/dist/qpid/cpp/0.34/qpid-cpp-0.34.tar.gz.sha1";>SHA1</a>],<br/>Python:
 <a 
href="http://www.apache.org/dyn/closer.lua/qpid/0.32/qpid-python-0.32.tar.gz";>qpid-python-0.32.tar.gz</a>
 [<a 
href="http://www.apache.org/dist/qpid/0.32/qpid-python-0.32.tar.gz.asc";>ASC</a>,
 <a 
href="http://www.apache.org/dist/qpid/0.32/qpid-python-0.32.tar.gz.md5";>MD5</a>,
 <a 
href="http://www.apache.org/dist/qpid/0.32/qpid-python-0.32.tar.gz.sha1";>SHA1</a>]</li>
+<li><em>Source location</em> -  <a 
href="http://svn.apache.org/repos/asf/qpid/trunk/qpid/cpp/";>http://svn.apache.org/repos/asf/qpid/trunk/qpid/cpp/</a>,<br/>
 <a 
href="http://svn.apache.org/repos/asf/qpid/trunk/qpid/python/";>http://svn.apache.org/repos/asf/qpid/trunk/qpid/python/</a></li>
+</ul>
+
+<h2 id="documentation">Documentation</h2>
+
+<p>This is the documentation for the current released version.  You can
+find previous versions with our
+<a href="/releases/index.html#past-releases">past releases</a>.</p>
+
+<div class="two-column">
+
+<ul>
+<li><a href="/releases/qpid-0.32/programming/book/ch02.html">Using the Qpid 
Messaging API</a></li>
+<li><a href="/releases/qpid-0.32/messaging-api/cpp/api/index.html">C++ API 
reference</a></li>
+<li><a href="/releases/qpid-0.32/messaging-api/cpp/examples/index.html">C++ 
examples</a></li>
+<li><a href="/releases/qpid-0.32/messaging-api/perl/examples/index.html">Perl 
examples</a></li>
+<li><a href="/releases/qpid-0.32/messaging-api/python/api/index.html">Python 
API reference</a></li>
+<li><a 
href="/releases/qpid-0.32/messaging-api/python/examples/index.html">Python 
examples</a></li>
+<li><a href="/releases/qpid-0.32/messaging-api/ruby/api/index.html">Ruby API 
reference</a></li>
+<li><a href="/releases/qpid-0.32/messaging-api/ruby/examples/index.html">Ruby 
examples</a></li>
+<li><a href="/releases/qpid-0.32/programming/book/ch05.html">The .NET Binding 
for the C++ Messaging Client</a></li>
+<li><a href="/releases/qpid-0.32/messaging-api/dotnet/api/index.html">.NET API 
reference</a></li>
+<li><a 
href="/releases/qpid-0.32/messaging-api/dotnet/examples/index.html">.NET 
examples</a></li>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/tags/0.32/qpid/cpp/INSTALL";>Installing
 Qpid C++</a></li>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/tags/0.32/qpid/python/README.txt";>Installing
 Qpid Python</a></li>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/tags/0.32/qpid/cpp/bindings/qpid/ruby/README.rdoc";>Installing
 the Ruby Messaging API</a></li>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/tags/0.32/qpid/cpp/bindings/qpid/dotnet/ReadMe.txt";>Installing
 the .NET Messaging API</a></li>
+</ul>
+
+</div>
+
+<h3 id="examples">Examples</h3>
+
+<table>
+<thead>
+<tr>
+  <th>Language</th>
+  <th>Hello World</th>
+  <th>Client</th>
+  <th>Server</th>
+  <th>Spout</th>
+  <th>Drain</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+  <td><em>C++</em></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/cpp/examples/hello_world.cpp.html">hello_world.cpp</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/cpp/examples/client.cpp.html">client.cpp</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/cpp/examples/server.cpp.html">server.cpp</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/cpp/examples/spout.cpp.html">spout.cpp</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/cpp/examples/drain.cpp.html">drain.cpp</a></td>
+</tr>
+<tr>
+  <td><em>Perl</em></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/perl/examples/hello_world.pl.html">hello_world.pl</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/perl/examples/client.pl.html">client.pl</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/perl/examples/server.pl.html">server.pl</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/perl/examples/spout.pl.html">spout.pl</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/perl/examples/drain.pl.html">drain.pl</a></td>
+</tr>
+<tr>
+  <td><em>Python</em></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/python/examples/hello.html">hello</a></td>
+  <td></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/python/examples/server.html">server</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/python/examples/spout.html">spout</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/python/examples/drain.html">drain</a></td>
+</tr>
+<tr>
+  <td><em>Ruby</em></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/ruby/examples/hello_world.rb.html">hello_world.rb</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/ruby/examples/client.rb.html">client.rb</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/ruby/examples/server.rb.html">server.rb</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/ruby/examples/spout.rb.html">spout.rb</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/ruby/examples/drain.rb.html">drain.rb</a></td>
+</tr>
+<tr>
+  <td><em>.NET</em></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/dotnet/examples/csharp.example.helloworld.cs.html">helloworld.cs</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/dotnet/examples/csharp.example.client.cs.html">client.cs</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/dotnet/examples/csharp.example.server.cs.html">server.cs</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/dotnet/examples/csharp.example.spout.cs.html">spout.cs</a></td>
+  <td><a 
href="/releases/qpid-0.32/messaging-api/dotnet/examples/csharp.example.drain.cs.html">drain.cs</a></td>
+</tr>
+</tbody>
+</table>
+
+<h2 id="issues">Issues</h2>
+
+<p>For more information about finding and reporting bugs, see
+<a href="/issues.html">Qpid issues</a>.</p>
+
+<form id="jira-search-form">
+  <input type="hidden" name="jql" value="project = QPID and component in ('C++ 
Client', 'Dot Net Client', 'Perl Client', 'Python Client', 'Ruby Client') and 
text ~ '{}' order by updatedDate desc"/>
+  <input type="text" name="text"/>
+  <button type="submit">Search</button>
+</form>
+
+<div class="two-column">
+
+<ul>
+<li><a 
href="https://issues.apache.org/jira/issues/?jql=resolution%20%3D%20EMPTY%20and%20issuetype%20%3D%20%22Bug%22%20and%20component%20in%20(%22C%2B%2B%20Client%22%2C%20%22Dot%20Net%20Client%22%2C%20%22Perl%20Client%22%2C%20%22Python%20Client%22%2C%20%22Ruby%20Client%22)%20and%20project%20%3D%20%22QPID%22">Open
 bugs</a></li>
+<li><a 
href="https://issues.apache.org/jira/issues/?jql=resolution%20%3D%20Fixed%20and%20issuetype%20%3D%20%22Bug%22%20and%20component%20in%20(%22C%2B%2B%20Client%22%2C%20%22Dot%20Net%20Client%22%2C%20%22Perl%20Client%22%2C%20%22Python%20Client%22%2C%20%22Ruby%20Client%22)%20and%20project%20%3D%20%22QPID%22">Fixed
 bugs</a></li>
+<li><a 
href="https://issues.apache.org/jira/issues/?jql=resolution%20%3D%20EMPTY%20and%20issuetype%20in%20(%22New%20Feature%22%2C%20%22Improvement%22)%20and%20component%20in%20(%22C%2B%2B%20Client%22%2C%20%22Dot%20Net%20Client%22%2C%20%22Perl%20Client%22%2C%20%22Python%20Client%22%2C%20%22Ruby%20Client%22)%20and%20project%20%3D%20%22QPID%22">Requested
 enhancements</a></li>
+<li><a 
href="https://issues.apache.org/jira/issues/?jql=resolution%20%3D%20Fixed%20and%20issuetype%20in%20(%22New%20Feature%22%2C%20%22Improvement%22)%20and%20component%20in%20(%22C%2B%2B%20Client%22%2C%20%22Dot%20Net%20Client%22%2C%20%22Perl%20Client%22%2C%20%22Python%20Client%22%2C%20%22Ruby%20Client%22)%20and%20project%20%3D%20%22QPID%22">Completed
 enhancements</a></li>
+<li><a 
href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&amp;issuetype=1&amp;priority=3&amp;summary=[Enter%20a%20brief%20description]&amp;components=12311396";>Report
 a bug</a></li>
+<li><a 
href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&amp;issuetype=4&amp;priority=3&amp;summary=[Enter%20a%20brief%20description]&amp;components=12311396";>Request
 an enhancement</a></li>
+<li><a 
href="http://issues.apache.org/jira/browse/QPID/component/12311396";>Jira 
summary page</a></li>
+</ul>
+
+</div>
+
+
+          <hr/>
+
+          <ul id="-apache-navigation">
+            <li><a href="http://www.apache.org/";>Apache</a></li>
+            <li><a href="http://www.apache.org/licenses/";>License</a></li>
+            <li><a 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
+            <li><a 
href="http://www.apache.org/foundation/thanks.html";>Thanks!</a></li>
+            <li><a href="http://www.apache.org/security/";>Security</a></li>
+            <li><a href="http://www.apache.org/";><img id="-apache-feather" 
width="48" height="14" src="" alt="Apache"/></a></li>
+          </ul>
+
+          <p id="-legal">
+            Apache Qpid, Messaging built on AMQP; Copyright &#169; 2015
+            The Apache Software Foundation; Licensed under
+            the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache
+            License, Version 2.0</a>; Apache Qpid, Qpid, Qpid Proton,
+            Proton, Apache, the Apache feather logo, and the Apache Qpid
+            project logo are trademarks of The Apache Software
+            Foundation; All other marks mentioned may be trademarks or
+            registered trademarks of their respective owners
+          </p>
+        </div>
+      </div>
+    </div>
+  </body>
+</html>

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a1891eca/content/components/qmf/index.html
----------------------------------------------------------------------
diff --git a/content/components/qmf/index.html 
b/content/components/qmf/index.html
new file mode 100644
index 0000000..3b9fafc
--- /dev/null
+++ b/content/components/qmf/index.html
@@ -0,0 +1,203 @@
+<!DOCTYPE html>
+<!--
+ -
+ - Licensed to the Apache Software Foundation (ASF) under one
+ - or more contributor license agreements.  See the NOTICE file
+ - distributed with this work for additional information
+ - regarding copyright ownership.  The ASF licenses this file
+ - to you under the Apache License, Version 2.0 (the
+ - "License"); you may not use this file except in compliance
+ - with the License.  You may obtain a copy of the License at
+ -
+ -   http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing,
+ - software distributed under the License is distributed on an
+ - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ - KIND, either express or implied.  See the License for the
+ - specific language governing permissions and limitations
+ - under the License.
+ -
+-->
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
+  <head>
+    <title>QMF - Apache Qpid&#8482;</title>
+    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+    <link rel="stylesheet" href="/site.css" type="text/css" async="async"/>
+    <link rel="stylesheet" href="/deferred.css" type="text/css" defer="defer"/>
+    <script type="text/javascript">var _deferredFunctions = [];</script>
+    <script type="text/javascript" src="/deferred.js" defer="defer"></script>
+    <!--[if lte IE 8]>
+      <link rel="stylesheet" href="/ie.css" type="text/css"/>
+      <script type="text/javascript" src="/html5shiv.js"></script>
+    <![endif]-->
+
+    <!-- Redirects for `go get` and godoc.org -->
+    <meta name="go-import"
+          content="qpid.apache.org git 
https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+    <meta name="go-source"
+          content="qpid.apache.org
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  </head>
+  <body>
+    <div id="-content">
+      <div id="-top" class="panel">
+        <a id="-menu-link"><img width="16" height="16" src="" alt="Menu"/></a>
+
+        <a id="-search-link"><img width="22" height="16" src="" 
alt="Search"/></a>
+
+        <ul id="-global-navigation">
+          <li><a id="-logotype" href="/index.html">Apache 
Qpid<sup>&#8482;</sup></a></li>
+          <li><a href="/documentation.html">Documentation</a></li>
+          <li><a href="/download.html">Download</a></li>
+          <li><a href="/discussion.html">Discussion</a></li>
+        </ul>
+      </div>
+
+      <div id="-menu" class="panel" style="display: none;">
+        <div class="flex">
+          <section>
+            <h3>Project</h3>
+
+            <ul>
+              <li><a href="/overview.html">Overview</a></li>
+              <li><a href="/components/index.html">Components</a></li>
+              <li><a href="/releases/index.html">Releases</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Messaging APIs</h3>
+
+            <ul>
+              <li><a href="/proton/index.html">Qpid Proton</a></li>
+              <li><a href="/components/jms/index.html">Qpid JMS</a></li>
+              <li><a href="/components/messaging-api/index.html">Qpid 
Messaging API</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Servers and tools</h3>
+
+            <ul>
+              <li><a href="/components/java-broker/index.html">Java 
broker</a></li>
+              <li><a href="/components/cpp-broker/index.html">C++ 
broker</a></li>
+              <li><a href="/components/dispatch-router/index.html">Dispatch 
router</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Resources</h3>
+
+            <ul>
+              <li><a href="/dashboard.html">Dashboard</a></li>
+              <li><a 
href="https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki</a></li>
+              <li><a href="/resources.html">More resources</a></li>
+            </ul>
+          </section>
+        </div>
+      </div>
+
+      <div id="-search" class="panel" style="display: none;">
+        <form action="http://www.google.com/search"; method="get">
+          <input type="hidden" name="sitesearch" value="qpid.apache.org"/>
+          <input type="text" name="q" maxlength="255" autofocus="autofocus" 
tabindex="1"/>
+          <button type="submit">Search</button>
+          <a href="/search.html">More ways to search</a>
+        </form>
+      </div>
+
+      <div id="-middle" class="panel">
+        <ul id="-path-navigation"><li><a 
href="/index.html">Home</a></li><li><a 
href="/components/index.html">Components</a></li><li>QMF</li></ul>
+
+        <div id="-middle-content">
+          <h1 id="qmf">QMF</h1>
+
+<p>The Qpid Management Framework is a general-purpose management bus
+built on Qpid messaging. It takes advantage of the scalability,
+security, and rich capabilities of Qpid to provide flexible and
+easy-to-use manageability to a large set of applications.</p>
+
+<ul>
+<li><em>Languages</em> - C++, Python</li>
+<li><em>Platforms</em> - Linux</li>
+<li><em>AMQP versions</em> - 0-10</li>
+<li><em>Downloads</em> - <a 
href="http://www.apache.org/dyn/closer.lua/qpid/0.32/qpid-cpp-0.32.tar.gz";>qpid-cpp-0.32.tar.gz</a>
 [<a 
href="http://www.apache.org/dist/qpid/0.32/qpid-cpp-0.32.tar.gz.asc";>ASC</a>, 
<a 
href="http://www.apache.org/dist/qpid/0.32/qpid-cpp-0.32.tar.gz.md5";>MD5</a>, 
<a 
href="http://www.apache.org/dist/qpid/0.32/qpid-cpp-0.32.tar.gz.sha1";>SHA1</a>],
 <a 
href="http://www.apache.org/dyn/closer.lua/qpid/0.32/qpid-qmf-0.32.tar.gz";>qpid-qmf-0.32.tar.gz</a>
 [<a 
href="http://www.apache.org/dist/qpid/0.32/qpid-qmf-0.32.tar.gz.asc";>ASC</a>, 
<a 
href="http://www.apache.org/dist/qpid/0.32/qpid-qmf-0.32.tar.gz.md5";>MD5</a>, 
<a 
href="http://www.apache.org/dist/qpid/0.32/qpid-qmf-0.32.tar.gz.sha1";>SHA1</a>]</li>
+<li><em>Source location</em> -  <a 
href="http://svn.apache.org/repos/asf/qpid/trunk/qpid/cpp/";>http://svn.apache.org/repos/asf/qpid/trunk/qpid/cpp/</a>,<br/>
 <a 
href="http://svn.apache.org/repos/asf/qpid/trunk/qpid/extras/qmf/";>http://svn.apache.org/repos/asf/qpid/trunk/qpid/extras/qmf/</a></li>
+</ul>
+
+<h2 id="documentation">Documentation</h2>
+
+<p>This is the documentation for the current released version.  You can
+find previous versions with our
+<a href="/releases/index.html#past-releases">past releases</a>.</p>
+
+<div class="two-column">
+
+<ul>
+<li><a 
href="/releases/qpid-0.32/cpp-broker/book/ch02s02.html">Introduction</a></li>
+<li><a href="/releases/qpid-0.32/qmf/cpp/api/index.html">C++ API 
reference</a></li>
+<li><a href="/releases/qpid-0.32/qmf/cpp/examples/index.html">C++ 
examples</a></li>
+<li><a href="/releases/qpid-0.32/qmf/python/examples/index.html">Python 
examples</a></li>
+<li><a href="/releases/qpid-0.32/qmf/ruby/examples/index.html">Ruby 
examples</a></li>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/tags/0.32/qpid/cpp/INSTALL";>Installing
 Qpid C++</a></li>
+<li><a 
href="https://cwiki.apache.org/confluence/display/qpid/qmf+map+message+protocol";>Map
 message protocol</a></li>
+</ul>
+
+</div>
+
+<h2 id="issues">Issues</h2>
+
+<p>For more information about finding and reporting bugs, see
+<a href="/issues.html">Qpid issues</a>.</p>
+
+<form id="jira-search-form">
+  <input type="hidden" name="jql" value="project = QPID and component = 'Qpid 
Managment Framework' and text ~ '{}' order by updatedDate desc"/>
+  <input type="text" name="text"/>
+  <button type="submit">Search</button>
+</form>
+
+<div class="two-column">
+
+<ul>
+<li><a 
href="http://issues.apache.org/jira/issues/?jql=resolution+%3D+EMPTY+and+issuetype+%3D+%22Bug%22+and+component+%3D+%22Qpid+Managment+Framework%22+and+project+%3D+%22QPID%22";>Open
 bugs</a></li>
+<li><a 
href="http://issues.apache.org/jira/issues/?jql=resolution+%3D+%22Fixed%22+and+issuetype+%3D+%22Bug%22+and+component+%3D+%22Qpid+Managment+Framework%22+and+project+%3D+%22QPID%22";>Fixed
 bugs</a></li>
+<li><a 
href="http://issues.apache.org/jira/issues/?jql=resolution+%3D+EMPTY+and+issuetype+in+%28%22New+Feature%22%2C+%22Improvement%22%29+and+component+%3D+%22Qpid+Managment+Framework%22+and+project+%3D+%22QPID%22";>Requested
 enhancements</a></li>
+<li><a 
href="http://issues.apache.org/jira/issues/?jql=resolution+%3D+%22Fixed%22+and+issuetype+in+%28%22New+Feature%22%2C+%22Improvement%22%29+and+component+%3D+%22Qpid+Managment+Framework%22+and+project+%3D+%22QPID%22";>Completed
 enhancements</a></li>
+<li><a 
href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&amp;issuetype=1&amp;priority=3&amp;summary=[Enter%20a%20brief%20description]&amp;components=12312536";>Report
 a bug</a></li>
+<li><a 
href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&amp;issuetype=4&amp;priority=3&amp;summary=[Enter%20a%20brief%20description]&amp;components=12312536";>Request
 an enhancement</a></li>
+<li><a 
href="http://issues.apache.org/jira/browse/QPID/component/12312536";>Jira 
summary page</a></li>
+</ul>
+
+</div>
+
+
+          <hr/>
+
+          <ul id="-apache-navigation">
+            <li><a href="http://www.apache.org/";>Apache</a></li>
+            <li><a href="http://www.apache.org/licenses/";>License</a></li>
+            <li><a 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
+            <li><a 
href="http://www.apache.org/foundation/thanks.html";>Thanks!</a></li>
+            <li><a href="http://www.apache.org/security/";>Security</a></li>
+            <li><a href="http://www.apache.org/";><img id="-apache-feather" 
width="48" height="14" src="" alt="Apache"/></a></li>
+          </ul>
+
+          <p id="-legal">
+            Apache Qpid, Messaging built on AMQP; Copyright &#169; 2015
+            The Apache Software Foundation; Licensed under
+            the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache
+            License, Version 2.0</a>; Apache Qpid, Qpid, Qpid Proton,
+            Proton, Apache, the Apache feather logo, and the Apache Qpid
+            project logo are trademarks of The Apache Software
+            Foundation; All other marks mentioned may be trademarks or
+            registered trademarks of their respective owners
+          </p>
+        </div>
+      </div>
+    </div>
+  </body>
+</html>

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a1891eca/content/components/qpid-jca/index.html
----------------------------------------------------------------------
diff --git a/content/components/qpid-jca/index.html 
b/content/components/qpid-jca/index.html
new file mode 100644
index 0000000..3084bae
--- /dev/null
+++ b/content/components/qpid-jca/index.html
@@ -0,0 +1,217 @@
+<!DOCTYPE html>
+<!--
+ -
+ - Licensed to the Apache Software Foundation (ASF) under one
+ - or more contributor license agreements.  See the NOTICE file
+ - distributed with this work for additional information
+ - regarding copyright ownership.  The ASF licenses this file
+ - to you under the Apache License, Version 2.0 (the
+ - "License"); you may not use this file except in compliance
+ - with the License.  You may obtain a copy of the License at
+ -
+ -   http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing,
+ - software distributed under the License is distributed on an
+ - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ - KIND, either express or implied.  See the License for the
+ - specific language governing permissions and limitations
+ - under the License.
+ -
+-->
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
+  <head>
+    <title>Qpid JCA - Apache Qpid&#8482;</title>
+    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+    <link rel="stylesheet" href="/site.css" type="text/css" async="async"/>
+    <link rel="stylesheet" href="/deferred.css" type="text/css" defer="defer"/>
+    <script type="text/javascript">var _deferredFunctions = [];</script>
+    <script type="text/javascript" src="/deferred.js" defer="defer"></script>
+    <!--[if lte IE 8]>
+      <link rel="stylesheet" href="/ie.css" type="text/css"/>
+      <script type="text/javascript" src="/html5shiv.js"></script>
+    <![endif]-->
+
+    <!-- Redirects for `go get` and godoc.org -->
+    <meta name="go-import"
+          content="qpid.apache.org git 
https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+    <meta name="go-source"
+          content="qpid.apache.org
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  </head>
+  <body>
+    <div id="-content">
+      <div id="-top" class="panel">
+        <a id="-menu-link"><img width="16" height="16" src="" alt="Menu"/></a>
+
+        <a id="-search-link"><img width="22" height="16" src="" 
alt="Search"/></a>
+
+        <ul id="-global-navigation">
+          <li><a id="-logotype" href="/index.html">Apache 
Qpid<sup>&#8482;</sup></a></li>
+          <li><a href="/documentation.html">Documentation</a></li>
+          <li><a href="/download.html">Download</a></li>
+          <li><a href="/discussion.html">Discussion</a></li>
+        </ul>
+      </div>
+
+      <div id="-menu" class="panel" style="display: none;">
+        <div class="flex">
+          <section>
+            <h3>Project</h3>
+
+            <ul>
+              <li><a href="/overview.html">Overview</a></li>
+              <li><a href="/components/index.html">Components</a></li>
+              <li><a href="/releases/index.html">Releases</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Messaging APIs</h3>
+
+            <ul>
+              <li><a href="/proton/index.html">Qpid Proton</a></li>
+              <li><a href="/components/jms/index.html">Qpid JMS</a></li>
+              <li><a href="/components/messaging-api/index.html">Qpid 
Messaging API</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Servers and tools</h3>
+
+            <ul>
+              <li><a href="/components/java-broker/index.html">Java 
broker</a></li>
+              <li><a href="/components/cpp-broker/index.html">C++ 
broker</a></li>
+              <li><a href="/components/dispatch-router/index.html">Dispatch 
router</a></li>
+            </ul>
+          </section>
+
+          <section>
+            <h3>Resources</h3>
+
+            <ul>
+              <li><a href="/dashboard.html">Dashboard</a></li>
+              <li><a 
href="https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki</a></li>
+              <li><a href="/resources.html">More resources</a></li>
+            </ul>
+          </section>
+        </div>
+      </div>
+
+      <div id="-search" class="panel" style="display: none;">
+        <form action="http://www.google.com/search"; method="get">
+          <input type="hidden" name="sitesearch" value="qpid.apache.org"/>
+          <input type="text" name="q" maxlength="255" autofocus="autofocus" 
tabindex="1"/>
+          <button type="submit">Search</button>
+          <a href="/search.html">More ways to search</a>
+        </form>
+      </div>
+
+      <div id="-middle" class="panel">
+        <ul id="-path-navigation"><li><a 
href="/index.html">Home</a></li><li><a 
href="/components/index.html">Components</a></li><li>Qpid JCA</li></ul>
+
+        <div id="-middle-content">
+          <h1 id="qpid-jca">Qpid JCA</h1>
+
+<p>A
+<a href="http://en.wikipedia.org/wiki/Java_EE_Connector_Architecture";>Java EE 
Connector Architecture</a>
+1.5 compliant resource adapter that allows for JEE integration between
+EE applications and AMQP 0-10 message brokers.</p>
+
+<ul>
+<li><em>Languages</em> - Java</li>
+<li><em>Platforms</em> - JVM</li>
+<li><em>AMQP versions</em> - 0-10</li>
+<li><em>Download</em> - <a 
href="http://www.apache.org/dyn/closer.lua/qpid/java/6.0.2/qpid-java-6.0.2.tar.gz";>qpid-java-6.0.2.tar.gz</a>
 [<a 
href="http://www.apache.org/dist/qpid/java/6.0.2/qpid-java-6.0.2.tar.gz.asc";>ASC</a>,
 <a 
href="http://www.apache.org/dist/qpid/java/6.0.2/qpid-java-6.0.2.tar.gz.md5";>MD5</a>,
 <a 
href="http://www.apache.org/dist/qpid/java/6.0.2/qpid-java-6.0.2.tar.gz.sha1";>SHA1</a>]</li>
+<li><em>Source location</em> -  <a 
href="http://svn.apache.org/repos/asf/qpid/java/trunk/jca/";>http://svn.apache.org/repos/asf/qpid/java/trunk/jca/</a></li>
+</ul>
+
+<h2 id="features">Features</h2>
+
+<div class="two-column">
+
+<ul>
+<li><a href="http://jcp.org/en/jsr/detail?id=112";>JCA 1.5</a> compliant</li>
+<li>Outbound and inbound connectivity</li>
+<li>Connects to <a 
href="http://www.redhat.com/products/jbossenterprisemiddleware/application-platform/";>JBoss
 EAP</a>, <a href="http://geronimo.apache.org/";>Geronimo</a>, and <a 
href="https://glassfish.java.net/";>Glassfish</a></li>
+<li>Supports binding to Swing and other non-managed clients</li>
+</ul>
+
+</div>
+
+<h2 id="documentation">Documentation</h2>
+
+<p>This is the documentation for the current released version.  You can
+find previous versions with our
+<a href="/releases/index.html#past-releases">past releases</a>.</p>
+
+<div class="two-column">
+
+<ul>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/java/tags/6.0.2/jca/README.txt";>README</a></li>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/java/tags/6.0.2/jca/README-JBOSS.txt";>Connect
 with JBoss EAP 5</a></li>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/java/tags/6.0.2/jca/README-JBOSS-EAP6.txt";>Connect
 with JBoss EAP 6</a></li>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/java/tags/6.0.2/jca/README-GERONIMO.txt";>Connect
 with Geronimo</a></li>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/tags/6.0.2/qpid/java/jca/example/README-GLASSFISH.txt";>Connect
 with Glassfish</a></li>
+<li><a 
href="http://svn.apache.org/repos/asf/qpid/java/tags/6.0.2/jca/example/";>Examples</a></li>
+</ul>
+
+</div>
+
+<h2 id="issues">Issues</h2>
+
+<p>For more information about finding and reporting bugs, see
+<a href="/issues.html">Qpid issues</a>.</p>
+
+<div class="indent">
+  <form id="jira-search-form">
+    <input type="hidden" name="jql" value="project = QPID and component = JCA 
and text ~ '{}' order by updatedDate desc"/>
+    <input type="text" name="text"/>
+    <button type="submit">Search</button>
+  </form>
+</div>
+
+<div class="two-column">
+
+<ul>
+<li><a 
href="http://issues.apache.org/jira/issues/?jql=resolution+%3D+EMPTY+and+component+%3D+%22JCA%22+and+project+%3D+%22QPID%22";>Open
 bugs</a></li>
+<li><a 
href="http://issues.apache.org/jira/issues/?jql=resolution+%3D+%22Fixed%22+and+issuetype+%3D+%22Bug%22+and+component+%3D+%22JCA%22+and+project+%3D+%22QPID%22";>Fixed
 bugs</a></li>
+<li><a 
href="http://issues.apache.org/jira/issues/?jql=resolution+%3D+EMPTY+and+issuetype+in+%28%22New+Feature%22%2C+%22Improvement%22%29+and+component+%3D+%22JCA%22+and+project+%3D+%22QPID%22";>Requested
 enhancements</a></li>
+<li><a 
href="http://issues.apache.org/jira/issues/?jql=resolution+%3D+%22Fixed%22+and+issuetype+in+%28%22New+Feature%22%2C+%22Improvement%22%29+and+component+%3D+%22JCA%22+and+project+%3D+%22QPID%22";>Completed
 enhancements</a></li>
+<li><a 
href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&amp;issuetype=1&amp;priority=3&amp;summary=[Enter%20a%20brief%20description]&amp;components=12317036";>Report
 a bug</a></li>
+<li><a 
href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&amp;issuetype=4&amp;priority=3&amp;summary=[Enter%20a%20brief%20description]&amp;components=12317036";>Request
 an enhancement</a></li>
+<li><a 
href="http://issues.apache.org/jira/browse/QPID/component/12317036";>Jira 
summary page</a></li>
+</ul>
+
+</div>
+
+
+          <hr/>
+
+          <ul id="-apache-navigation">
+            <li><a href="http://www.apache.org/";>Apache</a></li>
+            <li><a href="http://www.apache.org/licenses/";>License</a></li>
+            <li><a 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
+            <li><a 
href="http://www.apache.org/foundation/thanks.html";>Thanks!</a></li>
+            <li><a href="http://www.apache.org/security/";>Security</a></li>
+            <li><a href="http://www.apache.org/";><img id="-apache-feather" 
width="48" height="14" src="" alt="Apache"/></a></li>
+          </ul>
+
+          <p id="-legal">
+            Apache Qpid, Messaging built on AMQP; Copyright &#169; 2015
+            The Apache Software Foundation; Licensed under
+            the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache
+            License, Version 2.0</a>; Apache Qpid, Qpid, Qpid Proton,
+            Proton, Apache, the Apache feather logo, and the Apache Qpid
+            project logo are trademarks of The Apache Software
+            Foundation; All other marks mentioned may be trademarks or
+            registered trademarks of their respective owners
+          </p>
+        </div>
+      </div>
+    </div>
+  </body>
+</html>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to