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

svn commit: r1666288 [3/8] - in /qpid/dispatch/branches/0.4/doc/pre_built: ./ doc/ doc/qpid-dispatch/ doc/qpid-dispatch/book/ doc/qpid-dispatch/html/ doc/qpid-dispatch/html/_sources/ doc/qpid-dispatch/html/_sources/book/ doc/qpid-dispatch/html/_sources...

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/book/using.txt
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/book/using.txt?rev=1666288&view=auto
==============================================================================
--- qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/book/using.txt (added)
+++ qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/book/using.txt Thu Mar 12 20:25:44 2015
@@ -0,0 +1,290 @@
+.. 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.
+
+Using Qpid Dispatch
+===================
+
+Configuration
+-------------
+
+The default configuration file is installed in
+`install-prefix`/etc/qpid/qdrouterd.conf. This configuration file will
+cause the router to run in standalone mode, listening on the standard
+AMQP port (5672). Dispatch Router looks for the configuration file in
+the installed location by default. If you wish to use a different path,
+the "-c" command line option will instruct Dispatch Router as to which
+configuration to load.
+
+To run the router, invoke the executable: qdrouterd [-c my-config-file]
+
+For more details of the configuration file see the `qdrouterd.conf(5)`
+man page.
+
+Client Compatibility
+--------------------
+
+Dispatch Router should, in theory, work with any client that is
+compatible with AMQP 1.0. The following clients have been tested:
+
++-----------------+------------------------------------------------------------------+
+| *Client*        | *Notes*                                                          |
++=================+==================================================================+
+| qpid::messaging |The Qpid messaging clients work with Dispatch Router as long as   |
+|                 |they are configured to use the 1.0 version of the protocol. To    |
+|                 |enable AMQP 1.0 in the C++ client, use the {protocol:amqp1.0}     |
+|                 |connection option.                                                |
+|                 |                                                                  |
+|                 |                                                                  |
+|                 |                                                                  |
+|                 |                                                                  |
+|                 |                                                                  |
+|                 |                                                                  |
+|                 |                                                                  |
+|                 |                                                                  |
+|                 |                                                                  |
++-----------------+------------------------------------------------------------------+
+| Proton Messenger| Messenger works with Dispatch Router.                            |
+|                 |                                                                  |
+|                 |                                                                  |
++-----------------+------------------------------------------------------------------+
+
+Tools
+-----
+
+qdstat
+~~~~~~
+
+*qdstat* is a command line tool that lets you view the status of a
+Dispatch Router. The following options are useful for seeing that the
+router is doing:
+
++----------+-----------------------------------------------------------------------------+
+| *Option* | *Description*                                                               |
++==========+=============================================================================+
+| -l       |Print a list of AMQP links attached to the router. Links are                 |
+|          |unidirectional. Outgoing links are usually associated with a subscription    |
+|          |address. The tool distinguishes between *endpoint* links and *router*        |
+|          |links. Endpoint links are attached to clients using the router. Router links |
+|          |are attached to other routers in a network of routbers.                      |
+|          |                                                                             |
++----------+-----------------------------------------------------------------------------+
+| -a       |Print a list of addresses known to the router.                               |
++----------+-----------------------------------------------------------------------------+
+| -n       |Print a list of known routers in the network.                                |
++----------+-----------------------------------------------------------------------------+
+| -c       |Print a list of connections to the router.                                   |
++----------+-----------------------------------------------------------------------------+
+
+For complete details see the `qdstat(8)` man page and the output of
+`qdstat --help`.
+
+qdmanage
+~~~~~~~~
+
+*qdmanage* is a general-purpose AMQP management client that allows you
+to not only view but modify the configuration of a running dispatch
+router.
+
+For example you can query all the connection entities in the router::
+
+   $ qdrouterd query --type connection
+
+To enable logging debug and higher level messages by default::
+
+   $ qdrouter update log/DEFAULT enable=debug+
+
+In fact, everything that can be configured in the configuration file can
+also be created in a running router via management. For example to
+create a new listener in a running router::
+
+   $ qdrouter create type=listener port=5555
+
+Now you can connect to port 5555, for exampple::
+
+   $ qdrouterd query -b localhost:5555 --type listener
+
+For complete details see the `qdmanage(8)` man page and the output of
+`qdmanage --help`. Also for details of what can be configured see the
+`qdrouterd.conf(5)` man page.
+
+Features and Examples
+---------------------
+
+Standalone and Interior Modes
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+The router can operate stand-alone or as a node in a network of routers.
+The mode is configured in the *router* section of the configuration
+file. In stand-alone mode, the router does not attempt to collaborate
+with any other routers and only routes messages among directly connected
+endpoints.
+
+If your router is running in stand-alone mode, *qdstat -a* will look
+like the following:
+
+::
+
+    $ qdstat -a
+    Router Addresses
+      class  address      in-proc  local  remote  in  out  thru  to-proc  from-proc
+      ===============================================================================
+      local  $management  Y        0      0       1   0    0     1        0
+      local  temp.AY81ga           1      0       0   0    0     0        0
+
+Note that there are two known addresses. *$management* is the address of
+the router's embedded management agent. *temp.AY81ga* is the temporary
+reply-to address of the *qdstat* client making requests to the agent.
+
+If you change the mode to interior and restart the processs, the same
+command will yield two additional addresses which are used for
+inter-router communication:
+
+::
+
+    $ qdstat -a
+    Router Addresses
+      class  address      in-proc  local  remote  in  out  thru  to-proc  from-proc
+      ===============================================================================
+      local  $management  Y        0      0       1   0    0     1        0
+      local  qdhello      Y        0      0       0   0    0     0        3
+      local  qdrouter     Y        0      0       0   0    0     0        1
+      local  temp.khOpGb           1      0       0   0    0     0        0
+
+Mobile Subscribers
+~~~~~~~~~~~~~~~~~~
+
+The term "mobile subscriber" simply refers to the fact that a client may
+connect to the router and subscribe to an address to receive messages
+sent to that address. No matter where in the network the subscriber
+attaches, the messages will be routed to the appropriate destination.
+
+To illustrate a subscription on a stand-alone router, you can use the
+examples that are provided with Qpid Proton. Using the *recv.py* example
+receiver:
+
+::
+
+    $ recv.py amqp://0.0.0.0/my-address
+
+This command creates a receiving link subscribed to the specified
+address. To verify the subscription:
+
+::
+
+    $ qdstat -a
+    Router Addresses
+      class   address      in-proc  local  remote  in  out  thru  to-proc  from-proc
+      ================================================================================
+      local   $management  Y        0      0       1   0    0     1        0
+      mobile  my-address            1      0       0   0    0     0        0
+      local   temp.fDt8_a           1      0       0   0    0     0        0
+
+You can then, in a separate command window, run a sender to produce
+messages to that address:
+
+::
+
+    $ send.py -a amqp://0.0.0.0/my-address
+
+Dynamic Reply-To
+~~~~~~~~~~~~~~~~
+
+Dynamic reply-to can be used to obtain a reply-to address that routes
+back to a client's receiving link regardless of how many hops it has to
+take to get there. To illustrate this feature, see below a simple
+program (written in C++ against the qpid::messaging API) that queries
+the management agent of the attached router for a list of other known
+routers' management addresses.
+
+::
+
+    #include <qpid/messaging/Address.h>
+    #include <qpid/messaging/Connection.h>
+    #include <qpid/messaging/Message.h>
+    #include <qpid/messaging/Receiver.h>
+    #include <qpid/messaging/Sender.h>
+    #include <qpid/messaging/Session.h>
+
+    using namespace qpid::messaging;
+    using namespace qpid::types;
+
+    using std::stringstream;
+    using std::string;
+
+    int main() {
+        const char* url = "amqp:tcp:127.0.0.1:5672";
+        std::string connectionOptions = "{protocol:amqp1.0}";
+
+        Connection connection(url, connectionOptions);
+        connection.open();
+        Session session = connection.createSession();
+        Sender sender = session.createSender("mgmt");
+
+        // create reply receiver and get the reply-to address
+        Receiver receiver = session.createReceiver("#");
+        Address responseAddress = receiver.getAddress();
+
+        Message request;
+        request.setReplyTo(responseAddress);
+        request.setProperty("x-amqp-to", "amqp:/_local/$management");
+        request.setProperty("operation", "DISCOVER-MGMT-NODES");
+        request.setProperty("type", "org.amqp.management");
+        request.setProperty("name, "self");
+
+        sender.send(request);
+        Message response = receiver.fetch();
+        Variant content(response.getContentObject());
+        std::cout << "Response: " << content << std::endl << std::endl;
+
+        connection.close();
+    }
+
+The equivalent program written in Python against the Proton Messenger
+API:
+
+::
+
+    from proton import Messenger, Message
+
+    def main():
+        host = "0.0.0.0:5672"
+
+        messenger = Messenger()
+        messenger.start()
+        messenger.route("amqp:/*", "amqp://%s/$1" % host)
+        reply_subscription = messenger.subscribe("amqp:/#")
+        reply_address = reply_subscription.address
+
+        request  = Message()
+        response = Message()
+
+        request.address = "amqp:/_local/$management"
+        request.reply_to = reply_address
+        request.properties = {u'operation' : u'DISCOVER-MGMT-NODES',
+                              u'type'      : u'org.amqp.management',
+                              u'name'      : u'self'}
+
+        messenger.put(request)
+        messenger.send()
+        messenger.recv()
+        messenger.get(response)
+
+        print "Response: %r" % response.body
+
+        messenger.stop()
+
+    main()

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/index.txt
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/index.txt?rev=1666288&view=auto
==============================================================================
--- qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/index.txt (added)
+++ qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/index.txt Thu Mar 12 20:25:44 2015
@@ -0,0 +1,34 @@
+.. 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.
+
+Documentation for dispatch
+==========================
+
+See also the `dispatch router website <http://qpid.apache.org/components/dispatch-router>`_
+
+Documentation
+
+-  `Dispatch router book <book/book.html>`__
+
+Manual pages
+
+-  `qdrouterd <man/qdrouterd.html>`__ The router daemon
+-  `qdrouterd.conf <man/qdrouterd.conf.html>`__ Router daemon
+   configuration
+-  `qdstat <man/qdstat.html>`__ Check statistics for a running router
+-  `qdmanage <man/qdmanage.html>`__ Query and set management attributes of
+   a running router.

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdmanage.txt
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdmanage.txt?rev=1666288&view=auto
==============================================================================
--- qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdmanage.txt (added)
+++ qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdmanage.txt Thu Mar 12 20:25:44 2015
@@ -0,0 +1,143 @@
+.. 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
+
+:orphan:
+
+qdmanage manual page
+====================
+
+Synopsis
+--------
+
+qdmanage *operation* [*options...*] [*arguments...*]
+
+Description
+-----------
+
+An AMQP management client for use with qdrouterd. Sends AMQP management
+operations requests and prints the response in JSON format. This is a
+generic AMQP management tool and can be used with any standard AMQP
+managed endpoint, not just with qdrouter.
+
+Operations
+----------
+
+`query` [*ATTR*...]
+    Print the attributes named in the ATTR list or all attributes if
+    none are listed. Print attributes for all entities by default, use
+    --type, --name and --identity options to restrict what is printed.
+
+`create` [*ATTR=VALUE*...]
+    Create a new entity with the specified attributes. With the --stdin
+    option, read attributes from stdin. This can be a JSON map of
+    attributes to create a single entity, or a JSON list of maps to
+    create multiple entitiees.
+
+`read`
+    Print the attributes of an entity specified by the --name or
+    --identity options. With the --stdin option, create entities based
+    on data from stdin. This can be a JSON map of attributes to create a
+    single entity, or a JSON list of maps to create multiple entitiees.
+
+`update` [*ATTR=VALUE*...]
+    Update the attributes of an existing entity. With the --stdin
+    option, read attributes from stdin. This can be a JSON map of
+    attributes to update a single entity, or a JSON list of maps to
+    update multiple entitiees. If an ATTR name is listed with no =VALUE,
+    that attribute will be deleted from the entity.
+
+`delete`
+    Delete an entity specified by the --name or --identity options.
+
+`get-types` [*TYPE*]
+    List entity types with their base types. With no arguments list all
+    types.
+
+`get-operations` [*TYPE*]
+    List entity types with their operations. With no arguments list all
+    types.
+
+`get-attributes` [*TYPE*]
+    List entity types with their attributes. With no arguments list all
+    types.
+
+`get-annotations` [*TYPE*]
+    List entity types with their annotations. With no arguments list all
+    types.
+
+`get-mgmt-nodes`
+    List all other known management nodes connected to this one.
+
+`get-json-schema` [*INDENT*]
+    Get the router schema in JSON format. Optional integer indent for
+    formatted output.
+
+`get-log` [*INDENT*]
+    Get recent log entries from the router.
+
+Options
+-------
+
+.. include:: qdmanage_help.rst
+
+Files
+-----
+
+/home/aconway/dispatch/install/share/doc/qpid-dispatch/qdrouter.json
+    Management schema for qdrouterd.
+
+/home/aconway/dispatch/install/share/doc/qpid-dispatch/qdrouter.json.readme.txt
+    Explanation of the management schema.
+
+Examples
+--------
+
+Show the logging configuration
+
+::
+
+    qdmanage query --type=log
+
+Enable debug and higher log messages by default:
+
+::
+
+    qdmanage udpdate name=log/DEFAULT enable=debug+
+
+Enable trace log messages only for the MESSAGE moudle and direct MESSAGE
+logs to the file "test.log"
+
+::
+
+    qdmanage udpdate name=log/MESSAGE enable=trace output=test.log
+
+Set MESSAGE logging back to the default:
+
+::
+
+    qdmanage udpdate name=log/MESSAGE enable=default
+
+Disable MESSAGE logging:
+
+::
+
+    qdmanage udpdate name=log/MESSAGE enable=none
+
+See also
+--------
+
+*qdrouterd(8)*, *qdstat(8)*, *qdrouterd.conf(5)*
+
+http://qpid.apache.org/components/dispatch-router

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdrouterd.conf.txt
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdrouterd.conf.txt?rev=1666288&view=auto
==============================================================================
--- qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdrouterd.conf.txt (added)
+++ qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdrouterd.conf.txt Thu Mar 12 20:25:44 2015
@@ -0,0 +1,330 @@
+
+:orphan:
+
+qdrouterd.conf manual page
+==========================
+
+Synopsis
+--------
+
+qdroutered.conf is the configuration file for the dispatch router.
+
+Description
+-----------
+
+The configuration file is made up of sections with this syntax:
+
+::
+
+    SECTION-NAME {
+        ATTRIBUTE-NAME: ATTRIBUTE-VALUE
+        ATTRIBUTE-NAME: ATTRIBUTE-VALUE
+        ...
+    }
+
+There are two types of sections:
+
+*Configuration sections* correspond to configuration entities. They can be queried and
+configured via management tools as well as via the configuration file.
+
+*Annotation sections* define a group of attribute values that can be included in
+one or more entity sections.
+
+For example you can define an "ssl-profile" annotation section with SSL credentials
+that can be included in multiple "listener" entities. Here's an example, note
+how the 'ssl-profile' attribute of 'listener' sections references the 'name'
+attribute of 'ssl-profile' sections.
+
+::
+
+    ssl-profile {
+        name: ssl-profile-one
+        cert-db: ca-certificate-1.pem
+        cert-file: server-certificate-1.pem
+        key-file: server-private-key.pem
+    }
+
+    listener {
+        ssl-profile: ssl-profile-one
+        addr: 0.0.0.0
+        port: 20102
+        sasl-mechanisms: ANONYMOUS
+    }
+
+
+Annotation Sections
+-------------------
+
+
+addrPort
+++++++++
+
+Attributes for internet address and port.
+
+Used by: **listener**, **connector**.
+
+*addr* (string, default='0.0.0.0')
+  IP address: ipv4 or ipv6 literal or a host name.
+
+*port* (string, default='amqp')
+  Port number or symbolic service name.
+
+
+saslMechanisms
+++++++++++++++
+
+Attribute for a list of SASL mechanisms.
+
+Used by: **listener**, **connector**.
+
+*saslMechanisms* (string, required)
+  Comma separated list of accepted SASL authentication mechanisms.
+
+
+connectionRole
+++++++++++++++
+
+Attribute for the role of a connection.
+
+Used by: **listener**, **connector**.
+
+*role* (One of ['normal', 'inter-router', 'on-demand'], default='normal')
+  The role of an established connection. In the normal role, the connection is assumed to be used for AMQP clients that are doing normal message delivery over the connection.  In the inter-router role, the connection is assumed to be to another router in the network.  Inter-router discovery and routing protocols can only be used over inter-router connections.
+
+
+sslProfile
+++++++++++
+
+Attributes for setting TLS/SSL configuration for connections.
+
+Used by: **listener**, **connector**.
+
+*certDb* (path)
+  The path to the database that contains the public certificates of trusted certificate authorities (CA).
+
+*certFile* (path)
+  The path to the file containing the PEM-formatted public certificate to be used on the local end of any connections using this profile.
+
+*keyFile* (path)
+  The path to the file containing the PEM-formatted private key for the above certificate.
+
+*passwordFile* (path)
+  If the above private key is password protected, this is the path to a file containing the password that unlocks the certificate key.
+
+*password* (string)
+  An alternative to storing the password in a file referenced by passwordFile is to supply the password right here in the configuration file.  This option can be used by supplying the password in the 'password' option.  Don't use both password and passwordFile in the same profile.
+
+
+Configuration Sections
+----------------------
+
+
+container
++++++++++
+
+Attributes related to the AMQP container.
+
+*containerName* (string)
+  The  name of the AMQP container.  If not specified, the container name will be set to a value of the container's choosing.  The automatically assigned container name is not guaranteed to be persistent across restarts of the container.
+
+*workerThreads* (integer, default=1)
+  The number of threads that will be created to process message traffic and other application work (timers, non-amqp file descriptors, etc.) .
+
+*debugDump* (path)
+  A file to dump debugging information that can't be logged normally.
+
+
+router
+++++++
+
+Tracks peer routers and computes routes to destinations.
+
+*routerId* (string)
+  Router's unique identity.
+
+*mode* (One of ['standalone', 'interior', 'edge', 'endpoint'], default='standalone')
+  In standalone mode, the router operates as a single component.  It does not participate in the routing protocol and therefore will not cooperate with other routers. In interior mode, the router operates in cooperation with other interior routers in an interconnected network.  In edge mode, the router operates with an up link into an interior router network. Edge routers are typically used as connection concentrators or as security firewalls for access into the interior network.
+
+*helloInterval* (integer, default=1)
+  Interval in seconds between HELLO messages sent to neighbor routers.
+
+*helloMaxAge* (integer, default=3)
+  Time in seconds after which a neighbor is declared lost if no HELLO is received.
+
+*raInterval* (integer, default=30)
+  Interval in seconds between Router-Advertisements sent to all routers in a stable network.
+
+*raIntervalFlux* (integer, default=4)
+  Interval in seconds between Router-Advertisements sent to all routers during topology fluctuations.
+
+*remoteLsMaxAge* (integer, default=60)
+  Time in seconds after which link state is declared stale if no RA is received.
+
+*mobileAddrMaxAge* (integer, default=60)
+  Deprecated - This value is no longer used in the router.
+
+
+listener
+++++++++
+
+Listens for incoming connections to the router.
+
+Annotations: **addrPort**, **connectionRole**, **sslProfile**, **saslMechanisms**.
+
+*addr* (string, default='0.0.0.0')
+  IP address: ipv4 or ipv6 literal or a host name.
+
+*port* (string, default='amqp')
+  Port number or symbolic service name.
+
+*role* (One of ['normal', 'inter-router', 'on-demand'], default='normal')
+  The role of an established connection. In the normal role, the connection is assumed to be used for AMQP clients that are doing normal message delivery over the connection.  In the inter-router role, the connection is assumed to be to another router in the network.  Inter-router discovery and routing protocols can only be used over inter-router connections.
+
+*certDb* (path)
+  The path to the database that contains the public certificates of trusted certificate authorities (CA).
+
+*certFile* (path)
+  The path to the file containing the PEM-formatted public certificate to be used on the local end of any connections using this profile.
+
+*keyFile* (path)
+  The path to the file containing the PEM-formatted private key for the above certificate.
+
+*passwordFile* (path)
+  If the above private key is password protected, this is the path to a file containing the password that unlocks the certificate key.
+
+*password* (string)
+  An alternative to storing the password in a file referenced by passwordFile is to supply the password right here in the configuration file.  This option can be used by supplying the password in the 'password' option.  Don't use both password and passwordFile in the same profile.
+
+*saslMechanisms* (string, required)
+  Comma separated list of accepted SASL authentication mechanisms.
+
+*requirePeerAuth* (boolean, default=True)
+  Only for listeners using SSL.  If set to 'yes', attached clients will be required to supply a certificate.  If the certificate is not traceable to a CA in the ssl profile's cert-db, authentication fails for the connection.
+
+*trustedCerts* (path)
+  This optional setting can be used to reduce the set of available CAs for client authentication.  If used, this setting must provide a path to a PEM file that contains the trusted certificates.
+
+*allowUnsecured* (boolean)
+  For listeners using SSL only.  If set to 'yes' the listener will allow both SSL-secured clients and non-SSL clients to connect.
+
+*allowNoSasl* (boolean)
+  If set to 'yes', this option causes the listener to allow clients to connect even if they skip the SASL authentication protocol.
+
+*maxFrameSize* (integer, default=65536)
+  Defaults to 65536.  If specified, it is the maximum frame size in octets that will be used in the connection-open negotiation with a connected peer.  The frame size is the largest contiguous set of uninterrupted data that can be sent for a message delivery over the connection. Interleaving of messages on different links is done at frame granularity.
+
+
+connector
++++++++++
+
+Establishes an outgoing connections from the router.
+
+Annotations: **addrPort**, **connectionRole**, **sslProfile**, **saslMechanisms**.
+
+*addr* (string, default='0.0.0.0')
+  IP address: ipv4 or ipv6 literal or a host name.
+
+*port* (string, default='amqp')
+  Port number or symbolic service name.
+
+*role* (One of ['normal', 'inter-router', 'on-demand'], default='normal')
+  The role of an established connection. In the normal role, the connection is assumed to be used for AMQP clients that are doing normal message delivery over the connection.  In the inter-router role, the connection is assumed to be to another router in the network.  Inter-router discovery and routing protocols can only be used over inter-router connections.
+
+*certDb* (path)
+  The path to the database that contains the public certificates of trusted certificate authorities (CA).
+
+*certFile* (path)
+  The path to the file containing the PEM-formatted public certificate to be used on the local end of any connections using this profile.
+
+*keyFile* (path)
+  The path to the file containing the PEM-formatted private key for the above certificate.
+
+*passwordFile* (path)
+  If the above private key is password protected, this is the path to a file containing the password that unlocks the certificate key.
+
+*password* (string)
+  An alternative to storing the password in a file referenced by passwordFile is to supply the password right here in the configuration file.  This option can be used by supplying the password in the 'password' option.  Don't use both password and passwordFile in the same profile.
+
+*saslMechanisms* (string, required)
+  Comma separated list of accepted SASL authentication mechanisms.
+
+*allowRedirect* (boolean, default=True)
+  Allow the peer to redirect this connection to another address.
+
+*maxFrameSize* (integer, default=65536)
+  Maximum frame size in octets that will be used in the connection-open negotiation with a connected peer.  The frame size is the largest contiguous set of uninterrupted data that can be sent for a message delivery over the connection. Interleaving of messages on different links is done at frame granularity.
+
+
+log
++++
+
+Configure logging for a particular module. You can use the `UPDATE` operation to change log settings while the router is running.
+
+*enable* (string, default='default', required)
+  Levels are: trace, debug, info, notice, warning, error, critical. The enable string is a comma-separated list of levels. A level may have a trailing '+' to enable that level and above. For example 'trace,debug,warning+' means enable trace, debug, warning, error and critical. The value 'none' means disable logging for the module. The value 'default' means use the value from the DEFAULT module.
+
+*timestamp* (boolean)
+  Include timestamp in log messages.
+
+*source* (boolean)
+  Include source file and line number in log messages.
+
+*output* (string)
+  Where to send log messages. Can be 'stderr', 'syslog' or a file name.
+
+
+fixedAddress
+++++++++++++
+
+Establishes semantics for addresses starting with a prefix.
+
+*prefix* (string, required)
+  The address prefix (always starting with '/').
+
+*phase* (integer)
+  The phase of a multi-hop address passing through one or more waypoints.
+
+*fanout* (One of ['multiple', 'single'], default='multiple')
+  One of 'multiple' or 'single'.  Multiple fanout is a non-competing pattern.  If there are multiple consumers using the same address, each consumer will receive its own copy of every message sent to the address.  Single fanout is a competing pattern where each message is sent to only one consumer.
+
+*bias* (One of ['closest', 'spread'], default='closest')
+  Only if fanout is single.  One of 'closest' or 'spread'.  Closest bias means that messages to an address will always be delivered to the closest (lowest cost) subscribed consumer. Spread bias will distribute the messages across subscribers in an approximately even manner.
+
+
+waypoint
+++++++++
+
+A remote node that messages for an address pass through.
+
+*address* (string, required)
+  The AMQP address of the waypoint.
+
+*connector* (string, required)
+  The name of the on-demand connector used to reach the waypoint's container.
+
+*inPhase* (integer, default=-1)
+  The phase of the address as it is routed _to_ the waypoint.
+
+*outPhase* (integer, default=-1)
+  The phase of the address as it is routed _from_ the waypoint.
+
+
+linkRoutePattern
+++++++++++++++++
+
+A pattern to match a connected container to endpoints for routed links.
+
+*prefix* (string, required)
+  The AMQP address prefix for nodes on the container.
+
+*connector* (string)
+  The name of the on-demand connector used to reach the waypoint's container.
+
+
+See also
+--------
+
+*qdrouterd(8)*, *qdmanage(8)*
+
+http://qpid.apache.org/components/dispatch-router
+        

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdrouterd.txt
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdrouterd.txt?rev=1666288&view=auto
==============================================================================
--- qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdrouterd.txt (added)
+++ qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdrouterd.txt Thu Mar 12 20:25:44 2015
@@ -0,0 +1,49 @@
+.. 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
+
+:orphan:
+
+qdrouterd manual page
+=====================
+
+SYNOPSIS
+--------
+
+qdrouterd [*options*]
+
+DESCRIPTION
+-----------
+
+The Qpid Dispatch router (qdrouterd) is a network daemon that directs
+AMQP 1.0 messages between endpoints, such as messaging clients and
+servers.
+
+OPTIONS
+-------
+
+.. include:: qdrouterd_help.rst
+
+FILES
+-----
+
+/home/aconway/dispatch/install/etc/qdrouterd.conf
+    Configuration flie.
+
+SEE ALSO
+--------
+
+*qdrouterd.conf(5)*, *qdstat(8)*, *qdmanage(8)*
+
+http://qpid.apache.org/components/dispatch-router

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdstat.txt
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdstat.txt?rev=1666288&view=auto
==============================================================================
--- qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdstat.txt (added)
+++ qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/man/qdstat.txt Thu Mar 12 20:25:44 2015
@@ -0,0 +1,41 @@
+.. 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
+
+qdstat manual page
+==================
+
+Synopsis
+--------
+
+qdstat [options]
+
+Description
+-----------
+
+*qdstat* shows status information about networks of Dispatch routers. It
+can display connections, network nodes and links, and router stats such
+as memory use.
+
+Options
+-------
+
+.. include:: qdstat_help.rst
+
+See also
+--------
+
+*qdrouterd(8)*, *qdmanage(8)*, *qdrouterd.conf(5)*
+
+http://qpid.apache.org/components/dispatch-router

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/notes/code-conventions.txt
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/notes/code-conventions.txt?rev=1666288&view=auto
==============================================================================
--- qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/notes/code-conventions.txt (added)
+++ qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_sources/notes/code-conventions.txt Thu Mar 12 20:25:44 2015
@@ -0,0 +1,30 @@
+.. 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.
+
+Code conventions
+================
+
+Python code
+-----------
+
+Python code should be
+`PEP-8 <http://www.python.org/dev/peps/pep-0008/>`__ compliant. In
+particular:
+
+-  Use four-space indents
+-  Do not use studlyCaps for function, method, and variable names;
+   instead use underscore\_separated\_names

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/ajax-loader.gif
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/ajax-loader.gif?rev=1666288&view=auto
==============================================================================
Binary files qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/ajax-loader.gif (added) and qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/ajax-loader.gif Thu Mar 12 20:25:44 2015 differ

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/basic.css
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/basic.css?rev=1666288&view=auto
==============================================================================
--- qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/basic.css (added)
+++ qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/basic.css Thu Mar 12 20:25:44 2015
@@ -0,0 +1,540 @@
+/*
+ * basic.css
+ * ~~~~~~~~~
+ *
+ * Sphinx stylesheet -- basic theme.
+ *
+ * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
+ * :license: BSD, see LICENSE for details.
+ *
+ */
+
+/* -- main layout ----------------------------------------------------------- */
+
+div.clearer {
+    clear: both;
+}
+
+/* -- relbar ---------------------------------------------------------------- */
+
+div.related {
+    width: 100%;
+    font-size: 90%;
+}
+
+div.related h3 {
+    display: none;
+}
+
+div.related ul {
+    margin: 0;
+    padding: 0 0 0 10px;
+    list-style: none;
+}
+
+div.related li {
+    display: inline;
+}
+
+div.related li.right {
+    float: right;
+    margin-right: 5px;
+}
+
+/* -- sidebar --------------------------------------------------------------- */
+
+div.sphinxsidebarwrapper {
+    padding: 10px 5px 0 10px;
+}
+
+div.sphinxsidebar {
+    float: left;
+    width: 230px;
+    margin-left: -100%;
+    font-size: 90%;
+}
+
+div.sphinxsidebar ul {
+    list-style: none;
+}
+
+div.sphinxsidebar ul ul,
+div.sphinxsidebar ul.want-points {
+    margin-left: 20px;
+    list-style: square;
+}
+
+div.sphinxsidebar ul ul {
+    margin-top: 0;
+    margin-bottom: 0;
+}
+
+div.sphinxsidebar form {
+    margin-top: 10px;
+}
+
+div.sphinxsidebar input {
+    border: 1px solid #98dbcc;
+    font-family: sans-serif;
+    font-size: 1em;
+}
+
+div.sphinxsidebar #searchbox input[type="text"] {
+    width: 170px;
+}
+
+div.sphinxsidebar #searchbox input[type="submit"] {
+    width: 30px;
+}
+
+img {
+    border: 0;
+}
+
+/* -- search page ----------------------------------------------------------- */
+
+ul.search {
+    margin: 10px 0 0 20px;
+    padding: 0;
+}
+
+ul.search li {
+    padding: 5px 0 5px 20px;
+    background-image: url(file.png);
+    background-repeat: no-repeat;
+    background-position: 0 7px;
+}
+
+ul.search li a {
+    font-weight: bold;
+}
+
+ul.search li div.context {
+    color: #888;
+    margin: 2px 0 0 30px;
+    text-align: left;
+}
+
+ul.keywordmatches li.goodmatch a {
+    font-weight: bold;
+}
+
+/* -- index page ------------------------------------------------------------ */
+
+table.contentstable {
+    width: 90%;
+}
+
+table.contentstable p.biglink {
+    line-height: 150%;
+}
+
+a.biglink {
+    font-size: 1.3em;
+}
+
+span.linkdescr {
+    font-style: italic;
+    padding-top: 5px;
+    font-size: 90%;
+}
+
+/* -- general index --------------------------------------------------------- */
+
+table.indextable {
+    width: 100%;
+}
+
+table.indextable td {
+    text-align: left;
+    vertical-align: top;
+}
+
+table.indextable dl, table.indextable dd {
+    margin-top: 0;
+    margin-bottom: 0;
+}
+
+table.indextable tr.pcap {
+    height: 10px;
+}
+
+table.indextable tr.cap {
+    margin-top: 10px;
+    background-color: #f2f2f2;
+}
+
+img.toggler {
+    margin-right: 3px;
+    margin-top: 3px;
+    cursor: pointer;
+}
+
+div.modindex-jumpbox {
+    border-top: 1px solid #ddd;
+    border-bottom: 1px solid #ddd;
+    margin: 1em 0 1em 0;
+    padding: 0.4em;
+}
+
+div.genindex-jumpbox {
+    border-top: 1px solid #ddd;
+    border-bottom: 1px solid #ddd;
+    margin: 1em 0 1em 0;
+    padding: 0.4em;
+}
+
+/* -- general body styles --------------------------------------------------- */
+
+a.headerlink {
+    visibility: hidden;
+}
+
+h1:hover > a.headerlink,
+h2:hover > a.headerlink,
+h3:hover > a.headerlink,
+h4:hover > a.headerlink,
+h5:hover > a.headerlink,
+h6:hover > a.headerlink,
+dt:hover > a.headerlink {
+    visibility: visible;
+}
+
+div.body p.caption {
+    text-align: inherit;
+}
+
+div.body td {
+    text-align: left;
+}
+
+.field-list ul {
+    padding-left: 1em;
+}
+
+.first {
+    margin-top: 0 !important;
+}
+
+p.rubric {
+    margin-top: 30px;
+    font-weight: bold;
+}
+
+img.align-left, .figure.align-left, object.align-left {
+    clear: left;
+    float: left;
+    margin-right: 1em;
+}
+
+img.align-right, .figure.align-right, object.align-right {
+    clear: right;
+    float: right;
+    margin-left: 1em;
+}
+
+img.align-center, .figure.align-center, object.align-center {
+  display: block;
+  margin-left: auto;
+  margin-right: auto;
+}
+
+.align-left {
+    text-align: left;
+}
+
+.align-center {
+    text-align: center;
+}
+
+.align-right {
+    text-align: right;
+}
+
+/* -- sidebars -------------------------------------------------------------- */
+
+div.sidebar {
+    margin: 0 0 0.5em 1em;
+    border: 1px solid #ddb;
+    padding: 7px 7px 0 7px;
+    background-color: #ffe;
+    width: 40%;
+    float: right;
+}
+
+p.sidebar-title {
+    font-weight: bold;
+}
+
+/* -- topics ---------------------------------------------------------------- */
+
+div.topic {
+    border: 1px solid #ccc;
+    padding: 7px 7px 0 7px;
+    margin: 10px 0 10px 0;
+}
+
+p.topic-title {
+    font-size: 1.1em;
+    font-weight: bold;
+    margin-top: 10px;
+}
+
+/* -- admonitions ----------------------------------------------------------- */
+
+div.admonition {
+    margin-top: 10px;
+    margin-bottom: 10px;
+    padding: 7px;
+}
+
+div.admonition dt {
+    font-weight: bold;
+}
+
+div.admonition dl {
+    margin-bottom: 0;
+}
+
+p.admonition-title {
+    margin: 0px 10px 5px 0px;
+    font-weight: bold;
+}
+
+div.body p.centered {
+    text-align: center;
+    margin-top: 25px;
+}
+
+/* -- tables ---------------------------------------------------------------- */
+
+table.docutils {
+    border: 0;
+    border-collapse: collapse;
+}
+
+table.docutils td, table.docutils th {
+    padding: 1px 8px 1px 5px;
+    border-top: 0;
+    border-left: 0;
+    border-right: 0;
+    border-bottom: 1px solid #aaa;
+}
+
+table.field-list td, table.field-list th {
+    border: 0 !important;
+}
+
+table.footnote td, table.footnote th {
+    border: 0 !important;
+}
+
+th {
+    text-align: left;
+    padding-right: 5px;
+}
+
+table.citation {
+    border-left: solid 1px gray;
+    margin-left: 1px;
+}
+
+table.citation td {
+    border-bottom: none;
+}
+
+/* -- other body styles ----------------------------------------------------- */
+
+ol.arabic {
+    list-style: decimal;
+}
+
+ol.loweralpha {
+    list-style: lower-alpha;
+}
+
+ol.upperalpha {
+    list-style: upper-alpha;
+}
+
+ol.lowerroman {
+    list-style: lower-roman;
+}
+
+ol.upperroman {
+    list-style: upper-roman;
+}
+
+dl {
+    margin-bottom: 15px;
+}
+
+dd p {
+    margin-top: 0px;
+}
+
+dd ul, dd table {
+    margin-bottom: 10px;
+}
+
+dd {
+    margin-top: 3px;
+    margin-bottom: 10px;
+    margin-left: 30px;
+}
+
+dt:target, .highlighted {
+    background-color: #fbe54e;
+}
+
+dl.glossary dt {
+    font-weight: bold;
+    font-size: 1.1em;
+}
+
+.field-list ul {
+    margin: 0;
+    padding-left: 1em;
+}
+
+.field-list p {
+    margin: 0;
+}
+
+.refcount {
+    color: #060;
+}
+
+.optional {
+    font-size: 1.3em;
+}
+
+.versionmodified {
+    font-style: italic;
+}
+
+.system-message {
+    background-color: #fda;
+    padding: 5px;
+    border: 3px solid red;
+}
+
+.footnote:target  {
+    background-color: #ffa;
+}
+
+.line-block {
+    display: block;
+    margin-top: 1em;
+    margin-bottom: 1em;
+}
+
+.line-block .line-block {
+    margin-top: 0;
+    margin-bottom: 0;
+    margin-left: 1.5em;
+}
+
+.guilabel, .menuselection {
+    font-family: sans-serif;
+}
+
+.accelerator {
+    text-decoration: underline;
+}
+
+.classifier {
+    font-style: oblique;
+}
+
+abbr, acronym {
+    border-bottom: dotted 1px;
+    cursor: help;
+}
+
+/* -- code displays --------------------------------------------------------- */
+
+pre {
+    overflow: auto;
+    overflow-y: hidden;  /* fixes display issues on Chrome browsers */
+}
+
+td.linenos pre {
+    padding: 5px 0px;
+    border: 0;
+    background-color: transparent;
+    color: #aaa;
+}
+
+table.highlighttable {
+    margin-left: 0.5em;
+}
+
+table.highlighttable td {
+    padding: 0 0.5em 0 0.5em;
+}
+
+tt.descname {
+    background-color: transparent;
+    font-weight: bold;
+    font-size: 1.2em;
+}
+
+tt.descclassname {
+    background-color: transparent;
+}
+
+tt.xref, a tt {
+    background-color: transparent;
+    font-weight: bold;
+}
+
+h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt {
+    background-color: transparent;
+}
+
+.viewcode-link {
+    float: right;
+}
+
+.viewcode-back {
+    float: right;
+    font-family: sans-serif;
+}
+
+div.viewcode-block:target {
+    margin: -1px -10px;
+    padding: 0 10px;
+}
+
+/* -- math display ---------------------------------------------------------- */
+
+img.math {
+    vertical-align: middle;
+}
+
+div.body div.math p {
+    text-align: center;
+}
+
+span.eqno {
+    float: right;
+}
+
+/* -- printout stylesheet --------------------------------------------------- */
+
+@media print {
+    div.document,
+    div.documentwrapper,
+    div.bodywrapper {
+        margin: 0 !important;
+        width: 100%;
+    }
+
+    div.sphinxsidebar,
+    div.related,
+    div.footer,
+    #top-link {
+        display: none;
+    }
+}
\ No newline at end of file

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment-bright.png
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment-bright.png?rev=1666288&view=auto
==============================================================================
Binary files qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment-bright.png (added) and qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment-bright.png Thu Mar 12 20:25:44 2015 differ

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment-close.png
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment-close.png?rev=1666288&view=auto
==============================================================================
Binary files qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment-close.png (added) and qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment-close.png Thu Mar 12 20:25:44 2015 differ

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment.png
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment.png?rev=1666288&view=auto
==============================================================================
Binary files qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment.png (added) and qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/comment.png Thu Mar 12 20:25:44 2015 differ

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/contents.png
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/contents.png?rev=1666288&view=auto
==============================================================================
Binary files qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/contents.png (added) and qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/contents.png Thu Mar 12 20:25:44 2015 differ

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/doctools.js
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/doctools.js?rev=1666288&view=auto
==============================================================================
--- qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/doctools.js (added)
+++ qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/doctools.js Thu Mar 12 20:25:44 2015
@@ -0,0 +1,247 @@
+/*
+ * doctools.js
+ * ~~~~~~~~~~~
+ *
+ * Sphinx JavaScript utilities for all documentation.
+ *
+ * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
+ * :license: BSD, see LICENSE for details.
+ *
+ */
+
+/**
+ * select a different prefix for underscore
+ */
+$u = _.noConflict();
+
+/**
+ * make the code below compatible with browsers without
+ * an installed firebug like debugger
+if (!window.console || !console.firebug) {
+  var names = ["log", "debug", "info", "warn", "error", "assert", "dir",
+    "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace",
+    "profile", "profileEnd"];
+  window.console = {};
+  for (var i = 0; i < names.length; ++i)
+    window.console[names[i]] = function() {};
+}
+ */
+
+/**
+ * small helper function to urldecode strings
+ */
+jQuery.urldecode = function(x) {
+  return decodeURIComponent(x).replace(/\+/g, ' ');
+}
+
+/**
+ * small helper function to urlencode strings
+ */
+jQuery.urlencode = encodeURIComponent;
+
+/**
+ * This function returns the parsed url parameters of the
+ * current request. Multiple values per key are supported,
+ * it will always return arrays of strings for the value parts.
+ */
+jQuery.getQueryParameters = function(s) {
+  if (typeof s == 'undefined')
+    s = document.location.search;
+  var parts = s.substr(s.indexOf('?') + 1).split('&');
+  var result = {};
+  for (var i = 0; i < parts.length; i++) {
+    var tmp = parts[i].split('=', 2);
+    var key = jQuery.urldecode(tmp[0]);
+    var value = jQuery.urldecode(tmp[1]);
+    if (key in result)
+      result[key].push(value);
+    else
+      result[key] = [value];
+  }
+  return result;
+};
+
+/**
+ * small function to check if an array contains
+ * a given item.
+ */
+jQuery.contains = function(arr, item) {
+  for (var i = 0; i < arr.length; i++) {
+    if (arr[i] == item)
+      return true;
+  }
+  return false;
+};
+
+/**
+ * highlight a given string on a jquery object by wrapping it in
+ * span elements with the given class name.
+ */
+jQuery.fn.highlightText = function(text, className) {
+  function highlight(node) {
+    if (node.nodeType == 3) {
+      var val = node.nodeValue;
+      var pos = val.toLowerCase().indexOf(text);
+      if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) {
+        var span = document.createElement("span");
+        span.className = className;
+        span.appendChild(document.createTextNode(val.substr(pos, text.length)));
+        node.parentNode.insertBefore(span, node.parentNode.insertBefore(
+          document.createTextNode(val.substr(pos + text.length)),
+          node.nextSibling));
+        node.nodeValue = val.substr(0, pos);
+      }
+    }
+    else if (!jQuery(node).is("button, select, textarea")) {
+      jQuery.each(node.childNodes, function() {
+        highlight(this);
+      });
+    }
+  }
+  return this.each(function() {
+    highlight(this);
+  });
+};
+
+/**
+ * Small JavaScript module for the documentation.
+ */
+var Documentation = {
+
+  init : function() {
+    this.fixFirefoxAnchorBug();
+    this.highlightSearchWords();
+    this.initIndexTable();
+  },
+
+  /**
+   * i18n support
+   */
+  TRANSLATIONS : {},
+  PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; },
+  LOCALE : 'unknown',
+
+  // gettext and ngettext don't access this so that the functions
+  // can safely bound to a different name (_ = Documentation.gettext)
+  gettext : function(string) {
+    var translated = Documentation.TRANSLATIONS[string];
+    if (typeof translated == 'undefined')
+      return string;
+    return (typeof translated == 'string') ? translated : translated[0];
+  },
+
+  ngettext : function(singular, plural, n) {
+    var translated = Documentation.TRANSLATIONS[singular];
+    if (typeof translated == 'undefined')
+      return (n == 1) ? singular : plural;
+    return translated[Documentation.PLURALEXPR(n)];
+  },
+
+  addTranslations : function(catalog) {
+    for (var key in catalog.messages)
+      this.TRANSLATIONS[key] = catalog.messages[key];
+    this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')');
+    this.LOCALE = catalog.locale;
+  },
+
+  /**
+   * add context elements like header anchor links
+   */
+  addContextElements : function() {
+    $('div[id] > :header:first').each(function() {
+      $('<a class="headerlink">\u00B6</a>').
+      attr('href', '#' + this.id).
+      attr('title', _('Permalink to this headline')).
+      appendTo(this);
+    });
+    $('dt[id]').each(function() {
+      $('<a class="headerlink">\u00B6</a>').
+      attr('href', '#' + this.id).
+      attr('title', _('Permalink to this definition')).
+      appendTo(this);
+    });
+  },
+
+  /**
+   * workaround a firefox stupidity
+   */
+  fixFirefoxAnchorBug : function() {
+    if (document.location.hash && $.browser.mozilla)
+      window.setTimeout(function() {
+        document.location.href += '';
+      }, 10);
+  },
+
+  /**
+   * highlight the search words provided in the url in the text
+   */
+  highlightSearchWords : function() {
+    var params = $.getQueryParameters();
+    var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : [];
+    if (terms.length) {
+      var body = $('div.body');
+      window.setTimeout(function() {
+        $.each(terms, function() {
+          body.highlightText(this.toLowerCase(), 'highlighted');
+        });
+      }, 10);
+      $('<p class="highlight-link"><a href="javascript:Documentation.' +
+        'hideSearchWords()">' + _('Hide Search Matches') + '</a></p>')
+          .appendTo($('#searchbox'));
+    }
+  },
+
+  /**
+   * init the domain index toggle buttons
+   */
+  initIndexTable : function() {
+    var togglers = $('img.toggler').click(function() {
+      var src = $(this).attr('src');
+      var idnum = $(this).attr('id').substr(7);
+      $('tr.cg-' + idnum).toggle();
+      if (src.substr(-9) == 'minus.png')
+        $(this).attr('src', src.substr(0, src.length-9) + 'plus.png');
+      else
+        $(this).attr('src', src.substr(0, src.length-8) + 'minus.png');
+    }).css('display', '');
+    if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) {
+        togglers.click();
+    }
+  },
+
+  /**
+   * helper function to hide the search marks again
+   */
+  hideSearchWords : function() {
+    $('#searchbox .highlight-link').fadeOut(300);
+    $('span.highlighted').removeClass('highlighted');
+  },
+
+  /**
+   * make the url absolute
+   */
+  makeURL : function(relativeURL) {
+    return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL;
+  },
+
+  /**
+   * get the current relative url
+   */
+  getCurrentURL : function() {
+    var path = document.location.pathname;
+    var parts = path.split(/\//);
+    $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() {
+      if (this == '..')
+        parts.pop();
+    });
+    var url = parts.join('/');
+    return path.substring(url.lastIndexOf('/') + 1, path.length - 1);
+  }
+};
+
+// quick alias for translations
+_ = Documentation.gettext;
+
+$(document).ready(function() {
+  Documentation.init();
+});

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/down-pressed.png
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/down-pressed.png?rev=1666288&view=auto
==============================================================================
Binary files qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/down-pressed.png (added) and qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/down-pressed.png Thu Mar 12 20:25:44 2015 differ

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/down.png
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/down.png?rev=1666288&view=auto
==============================================================================
Binary files qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/down.png (added) and qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/down.png Thu Mar 12 20:25:44 2015 differ

Added: qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/file.png
URL: http://svn.apache.org/viewvc/qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/file.png?rev=1666288&view=auto
==============================================================================
Binary files qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/file.png (added) and qpid/dispatch/branches/0.4/doc/pre_built/doc/qpid-dispatch/html/_static/file.png Thu Mar 12 20:25:44 2015 differ



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