You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2015/03/21 15:54:24 UTC

svn commit: r1668280 - in /qpid/site: ./ input/ input/components/ input/components/jms/ input/components/qpid-jms/ input/releases/qpid-0.14/ input/releases/qpid-0.16/ input/releases/qpid-0.18/ input/releases/qpid-0.20/ input/releases/qpid-0.22/ input/r...

Author: robbie
Date: Sat Mar 21 14:54:23 2015
New Revision: 1668280

URL: http://svn.apache.org/r1668280
Log:
add some initial site changes for JMS based on Justin's earlier work

Added:
    qpid/site/input/components/jms/
    qpid/site/input/components/jms/amqp-0-x.md
    qpid/site/input/components/jms/amqp-1.0-prototype.md
    qpid/site/input/components/jms/index.md
    qpid/site/scripts/gen-jms-release-notes   (with props)
    qpid/site/scripts/gen-jms-release-page   (with props)
Removed:
    qpid/site/input/components/qpid-jms/
Modified:
    qpid/site/Makefile
    qpid/site/input/_config.ini
    qpid/site/input/amqp.md
    qpid/site/input/components/index.md
    qpid/site/input/developer.md
    qpid/site/input/documentation.md
    qpid/site/input/download.md
    qpid/site/input/index.html.in
    qpid/site/input/releases/qpid-0.14/index.md
    qpid/site/input/releases/qpid-0.16/index.md
    qpid/site/input/releases/qpid-0.18/index.md
    qpid/site/input/releases/qpid-0.20/index.md
    qpid/site/input/releases/qpid-0.22/index.md
    qpid/site/input/releases/qpid-0.24/index.md
    qpid/site/input/releases/qpid-0.26/index.md
    qpid/site/input/releases/qpid-0.28/index.md
    qpid/site/input/releases/qpid-0.30/index.md
    qpid/site/input/releases/qpid-0.32/index.md
    qpid/site/scripts/gen-release-page

Modified: qpid/site/Makefile
URL: http://svn.apache.org/viewvc/qpid/site/Makefile?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/Makefile (original)
+++ qpid/site/Makefile Sat Mar 21 14:54:23 2015
@@ -55,6 +55,8 @@ gen-proton-release: gen-proton-release-p
 
 gen-dispatch-release: gen-dispatch-release-page gen-dispatch-release-notes gen-dispatch-release-books gen-dispatch-release-api-doc
 
+gen-jms-release: gen-jms-release-page gen-jms-release-notes
+
 gen-release-%: RELEASE_DIR := input/releases/qpid-${RELEASE}
 gen-release-%:
 	scripts/gen-release-$* ${RELEASE} ${RELEASE_DIR} ${CHECKOUT_DIR}
@@ -66,3 +68,7 @@ gen-proton-release-%:
 gen-dispatch-release-%: RELEASE_DIR := input/releases/qpid-dispatch-${RELEASE}
 gen-dispatch-release-%:
 	scripts/gen-dispatch-release-$* ${RELEASE} ${RELEASE_DIR} ${CHECKOUT_DIR}
+
+gen-jms-release-%: RELEASE_DIR := input/releases/qpid-jms-${RELEASE}
+gen-jms-release-%:
+	scripts/gen-jms-release-$* ${RELEASE} ${RELEASE_DIR} ${CHECKOUT_DIR}

Modified: qpid/site/input/_config.ini
URL: http://svn.apache.org/viewvc/qpid/site/input/_config.ini?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/_config.ini (original)
+++ qpid/site/input/_config.ini Sat Mar 21 14:54:23 2015
@@ -3,6 +3,9 @@ current-release = 0.32
 current-release-url = %(site-url)s/releases/qpid-%(current-release)s
 current-release-link = <a href="%(current-release-url)s/index.html">Qpid %(current-release)s</a>
 current-release-tag = http://svn.apache.org/repos/asf/qpid/tags/%(current-release)s
+current-jms-release = 0.1.0
+current-jms-release-url = %(site-url)s/releases/qpid-jms-%(current-jms-release)s
+current-jms-release-link = <a href="%(current-jms-release-url)s/index.html">Qpid JMS %(current-jms-release)s</a>
 current-proton-release = 0.8
 current-proton-release-url = %(site-url)s/releases/qpid-proton-%(current-proton-release)s
 current-proton-release-link = <a href="%(current-proton-release-url)s/index.html">Qpid Proton %(current-proton-release)s</a>

Modified: qpid/site/input/amqp.md
URL: http://svn.apache.org/viewvc/qpid/site/input/amqp.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/amqp.md (original)
+++ qpid/site/input/amqp.md Sat Mar 21 14:54:23 2015
@@ -38,7 +38,7 @@ Qpid offers AMQP 1.0 support in the foll
  - [AMQP Protocol Engine](@site-url@/components/protocol-engine/index.html)
  - [C++ broker](@site-url@/components/cpp-broker/index.html)
  - [Java broker](@site-url@/components/java-broker/index.html)
- - [Qpid JMS](@site-url@/components/qpid-jms/index.html)
+ - [Qpid JMS](@site-url@/components/jms/index.html)
  - [Qpid Messaging API](@site-url@/components/messaging-api/index.html)
 </div>
 

Modified: qpid/site/input/components/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/components/index.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/components/index.md (original)
+++ qpid/site/input/components/index.md Sat Mar 21 14:54:23 2015
@@ -26,7 +26,7 @@ Qpid's messaging APIs can help you make
  - [AMQP Messenger](messenger/index.html) - A simple but powerful message-oriented API that supports many languages
  - [AMQP Protocol Engine](protocol-engine/index.html) - Fine-grained control over AMQP 1.0
  - [Qpid JCA](qpid-jca/index.html) - A JCA resource adapter for AMQP brokers
- - [Qpid JMS](qpid-jms/index.html) - An AMQP-fluent [Java Message Service](http://en.wikipedia.org/wiki/Java_Message_Service) implementation
+ - [Qpid JMS](jms/index.html) - An AMQP-fluent [Java Message Service](http://en.wikipedia.org/wiki/Java_Message_Service) implementation
  - [Qpid Messaging API](messaging-api/index.html) - A connection-oriented messaging API that supports many languages
  - [Qpid WCF](qpid-wcf/index.html) - An AMQP [Windows Communication Foundation](http://msdn.microsoft.com/en-us/library/ms731082.aspx) implementation
 
@@ -56,7 +56,7 @@ persistence, and manageability.
   || [Dispatch router](@site-url@/components/dispatch-router/index.html) || C || Linux || 1.0 ||
   || [Java broker](@site-url@/components/java-broker/index.html) || Java || JVM || 1.0, 0-10, 0-9-1, 0-9, 0-8 ||
   || [Qpid JCA](@site-url@/components/qpid-jca/index.html) || Java || JVM || 0-10 ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) || Java || JVM || 1.0, 0-10, 0-9-1, 0-9, 0-8 ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) || Java || JVM || 1.0, 0-10, 0-9-1, 0-9, 0-8 ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) || C++, Perl, Python, Ruby, .NET || Linux, Windows || 1.0, 0-10 ||
   || [Qpid WCF](@site-url@/components/qpid-wcf/index.html) || .NET || Windows || 0-10 ||
   || [QMF](@site-url@/components/qmf/index.html) || C++, Python || Linux || 0-10 ||

Added: qpid/site/input/components/jms/amqp-0-x.md
URL: http://svn.apache.org/viewvc/qpid/site/input/components/jms/amqp-0-x.md?rev=1668280&view=auto
==============================================================================
--- qpid/site/input/components/jms/amqp-0-x.md (added)
+++ qpid/site/input/components/jms/amqp-0-x.md Sat Mar 21 14:54:23 2015
@@ -0,0 +1,36 @@
+# JMS for Earlier AMQP Versions
+
+A JMS 1.1 implementation supporting AMQP versions 0-10, 0-9, 0-9-1, and
+0-8.  For AMQP 1.0 support, use the
+[standard AMQP 1.0 implementation](index.html).
+
+## Download
+
+This JMS implementation is released as part of @current-release-link@.
+
+<div class="two-column" markdown="1">
+
+ - [Java binary](http://www.apache.org/dyn/closer.cgi/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz)
+ - [PGP signature](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz.asc)
+ - [MD5 checksum](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz.md5)
+ - [SHA1 checksum](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz.sha1)
+
+</div>
+
+## Documentation
+
+<div class="two-column" markdown="1">
+
+ - [API reference](http://docs.oracle.com/javaee/1.4/api/javax/jms/package-summary.html)
+ - [Using the Qpid JMS client (AMQP 0-10)](@current-release-url@/programming/book/QpidJMS.html)
+ - [Using the Qpid JMS client (AMQP 0-9-1, 0-9, 0-8)](@current-release-url@/jms-client-0-8/book/index.html)
+ - [Examples (AMQP 0-10)](@current-release-url@/qpid-jms/examples/index.html)
+ - [Examples (AMQP 0-9-1, 0-9, 0-8)](@current-release-url@/jms-client-0-8/book/JMS-Client-0-8-Examples.html)
+
+</div>
+
+## Issues
+
+ - [Report a bug](http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&issuetype=1&priority=3&components=12311389)
+ - [Request an improvement](http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&issuetype=4&priority=3&components=12311389)
+ - [Jira component page](http://issues.apache.org/jira/browse/QPID/component/12311389)

Added: qpid/site/input/components/jms/amqp-1.0-prototype.md
URL: http://svn.apache.org/viewvc/qpid/site/input/components/jms/amqp-1.0-prototype.md?rev=1668280&view=auto
==============================================================================
--- qpid/site/input/components/jms/amqp-1.0-prototype.md (added)
+++ qpid/site/input/components/jms/amqp-1.0-prototype.md Sat Mar 21 14:54:23 2015
@@ -0,0 +1,23 @@
+# AMQP 1.0 Prototype
+
+Before the current Qpid JMS 1.0 implementation became available, the
+Qpid project offered a prototype version.  Its details are preserved
+here for existing users.  If you are using the prototype, we encourage
+you to switch to the [standard AMQP 1.0 implementation](index.html).
+
+## Download
+
+The AMQP 1.0 JMS prototype is released as part of @current-release-link@.
+
+<div class="two-column" markdown="1">
+
+ - [Java binary](http://archive.apache.org/dist/qpid/@current-release@/binaries/qpid-amqp-1-0-client-jms-@current-release@-bin.tar.gz)
+ - [PGP signature](http://archive.apache.org/dist/qpid/@current-release@/binaries/qpid-amqp-1-0-client-jms-@current-release@-bin.tar.gz.asc)
+ - [MD5 checksum](http://archive.apache.org/dist/qpid/@current-release@/binaries/qpid-amqp-1-0-client-jms-@current-release@-bin.tar.gz.md5)
+ - [SHA1 checksum](http://archive.apache.org/dist/qpid/@current-release@/binaries/qpid-amqp-1-0-client-jms-@current-release@-bin.tar.gz.sha1)
+
+</div>
+
+## Documentation
+
+ - [Examples](http://svn.apache.org/repos/asf/qpid/branches/@current-release@/qpid/java/amqp-1-0-client-jms/example)

Added: qpid/site/input/components/jms/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/components/jms/index.md?rev=1668280&view=auto
==============================================================================
--- qpid/site/input/components/jms/index.md (added)
+++ qpid/site/input/components/jms/index.md Sat Mar 21 14:54:23 2015
@@ -0,0 +1,83 @@
+;;
+;; 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.
+;;
+
+<div id="-left-column" markdown="1">
+
+# Qpid JMS
+
+<div class="feature" markdown="1">
+
+## JMS with the strength of AMQP
+
+Qpid JMS is a complete [Java Message Service][jms] 1.1 client built
+using [Qpid Proton](@site-url@/proton/index.html).
+
+Qpid also provides an alternate JMS implementation supporting
+[earlier AMQP versions](amqp-0-x.html).
+
+[jms]: http://en.wikipedia.org/wiki/Java_Message_Service
+
+</div>
+
+## Features
+
+ - [JMS 1.1](http://www.oracle.com/technetwork/java/docs-136352.html)
+   API compatible
+ - Secure communication via SSL and SASL 
+ - Producer flow control
+ - Failover and heartbeating
+ - Pure-Java implementation
+
+## Documentation
+
+<div class="two-column" markdown="1">
+
+ - [API reference](http://docs.oracle.com/javaee/1.4/api/javax/jms/package-summary.html)
+ - [Examples](https://github.com/apache/qpid-jms/tree/master/qpid-jms-examples/src/main/java/org/apache/qpid/jms/example)
+ - [Configuration](https://github.com/apache/qpid-jms/blob/master/qpid-jms-docs/Configuration.md)
+ - [Installing Qpid JMS](https://github.com/apache/qpid-jms/blob/master/README.md)
+
+</div>
+</div>
+
+<div id="-right-column" class="right-column-adjusted" markdown="1">
+
+## Releases
+
+ - @current-jms-release-link@
+ - [Past releases](@site-url@/releases/index.html#past-releases)
+
+## Issues
+
+ - [Report a bug](https://issues.apache.org/jira/secure/CreateIssue.jspa?pid=12314524&issuetype=1&priority=3&summary=[Enter%20a%20brief%20description])
+ - [Request an improvement](https://issues.apache.org/jira/secure/CreateIssue.jspa?pid=12314524&issuetype=4&priority=3)
+ - <form id="-jira-goto-form">Go to issue <input name="jira" value="QPIDJMS-"/></form>
+ - [JIRA project page](https://issues.apache.org/jira/browse/QPIDJMS)
+
+## Source code
+
+ - [Browse via GitHub](https://github.com/apache/qpid-jms)
+ - [Git clone URL](https://git-wip-us.apache.org/repos/asf/qpid-jms.git)
+
+## Resources
+
+ - [JMS for earlier AMQP versions](amqp-0-x.html)
+ - [AMQP 1.0 prototype](amqp-1.0-prototype.html)
+
+</div>

Modified: qpid/site/input/developer.md
URL: http://svn.apache.org/viewvc/qpid/site/input/developer.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/developer.md (original)
+++ qpid/site/input/developer.md Sat Mar 21 14:54:23 2015
@@ -53,7 +53,7 @@
  || Java || [Open issues](https://issues.apache.org/jira/issues/?jql=project%20%3D%20QPID%20AND%20resolution%20%3D%20Unresolved%20AND%20component%20in%20\(%22Java%20Broker%22%2C%20%22Java%20Client%22%2C%20%22Java%20Common%22%2C%20%22Java%20Management%20%3A%20JMX%20Console%22%2C%20%22Java%20Performance%20Tests%22%2C%20%22Java%20Tests%22%2C%20%22Java%20Tools%22%2C%20JCA\)%20ORDER%20BY%20priority%20DESC) || [Report bug](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&issuetype=1&components=12311388&components=12311389&summary=[Enter%20a%20brief%20description]&priority=3) || [Request improvement](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&issuetype=4&components=12311388&components=12311389&summary=[Enter%20a%20brief%20description]&priority=3)  || [Build status](https://builds.apache.org/view/M-R/view/Qpid/job/Qpid-Java-Java-Test-JDK1.8/) || [Source location](https://svn.apache.org/repos/asf/qpid/trunk/qpid/java) ||
  || Python || [Open issues](https://issues.apache.org/jira/issues/?jql=project%20%3D%20QPID%20AND%20resolution%20%3D%20Unresolved%20AND%20component%20in%20\(%22Python%20Client%22%2C%20%22Python%20Test%20Suite%22\)%20ORDER%20BY%20priority%20DESC) || [Report bug](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&issuetype=1&components=12311544&summary=[Enter%20a%20brief%20description]&priority=3) || [Request improvement](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310520&issuetype=4&components=12311544&summary=[Enter%20a%20brief%20description]&priority=3) || - || [Source location](https://svn.apache.org/repos/asf/qpid/trunk/qpid/python) ||
  || [Dispatch](@site-url@/components/dispatch-router/index.html) || [Open issues](https://issues.apache.org/jira/issues/?jql=project%20%3D%20DISPATCH%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20priority%20DESC) || [Report bug](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12315321&issuetype=1&summary=[Enter%20a%20brief%20description]&priority=3) || [Request improvement](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12315321&issuetype=4&summary=[Enter%20a%20brief%20description]&priority=3) || - || [Source location](https://svn.apache.org/repos/asf/qpid/dispatch/trunk) ||
- || [JMS](@site-url@/components/qpid-jms/index.html) || [Open issues](https://issues.apache.org/jira/issues/?jql=project%20%3D%20QPIDJMS%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20priority%20DESC) || [Report bug](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12314524&issuetype=1&summary=[Enter%20a%20brief%20description]&priority=3) || [Request improvement](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12314524&issuetype=4&summary=[Enter%20a%20brief%20description]&priority=3) || - || [Source location](https://git-wip-us.apache.org/repos/asf/qpid-jms.git) ||
+ || [JMS](@site-url@/components/jms/index.html) || [Open issues](https://issues.apache.org/jira/issues/?jql=project%20%3D%20QPIDJMS%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20priority%20DESC) || [Report bug](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12314524&issuetype=1&summary=[Enter%20a%20brief%20description]&priority=3) || [Request improvement](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12314524&issuetype=4&summary=[Enter%20a%20brief%20description]&priority=3) || - || [Source location](https://git-wip-us.apache.org/repos/asf/qpid-jms.git) ||
  || [Proton](@site-url@/proton/index.html) || [Open issues](https://issues.apache.org/jira/issues/?jql=project%20%3D%20PROTON%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20priority%20DESC) || [Report bug](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12313720&issuetype=1&summary=[Enter%20a%20brief%20description]&priority=3) || [Request improvement](https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12313720&issuetype=4&summary=[Enter%20a%20brief%20description]&priority=3) || [Build status](https://builds.apache.org/view/M-R/view/Qpid/job/Qpid-proton-c/) || [Source location](https://git-wip-us.apache.org/repos/asf/qpid-proton.git) ||
 
 </div>

Modified: qpid/site/input/documentation.md
URL: http://svn.apache.org/viewvc/qpid/site/input/documentation.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/documentation.md (original)
+++ qpid/site/input/documentation.md Sat Mar 21 14:54:23 2015
@@ -1,8 +1,8 @@
 # Documentation
 
-The documentation on this page is for our current releases:
-@current-release-link@, @current-proton-release-link@ and @current-dispatch-release-link@.  You can
-find older versions with our
+The documentation on this page is for our current releases,
+@current-release-link@, @current-proton-release-link@ and
+@current-dispatch-release-link@.  You can find older versions with our
 [past releases](@site-url@/releases/index.html#past-releases).
 
 ---
@@ -48,10 +48,10 @@ find older versions with our
 
 ### Qpid JMS
 
- - [Overview](@site-url@/components/qpid-jms/index.html)
- - [Using the Qpid JMS client](@site-url@/components/qpid-jms/index.html#documentation)
+ - [Overview](@site-url@/components/jms/index.html)
  - [API reference](http://docs.oracle.com/javaee/1.4/api/javax/jms/package-summary.html)
- - [Examples](@site-url@/components/qpid-jms/index.html#documentation)
+ - [Examples](@site-url@/components/jms/index.html#documentation)
+ - [Configuration](@site-url@/components/jms/index.html#documentation)
 
 </section>
 <section markdown="1">

Modified: qpid/site/input/download.md
URL: http://svn.apache.org/viewvc/qpid/site/input/download.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/download.md (original)
+++ qpid/site/input/download.md Sat Mar 21 14:54:23 2015
@@ -37,8 +37,8 @@ the files you download.
   || [AMQP Messenger](@site-url@/components/messenger/index.html) || [qpid-proton-@current-proton-release@.tar.gz](http://www.apache.org/dyn/closer.cgi/qpid/proton/@current-proton-release@/qpid-proton-@current-proton-release@.tar.gz) || [ASC](http://www.apache.org/dist/qpid/proton/@current-proton-release@/qpid-proton-@current-proton-release@.tar.gz.asc), [MD5](http://www.apache.org/dist/qpid/proton/@current-proton-release@/qpid-proton-@current-proton-release@.tar.gz.md5), [SHA](http://www.apache.org/dist/qpid/proton/@current-proton-release@/qpid-proton-@current-proton-release@.tar.gz.sha) ||
   || [AMQP Protocol Engine](@site-url@/components/messenger/index.html) || [qpid-proton-@current-proton-release@.tar.gz](http://www.apache.org/dyn/closer.cgi/qpid/proton/@current-proton-release@/qpid-proton-@current-proton-release@.tar.gz) || [ASC](http://www.apache.org/dist/qpid/proton/@current-proton-release@/qpid-proton-@current-proton-release@.tar.gz.asc), [MD5](http://www.apache.org/dist/qpid/proton/@current-proton-release@/qpid-proton-@current-proton-release@.tar.gz.md5), [SHA](http://www.apache.org/dist/qpid/proton/@current-proton-release@/qpid-proton-@current-proton-release@.tar.gz.sha) ||
   || [Qpid JCA](@site-url@/components/qpid-jca/index.html) || [qpid-java-@current-release@.tar.gz](http://www.apache.org/dyn/closer.cgi/qpid/@current-release@/qpid-java-@current-release@.tar.gz) || [ASC](http://www.apache.org/dist/qpid/@current-release@/qpid-java-@current-release@.tar.gz.asc), [MD5](http://www.apache.org/dist/qpid/@current-release@/qpid-java-@current-release@.tar.gz.md5), [SHA1](http://www.apache.org/dist/qpid/@current-release@/qpid-java-@current-release@.tar.gz.sha1) ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) (AMQP 0-10, 0-9-1, 0-9, 0-8) || [qpid-client-@current-release@-bin.tar.gz](http://www.apache.org/dyn/closer.cgi/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz)\* || [ASC](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz.asc), [MD5](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz.md5), [SHA1](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz.sha1) ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) (AMQP 1.0) || [qpid-amqp-1-0-client-jms-@current-release@-bin.tar.gz](http://www.apache.org/dyn/closer.cgi/qpid/@current-release@/binaries/qpid-amqp-1-0-client-jms-@current-release@-bin.tar.gz)\* || [ASC](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-amqp-1-0-client-jms-@current-release@-bin.tar.gz.asc), [MD5](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-amqp-1-0-client-jms-@current-release@-bin.tar.gz.md5), [SHA1](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-amqp-1-0-client-jms-@current-release@-bin.tar.gz.sha1) ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) (AMQP 1.0) || [apache-qpid-jms-@current-jms-release@-bin.tar.gz](http://www.apache.org/dyn/closer.cgi/qpid/jms/apache-qpid-jms-@current-jms-release@-bin.tar.gz)\* || [ASC](http://www.apache.org/dist/qpid/jms/apache-qpid-jms-@current-jms-release@-bin.tar.gz.asc), [MD5](http://www.apache.org/dist/qpid/jms/apache-qpid-jms-@current-release@-bin.tar.gz.md5), [SHA1](http://www.apache.org/dist/qpid/jms/apache-qpid-jms-@current-jms-release@-bin.tar.gz.sha1) ||
+  || [Qpid JMS](@site-url@/components/jms/amqp-0-x.html) (AMQP 0-10, 0-9-1, 0-9, 0-8) || [qpid-client-@current-release@-bin.tar.gz](http://www.apache.org/dyn/closer.cgi/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz)\* || [ASC](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz.asc), [MD5](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz.md5), [SHA1](http://www.apache.org/dist/qpid/@current-release@/binaries/qpid-client-@current-release@-bin.tar.gz.sha1) ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) (C++, bindings) || [qpid-cpp-@current-release@.tar.gz](http://www.apache.org/dyn/closer.cgi/qpid/@current-release@/qpid-cpp-@current-release@.tar.gz) || [ASC](http://www.apache.org/dist/qpid/@current-release@/qpid-cpp-@current-release@.tar.gz.asc), [MD5](http://www.apache.org/dist/qpid/@current-release@/qpid-cpp-@current-release@.tar.gz.md5), [SHA1](http://www.apache.org/dist/qpid/@current-release@/qpid-cpp-@current-release@.tar.gz.sha1) ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) (Python) || [qpid-python-@current-release@.tar.gz](http://www.apache.org/dyn/closer.cgi/qpid/@current-release@/qpid-python-@current-release@.tar.gz) || [ASC](http://www.apache.org/dist/qpid/@current-release@/qpid-python-@current-release@.tar.gz.asc), [MD5](http://www.apache.org/dist/qpid/@current-release@/qpid-python-@current-release@.tar.gz.md5), [SHA1](http://www.apache.org/dist/qpid/@current-release@/qpid-python-@current-release@.tar.gz.sha1) ||
 
@@ -53,8 +53,15 @@ the files you download.
 
 \*These Java artefacts are released as compiled bytecode.  We also
 offer the source as part of our
-[Java source release](http://www.apache.org/dyn/closer.cgi/qpid/@current-release@/qpid-java-@current-release@.tar.gz)
-\[[ASC](http://www.apache.org/dist/qpid/@current-release@/qpid-java-@current-release@.tar.gz.asc), [MD5](http://www.apache.org/dist/qpid/@current-release@/qpid-java-@current-release@.tar.gz.md5), [SHA1](http://www.apache.org/dist/qpid/@current-release@/qpid-java-@current-release@.tar.gz.sha1)].
+[Qpid JMS source release](http://www.apache.org/dyn/closer.cgi/qpid/jms/apache-qpid-jms-@current-jms-release@-src.tar.gz)
+\[[ASC](http://www.apache.org/dist/qpid/jms/apache-qpid-jms-@current-jms-release@-src.tar.gz.asc),
+[MD5](http://www.apache.org/dist/qpid/jms/apache-qpid-jms-@current-release@-src.tar.gz.md5),
+[SHA1](http://www.apache.org/dist/qpid/jms/apache-qpid-jms-@current-jms-release@-src.tar.gz.sha1)\]
+and
+[Qpid Java source release](http://www.apache.org/dyn/closer.cgi/qpid/@current-release@/qpid-java-@current-release@.tar.gz)
+\[[ASC](http://www.apache.org/dist/qpid/@current-release@/qpid-java-@current-release@.tar.gz.asc),
+[MD5](http://www.apache.org/dist/qpid/@current-release@/qpid-java-@current-release@.tar.gz.md5),
+[SHA1](http://www.apache.org/dist/qpid/@current-release@/qpid-java-@current-release@.tar.gz.sha1)\].
 
 ## Verify what you download
 

Modified: qpid/site/input/index.html.in
URL: http://svn.apache.org/viewvc/qpid/site/input/index.html.in?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/index.html.in (original)
+++ qpid/site/input/index.html.in Sat Mar 21 14:54:23 2015
@@ -21,7 +21,7 @@
   <ul>
     <li><a href="@site-url@/components/messenger/index.html">AMQP Messenger</a> - A simple but powerful message-oriented API</li>
     <li><a href="@site-url@/components/qpid-jca/index.html">Qpid JCA</a> - A JCA resource adapter for AMQP brokers</li>
-    <li><a href="@site-url@/components/qpid-jms/index.html">Qpid JMS</a> - An AMQP-fluent JMS implementation</li>
+    <li><a href="@site-url@/components/jms/index.html">Qpid JMS</a> - An AMQP-fluent JMS implementation</li>
     <li><a href="@site-url@/components/messaging-api/index.html">Qpid Messaging API</a> - A connection-oriented messaging API</li>
     <li>More about <a href="@site-url@/components/index.html#messaging-apis">Qpid messaging APIs</a></li>
   </ul>

Modified: qpid/site/input/releases/qpid-0.14/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-0.14/index.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-0.14/index.md (original)
+++ qpid/site/input/releases/qpid-0.14/index.md Sat Mar 21 14:54:23 2015
@@ -32,7 +32,7 @@ Python, and Ruby.  More about [Qpid](@si
   || *Component* || *Platforms* || *AMQP versions* ||
   || [C++ broker](@site-url@/components/cpp-broker/index.html) || Linux, Windows || 0-10 ||
   || [Java broker](@site-url@/components/java-broker/index.html) || JVM || 0-10, 0-91, 0-9, 0-8 ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) || JVM || 0-10, 0-91, 0-9, 0-8 ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) || JVM || 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) || Linux, Windows || 0-10 ||
   || [Qpid WCF](@site-url@/components/qpid-wcf/index.html) || Windows || 0-10 ||
   || [QMF](@site-url@/components/qmf/index.html) || Linux || 0-10 ||

Modified: qpid/site/input/releases/qpid-0.16/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-0.16/index.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-0.16/index.md (original)
+++ qpid/site/input/releases/qpid-0.16/index.md Sat Mar 21 14:54:23 2015
@@ -32,7 +32,7 @@ Python, and Ruby.  More about [Qpid](@si
   || *Component* || *Platforms* || *AMQP versions* ||
   || [C++ broker](@site-url@/components/cpp-broker/index.html) || Linux, Windows || 0-10 ||
   || [Java broker](@site-url@/components/java-broker/index.html) || JVM || 0-10, 0-91, 0-9, 0-8 ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) || JVM || 0-10, 0-91, 0-9, 0-8 ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) || JVM || 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) || Linux, Windows || 0-10 ||
   || [Qpid WCF](@site-url@/components/qpid-wcf/index.html) || Windows || 0-10 ||
   || [QMF](@site-url@/components/qmf/index.html) || Linux || 0-10 ||

Modified: qpid/site/input/releases/qpid-0.18/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-0.18/index.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-0.18/index.md (original)
+++ qpid/site/input/releases/qpid-0.18/index.md Sat Mar 21 14:54:23 2015
@@ -32,7 +32,7 @@ Python, and Ruby.  More about [Qpid](@si
   || *Component* || *Platforms* || *AMQP versions* ||
   || [C++ broker](@site-url@/components/cpp-broker/index.html) || Linux, Windows || 0-10 ||
   || [Java broker](@site-url@/components/java-broker/index.html) || JVM || 0-10, 0-91, 0-9, 0-8 ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) || JVM || 0-10, 0-91, 0-9, 0-8 ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) || JVM || 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) || Linux, Windows || 0-10 ||
   || [Qpid WCF](@site-url@/components/qpid-wcf/index.html) || Windows || 0-10 ||
   || [QMF](@site-url@/components/qmf/index.html) || Linux || 0-10 ||

Modified: qpid/site/input/releases/qpid-0.20/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-0.20/index.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-0.20/index.md (original)
+++ qpid/site/input/releases/qpid-0.20/index.md Sat Mar 21 14:54:23 2015
@@ -61,7 +61,7 @@ available in the full source artefact.
   || [C++ broker](@site-url@/components/cpp-broker/index.html) || C++ || Linux, Windows || 1.0, 0-10 ||
   || [Java broker](@site-url@/components/java-broker/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid JCA](@site-url@/components/qpid-jca/index.html) || Java || JVM || 0-10 ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) || C++, Perl, Python, Ruby, .NET || Linux, Windows || 1.0, 0-10 ||
   || [Qpid WCF](@site-url@/components/qpid-wcf/index.html) || .NET || Windows || 0-10 ||
   || [QMF](@site-url@/components/qmf/index.html) || C++, Python || Linux || 0-10 ||

Modified: qpid/site/input/releases/qpid-0.22/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-0.22/index.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-0.22/index.md (original)
+++ qpid/site/input/releases/qpid-0.22/index.md Sat Mar 21 14:54:23 2015
@@ -61,7 +61,7 @@ available in the full source artefact.
   || [C++ broker](@site-url@/components/cpp-broker/index.html) || C++ || Linux, Windows || 1.0, 0-10 ||
   || [Java broker](@site-url@/components/java-broker/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid JCA](@site-url@/components/qpid-jca/index.html) || Java || JVM || 0-10 ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) || C++, Perl, Python, Ruby, .NET || Linux, Windows || 1.0, 0-10 ||
   || [Qpid WCF](@site-url@/components/qpid-wcf/index.html) || .NET || Windows || 0-10 ||
   || [QMF](@site-url@/components/qmf/index.html) || C++, Python || Linux || 0-10 ||

Modified: qpid/site/input/releases/qpid-0.24/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-0.24/index.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-0.24/index.md (original)
+++ qpid/site/input/releases/qpid-0.24/index.md Sat Mar 21 14:54:23 2015
@@ -61,7 +61,7 @@ available in the full source artefact.
   || [C++ broker](@site-url@/components/cpp-broker/index.html) || C++ || Linux, Windows || 1.0, 0-10 ||
   || [Java broker](@site-url@/components/java-broker/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid JCA](@site-url@/components/qpid-jca/index.html) || Java || JVM || 0-10 ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) || C++, Perl, Python, Ruby, .NET || Linux, Windows || 1.0, 0-10 ||
   || [Qpid WCF](@site-url@/components/qpid-wcf/index.html) || .NET || Windows || 0-10 ||
   || [QMF](@site-url@/components/qmf/index.html) || C++, Python || Linux || 0-10 ||

Modified: qpid/site/input/releases/qpid-0.26/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-0.26/index.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-0.26/index.md (original)
+++ qpid/site/input/releases/qpid-0.26/index.md Sat Mar 21 14:54:23 2015
@@ -61,7 +61,7 @@ available in the full source artefact.
   || [C++ broker](@site-url@/components/cpp-broker/index.html) || C++ || Linux, Windows || 1.0, 0-10 ||
   || [Java broker](@site-url@/components/java-broker/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid JCA](@site-url@/components/qpid-jca/index.html) || Java || JVM || 0-10 ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) || C++, Perl, Python, Ruby, .NET || Linux, Windows || 1.0, 0-10 ||
   || [Qpid WCF](@site-url@/components/qpid-wcf/index.html) || .NET || Windows || 0-10 ||
   || [QMF](@site-url@/components/qmf/index.html) || C++, Python || Linux || 0-10 ||

Modified: qpid/site/input/releases/qpid-0.28/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-0.28/index.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-0.28/index.md (original)
+++ qpid/site/input/releases/qpid-0.28/index.md Sat Mar 21 14:54:23 2015
@@ -61,7 +61,7 @@ available in the full source artefact.
   || [C++ broker](@site-url@/components/cpp-broker/index.html) || C++ || Linux, Windows || 1.0, 0-10 ||
   || [Java broker](@site-url@/components/java-broker/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid JCA](@site-url@/components/qpid-jca/index.html) || Java || JVM || 0-10 ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) || Java || JVM || 1.0, 0-10, 0-91, 0-9, 0-8 ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) || C++, Perl, Python, Ruby, .NET || Linux, Windows || 1.0, 0-10 ||
   || [Qpid WCF](@site-url@/components/qpid-wcf/index.html) || .NET || Windows || 0-10 ||
   || [QMF](@site-url@/components/qmf/index.html) || C++, Python || Linux || 0-10 ||

Modified: qpid/site/input/releases/qpid-0.30/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-0.30/index.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-0.30/index.md (original)
+++ qpid/site/input/releases/qpid-0.30/index.md Sat Mar 21 14:54:23 2015
@@ -59,7 +59,7 @@ files you download.
   || [C++ broker](@site-url@/components/cpp-broker/index.html) || C++ || Linux, Windows || 1.0, 0-10 ||
   || [Java broker](@site-url@/components/java-broker/index.html) || Java || JVM || 1.0, 0-10, 0-9-1, 0-9, 0-8 ||
   || [Qpid JCA](@site-url@/components/qpid-jca/index.html) || Java || JVM || 0-10 ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) || Java || JVM || 1.0, 0-10, 0-9-1, 0-9, 0-8 ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) || Java || JVM || 1.0, 0-10, 0-9-1, 0-9, 0-8 ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) || C++, Perl, Python, Ruby, .NET || Linux, Windows || 1.0, 0-10 ||
 
 ## Documentation

Modified: qpid/site/input/releases/qpid-0.32/index.md
URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-0.32/index.md?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/input/releases/qpid-0.32/index.md (original)
+++ qpid/site/input/releases/qpid-0.32/index.md Sat Mar 21 14:54:23 2015
@@ -59,7 +59,7 @@ files you download.
   || [C++ broker](@site-url@/components/cpp-broker/index.html) || C++ || Linux, Windows || 1.0, 0-10 ||
   || [Java broker](@site-url@/components/java-broker/index.html) || Java || JVM || 1.0, 0-10, 0-9-1, 0-9, 0-8 ||
   || [Qpid JCA](@site-url@/components/qpid-jca/index.html) || Java || JVM || 0-10 ||
-  || [Qpid JMS](@site-url@/components/qpid-jms/index.html) || Java || JVM || 1.0, 0-10, 0-9-1, 0-9, 0-8 ||
+  || [Qpid JMS](@site-url@/components/jms/index.html) || Java || JVM || 1.0, 0-10, 0-9-1, 0-9, 0-8 ||
   || [Qpid Messaging API](@site-url@/components/messaging-api/index.html) || C++, Perl, Python, Ruby, .NET || Linux, Windows || 1.0, 0-10 ||
 
 ## Documentation

Added: qpid/site/scripts/gen-jms-release-notes
URL: http://svn.apache.org/viewvc/qpid/site/scripts/gen-jms-release-notes?rev=1668280&view=auto
==============================================================================
--- qpid/site/scripts/gen-jms-release-notes (added)
+++ qpid/site/scripts/gen-jms-release-notes Sat Mar 21 14:54:23 2015
@@ -0,0 +1,73 @@
+#!/usr/bin/python
+#
+# 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.
+#
+
+from qpid_site.generate import *
+
+template = \
+"""
+;;
+;; 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.
+;;
+
+# Qpid Proton {release} Release Notes
+
+Proton is a high-performance, lightweight messaging library. More
+about [Qpid Proton](@site-url@/proton/index.html).
+
+For more information about this release, including download links and
+documentation, see the [release overview](index.html).
+
+{release_notes}
+"""
+
+def gen_release_notes(release, release_dir):
+    output_path = join(release_dir, "release-notes.md")
+
+    release_notes = render_release_notes("qpidjms", release)
+
+    output = template.format(**locals())
+    output = output.strip()
+
+    write(output_path, output)
+
+release, release_dir, checkout_dir = setup_release_script()
+
+if release == "trunk":
+    notice("Skipping generation for trunk")
+    sys.exit()
+
+gen_release_notes(release, release_dir)
+
+notice("Release notes generated")

Propchange: qpid/site/scripts/gen-jms-release-notes
------------------------------------------------------------------------------
    svn:executable = *

Added: qpid/site/scripts/gen-jms-release-page
URL: http://svn.apache.org/viewvc/qpid/site/scripts/gen-jms-release-page?rev=1668280&view=auto
==============================================================================
--- qpid/site/scripts/gen-jms-release-page (added)
+++ qpid/site/scripts/gen-jms-release-page Sat Mar 21 14:54:23 2015
@@ -0,0 +1,194 @@
+#!/usr/bin/python
+#
+# 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.
+#
+
+from datetime import datetime
+from qpid_site.generate import *
+
+download_records = (
+    ("qpid-jms-{}-bin.tar.gz", "Qpid JMS binaries"),
+    ("qpid-jms-{}-src.tar.gz", "Qpid JMS source code"),
+    )
+
+template = \
+"""
+;;
+;; 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.
+;;
+
+<script type="text/javascript">
+  _deferredFunctions.push(function() {{
+      if ("{release}" === "@current-jms-release@") {{
+          _modifyCurrentReleaseLinks();
+      }}
+  }});
+</script>
+
+# Qpid JMS {release}
+
+Qpid JMS is a complete [Java Message Service][jms] 1.1 client built
+using [Qpid Proton](@site-url@/proton/index.html).
+
+For a detailed list of the changes in this release, see the [release
+notes](release-notes.html).
+
+[jms]: http://en.wikipedia.org/wiki/Java_Message_Service
+
+## Download
+
+It's important to [verify the
+integrity](@site-url@/download.html#verify-what-you-download) of the
+files you download.
+
+  || *Content* || *Download* || *Verify* ||
+  {downloads}
+
+## Documentation
+
+<div class="two-column" markdown="1">
+
+ - [API reference](http://docs.oracle.com/javaee/1.4/api/javax/jms/package-summary.html)
+ - [Examples](https://github.com/apache/qpid-jms/tree/qpid-jms-{release}/qpid-jms-examples/src/main/java/org/apache/qpid/jms/example)
+ - [Configuration](https://github.com/apache/qpid-jms/blob/qpid-jms-{release}/qpid-jms-docs/Configuration.md)
+ - [Installing Qpid JMS](https://github.com/apache/qpid-jms/blob/qpid-jms-{release}/README.md)
+
+</div>
+
+## More information
+
+ - [All release artefacts](http://archive.apache.org/dist/qpid/jms/{release})
+ - [Resolved issues in JIRA]({issues_url})
+ - [Source repository tag](https://github.com/apache/qpid-jms/tree/qpid-jms-{release})
+"""
+
+def gen_release_page(release, release_dir):
+    output_path = join(release_dir, "index.md")
+
+    downloads = list()
+    components = list()
+
+    artifact_url_template = "http://archive.apache.org/dist/qpid/jms/{}/{}"
+
+    for artifact, summary in download_records:
+        artifact = artifact.format(release)
+        artifact_url = artifact_url_template.format(release, artifact)
+        asc_url = "{}.asc".format(artifact_url)
+        md5_url = "{}.md5".format(artifact_url)
+        sha1_url = "{}.sha1".format(artifact_url)
+
+        args = summary, artifact, artifact_url, asc_url, md5_url, sha1_url
+        downloads.append("|| {} || [{}]({}) || [ASC]({}), [MD5]({}), [SHA1]({}) ||".format(*args))
+
+    downloads = "\n  ".join(downloads)
+
+    jql = "project = QPIDJMS AND fixVersion = '{}' ORDER BY priority DESC".format(release)
+    issues_url = "https://issues.apache.org/jira/issues/?jql={}".format(urllib.quote_plus(jql))
+
+    output = template.format(**locals())
+    output = output.strip()
+
+    write(output_path, output)
+
+trunk_template = """
+;;
+;; 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.
+;;
+
+# Qpid JMS Master
+
+<div class="feature" markdown="1">
+
+## Warning! This is a snapshot of work in progress
+
+Code and documentation found here may be unstable, incorrect, or
+incomplete.  For a smoother experience, see the
+[current stable release](@current-jms-release-url@/index.html).
+
+This content was generated at {time} on {day}, {date}.
+
+</div>
+
+## Documentation
+
+<div class="two-column" markdown="1">
+
+ - [API reference](http://docs.oracle.com/javaee/1.4/api/javax/jms/package-summary.html)
+ - [Examples](https://github.com/apache/qpid-jms/tree/master/qpid-jms-examples/src/main/java/org/apache/qpid/jms/example)
+ - [Configuration](https://github.com/apache/qpid-jms/blob/master/qpid-jms-docs/Configuration.md)
+ - [Installing Qpid JMS](https://github.com/apache/qpid-jms/blob/master/README.md)
+
+</div>
+
+## More information
+
+ - [Source repository](https://git-wip-us.apache.org/repos/asf/qpid-jms.git)
+"""
+
+def gen_trunk_release_page(release_dir):
+    output_path = join(release_dir, "index.md")
+
+    now = datetime.now()
+
+    day = now.strftime("%A")
+    date = now.strftime("%d %B %Y")
+    time = now.strftime("%H:%M %Z")
+
+    output = trunk_template.format(**locals())
+    output = output.strip()
+
+    write(output_path, output)
+
+release, release_dir, checkout_dir = setup_release_script()
+
+if release == "trunk":
+    gen_trunk_release_page(release_dir)
+else:
+    gen_release_page(release, release_dir)
+
+notice("Release page generated")

Propchange: qpid/site/scripts/gen-jms-release-page
------------------------------------------------------------------------------
    svn:executable = *

Modified: qpid/site/scripts/gen-release-page
URL: http://svn.apache.org/viewvc/qpid/site/scripts/gen-release-page?rev=1668280&r1=1668279&r2=1668280&view=diff
==============================================================================
--- qpid/site/scripts/gen-release-page (original)
+++ qpid/site/scripts/gen-release-page Sat Mar 21 14:54:23 2015
@@ -41,7 +41,7 @@ component_records = (
     ("cpp-broker", "C++ broker", "C++", "Linux, Windows", "1.0, 0-10"),
     ("java-broker", "Java broker", "Java", "JVM", "1.0, 0-10, 0-9-1, 0-9, 0-8"),
     ("qpid-jca", "Qpid JCA", "Java", "JVM", "0-10"),
-    ("qpid-jms", "Qpid JMS", "Java", "JVM", "1.0, 0-10, 0-9-1, 0-9, 0-8"),
+    ("jms", "Qpid JMS", "Java", "JVM", "1.0, 0-10, 0-9-1, 0-9, 0-8"),
     ("messaging-api", "Qpid Messaging API", "C++, Perl, Python, Ruby, .NET", "Linux, Windows", "1.0, 0-10"),
     )
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org