qpid-dispatch git commit: DISPATCH-527 - Removed address "displayname". This address cannot be publicly accessed anymore [Forced Update!]

2016-10-14 Thread gmurthy
Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 3774f5d73 -> 27b2c91ea (forced update)


DISPATCH-527 - Removed address "displayname". This address cannot be
publicly accessed anymore


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/27b2c91e
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/27b2c91e
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/27b2c91e

Branch: refs/heads/master
Commit: 27b2c91ea110a2828db49c5790ad0b275473d99f
Parents: d84356f
Author: Ganesh Murthy 
Authored: Fri Oct 14 15:43:33 2016 -0400
Committer: Ganesh Murthy 
Committed: Fri Oct 14 16:04:21 2016 -0400

--
 .../display_name/display_name.py| 61 ++---
 .../qpid_dispatch_internal/management/config.py |  2 +-
 src/server.c| 42 +---
 src/server_private.h|  1 -
 tests/system_tests_user_id.py   | 72 +---
 tests/system_tests_user_id_proxy.py | 48 -
 6 files changed, 27 insertions(+), 199 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/27b2c91e/python/qpid_dispatch_internal/display_name/display_name.py
--
diff --git a/python/qpid_dispatch_internal/display_name/display_name.py 
b/python/qpid_dispatch_internal/display_name/display_name.py
index ea38508..ba92e76 100644
--- a/python/qpid_dispatch_internal/display_name/display_name.py
+++ b/python/qpid_dispatch_internal/display_name/display_name.py
@@ -42,25 +42,22 @@ class SSLProfile(object):
 for key in d.keys():
 self.cache[key] = d[key]
 
+def __repr__(self):
+return "SSLProfile(%s)" % ", ".join("%s=%s" % (k, self.cache[k]) for k 
in self.cache.keys())
+
 class DisplayNameService(object):
 
-def __init__(self, address):
+def __init__(self):
 super(DisplayNameService, self).__init__()
 # profile_dict will be a mapping from ssl_profile_name to the 
SSLProfile object
 self.profile_dict = {}
 self.io_adapter = None
 self.log_adapter = LogAdapter("DISPLAYNAME")
-if address:
-self._activate(address)
 
 def log(self, level, text):
 info = traceback.extract_stack(limit=2)[0] # Caller frame info
 self.log_adapter.log(level, text, info[0], info[1])
 
-def _activate(self, address):
-self.log(LOG_INFO, "Activating DisplayNameService on %s" % address)
-self.io_adapter = [IoAdapter(self.receive, address)]
-
 def add(self, profile_name, profile_file_location):
 ssl_profile = SSLProfile(profile_name, profile_file_location)
 self.profile_dict[profile_name] = ssl_profile
@@ -89,54 +86,8 @@ class DisplayNameService(object):
 if ssl_profile:
 profile_cache = self.profile_dict.get(profile_name).cache
 user_name = profile_cache.get(user_id)
-body = {'user_name': user_name if user_name else user_id}
-else:
-body = {'user_name': user_id}
-return body
-
-def receive(self, message, unused_link_id, unused_cost):
-"""
-This is the IOAdapter's callback function. Will be invoked when the 
IOAdapter receives a request.
-Will only accept QUERY requests.
-Matches the passed in profilename and userid to user name. If a 
matching user name is not found, returns the
-passed in userid as the user name.
-:param message:
-:param unused_link_id:
-:param unused_cost
-"""
-body = {}
-
-try:
-opcode = message.body.get('opcode')
-profile_name = message.body.get('profilename')
-user_id = message.body.get('userid')
-if opcode == 'QUERY' and profile_name and user_id:
-body = self.query(profile_name, user_id)
-except Exception:
-self.log(LOG_ERROR, "Exception in raw message processing: 
body=%r\n%s" %
- (message.body, format_exc(LOG_STACK_LIMIT)))
-
-# Make sure the incoming message has a reply_to, otherwise don't 
bother responding.
-# This check will make sure that the core thread does not crash.
-if message.reply_to:
-response = Message(address=message.reply_to,
-   body=body,
-   properties={},
-   correlation_id=message.correlation_id)
+return user_name if user_name else user_id
 else:
-# If there is no reply_to, we simple won't respond.
-return
-
-self.io_adapter[0].send(response)
+

qpid-interop-test git commit: QPIDIT-42: JMS headers/properties test finalized.

2016-10-14 Thread kpvdr
Repository: qpid-interop-test
Updated Branches:
  refs/heads/master 514bac751 -> 424d23636


QPIDIT-42: JMS headers/properties test finalized.


Project: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/commit/424d2363
Tree: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/tree/424d2363
Diff: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/diff/424d2363

Branch: refs/heads/master
Commit: 424d23636b8ba4e4e02b27585c5214b9c1bf937f
Parents: 514bac7
Author: Kim van der Riet 
Authored: Fri Oct 14 16:14:53 2016 -0400
Committer: Kim van der Riet 
Committed: Fri Oct 14 16:14:53 2016 -0400

--
 .../jms_hdrs_props_test/Receiver.java   |  46 ++-
 .../qpid-proton-cpp/src/qpidit/QpidItErrors.cpp |   9 +
 .../qpid-proton-cpp/src/qpidit/QpidItErrors.hpp |   7 +
 .../src/qpidit/jms_hdrs_props_test/Receiver.cpp |  54 ++-
 .../src/qpidit/jms_hdrs_props_test/Receiver.hpp |   2 +
 .../src/qpidit/jms_hdrs_props_test/Sender.cpp   |   2 +-
 .../src/jms_hdrs_props_test/Receiver.py |  54 ++-
 .../qpid_interop_test/jms_hdrs_props_test.py| 346 ++-
 src/python/qpid_interop_test/shims.py   |  10 +-
 9 files changed, 412 insertions(+), 118 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/424d2363/shims/qpid-jms/src/main/java/org/apache/qpid/qpid_interop_test/jms_hdrs_props_test/Receiver.java
--
diff --git 
a/shims/qpid-jms/src/main/java/org/apache/qpid/qpid_interop_test/jms_hdrs_props_test/Receiver.java
 
b/shims/qpid-jms/src/main/java/org/apache/qpid/qpid_interop_test/jms_hdrs_props_test/Receiver.java
index 27b5e7e..8dc083a 100644
--- 
a/shims/qpid-jms/src/main/java/org/apache/qpid/qpid_interop_test/jms_hdrs_props_test/Receiver.java
+++ 
b/shims/qpid-jms/src/main/java/org/apache/qpid/qpid_interop_test/jms_hdrs_props_test/Receiver.java
@@ -21,6 +21,7 @@ import java.io.IOException;
 import java.io.ObjectInputStream;
 import java.io.StringReader;
 import java.io.StringWriter;
+import java.text.SimpleDateFormat;
 import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Collections;
@@ -29,6 +30,7 @@ import java.util.List;
 import javax.jms.BytesMessage;
 import javax.jms.Connection;
 import javax.jms.ConnectionFactory;
+import javax.jms.DeliveryMode;
 import javax.jms.Destination;
 import javax.jms.ExceptionListener;
 import javax.jms.JMSException;
@@ -369,6 +371,43 @@ public class Receiver {
 } else {
 addMessageHeaderDestination("JMS_REPLYTO_HEADER", 
JMS_DESTINATION_TYPE.JMS_QUEUE, message.getJMSReplyTo());
 }
+if (flagMap.containsKey("JMS_CLIENT_CHECKS") && 
flagMap.getBoolean("JMS_CLIENT_CHECKS")) {
+// Get and check message headers which are set by a JMS-compient 
sender
+// See: 
https://docs.oracle.com/cd/E19798-01/821-1841/bnces/index.html
+// 1. Destination
+Destination destination = message.getJMSDestination();
+if (destination.toString().compareTo(_queue.toString()) != 0) {
+throw new Exception("JMS_DESTINATION header invalid: found \"" 
+ destination.toString() +
+"\"; expected \"" + _queue.toString() + 
"\"");
+}
+// 2. Delivery Mode (persistence)
+int deliveryMode = message.getJMSDeliveryMode();
+if (deliveryMode != DeliveryMode.NON_PERSISTENT && deliveryMode != 
DeliveryMode.PERSISTENT) {
+throw new Exception("JMS_DELIVERY_MODE header invalid: " + 
deliveryMode);
+}
+// 3. Expiration
+long expiration = message.getJMSExpiration();
+if (expiration != 0) {
+throw new Exception("JMS_EXPIRATION header is non-zero");
+}
+// 4. Message ID
+String message_id = message.getJMSMessageID();
+// TODO: Find a check for this
+// 5. Message priority
+int message_priority = message.getJMSPriority();
+if (message_priority != 4) { // Default JMS message priority
+throw new Exception("JMS_PRIORITY header is not default (4): 
found " + message_priority);
+}
+// 6. Message timestamp
+long timeStamp = message.getJMSTimestamp();
+long currentTime = System.currentTimeMillis();
+if (currentTime - timeStamp > 60 * 1000) { // More than 1 minute 
old
+SimpleDateFormat df = new SimpleDateFormat("dd/MM/ 
HH:mm:ss.S z");
+throw new Exception("JMS_TIMESTAMP header contains suspicious 
value: found " + timeStamp +
+" (" + 

svn commit: r1764836 - /qpid/java/trunk/test-profiles/CPPExcludes

2016-10-14 Thread kwall
Author: kwall
Date: Fri Oct 14 08:17:51 2016
New Revision: 1764836

URL: http://svn.apache.org/viewvc?rev=1764836=rev
Log:
NO-JIRA: Exclude Berkeley specific test from CPP profile

Modified:
qpid/java/trunk/test-profiles/CPPExcludes

Modified: qpid/java/trunk/test-profiles/CPPExcludes
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/test-profiles/CPPExcludes?rev=1764836=1764835=1764836=diff
==
--- qpid/java/trunk/test-profiles/CPPExcludes (original)
+++ qpid/java/trunk/test-profiles/CPPExcludes Fri Oct 14 08:17:51 2016
@@ -222,6 +222,7 @@ org.apache.qpid.server.protocol.v0_8.*
 //Broker for Java BDB System Tests
 org.apache.qpid.server.store.berkeleydb.*
 org.apache.qpid.server.store.berkeleydb.replication.*
+org.apache.qpid.server.virtualhostnode.berkeleydb.*
 
 // Broker for Java Derby Tests
 org.apache.qpid.server.store.derby.*



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



svn commit: r1764842 - /qpid/java/trunk/perftests/etc/testdefs/defaultTests.js

2016-10-14 Thread kwall
Author: kwall
Date: Fri Oct 14 09:17:54 2016
New Revision: 1764842

URL: http://svn.apache.org/viewvc?rev=1764842=rev
Log:
NO-JIRA: Fix typo in new test config introduced by r1764675

Modified:
qpid/java/trunk/perftests/etc/testdefs/defaultTests.js

Modified: qpid/java/trunk/perftests/etc/testdefs/defaultTests.js
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/perftests/etc/testdefs/defaultTests.js?rev=1764842=1764841=1764842=diff
==
--- qpid/java/trunk/perftests/etc/testdefs/defaultTests.js (original)
+++ qpid/java/trunk/perftests/etc/testdefs/defaultTests.js Fri Oct 14 09:17:54 
2016
@@ -133,7 +133,7 @@ var jsonObject = {
 ACKNOWLEDGE_MODE_SESSION_TRANSACTED,
 DELIVERY_MODE_TRANSIENT,
 "PLAIN"),
-createTest("transient_transaction_plain",
+createTest("transient_transaction_ssl",
 numberOfParticipantPairs,
 ACKNOWLEDGE_MODE_SESSION_TRANSACTED,
 DELIVERY_MODE_TRANSIENT,



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



svn commit: r1764865 - in /qpid/java/trunk: broker-core/src/main/java/org/apache/qpid/server/model/ broker-core/src/main/java/org/apache/qpid/server/protocol/ broker-plugins/amqp-0-10-protocol/src/mai

2016-10-14 Thread rgodfrey
Author: rgodfrey
Date: Fri Oct 14 10:47:43 2016
New Revision: 1764865

URL: http://svn.apache.org/viewvc?rev=1764865=rev
Log:
QPID-7447 : Cache authorization of publish message results on the session

Added:

qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/protocol/PublishAuthorisationCache.java
   (with props)
Modified:

qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/model/Session.java

qpid/java/trunk/broker-plugins/amqp-0-10-protocol/src/main/java/org/apache/qpid/server/protocol/v0_10/ServerSession.java

qpid/java/trunk/broker-plugins/amqp-0-10-protocol/src/main/java/org/apache/qpid/server/protocol/v0_10/ServerSessionDelegate.java

qpid/java/trunk/broker-plugins/amqp-0-8-protocol/src/main/java/org/apache/qpid/server/protocol/v0_8/AMQChannel.java

Modified: 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/model/Session.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/model/Session.java?rev=1764865=1764864=1764865=diff
==
--- 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/model/Session.java
 (original)
+++ 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/model/Session.java
 Fri Oct 14 10:47:43 2016
@@ -37,6 +37,18 @@ public interface Sessionhttp://svn.apache.org/viewvc/qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/protocol/PublishAuthorisationCache.java?rev=1764865=auto
==
--- 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/protocol/PublishAuthorisationCache.java
 (added)
+++ 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/protocol/PublishAuthorisationCache.java
 Fri Oct 14 10:47:43 2016
@@ -0,0 +1,110 @@
+/*
+ *
+ * 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.
+ *
+ */
+package org.apache.qpid.server.protocol;
+
+import java.util.LinkedHashMap;
+import java.util.Map;
+import java.util.Objects;
+
+import org.apache.qpid.server.message.MessageDestination;
+import org.apache.qpid.server.security.SecurityToken;
+import org.apache.qpid.server.transport.AbstractAMQPConnection;
+
+public class PublishAuthorisationCache
+{
+private final SecurityToken _token;
+
+private final long _publishAuthCacheTimeout;
+private final int _publishAuthCacheSize;
+private final LinkedHashMap _publishAuthCache =
+new LinkedHashMap()
+{
+@Override
+protected boolean removeEldestEntry(final 
Map.Entry eldest)
+{
+return size() > _publishAuthCacheSize;
+}
+};
+
+public PublishAuthorisationCache(final SecurityToken token,
+ final long publishAuthCacheTimeout,
+ final int publishAuthCacheSize)
+{
+_token = token;
+_publishAuthCacheTimeout = publishAuthCacheTimeout;
+_publishAuthCacheSize = publishAuthCacheSize;
+}
+
+private final class PublishAuthKey
+{
+private final MessageDestination _messageDestination;
+private final String _routingKey;
+private final boolean _immediate;
+private final int _hashCode;
+
+public PublishAuthKey(final MessageDestination messageDestination,
+  final String routingKey,
+  final boolean immediate)
+{
+_messageDestination = messageDestination;
+_routingKey = routingKey;
+_immediate = immediate;
+_hashCode = Objects.hash(_messageDestination, _routingKey, 
_immediate);
+}
+
+@Override
+public boolean equals(final Object o)
+{
+if (this == o)
+{
+return true;
+}
+if (o == null || getClass() != o.getClass())
+{
+return false;
+}
+final PublishAuthKey that = (PublishAuthKey) o;
+ 

svn commit: r1764849 - in /qpid/java/trunk: bdbstore/src/main/java/org/apache/qpid/server/virtualhost/berkeleydb/ broker-core/src/main/java/org/apache/qpid/server/model/ broker-core/src/main/java/org/

2016-10-14 Thread rgodfrey
Author: rgodfrey
Date: Fri Oct 14 09:54:12 2016
New Revision: 1764849

URL: http://svn.apache.org/viewvc?rev=1764849=rev
Log:
QPID-7379 : Revert renaming of extractConfig

Modified:

qpid/java/trunk/bdbstore/src/main/java/org/apache/qpid/server/virtualhost/berkeleydb/BDBHAReplicaVirtualHostImpl.java

qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/model/VirtualHost.java

qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhost/AbstractVirtualHost.java

qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhostnode/RedirectingVirtualHostImpl.java

Modified: 
qpid/java/trunk/bdbstore/src/main/java/org/apache/qpid/server/virtualhost/berkeleydb/BDBHAReplicaVirtualHostImpl.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/bdbstore/src/main/java/org/apache/qpid/server/virtualhost/berkeleydb/BDBHAReplicaVirtualHostImpl.java?rev=1764849=1764848=1764849=diff
==
--- 
qpid/java/trunk/bdbstore/src/main/java/org/apache/qpid/server/virtualhost/berkeleydb/BDBHAReplicaVirtualHostImpl.java
 (original)
+++ 
qpid/java/trunk/bdbstore/src/main/java/org/apache/qpid/server/virtualhost/berkeleydb/BDBHAReplicaVirtualHostImpl.java
 Fri Oct 14 09:54:12 2016
@@ -456,7 +456,7 @@ public class BDBHAReplicaVirtualHostImpl
 }
 
 @Override
-public Map exportConfig(boolean includeSecureAttributes)
+public Map extractConfig(boolean includeSecureAttributes)
 {
 return Collections.emptyMap();
 }

Modified: 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/model/VirtualHost.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/model/VirtualHost.java?rev=1764849=1764848=1764849=diff
==
--- 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/model/VirtualHost.java
 (original)
+++ 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/model/VirtualHost.java
 Fri Oct 14 09:54:12 2016
@@ -221,7 +221,7 @@ public interface VirtualHost exportConfig(@Param(name="includeSecureAttributes",
+Map extractConfig(@Param(name="includeSecureAttributes",
 description = "include attributes 
that may contain passwords or other "
   + "confidential 
information",
 defaultValue = "false") boolean 
includeSecureAttributes);

Modified: 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhost/AbstractVirtualHost.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhost/AbstractVirtualHost.java?rev=1764849=1764848=1764849=diff
==
--- 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhost/AbstractVirtualHost.java
 (original)
+++ 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhost/AbstractVirtualHost.java
 Fri Oct 14 09:54:12 2016
@@ -808,7 +808,7 @@ public abstract class AbstractVirtualHos
 }
 
 @Override
-public Map exportConfig(final boolean 
includeSecureAttributes)
+public Map extractConfig(final boolean 
includeSecureAttributes)
 {
 return doSync(doOnConfigThread(new 
Task>, RuntimeException>()
 {
@@ -830,7 +830,7 @@ public abstract class AbstractVirtualHos
 @Override
 public String getAction()
 {
-return "exportConfig";
+return "extractConfig";
 }
 
 @Override

Modified: 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhostnode/RedirectingVirtualHostImpl.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhostnode/RedirectingVirtualHostImpl.java?rev=1764849=1764848=1764849=diff
==
--- 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhostnode/RedirectingVirtualHostImpl.java
 (original)
+++ 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhostnode/RedirectingVirtualHostImpl.java
 Fri Oct 14 09:54:12 2016
@@ -315,7 +315,7 @@ class RedirectingVirtualHostImpl
 }
 
 @Override
-public Map exportConfig(boolean includeSecureAttributes)
+public Map extractConfig(boolean includeSecureAttributes)
 {
 return Collections.emptyMap();
 }



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

qpid-jms git commit: NO-JIRA: trivial typo fixups and tweaks

2016-10-14 Thread robbie
Repository: qpid-jms
Updated Branches:
  refs/heads/master 7b39e7cfc -> c99af46de


NO-JIRA: trivial typo fixups and tweaks


Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/c99af46d
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/c99af46d
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/c99af46d

Branch: refs/heads/master
Commit: c99af46de94dbf15a76211cedb8f5b66482ca487
Parents: 7b39e7c
Author: Robert Gemmell 
Authored: Fri Oct 14 16:20:36 2016 +0100
Committer: Robert Gemmell 
Committed: Fri Oct 14 16:20:36 2016 +0100

--
 qpid-jms-docs/Configuration.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/c99af46d/qpid-jms-docs/Configuration.md
--
diff --git a/qpid-jms-docs/Configuration.md b/qpid-jms-docs/Configuration.md
index af3614c..f8e66de 100644
--- a/qpid-jms-docs/Configuration.md
+++ b/qpid-jms-docs/Configuration.md
@@ -195,7 +195,7 @@ These options apply to the behaviour of certain AMQP 
functionality.
 + **amqp.saslLayer** Controls whether connections should use a SASL layer or 
not. Default is true.
 + **amqp.saslMechanisms** Which SASL mechanism(s) the client should allow 
selection of, if offered by the server and usable with the configured 
credentials. Comma separated if specifying more than 1 mechanism. Default is to 
allow selection from all the clients supported mechanisms, which are currently 
EXTERNAL, SCRAM-SHA-256, SCRAM-SHA-1, CRAM-MD5, PLAIN, and ANONYMOUS.
 + **amqp.maxFrameSize** The max-frame-size value in bytes that is advertised 
to the peer. Default is 1048576.
-+ **amqp.drainTimeout** The time in milliseconds that the client will wait for 
a response from the remote when a drain request is made, if no response is seen 
in the alloted timeout period the link we be considered failed and the 
associated MessageConsumer will be closed.  The default timeout value is 6.
++ **amqp.drainTimeout** The time in milliseconds that the client will wait for 
a response from the remote when a consumer drain request is made. If no 
response is seen in the allotted timeout period the link will be considered 
failed and the associated consumer will be closed. Default is 6.
 
 ### Failover Configuration options
 
@@ -219,7 +219,7 @@ The complete set of configuration options for failover is 
listed below:
 + **failover.maxReconnectAttempts** The number of reconnection attempts 
allowed before reporting the connection as failed to the client.  The default 
is no limit or (-1).
 + **failover.startupMaxReconnectAttempts** For a client that has never 
connected to a remote peer before this option control how many attempts are 
made to connect before reporting the connection as failed.  The default is to 
use the value of maxReconnectAttempts.
 + **failover.warnAfterReconnectAttempts** Controls how often the client will 
log a message indicating that failover reconnection is being attempted.  The 
default is to log every 10 connection attempts.
-+ **failover.randomize** When true the set of failover URIs is randomly 
shuffled prior to attempting to connect to one of them.  This can help to 
distribute client connections more evenly across multiple remote peers.  The 
default value for this setting is to false.
++ **failover.randomize** When true the set of failover URIs is randomly 
shuffled prior to attempting to connect to one of them.  This can help to 
distribute client connections more evenly across multiple remote peers.  The 
default value is false.
 
 The failover URI also supports defining 'nested' options as a means of 
specifying AMQP and transport option values applicable to all the individual 
nested broker URI's, which can be useful to avoid repetition. This is 
accomplished using the same "transport." and "amqp." URI options outlined 
earlier for a non-failover broker URI but prefixed with *failover.nested.*. For 
example, to apply the same value for the *amqp.vhost* option to every broker 
connected to you might have a URI like:
 


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



[01/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
Repository: qpid-site
Updated Branches:
  refs/heads/asf-site aba883114 -> b2692d07f


http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/messaging_2ImportExport_8h.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/messaging_2ImportExport_8h.html
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/messaging_2ImportExport_8h.html
deleted file mode 100644
index 0b0a958..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/messaging_2ImportExport_8h.html
+++ /dev/null
@@ -1,172 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid/messaging/ImportExport.h File 
Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('messaging_2ImportExport_8h.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Macros  
-  
-ImportExport.h File Reference  
-
-
-#include 
qpid/ImportExport.h
-
-Include dependency graph for ImportExport.h:
-
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-
-Go to the source code of 
this file.
-
-
-Macros
-#defineQPID_MESSAGING_EXTERNQPID_IMPORT
-
-#defineQPID_MESSAGING_CLASS_EXTERNQPID_CLASS_IMPORT
-
-#defineQPID_MESSAGING_INLINE_EXTERNQPID_INLINE_IMPORT
-
-
-Macro Definition Documentation
-
-
-
-  
-
-  #define 
QPID_MESSAGING_CLASS_EXTERNQPID_CLASS_IMPORT
-
-  
-
-
-
-
-
-
-
-  
-
-  #define 
QPID_MESSAGING_EXTERNQPID_IMPORT
-
-  
-
-
-
-
-
-
-
-  
-
-  #define 
QPID_MESSAGING_INLINE_EXTERNQPID_INLINE_IMPORT
-
-  
-
-
-
-
-
-
-
-
-  
-qpidmessagingImportExport.h
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-


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



[33/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Stores.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Stores.html 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Stores.html
deleted file mode 100644
index 5a6e99c..000
--- a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Stores.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-Chapter10.Virtual Host Message Stores - Apache 
Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Java)Chapter10.Virtual Host Message Stores
-
-
-  Chapter10.Virtual Host Message StoresPrevNextChapter10.Virtual Host 
Message StoresTable of 
Contents10.1. Memory 
Message Store10.2. Derby Message 
Store10.3. SQL Message 
Store10.3.1.
 JDBC driver10.4. BDB Message 
Store10.4.1.
 Oracle BDB JE download10.4.2.
 Oracle BDB JE jar installation10.5. High 
Availability BDB Message Store10.5.1.
 Oracle BDB JE downloadhref="Java-Broker-Stores-HA-BDB-Store.html#Java-Broker-Stores-HA-BDB-Store-BDBJE-Installation">10.5.2.
 > Oracle BDB JE jar installationhref="Java-Broker-Stores-HA-BDB-Store.html#Java-Broker-Stores-HA-BDB-Store-Configuration">10.5.3.
 > Configurationclass="titlepage">id="Java-Broker-Stores-Memory-Store">10.1.Memory Message 
 >Store
-The Java broker has an in-memory message store implementation.
-This section will detail configuration for using the MemoryMessageStore.
-  
-Note: when using this store, the broker will store both persistent and 
non-persistent messages
-in memory, which is to say that neither will be available following a 
broker restart, and the
-ability to store new messages will be entirely constrained by the JVM heap 
size.
-  
-The MemoryMessageStore can be selected on Virtual Host creation
-via REST Management interfaces
-and Web Management Console.
-For details, see Chapter7, Virtual 
Hosts.
-  
-Alternatively, the MemoryMessageStore can configured in Virtual Host 
configuration xml.
-For details, see Section14.3, 
Configuring MemoryMessageStore.
-  PrevNextChapter9.QueuesHome10.2.Derby Message 
Store
-
-  
-
-  
-http://www.apache.org/;>Apache
-http://www.apache.org/licenses/;>License
-http://www.apache.org/foundation/sponsorship.html;>Sponsorship
-http://www.apache.org/foundation/thanks.html;>Thanks!
-Security
-http://www.apache.org/;>
-  
-
-  
-Apache Qpid, Messaging built on AMQP; Copyright  2015
-The Apache Software Foundation; Licensed under
-the http://www.apache.org/licenses/LICENSE-2.0;>Apache
-License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
-Proton, Apache, the Apache feather logo, and the Apache Qpid
-project logo are trademarks of The Apache Software
-Foundation; All other marks mentioned may be trademarks or
-registered trademarks of their respective owners
-  
-
-  
-
-  
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Virtual-Host-Binding-Queue.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Virtual-Host-Binding-Queue.html
 

[08/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_d.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_d.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_d.html
deleted file mode 100644
index 112f182..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_d.html
+++ /dev/null
@@ -1,111 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class Members
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('functions_d.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-Here is a list of all class members with links to the 
classes they belong to:
-
-- d -
-data()
-: qpid::types::Uuid
-
-Duration()
-: qpid::messaging::Duration
-
-
-
-
-
-
-  
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_dup.js
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_dup.js 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_dup.js
deleted file mode 100644
index e97e64f..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_dup.js
+++ /dev/null
@@ -1,25 +0,0 @@
-var functions_dup =
-[
-[ "a", "functions.html", null ],
-[ "c", "functions_c.html", null ],
-[ "d", "functions_d.html", null ],
-[ "e", "functions_e.html", null ],
-[ "f", "functions_f.html", null ],
-[ "g", "functions_g.html", null ],
-[ "h", "functions_h.html", null ],
-[ "i", "functions_i.html", null ],
-[ "k", "functions_k.html", null ],
-[ "l", "functions_l.html", null ],
-[ "m", "functions_m.html", null ],
-[ "n", "functions_n.html", null ],
-[ "o", "functions_o.html", null ],
-[ "p", "functions_p.html", null ],
-[ "q", "functions_q.html", null ],
-[ "r", "functions_r.html", null ],
-[ "s", "functions_s.html", null ],
-[ "t", "functions_t.html", null ],
-[ "u", "functions_u.html", null ],
-[ "v", "functions_v.html", null ],
-[ "w", "functions_w.html", null ],
-[ "~", "functions_~.html", null ]
-];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_e.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_e.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_e.html
deleted file mode 100644
index 0b8058a..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_e.html
+++ /dev/null
@@ -1,111 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class Members
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('functions_e.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-Here is a list of all class members with links to the 
classes they belong to:
-
-- e -
-EncodingException()
-: qpid::messaging::EncodingException
-
-Exception()
-: qpid::types::Exception
-
-
-
-
-
-
-  
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_f.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_f.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_f.html
deleted file mode 100644
index 92b9151..000
--- 

[13/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__coll__graph.png
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__coll__graph.png
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__coll__graph.png
deleted file mode 100644
index 20dcec2..000
Binary files 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__coll__graph.png
 and /dev/null differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.map
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.map
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.map
deleted file mode 100644
index 2ceed45..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.map
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.md5
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.md5
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.md5
deleted file mode 100644
index 1306129..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.md5
+++ /dev/null
@@ -1 +0,0 @@
-26397cacf35690f6d73450520d442570
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.png
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.png
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.png
deleted file mode 100644
index 4fb96e5..000
Binary files 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Exception__inherit__graph.png
 and /dev/null differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid-members.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid-members.html
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid-members.html
deleted file mode 100644
index 6f2a615..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid-members.html
+++ /dev/null
@@ -1,131 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Member List
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('classqpid_1_1types_1_1Uuid.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-qpid::types::Uuid Member List  
-
-
-
-This is the complete list of members for qpid::types::Uuid, including all 
inherited members.
-
-  clear()qpid::types::Uuid
-  data()
 const qpid::types::Uuid
-  generate()qpid::types::Uuid
-  hash()
 const qpid::types::Uuid
-  isNull()
 const qpid::types::Uuid
-  operator
 bool() const qpid::types::Uuid
-  operator!()
 const qpid::types::Uuid
-  operator!=(const
 Uuid , const Uuid )qpid::types::Uuidfriend
-  operator(const
 Uuid , const Uuid )qpid::types::Uuidfriend
-  operator(std::ostream
 , Uuid)qpid::types::Uuidfriend
-  operator=(const
 Uuid , const Uuid )qpid::types::Uuidfriend
-  operator=(const
 Uuid )qpid::types::Uuid
-  operator==(const
 Uuid , const Uuid )qpid::types::Uuidfriend
-  operator(const
 Uuid , const Uuid )qpid::types::Uuidfriend
-  operator=(const
 Uuid , const Uuid )qpid::types::Uuidfriend
-  operator(std::istream
 , Uuid )qpid::types::Uuidfriend
-  size()

[42/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Concepts-Queues.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Concepts-Queues.html 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Concepts-Queues.html
deleted file mode 100644
index 048c269..000
--- 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Concepts-Queues.html
+++ /dev/null
@@ -1,146 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-4.4.Queues - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Java)4.4.Queues
-
-
-  4.4.QueuesPrevChapter4.ConceptsNext4.4.QueuesQueues are named entities within a Virtual Host that hold/buffer messages for 
delivery to consumer applications.Different types of Queue have different delivery semantics. The 
following Queues types are currently supported:
-Standard: a simple First-In-First-Out 
(FIFO) queuePriority: delivery order depends on the 
priority of each messageSorted: delivery order depends on the 
value of the sorting key property in each messageLast Value Queue: also known as 
an LVQ, retains only the last (newest) message received with a given LVQ key 
value.
-Queue configuration details are covered in Chapter9, 
Queues.PrevUpNext4.3.ExchangesHome4.5.Ports
-
-  
-
-  
-http://www.apache.org/;>Apache
-http://www.apache.org/licenses/;>License
-http://www.apache.org/foundation/sponsorship.html;>Sponsorship
-http://www.apache.org/foundation/thanks.html;>Thanks!
-Security
-http://www.apache.org/;>
-  
-
-  
-Apache Qpid, Messaging built on AMQP; Copyright  2015
-The Apache Software Foundation; Licensed under
-the http://www.apache.org/licenses/LICENSE-2.0;>Apache
-License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
-Proton, Apache, the Apache feather logo, and the Apache Qpid
-project logo are trademarks of The Apache Software
-Foundation; All other marks mentioned may be trademarks or
-registered trademarks of their respective owners
-  
-
-  
-
-  
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Concepts-Virtual-Hosts.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Concepts-Virtual-Hosts.html
 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Concepts-Virtual-Hosts.html
deleted file mode 100644
index 2ea2437..000
--- 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Concepts-Virtual-Hosts.html
+++ /dev/null
@@ -1,156 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-4.2.Virtual Hosts - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-

[44/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/cpp-broker/book/ha-queue-replication.html
--
diff --git 
a/content/releases/qpid-0.26/cpp-broker/book/ha-queue-replication.html 
b/content/releases/qpid-0.26/cpp-broker/book/ha-queue-replication.html
deleted file mode 100644
index 7830bc6..000
--- a/content/releases/qpid-0.26/cpp-broker/book/ha-queue-replication.html
+++ /dev/null
@@ -1,221 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-1.13.Replicating Queues with the HA module - Apache 
Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Implemented in C++)1.13.Replicating Queues with the HA 
module
-
-
-  1.13.Replicating Queues with the HA modulePrevChapter1.
-  Running the AMQP Messaging Broker
-Next1.13.Replicating Queues 
with the HA module
-As well as support for an active-passive cluster, the
-HA module allows you to replicate individual 
queues,
-even if the brokers are not in a cluster. The original
-queue is used as normal.  The replica queue is
-updated automatically as messages are added to or removed from the original
-queue.
-  Warning
-  It is not safe to modify the replica queue
-  other than via the automatic updates from the original. Adding or 
removing
-  messages on the replica queue will make replication inconsistent and may
-  cause message loss.
-  The HA module does not enforce
-  restricted access to the replica queue (as it does in the case of a 
cluster)
-  so it is up to the application to ensure the replica is not used until 
it has
-  been disconnected from the original.
-1.13.1.Replicating 
queues
-  To create a replica queue, the HA module 
must be
-  loaded on both the original and replica brokers (it is loaded by 
default.)
-  You also need to set the configuration option:
-  
-   ha-queue-replication=yes
-  
-  to enable this feature on a stand-alone broker. It is automatically
-  enabled for brokers that are part of a cluster.
-
-  Suppose that myqueue is a 
queue on
-  node1 and we want to 
create a replica of
-  myqueue on node2 (where both brokers
-  are using the default AMQP port.) This is accomplished by the command:
-  
-   qpid-config --broker=node2 add queue --start-replica node1 myqueue
-  
-  If myqueue already exists 
on the replica
-  broker you can start replication from the original queue like this:
-  
-   qpid-ha replicate -b node2 node1 myqueue
-  
-1.13.2.Replicating queues 
between clusters
-  You can replicate queues between two standalone brokers, between a
-  standalone broker and a cluster, or between two clusters (see Section1.12, Active-Passive Messaging 
Clusters.) For failover in a cluster there are two cases to
-  consider.
-
- When the original queue is on 
the active node
- of a cluster, failover is automatic. If the active node
- fails, the replication link will automatically reconnect and the
- replica will continue to be updated from the new primary.
-   
- When the replica queue is on 
the active node of a
- cluster, there is no automatic failover. However you can use the
- following workaround.
-   1.13.2.1.Work around for fail-over of replica 
queue in a cluster
-   When a primary broker fails the cluster resource manager calls a script
-   to promote a backup 

[47/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/cpp-broker/book/ch02s03.html
--
diff --git a/content/releases/qpid-0.26/cpp-broker/book/ch02s03.html 
b/content/releases/qpid-0.26/cpp-broker/book/ch02s03.html
deleted file mode 100644
index d2f6656..000
--- a/content/releases/qpid-0.26/cpp-broker/book/ch02s03.html
+++ /dev/null
@@ -1,847 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-ch02s03.html - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Implemented in C++)ch02s03.html
-
-
-  2.3.
-  QMF Python Console Tutorial
-PrevChapter2.
-  Managing the AMQP Messaging Broker
-2.3.
-  QMF Python Console Tutorial
-
-Section2.3.1, 

-Prerequisite
-- Install Qpid Messaging
-  
-  
-Section2.3.2, 
-Synchronous
-Console Operations
-  
-  
-
-Section2.3.2.1, 
-Creating a QMF Console Session and Attaching to a Broker
-  
-  
-Section2.3.2.2, 
-Accessing
-Managed Objects
-  
-  
-
-the section called 

-Viewing Properties and Statistics of an Object
-  
-  
-the section called 
-Invoking
-Methods on an Object
-  
-  
-  
-  
-Section2.3.3, 
-Asynchronous
-Console Operations
-  
-  
-
-Section2.3.3.1, 
-Creating a Console Class to Receive Asynchronous Data
-  
-  
-Section2.3.3.2, 
-Receiving
-Events
-  
-  
-Section2.3.3.3, 
-Receiving
-Objects
-  
-  
-Section2.3.3.4, 
-Asynchronous Method Calls and Method Timeouts
-  
-  
-  
-Section2.3.4, 
-Discovering what Kinds of Objects are Available
-  
-  2.3.1.
-Prerequisite
-- Install Qpid Messaging
-  
-QMF uses AMQP Messaging (QPid) as its means of communication. To
-use QMF, Qpid messaging must be installed somewhere in the
-network. Qpid can be downloaded as source from Apache, is
-packaged with a number of Linux distributions, and can be
-purchased from commercial vendors that use Qpid. Please see
-http://qpid.apache.org; 
target="_top">http://qpid.apache.orgfor
-information as to where to get Qpid Messaging.
-  
-Qpid Messaging includes a message broker (qpidd) which typically
-runs as a daemon on a system. It also includes client bindings in
-various programming languages. The Python-language client library
-includes the QMF console libraries needed for this tutorial.
-  
-Please note that Qpid Messaging has two broker implementations.
-One is implemented in C++ and the other in Java. At press time,
-QMF is supported only by the C++ broker.
-  
-If the 

[40/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Getting-Started.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Getting-Started.html 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Getting-Started.html
deleted file mode 100644
index 9f559a6..000
--- 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Getting-Started.html
+++ /dev/null
@@ -1,151 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-Chapter3.Getting Started - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Java)Chapter3.Getting Started
-
-
-  Chapter3.Getting StartedPrevNextChapter3.Getting 
StartedTable of 
Contents3.1.
 Introduction3.2. Star
 ting/Stopping the broker on Windows3.3. 
Starting/Stopping the broker on Unix3.4. Log 
file3.5. Using the command 
line3.1.Introduction
-  This section describes how to start and stop the Java Broker, and 
outlines the various command line options.
-
-  For additional details about the broker configuration store and related 
command line arguments see
-  Section5.1, Broker 
Configuration Store.
-  The broker is fully configurable via its Web Management Console, for 
details of this see
-  Section5.2.2, Web 
Management Console.
-PrevNext2.5.Installation on UNIX 
platformsHome3.2.Starting/Stopping the broker on 
Windows
-
-  
-
-  
-http://www.apache.org/;>Apache
-http://www.apache.org/licenses/;>License
-http://www.apache.org/foundation/sponsorship.html;>Sponsorship
-http://www.apache.org/foundation/thanks.html;>Thanks!
-Security
-http://www.apache.org/;>
-  
-
-  
-Apache Qpid, Messaging built on AMQP; Copyright  2015
-The Apache Software Foundation; Licensed under
-the http://www.apache.org/licenses/LICENSE-2.0;>Apache
-License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
-Proton, Apache, the Apache feather logo, and the Apache Qpid
-project logo are trademarks of The Apache Software
-Foundation; All other marks mentioned may be trademarks or
-registered trademarks of their respective owners
-  
-
-  
-
-  
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-Backup.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-Backup.html
 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-Backup.html
deleted file mode 100644
index 1465448..000
--- 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-Backup.html
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-13.13.Backups - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-  

[30/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-Client-Understanding-Connection.html
--
diff --git 
a/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-Client-Understanding-Connection.html
 
b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-Client-Understanding-Connection.html
deleted file mode 100644
index 5aef93e..000
--- 
a/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-Client-Understanding-Connection.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-5.3.Connection - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Download
-  Documentation
-  Discussion
-  Issues
-  Source Code
-  More Resources
-
-  
-
-  
-
-  Project
-
-  
-Overview
-Qpid Proton
-Contributors
-Get involved
-  
-
-
-
-  Software
-
-  
-Download
-Documentation
-Components
-Releases
-  
-
-
-
-  Resources
-
-  
-Discussion
-Issues
-Source code
-More resources
-  
-
-
-
-  More
-
-  
-AMQP
-Developer central
-https://cwiki.apache.org/confluence/display/qpid/;>Wiki
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-ReleasesQpid 0.26Qpid JMS Client for 
AMQP protocols 0-8, 0-9 and 0-9-15.3.Connection
-5.3.ConnectionPrevChapter5.Understanding the Qpid JMS 
clientNext5.3.ConnectionA
 Connection represents an open communication channel between application and
-  Broker.Connections are created from the ConnectionFactory [3].Each connection utilises a single TCP/IP 
connection between the process of the application
-  and the process of the Broker. The act of establishing a connection is 
therefore a relatively
-  expensive operation. It is recommended that the same connection is used 
for a series of
-  message interactions. Patterns utilising a connection per message should 
not be used. The underlying TCP/IP connection remains open for the 
lifetime of the JMS connection. It
-  is closed when the application calls http://docs.oracle.com/javaee/6/api/javax/jms/Connection.html#close()" 
target="_top">Connection#close(), but it
-  can also be closed if the connection is closed from the Broker side (via 
a Management
-  operation or broker shutdown or running into coditions which AMQP 
specifications treats as errors and mandates closing the connection).
-  The JMS connection will also be closed if the underlying TCP/IP 
connection is broken.Qpid connections have failover and heartbeating 
capabilities. They support SSL and
-  client-auth. These are described in the sub-sections that 
follow.5.3.1.FailoverQpid
 connections support a failover feature. This is the ability to automatically
-re-establish a failed connection, either to the same Broker, or the 
next Broker in the
-broker list.This failover process is done in a manner that is 
mostly transparent to the application.
-After a successful failover, any existing Connection, Session, 
MessageConsumer and
-MessageProducer objects held by the application remain valid.If 
a failover occurs during the scope of a JMS Transaction, any work performed by 
that
-transaction is lost. The application is made aware of this loss by way 
of the http://docs.oracle.com/javaee/6/api/javax/jms/TransactionRolledBackException.html;
 target="_top">TransactionRolledBackException from the http://docs.oracle.com/javaee/6/api/javax/jms/Session.html#commit; 
target="_top">Session#commit() call.
-Applications utilising failover must be prepared to catch this 
exception and respond by
-either repeating the work of the transaction, or by propagating a 
rollback to the
-originating system.If, after all retries are exhausted, 
failover has failed to reconnect the application,
-the Connection's http://docs.oracle.com/javaee/6/api/javax/jms/ExceptionListener.html; 
target="_top">ExceptionListener will receive a JMSException with a linked 
exception of AMQDisconnectedException. Any further use of the JMS objects 
(Connection, Session
-etc), will results in a http://docs.oracle.com/javaee/6/api/javax/jms/IllegalStateException.html; 
target="_top">IllegalStateException.Configure failover using the 
Connection URL. Here's an 

[46/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/cpp-broker/book/chap-Messaging_User_Guide-Security.html
--
diff --git 
a/content/releases/qpid-0.26/cpp-broker/book/chap-Messaging_User_Guide-Security.html
 
b/content/releases/qpid-0.26/cpp-broker/book/chap-Messaging_User_Guide-Security.html
deleted file mode 100644
index 6bcb20c..000
--- 
a/content/releases/qpid-0.26/cpp-broker/book/chap-Messaging_User_Guide-Security.html
+++ /dev/null
@@ -1,931 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-1.5.Security - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Implemented in C++)1.5.Security
-
-
-  1.5.SecurityPrevChapter1.
-  Running the AMQP Messaging Broker
-Next1.5.Security
-   This chapter describes how authentication, rule-based 
authorization, encryption, and digital signing can be accomplished using Qpid. 
Authentication is the process of verifying the identity of a user; in Qpid, 
this is done using the SASL framework. Rule-based authorization is a mechanism 
for specifying the actions that each user is allowed to perform; in Qpid, this 
is done using an Access Control List (ACL) that is part of the Qpid broker. 
Encryption is used to ensure that data is not transferred in a plain-text 
format that could be intercepted and read. Digital signatures provide proof 
that a given message was sent by a known sender. Encryption and signing are 
done using SSL (they can also be done using SASL, but SSL provides stronger 
encryption).
-   1.5.1.User
 Authentication
-   AMQP uses Simple Authentication and Security Layer 
(SASL) to authenticate client connections to the broker. SASL is a framework 
that supports a variety of authentication methods. For secure applications, we 
suggest CRAM-MD5, DIGEST-MD5, or GSSAPI. The ANONYMOUS method is not secure. The 
PLAIN method is secure only when 
used together with SSL.
-   
-   Both the Qpid broker and Qpid clients use the http://cyrusimap.web.cmu.edu/; target="_top">Cyrus SASL 
library, a full-featured authentication framework, which offers many 
configuration options. This section shows how to configure users for 
authentication with SASL, which is sufficient when using SASL PLAIN. If you are not using SSL, 
you should configure SASL to use CRAM-MD5, DIGEST-MD5, or GSSAPI (which provides Kerberos 
authentication). For information on configuring these and other options in 
SASL, see the Cyrus SASL documentation.
-   Important
-   The SASL 
PLAIN method sends passwords in cleartext, and is vulnerable to 
man-in-the-middle attacks unless SSL (Secure Socket Layer) is also used (see Section1.5.4, Encryption 
using SSL).
-   
-   If you are not using SSL, we recommend that you 
disable PLAIN authentication in 
the broker.
-   
-   The Qpid broker uses the auth yes|no option to determine whether 
to use SASL authentication. Turn on authentication by setting auth to yes in /etc/qpidd.conf:
-   
-# /etc/qpidd.conf
-#
-# Set auth to 'yes' or 'no'
-
-auth=yes
-1.5.1.1.Configuring
 SASL
-   On Linux systems, the SASL configuration file 
is generally found in /etc/sasl2/qpidd.conf or 
/usr/lib/sasl2/qpidd.conf.
-   
-   The SASL database contains user 

[29/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-Client-Understanding.html
--
diff --git 
a/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-Client-Understanding.html
 
b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-Client-Understanding.html
deleted file mode 100644
index e435fde..000
--- 
a/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-Client-Understanding.html
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-Chapter5.Understanding the Qpid JMS client - Apache 
Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Download
-  Documentation
-  Discussion
-  Issues
-  Source Code
-  More Resources
-
-  
-
-  
-
-  Project
-
-  
-Overview
-Qpid Proton
-Contributors
-Get involved
-  
-
-
-
-  Software
-
-  
-Download
-Documentation
-Components
-Releases
-  
-
-
-
-  Resources
-
-  
-Discussion
-Issues
-Source code
-More resources
-  
-
-
-
-  More
-
-  
-AMQP
-Developer central
-https://cwiki.apache.org/confluence/display/qpid/;>Wiki
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-ReleasesQpid 0.26Qpid JMS Client for 
AMQP protocols 0-8, 0-9 and 
0-9-1Chapter5.Understanding the Qpid JMS 
client
-Chapter5.Understanding the Qpid JMS 
clientPrevNextChapter5.Understanding 
the Qpid JMS clientTable of 
Contents5.1.
 Overview5.2. ConnectionFactory5.3. 
Connection5.3.1.
 Failover5.3.2.
 Heartbeating5.3.3.
 SSL5.4. 
Session5.4.1.
 Pre
 fetch5.4.2.
 TemporaryQueues5.4.3.
 CreateQueue5.4.4.
 CreateTopic5.5. 
MessageProducer5.5.1.
 Mandatory Messages5.5.2. 
Close When No Route5.5.3.
 Immediate Messages5.5.4.
 Flow Control5.6. 
MessageConsumer5.6.1.
 Consumers have Exchange/Queue Declaration and Binding Side 
Effect5.6.2. 
Topic Subscriptions5.6.3.
 Maximum Delivery Count5.7. 
Destinations5.1.OverviewThe
 Qpid JMS client provides a JMS 1.1 compliant implementation. As such, the 
primary
-  source of documentation is the http://download.oracle.com/otndocs/jcp/7195-jms-1.1-fr-spec-oth-JSpec/; 
target="_top">JMS specification and the
-http://docs.oracle.com/javaee/6/api//javax/jms/package-summary.html; 
target="_top">JMS javadocs. This
-  documentation assumes the reader has familiarity with these 
resources.The remainder of this section describes how the Qpid JMS 
client behaves and the effect(s)
-  making JMS method calls will have on the Broker. There areas 
where the Qpid JMS client provides features beyond those required for JMS
-  compliance. These are described in the sections that follow.These 
sections are also used to bring out differences that may surprise those moving 
from
-  JMS implementations provided by other vendors.Figure5.1.Architecture 
of a typical JMS applicationPrevNext4.2.Publish/subscribe 
exampleHome5.2.
 ConnectionFactory
-
-
-
-
-  http://www.apache.org/;>Apache
-  http://www.apache.org/licenses/;>License
-  http://www.apache.org/foundation/sponsorship.html;>Sponsorship
-  http://www.apache.org/foundation/thanks.html;>Thanks!
-  http://www.apache.org/security/;>Security
-  http://www.apache.org/;>
-
-
-
-  Apache Qpid, Messaging built on AMQP; Copyright  2013
-  The Apache Software Foundation; Licensed under
-  the http://www.apache.org/licenses/LICENSE-2.0;>Apache
-  License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
-  Proton, Apache, the Apache feather logo, and the Apache Qpid
-  project logo are trademarks of The Apache Software
-  Foundation; All other marks mentioned may be trademarks or
-  registered trademarks of their respective owners
-
-  
-
-  
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-Connection-URL.html
--
diff --git 
a/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-Connection-URL.html
 
b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-Connection-URL.html
deleted file mode 100644
index 2f0e4ef..000
--- 

[02/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/jquery.js
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/jquery.js 
b/content/releases/qpid-0.26/messaging-api/cpp/api/jquery.js
deleted file mode 100644
index 3db33e6..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/jquery.js
+++ /dev/null
@@ -1,72 +0,0 @@
-/*!
- * jQuery JavaScript Library v1.7.1
- * http://jquery.com/
- *
- * Copyright 2011, John Resig
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * Includes Sizzle.js
- * http://sizzlejs.com/
- * Copyright 2011, The Dojo Foundation
- * Released under the MIT, BSD, and GPL Licenses.
- *
- * Date: Mon Nov 21 21:11:03 2011 -0500
- */
-(function(bb,L){var av=bb.document,bu=bb.navigator,bl=bb.location;var 
b=(function(){var bF=function(b0,b1){return new 
bF.fn.init(b0,b1,bD)},bU=bb.jQuery,bH=bb.$,bD,bY=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,bM=/\S/,bI=/^\s+/,bE=/\s+$/,bA=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,bN=/^[\],:{}\s]*$/,bW=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,bP=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,bJ=/(?:^|:|,)(?:\s*\[)+/g,by=/(webkit)[
 \/]([\w.]+)/,bR=/(opera)(?:.*version)?[ \/]([\w.]+)/,bQ=/(msie) 
([\w.]+)/,bS=/(mozilla)(?:.*? 
rv:([\w.]+))?/,bB=/-([a-z]|[0-9])/ig,bZ=/^-ms-/,bT=function(b0,b1){return(b1+"").toUpperCase()},bX=bu.userAgent,bV,bC,e,bL=Object.prototype.toString,bG=Object.prototype.hasOwnProperty,bz=Array.prototype.push,bK=Array.prototype.slice,bO=String.prototype.trim,bv=Array.prototype.indexOf,bx={};bF.fn=bF.prototype={constructor:bF,init:function(b0,b4,b3){var
 b2,b5,b1,b6;if(!b0){return 
this}if(b0.nodeType){this.context=this[0]=b0;this.length=1;return 
this}if(b0==="bo
 
dy"&&!b4&){this.context=av;this[0]=av.body;this.selector=b0;this.length=1;return
 this}if(typeof 
b0==="string"){if(b0.charAt(0)==="<"&(b0.length-1)===">"&>=3){b2=[null,b0,null]}else{b2=bY.exec(b0)}if(b2&&(b2[1]||!b4)){if(b2[1]){b4=b4
 instanceof 
bF?b4[0]:b4;b6=(b4?b4.ownerDocument||b4:av);b1=bA.exec(b0);if(b1){if(bF.isPlainObject(b4)){b0=[av.createElement(b1[1])];bF.fn.attr.call(b0,b4,true)}else{b0=[b6.createElement(b1[1])]}}else{b1=bF.buildFragment([b2[1]],[b6]);b0=(b1.cacheable?bF.clone(b1.fragment):b1.fragment).childNodes}return
 
bF.merge(this,b0)}else{b5=av.getElementById(b2[2]);if(b5&){if(b5.id!==b2[2]){return
 b3.find(b0)}this.length=1;this[0]=b5}this.context=av;this.selector=b0;return 
this}}else{if(!b4||b4.jquery){return(b4||b3).find(b0)}else{return 
this.constructor(b4).find(b0)}}}else{if(bF.isFunction(b0)){return 
b3.ready(b0)}}if(b0.selector!==L){this.selector=b0.selector;this.context=b0.context}return
 bF.makeArray(b0,this)},selector:"",
 jquery:"1.7.1",length:0,size:function(){return 
this.length},toArray:function(){return bK.call(this,0)},get:function(b0){return 
b0==null?this.toArray():(b0<0?this[this.length+b0]:this[b0])},pushStack:function(b1,b3,b0){var
 
b2=this.constructor();if(bF.isArray(b1)){bz.apply(b2,b1)}else{bF.merge(b2,b1)}b2.prevObject=this;b2.context=this.context;if(b3==="find"){b2.selector=this.selector+(this.selector?"
 ":"")+b0}else{if(b3){b2.selector=this.selector+"."+b3+"("+b0+")"}}return 
b2},each:function(b1,b0){return 
bF.each(this,b1,b0)},ready:function(b0){bF.bindReady();bC.add(b0);return 
this},eq:function(b0){b0=+b0;return 
b0===-1?this.slice(b0):this.slice(b0,b0+1)},first:function(){return 
this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return 
this.pushStack(bK.apply(this,arguments),"slice",bK.call(arguments).join(","))},map:function(b0){return
 this.pushStack(bF.map(this,function(b2,b1){return 
b0.call(b2,b1,b2)}))},end:function(){return 
this.prevObject||this.constructor(null)},pus
 
h:bz,sort:[].sort,splice:[].splice};bF.fn.init.prototype=bF.fn;bF.extend=bF.fn.extend=function(){var
 
b9,b2,b0,b1,b6,b7,b5=arguments[0]||{},b4=1,b3=arguments.length,b8=false;if(typeof
 b5==="boolean"){b8=b5;b5=arguments[1]||{};b4=2}if(typeof 
b5!=="object"&&!bF.isFunction(b5)){b5={}}if(b3===b4){b5=this;--b4}for(;b40){return}bC.fireWit
 
h(av,[bF]);if(bF.fn.trigger){bF(av).trigger("ready").off("ready")}}},bindReady:function(){if(bC){return}bC=bF.Callbacks("once
 memory");if(av.readyState==="complete"){return 

[39/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-JMXAPI.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-JMXAPI.html
 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-JMXAPI.html
deleted file mode 100644
index 2b56274..000
--- 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-JMXAPI.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-13.8.Qpid JMX API for HA - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Java)13.8.Qpid JMX API for HA
-
-
-  13.8.Qpid JMX API for HAPrevChapter13.High AvailabilityNext13.8.Qpid 
JMX API for HAQpid exposes the BDB HA store 
information via its JMX interface and provides APIs to remove a Node from
- the group, update a Node IP address, and assign a Node as the designated 
primary.An instance of the BDBHAMessageStore MBean is instantiated by the broker 
for the each virtualhost using the HA store.The reference to this MBean 
can be obtained via JMX API using an ObjectName like org.apache.qpid:type=BDBHAMessageStore,name="virtualhost
 name"
- where virtualhost name is the name of a specific 
virtualhost on the broker.Mbean 
BDBHAMessageStore attributes
-  Name
-  Type
-  Accessibility
-  Description
-
-  GroupName
-  String
-  Read only
-  Name identifying the group
-
-  NodeName
-  String
-  Read only
-  Unique name identifying the node within the group
-
-  NodeHostPort
-  String
-  Read only
-  Host/port used to replicate data between this node and others in 
the group
-
-  HelperHostPort
-  String
-  Read only
-  Host/port used to allow a new node to discover other group 
members
-
-  NodeState
-  String
-  Read only
-  Current state of the node
-
-  ReplicationPolicy
-  String
-  Read only
-  Node replication durability
-
-  DesignatedPrimary
-  boolean
-  Read/Write
-  Designated primary flag. Applicable to the two node case.
-
-  CoalescingSync
-  boolean
-  Read only
-  Coalescing sync flag. Applicable to the master sync policies 
NO_SYNC and WRITE_NO_SYNC only.
-
-  getAllNodesInGroup
-  TabularData
-  Read only
-  Get all nodes within the group, regardless of whether currently 
attached or not
-Mbean 
BDBHAMessageStore operations
-  Operation
-  Parameters
-  Returns
-  Description
-
-  removeNodeFromGroup
-  
-nodeName, name of node, 
string
-  
-  void
-  Remove an existing node from the group
-
-  updateAddress
-  
-nodeName, name of 
node, stringnewHostName, new host name, stringnewPort, new port 
number, int
-  
-  void
-  Update the address of another node. The node must be in a 
STOPPED state.
-Figure13.7.BDBHAMessageStore view from 
jconsole.Example13.3.Example of java code to get the 
node state value
-MapString, Object environment = new HashMapString, Object();
-
-// 

[38/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-TwoNodeCluster.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-TwoNodeCluster.html
 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-TwoNodeCluster.html
deleted file mode 100644
index 08673ac..000
--- 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-High-Availability-TwoNodeCluster.html
+++ /dev/null
@@ -1,202 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-13.3.Two Node Cluster - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Java)13.3.Two Node Cluster
-
-
-  13.3.Two Node ClusterPrevChapter13.High AvailabilityNext13.3.Two Node 
Cluster13.3.1.OverviewIn 
this HA solution, a cluster is formed with two nodes. one node serves as
-master and the other is a 
replica.
-  All data and state required for the operation of the virtual host 
is automatically sent from the
-master to the replica. This is called the replication stream. The 
master virtual host confirms each
-message is on the replica before the client transaction completes. The 
exact way the client awaits
-for the master and replica is gorverned by the durability
-configuration, which is discussed later. In this way, the replica 
remains ready to take over the
-role of the master if the master becomes unavailable.
-  It is important to note that there is an inherent limitation of 
two node clusters is that
-the replica node cannot make itself master automatically in the event 
of master failure.  This
-is because the replica has no way to distinguish between a network 
partition (with potentially
-the master still alive on the other side of the partition) and the 
case of genuine master failure.
-(If the replica were to elect itself as master, the cluster would run 
the risk of a
-http://en.wikipedia.org/wiki/Split-brain_(computing)" 
target="_top">split-brain scenario).
-In the event of a master failure, a third party must designate the 
replica as primary.  This process
-is described in more detail later.
-  Clients connect to the cluster using a failover url.
-This allows the client to maintain a connection to the master in a way 
that is transparent
-to the client application.13.3.2.Depictions of cluster 
operationIn this section, the operation of the 
cluster is depicted through a series of figures
-supported by explanatory text.Figure13.1.Key 
for figures13.3.2.1.Normal
 OperationThe figure below illustrates normal 
operation.  Clients connecting to the cluster by way
- of the failover URL achieve a connection to the master. As clients 
perform work (message
- production, consumption, queue creation etc), the master additionally 
sends this data to the
- replica over the network.Figure13.2.Normal operation of a two-node 
cluster13.3.2.2.Master
 Failure and RecoveryThe figure below illustrates a 
sequence of events whereby the master suffers a failure
- and the replica is made the master to allow the clients to continue 
to work. Later the
- old master is repaired and comes back on-line in replica 
role.The item numbers in this list apply to the numbered boxes in the 
figure below.System operating normallyMaster suffers a failure and disconnects all 

[04/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/globals_defs.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/globals_defs.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/globals_defs.html
deleted file mode 100644
index de91e63..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/globals_defs.html
+++ /dev/null
@@ -1,121 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: File Members
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('globals_defs.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-
-QPID_MESSAGING_CLASS_EXTERN
-: ImportExport.h
-
-QPID_MESSAGING_EXTERN
-: ImportExport.h
-
-QPID_MESSAGING_INLINE_EXTERN
-: ImportExport.h
-
-QPID_TYPES_CLASS_EXTERN
-: ImportExport.h
-
-QPID_TYPES_EXTERN
-: ImportExport.h
-
-QPID_TYPES_INLINE_EXTERN
-: ImportExport.h
-
-
-
-
-
-
-  
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/graph_legend.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/graph_legend.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/graph_legend.html
deleted file mode 100644
index cc81b0c..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/graph_legend.html
+++ /dev/null
@@ -1,169 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Graph Legend
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('graph_legend.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Graph Legend  
-
-
-This page explains how to interpret the graphs that are generated by 
doxygen.
-Consider the following example: 
-/*! Invisible 
class because of truncation */
-class Invisible { };
-
-/*! Truncated class, inheritance 
relation is hidden */
-class Truncated : public Invisible { };
-
-/* Class not documented with doxygen 
comments */
-class Undocumented { };
-
-/*! Class that is inherited using 
public inheritance */
-class PublicBase : public Truncated { };
-
-/*! A template class */
-templateclass T class Templ { 
};
-
-/*! Class that is inherited using 
protected inheritance */
-class ProtectedBase { };
-
-/*! Class that is inherited using 
private inheritance */
-class PrivateBase { };
-
-/*! Class that is used by the 
Inherited class */
-class Used { };
-
-/*! Super class that inherits a number 
of other classes */
-class Inherited : public PublicBase,
-  protected 
ProtectedBase,
-  private 
PrivateBase,
-  public 
Undocumented,
-  public 
Templint
-{
-  private:
-Used *m_usedClass;
-};
- This will result in the following graph:
-
-
-
-The boxes in the above graph have the following meaning: 
-
-
-A filled gray box represents the struct or class for which the graph is 
generated. 
-
-A box with a black border denotes a documented struct or class. 
-
-A box with a grey border denotes an undocumented struct or class. 
-
-A box with a red border denotes a documented struct or class forwhich not all 
inheritance/containment relations are shown. A graph is truncated if it does 
not fit within the specified boundaries. 
-
-The arrows have the following meaning: 
-
-
-A dark blue arrow is used to visualize a public inheritance relation between 
two classes. 
-
-A dark green arrow is used for protected inheritance. 
-
-A dark red arrow is used for private inheritance. 
-
-A purple dashed arrow is used if a class is contained or used by another 
class. The arrow is labeled with the variable(s) through which the pointed 
class 

[31/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/index.html
--
diff --git a/content/releases/qpid-0.26/java-broker/book/index.html 
b/content/releases/qpid-0.26/java-broker/book/index.html
deleted file mode 100644
index b65dc93..000
--- a/content/releases/qpid-0.26/java-broker/book/index.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-AMQP Messaging Broker (Java) - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging 
Broker (Java)
-
-
-  AMQP Messaging Broker (Java)NextAMQP Messaging Broker (Java)Table of Contents1. Introduction2. 
Installation2.1. 
Introduction2.2. 
Prerequisites2.2.1.
 Java Platform2.2.2.
 Disk2.2.3.
 Memory2.2.4.
 Operating System Account2.3. 
Download2.3.1.
 Broker Release2.3.2.
 Optional Dependencies2.4. Installation on 
Windows2.4.1.
 Setting the working directory2.4.2.
 Optional Dependencies2.5. Installation on UNIX 
platforms2.5.1. Setting the working 
directory2.5.2.
 Optional Dependencies3. Getting 
Started3.1.
 Introduction3.2. 
Starting/Stopping the broker on Windows3.3. 
Starting/Stopping the broker on Unix3.4. Log 
file3.5. Using the command 
line4. Concepts4.1. 
Broker4.2. Virtual 
Hosts4.3. 
Exchanges4.3.1.
 Predeclared Exchanges4.3.2.
 Exchange Types4.3.3.
 Binding Arguments4.3.4.
 Unrouteable Messages4.4. Queues4.5. 
Ports4.6. Authentication 
Providers4.7. Other 
Services4.7.1.
 Access Control Providers4.7.2.
 Group Providers4.7.3. Keystores4.7.4.
 Truststores5. Configuring And 
Managing5.1.
 Broker Configuration Store5.1.1.
 Introduction5.1.2.
 Configuration Store Location5.1.3.
 'Initial Configuration' Location5.1.4.
 Creating an 'Initial Configuration' JSON File5.1.5.
 Overwriting An Existing Configuration Store5.1.6.
 Configuration Store Type5.1.7.
 Customising Configuration using Configuration Pr
 operties5.1.8.
 Example of JSON 'Initial Configuration'5.1.9.
 Configuring Broker Attributes5.2. HTTP 
Management5.2.1.
 Introduction5.2.2.
 Web Management Console5.2.3.
 HTTP Management Plugin Configuration5.2.4.
 REST API5.3. JMX 
Management5.3.1.
 Introduction5.3.2.
 JMX Management Plugin Configuration5.4. Other Tooling6. Broker Ports6.1. Configuring 
Broker Ports7. Virtual 
Hosts7.1.
 Configuring And Managing8. Exchanges8.1. 
Configuring Virtual Host Exchanges9. 
Queues9.1. Queue Types9.1.1.
 Introduction9.1.2. 
Priority Queues9.1.3. 
Sorted Queues9.1.4. Last 
Value Queues (LVQ)9.1.5. 
Creating a Priority, Sorted or LVQ Queue9.1.6. 
Binding queues to exchanges9.1.7. 
-  Messaging Grouping
-9.1.8.
 Using low pre-fetch with special queue 
types10. Virtual Host Message 
Stores10.1. Memory 
Message Store10.2. Derby Message 
Store10.3. SQL Message 
Store10.3.1.
 JDBC driver10.4. BDB Message 
Store10.4.1.
 Oracle BDB JE download10.4.2.
 Oracle BDB JE jar installation10.5. High 
Availability BDB Message Store10.5.1.
 Oracle BDB JE download10.5.2.
 Oracle BDB JE jar installation10.5.3.
 Configuration11. Security11.1.
 Authentication Providers11.1.1. 
Simple LDAP Authentication Provider11.1.2. 
Kerberos11.1.3. 
External (SSL Client Certificates)11.1.4.
 Anonymous11.1.5.
 Plain Password File11.1.6.
 Base64MD5 Password File11.2. Group 
Providers11.2.1. 
GroupFile Provider11.3. Access Control 
Lists11.3.1.
 
-   Writing .acl files
-11.3.2. 
-   Syntax
-11.3.3.
 
-  Worked Examples
-11.4. SSL11.4.1. Keystore 
Configuration11.4.2. 
Truststore / Client Certificate 

[10/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/doxygen.css
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/doxygen.css 
b/content/releases/qpid-0.26/messaging-api/cpp/api/doxygen.css
deleted file mode 100644
index f0f36f8..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/doxygen.css
+++ /dev/null
@@ -1,1366 +0,0 @@
-/* The standard CSS for doxygen 1.8.6 */
-
-body, table, div, p, dl {
-   font: 400 14px/22px Roboto,sans-serif;
-}
-
-/* @group Heading Levels */
-
-h1.groupheader {
-   font-size: 150%;
-}
-
-.title {
-   font: 400 14px/28px Roboto,sans-serif;
-   font-size: 150%;
-   font-weight: bold;
-   margin: 10px 2px;
-}
-
-h2.groupheader {
-   border-bottom: 1px solid #879ECB;
-   color: #354C7B;
-   font-size: 150%;
-   font-weight: normal;
-   margin-top: 1.75em;
-   padding-top: 8px;
-   padding-bottom: 4px;
-   width: 100%;
-}
-
-h3.groupheader {
-   font-size: 100%;
-}
-
-h1, h2, h3, h4, h5, h6 {
-   -webkit-transition: text-shadow 0.5s linear;
-   -moz-transition: text-shadow 0.5s linear;
-   -ms-transition: text-shadow 0.5s linear;
-   -o-transition: text-shadow 0.5s linear;
-   transition: text-shadow 0.5s linear;
-   margin-right: 15px;
-}
-
-h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
-   text-shadow: 0 0 15px cyan;
-}
-
-dt {
-   font-weight: bold;
-}
-
-div.multicol {
-   -moz-column-gap: 1em;
-   -webkit-column-gap: 1em;
-   -moz-column-count: 3;
-   -webkit-column-count: 3;
-}
-
-p.startli, p.startdd {
-   margin-top: 2px;
-}
-
-p.starttd {
-   margin-top: 0px;
-}
-
-p.endli {
-   margin-bottom: 0px;
-}
-
-p.enddd {
-   margin-bottom: 4px;
-}
-
-p.endtd {
-   margin-bottom: 2px;
-}
-
-/* @end */
-
-caption {
-   font-weight: bold;
-}
-
-span.legend {
-font-size: 70%;
-text-align: center;
-}
-
-h3.version {
-font-size: 90%;
-text-align: center;
-}
-
-div.qindex, div.navtab{
-   background-color: #EBEFF6;
-   border: 1px solid #A3B4D7;
-   text-align: center;
-}
-
-div.qindex, div.navpath {
-   width: 100%;
-   line-height: 140%;
-}
-
-div.navtab {
-   margin-right: 15px;
-}
-
-/* @group Link Styling */
-
-a {
-   color: #3D578C;
-   font-weight: normal;
-   text-decoration: none;
-}
-
-.contents a:visited {
-   color: #4665A2;
-}
-
-a:hover {
-   text-decoration: underline;
-}
-
-a.qindex {
-   font-weight: bold;
-}
-
-a.qindexHL {
-   font-weight: bold;
-   background-color: #9CAFD4;
-   color: #ff;
-   border: 1px double #869DCA;
-}
-
-.contents a.qindexHL:visited {
-color: #ff;
-}
-
-a.el {
-   font-weight: bold;
-}
-
-a.elRef {
-}
-
-a.code, a.code:visited, a.line, a.line:visited {
-   color: #4665A2; 
-}
-
-a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited {
-   color: #4665A2; 
-}
-
-/* @end */
-
-dl.el {
-   margin-left: -1cm;
-}
-
-pre.fragment {
-border: 1px solid #C4CFE5;
-background-color: #FBFCFD;
-padding: 4px 6px;
-margin: 4px 8px 4px 2px;
-overflow: auto;
-word-wrap: break-word;
-font-size:  9pt;
-line-height: 125%;
-font-family: monospace, fixed;
-font-size: 105%;
-}
-
-div.fragment {
-padding: 4px 6px;
-margin: 4px 8px 4px 2px;
-   background-color: #FBFCFD;
-   border: 1px solid #C4CFE5;
-}
-
-div.line {
-   font-family: monospace, fixed;
-font-size: 13px;
-   min-height: 13px;
-   line-height: 1.0;
-   text-wrap: unrestricted;
-   white-space: -moz-pre-wrap; /* Moz */
-   white-space: -pre-wrap; /* Opera 4-6 */
-   white-space: -o-pre-wrap;   /* Opera 7 */
-   white-space: pre-wrap;  /* CSS3  */
-   word-wrap: break-word;  /* IE 5.5+ */
-   text-indent: -53px;
-   padding-left: 53px;
-   padding-bottom: 0px;
-   margin: 0px;
-   -webkit-transition-property: background-color, box-shadow;
-   -webkit-transition-duration: 0.5s;
-   -moz-transition-property: background-color, box-shadow;
-   -moz-transition-duration: 0.5s;
-   -ms-transition-property: background-color, box-shadow;
-   -ms-transition-duration: 0.5s;
-   -o-transition-property: background-color, box-shadow;
-   -o-transition-duration: 0.5s;
-   transition-property: background-color, box-shadow;
-   transition-duration: 0.5s;
-}
-
-div.line.glow {
-   background-color: cyan;
-   box-shadow: 0 0 10px cyan;
-}
-
-
-span.lineno {
-   padding-right: 4px;
-   text-align: right;
-   border-right: 2px solid #0F0;
-   background-color: #E8E8E8;
-white-space: pre;
-}
-span.lineno a {
-   background-color: #D8D8D8;
-}
-
-span.lineno 

[22/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Session_8h_source.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Session_8h_source.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Session_8h_source.html
deleted file mode 100644
index 5aac272..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Session_8h_source.html
+++ /dev/null
@@ -1,213 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid/messaging/Session.h Source File
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('Session_8h_source.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Session.h  
-
-
-Go to the documentation of this file.   
 1#ifndef 
QPID_MESSAGING_SESSION_H
-
2#define QPID_MESSAGING_SESSION_H
-
3
-
4/*
-
5 *
-
6 * Licensed to the Apache Software 
Foundation (ASF) under one
-
7 * or more contributor license agreements.  
See the NOTICE file
-
8 * distributed with this work for 
additional information
-
9 * regarding copyright ownership.  The ASF 
licenses this file
-   
10 * to you under the Apache License, 
Version 2.0 (the
-   
11 * License); you may not use 
this file except in compliance
-   
12 * with the License.  You may obtain a 
copy of the License at
-   
13 * 
-   
14 *   
http://www.apache.org/licenses/LICENSE-2.0
-   
15 * 
-   
16 * Unless required by applicable law or 
agreed to in writing,
-   
17 * software distributed under the License 
is distributed on an
-   
18 * AS IS BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
-   
19 * KIND, either express or implied.  See 
the License for the
-   
20 * specific language governing permissions 
and limitations
-   
21 * under the License.
-   
22 *
-   
23 */
-   
24#include qpid/messaging/ImportExport.h
-   
25
-   
26#include qpid/messaging/exceptions.h
-   
27#include qpid/messaging/Duration.h
-   
28#include qpid/messaging/Handle.h
-   
29
-   
30#include string
-   
31
-   
32namespace qpid {
-   
33namespace messaging {
-   
34
-   
35#ifndef SWIG
-   
36template class 
class PrivateImplRef;
-   
37#endif
-   
38class 
Address;
-   
39class Connection;
-   
40class Message;
-   
41class Sender;
-   
42class Receiver;
-   
43class SessionImpl;
-   
44
-   49class QPID_MESSAGING_CLASS_EXTERN
 Session : 
public qpid::messaging::HandleSessionImpl
-   
50{
-   51 
 public:
-   52 
   QPID_MESSAGING_EXTERN
 Session(SessionImpl* impl = 
0);
-   53 
   QPID_MESSAGING_EXTERN
 Session(const Session);
-   54 
   QPID_MESSAGING_EXTERN
 ~Session();
-   55 
   QPID_MESSAGING_EXTERN
 Session operator=(const Session);
-   
56
-   63 
   QPID_MESSAGING_EXTERN
 void close();
-   
64
-   71 
   QPID_MESSAGING_EXTERN
 void commit();
-   72 
   QPID_MESSAGING_EXTERN
 void rollback();
-   
73
-   81 
   QPID_MESSAGING_EXTERN
 void acknowledge(bool sync=false);
-   85 
   QPID_MESSAGING_EXTERN
 void acknowledge(Message, bool sync=false);
-   89 
   QPID_MESSAGING_EXTERN
 void acknowledgeUpTo(Message, bool sync=false);
-   95 
   QPID_MESSAGING_EXTERN
 void reject(Message);
-  101 
   QPID_MESSAGING_EXTERN
 void release(Message);
-  
102
-  111 
   QPID_MESSAGING_EXTERN
 void sync(bool block=true);
-  
112
-  119 
   QPID_MESSAGING_EXTERN
 uint32_t getReceivable();
-  125 
   QPID_MESSAGING_EXTERN
 uint32_t getUnsettledAcks();
-  134 
   QPID_MESSAGING_EXTERN
 bool nextReceiver(Receiver, Duration 
timeout=Duration::FOREVER);
-  143 
   QPID_MESSAGING_EXTERN
 Receiver 
nextReceiver(Duration timeout=Duration::FOREVER);
-  144 
   
-  152 
   QPID_MESSAGING_EXTERN
 Sender 
createSender(const Address address);
-  163 
   QPID_MESSAGING_EXTERN
 Sender 
createSender(const std::string address);
-  
164
-  172 
   QPID_MESSAGING_EXTERN
 Receiver 
createReceiver(const Address address);
-  183 
   QPID_MESSAGING_EXTERN
 Receiver 
createReceiver(const std::string 
address);
-  
184
-  189 
   QPID_MESSAGING_EXTERN
 Sender 
getSender(const std::string name) const;
-  194 
   QPID_MESSAGING_EXTERN
 Receiver 
getReceiver(const std::string name) const;
-  199 
   QPID_MESSAGING_EXTERN
 Connection getConnection() 
const;
-  
200
-  205 
   QPID_MESSAGING_EXTERN
 bool hasError();
-  211 
   QPID_MESSAGING_EXTERN
 void checkError();
-  
212
-  
213#ifndef SWIG
-  
214  private:
-
  215  

[26/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h.html
deleted file mode 100644
index 1bb27b7..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h.html
+++ /dev/null
@@ -1,138 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid/messaging/Connection.h File 
Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('Connection_8h.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Classes 
-Namespaces  
-  
-Connection.h File Reference  
-
-
-#include qpid/messaging/ImportExport.h
-#include qpid/messaging/Handle.h
-#include qpid/messaging/exceptions.h
-#include qpid/types/Variant.h
-#include string
-
-Include dependency graph for Connection.h:
-
-
-
-
-
-
-Go to the source code of this 
file.
-
-
-Classes
-class 
qpid::messaging::PrivateImplRef
 class 
-
-class 
qpid::messaging::Connection
-
-
-
-Namespaces
-qpid
-
-qpid::messaging
-
-
-
-
-
-
-  
-qpidmessagingConnection.h
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.map
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.map 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.map
deleted file mode 100644
index dab9306..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.map
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.md5
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.md5 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.md5
deleted file mode 100644
index 7802e82..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.md5
+++ /dev/null
@@ -1 +0,0 @@
-e3d4e3546e8e3bc6a83060a4f77f9409
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.png
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.png 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.png
deleted file mode 100644
index 3a4d771..000
Binary files 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h__incl.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h_source.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h_source.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h_source.html
deleted file mode 100644
index 1e8279f..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Connection_8h_source.html
+++ /dev/null
@@ -1,193 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid/messaging/Connection.h Source File
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('Connection_8h_source.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Connection.h  
-
-
-Go to the documentation of this 

[14/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session.html
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session.html
deleted file mode 100644
index 171e80f..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session.html
+++ /dev/null
@@ -1,758 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid::messaging::Session Class Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Session.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Public Member Functions 
-Friends 
-List of all 
members  
-  
-qpid::messaging::Session Class ReferenceQpid C++ Client 
API  
-
-
-
-#include Session.h
-
-Inheritance diagram for qpid::messaging::Session:
-
-
-
-
-[legend]
-
-Collaboration diagram for qpid::messaging::Session:
-
-
-
-
-[legend]
-
-
-Public Member Functions
-QPID_MESSAGING_EXTERNSession
 (SessionImpl *impl=0)
-
-QPID_MESSAGING_EXTERNSession
 (const Session 
)
-
-QPID_MESSAGING_EXTERN~Session
 ()
-
-QPID_MESSAGING_EXTERN
 Session 
operator=
 (const Session 
)
-
-QPID_MESSAGING_EXTERN
 voidclose
 ()
-
-QPID_MESSAGING_EXTERN
 voidcommit
 ()
-
-QPID_MESSAGING_EXTERN
 voidrollback
 ()
-
-QPID_MESSAGING_EXTERN
 voidacknowledge
 (bool sync=false)
-
-QPID_MESSAGING_EXTERN
 voidacknowledge
 (Message 
, bool sync=false)
-
-QPID_MESSAGING_EXTERN
 voidacknowledgeUpTo
 (Message 
, bool sync=false)
-
-QPID_MESSAGING_EXTERN
 voidreject
 (Message 
)
-
-QPID_MESSAGING_EXTERN
 voidrelease
 (Message 
)
-
-QPID_MESSAGING_EXTERN
 voidsync
 (bool block=true)
-
-QPID_MESSAGING_EXTERN
 uint32_tgetReceivable
 ()
-
-QPID_MESSAGING_EXTERN
 uint32_tgetUnsettledAcks
 ()
-
-QPID_MESSAGING_EXTERN
 boolnextReceiver
 (Receiver 
, Duration timeout=Duration::FOREVER)
-
-QPID_MESSAGING_EXTERN
 ReceivernextReceiver
 (Duration 
timeout=Duration::FOREVER)
-
-QPID_MESSAGING_EXTERN
 SendercreateSender
 (const Address 
address)
-
-QPID_MESSAGING_EXTERN
 SendercreateSender
 (const std::string address)
-
-QPID_MESSAGING_EXTERN
 ReceivercreateReceiver
 (const Address 
address)
-
-QPID_MESSAGING_EXTERN
 ReceivercreateReceiver
 (const std::string address)
-
-QPID_MESSAGING_EXTERN
 SendergetSender
 (const std::string name) const 
-
-QPID_MESSAGING_EXTERN
 ReceivergetReceiver
 (const std::string name) const 
-
-QPID_MESSAGING_EXTERN
 ConnectiongetConnection
 () const 
-
-QPID_MESSAGING_EXTERN
 boolhasError
 ()
-
-QPID_MESSAGING_EXTERN
 voidcheckError
 ()
-
-Public Member Functions inherited from qpid::messaging::Handle 
SessionImpl 
-QPID_MESSAGING_INLINE_EXTERN
 boolisValid
 () const
-
-QPID_MESSAGING_INLINE_EXTERN
 boolisNull
 () const
-
-QPID_MESSAGING_INLINE_EXTERNoperator
 bool () const
-
-QPID_MESSAGING_INLINE_EXTERN
 booloperator!
 () const
-
-voidswap
 (Handle 
SessionImpl  h)
-
-
-
-Friends
-classqpid::messaging::PrivateImplRef
 Session 
-
-
-
-Additional Inherited Members
-Protected Types inherited from qpid::messaging::Handle 
SessionImpl 
-typedef SessionImplImpl
-
-Protected Member Functions inherited from qpid::messaging::Handle 
SessionImpl 
-QPID_MESSAGING_INLINE_EXTERNHandle
 ()
-
-Protected Attributes inherited from qpid::messaging::Handle 
SessionImpl 
-Impl
 *impl
-
-
-Detailed 
Description
-A session represents a distinct 'conversation' which 
can involve sending and receiving messages to and from different addresses. 
-Constructor  Destructor Documentation
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Session::Session 
-  (
-  SessionImpl *
-  impl = 0)
-  
-
-  
-
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Session::Session 
-  (
-  const Session 
-  )
-  
-
-  
-
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Session::~Session 
-  (
-  )
-  
-
-  
-
-
-
-
-Member Function Documentation
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 void qpid::messaging::Session::acknowledge 
-  (
-  bool
-  sync = 
false)
- 

[32/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Virtual-Host-Declare-Queues.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Virtual-Host-Declare-Queues.html
 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Virtual-Host-Declare-Queues.html
deleted file mode 100644
index f242bbd..000
--- 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Virtual-Host-Declare-Queues.html
+++ /dev/null
@@ -1,206 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-14.9.Configuring Queues - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Java)14.9.Configuring Queues
-
-
-  14.9.Configuring QueuesPrevChapter14.Virtual Host XML 
configuration fileNext14.9.Configuring 
QueuesTo create a priority, sorted or LVQ queue 
within configuration, add the appropriate xml
-to the virtualhost.xml configuration file within the queues
-element.14.9.1.SimpleFor
 declaration of a simple queue define a queue entry in the virtual host 
configuration as in example belowExample14.7.Configuring a simple 
queuequeue
-namemy-simple-queue/name
-my-simple-queue
-exchangeamq.direct/exchange
-durabletrue/durable
-/my-simple-queue
-/queue14.9.2.Priority
 To defining a priority queue, add a prioritytrue/priority 
element. By
-  default the queue will have 10 distinct priorities. Example14.8.Configuring a priority 
queuequeue
-namemyqueue/name
-myqueue
-exchangeamq.direct/exchange
-prioritytrue/priority
-/myqueue
-/queue If you require 
fewer priorities, it is possible to specify a
-priorities element (whose value is a 
integer value between 2 and 10
-  inclusive) which will give the queue that number of distinct 
priorities. When messages are
-  sent to that queue, their effective priority will be calculated by 
partitioning the
-  priority space. If the number of effective priorities is 2, then 
messages with priority
-  0-4 are treated the same as "lower priority" and messages with 
priority 5-9 are treated
-  equivalently as "higher priority". Example14.9.Configuring a priority queue with 
fewer prioritiesqueue
-namemyqueue/name
-myqueue
-exchangeamq.direct/exchange
-prioritytrue/priority
-priorities4/priorities
-/myqueue
-/queue14.9.3.Sorted
 To define a sorted queue, add a sortKey element. 
The value of the
-sortKey element defines the message 
property to use the value of when
-  sorting the messages put onto the queue. Example14.10.Configuring a sorted 
queuequeue
-namemyqueue/name
-myqueue
-exchangeamq.direct/exchange
-sortKeymessage-property-to-sort-by/sortKey
-/myqueue
-/queue14.9.4.LVQ
 To define a LVQ, add a lvq element with the value
-true. Without any further 
configuration this will define an LVQ
-  which uses the JMS message property qpid.LVQ_key as the key for
-  replacement. Example14.11.Configuring a LVQ 
queuequeue
-namemyqueue/name
-myqueue
-exchangeamq.direct/exchange
-lvqtrue/lvq
-/myqueue
-/queue If you wish to 
define your own property then you can do so using the
-lvqKey element.Example14.12.Configuring a LVQ queue with 
custom message property namequeue
-namemyqueue/name
-myqueue
-exchangeamq.direct/exchange
-

[34/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Stores-BDB-Store-Configuration.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Stores-BDB-Store-Configuration.html
 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Stores-BDB-Store-Configuration.html
deleted file mode 100644
index c64abf9..000
--- 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Stores-BDB-Store-Configuration.html
+++ /dev/null
@@ -1,175 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-14.4.Configuring BDBMessageStore - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Java)14.4.Configuring BDBMessageStore
-
-
-  14.4.Configuring BDBMessageStorePrevChapter14.Virtual Host XML 
configuration fileNext14.4.Configuring 
BDBMessageStore
-  In order to use the BDBMessageStore, you must configure it for each 
VirtualHost desired by updating the store element
-  to specify the associated store class and provide a directory 
location for the data to be written, as shown below.
-Example14.2.Configuring a VirtualHost to use 
the BDBMessageStore
-virtualhosts
-  virtualhost
-namevhostname/name
-vhostname
-  store
-
classorg.apache.qpid.server.store.berkeleydb.BDBMessageStore/class
-
environment-path${QPID_WORK}/bdbstore/vhostname/environment-path
-  /store
-  ...
-/vhostname
-  /virtualhost
-/virtualhosts
-14.4.1.Passing
 BDB environment configuration optionsIt is possible 
to pass BDB http://docs.oracle.com/cd/E17277_02/html/java/com/sleepycat/je/EnvironmentConfig.html;
 target="_top">
-environment from the virtualhost.xml. Environment 
configuration options are passed using
-envConfig elements within the store element.For example, to override the BDB 
environment configuration options je.cleaner.threads and
-   je.log.fileMaxExample14.3.Configuring BDB Environment 
Configuration
-  store
-   ...
-   envConfig
- nameje.cleaner.threads/name
- value2/value
-   /envConfig
-   envConfig
- nameje.log.fileMax/name
- value500/value
-   /envConfig
- ...
-  /storePrevUpNext14.3.Configuring 
MemoryMessageStoreHome14.5.Configuring 
BDBHAMessageStore
-
-  
-
-  
-http://www.apache.org/;>Apache
-http://www.apache.org/licenses/;>License
-http://www.apache.org/foundation/sponsorship.html;>Sponsorship
-http://www.apache.org/foundation/thanks.html;>Thanks!
-Security
-http://www.apache.org/;>
-  
-
-  
-Apache Qpid, Messaging built on AMQP; Copyright  2015
-The Apache Software Foundation; Licensed under
-the http://www.apache.org/licenses/LICENSE-2.0;>Apache
-License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
-Proton, Apache, the Apache feather logo, and the Apache Qpid
-project logo are trademarks of The Apache Software
-Foundation; All other marks mentioned may be trademarks or
-registered trademarks of their respective owners
-  
-
-  
-
-  
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Stores-BDB-Store.html
--
diff 

[09/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/exceptions_8h_source.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/exceptions_8h_source.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/exceptions_8h_source.html
deleted file mode 100644
index 2af7308..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/exceptions_8h_source.html
+++ /dev/null
@@ -1,273 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid/messaging/exceptions.h Source File
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('exceptions_8h_source.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-exceptions.h  
-
-
-Go to the documentation of this file.   
 1#ifndef 
QPID_MESSAGING_EXCEPTIONS_H
-
2#define QPID_MESSAGING_EXCEPTIONS_H
-
3
-
4/*
-
5 *
-
6 * Licensed to the Apache Software 
Foundation (ASF) under one
-
7 * or more contributor license agreements.  
See the NOTICE file
-
8 * distributed with this work for 
additional information
-
9 * regarding copyright ownership.  The ASF 
licenses this file
-   
10 * to you under the Apache License, 
Version 2.0 (the
-   
11 * License); you may not use 
this file except in compliance
-   
12 * with the License.  You may obtain a 
copy of the License at
-   
13 *
-   
14 *   
http://www.apache.org/licenses/LICENSE-2.0
-   
15 *
-   
16 * Unless required by applicable law or 
agreed to in writing,
-   
17 * software distributed under the License 
is distributed on an
-   
18 * AS IS BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
-   
19 * KIND, either express or implied.  See 
the License for the
-   
20 * specific language governing permissions 
and limitations
-   
21 * under the License.
-   
22 *
-   
23 */
-   
24
-   
25#include qpid/messaging/ImportExport.h
-   
26#include qpid/types/Exception.h
-   
27#include qpid/types/Variant.h
-   
28
-   
29namespace qpid {
-   
30namespace messaging {
-   
31
-   
39struct QPID_MESSAGING_CLASS_EXTERN
 MessagingException
 : public qpid::types::Exception
-   
40{
-   41 
   QPID_MESSAGING_EXTERN
 MessagingException(const std::string msg);
-   42 
   QPID_MESSAGING_EXTERN
 virtual ~MessagingException() throw();
-   
43};
-   
44
-   
49struct QPID_MESSAGING_CLASS_EXTERN
 InvalidOptionString
 : public MessagingException
-   
50{
-   51 
   QPID_MESSAGING_EXTERN
 InvalidOptionString(const std::string msg);
-   
52};
-   
53
-   59struct QPID_MESSAGING_CLASS_EXTERN
 KeyError : 
public MessagingException
-   
60{
-   61 
   QPID_MESSAGING_EXTERN
 KeyError(const std::string);
-   
62};
-   
63
-   64struct QPID_MESSAGING_CLASS_EXTERN
 LinkError 
: public MessagingException
-   
65{
-   66 
   QPID_MESSAGING_EXTERN
 LinkError(const std::string);
-   
67};
-   
68
-   69struct QPID_MESSAGING_CLASS_EXTERN
 AddressError : public LinkError
-   
70{
-   71 
   QPID_MESSAGING_EXTERN
 AddressError(const std::string);
-   
72};
-   
73
-   
78struct QPID_MESSAGING_CLASS_EXTERN
 ResolutionError : 
public AddressError
-   
79{
-   80 
   QPID_MESSAGING_EXTERN
 ResolutionError(const std::string msg);
-   
81};
-   
82
-   
87struct QPID_MESSAGING_CLASS_EXTERN
 AssertionFailed : 
public ResolutionError
-   
88{
-   89 
   QPID_MESSAGING_EXTERN
 AssertionFailed(const std::string msg);
-   
90};
-   
91
-   96struct QPID_MESSAGING_CLASS_EXTERN
 NotFound : 
public ResolutionError
-   
97{
-   98 
   QPID_MESSAGING_EXTERN
 NotFound(const std::string msg);
-   
99};
-  
100
-  
104struct QPID_MESSAGING_CLASS_EXTERN
 MalformedAddress : 
public AddressError
-  
105{
-  106 
   QPID_MESSAGING_EXTERN
 MalformedAddress(const std::string msg);
-  
107};
-  
108
-  
109struct QPID_MESSAGING_CLASS_EXTERN
 ReceiverError : public LinkError
-  
110{
-  111 
   QPID_MESSAGING_EXTERN
 ReceiverError(const std::string);
-  
112};
-  
113
-  114struct QPID_MESSAGING_CLASS_EXTERN
 FetchError : public ReceiverError
-  
115{
-  116 
   QPID_MESSAGING_EXTERN
 FetchError(const std::string);
-  
117};
-  
118
-  
124struct QPID_MESSAGING_CLASS_EXTERN
 NoMessageAvailable
 : public FetchError
-  
125{
-  126 
   QPID_MESSAGING_EXTERN
 NoMessageAvailable();
-  
127};
-  
128
-  129struct QPID_MESSAGING_CLASS_EXTERN
 SenderError : public LinkError
-  
130{
-  131 
   QPID_MESSAGING_EXTERN

[28/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies-Dependencies.html
--
diff --git 
a/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies-Dependencies.html
 
b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies-Dependencies.html
deleted file mode 100644
index 4a40257..000
--- 
a/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies-Dependencies.html
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-3.2.Dependencies - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Download
-  Documentation
-  Discussion
-  Issues
-  Source Code
-  More Resources
-
-  
-
-  
-
-  Project
-
-  
-Overview
-Qpid Proton
-Contributors
-Get involved
-  
-
-
-
-  Software
-
-  
-Download
-Documentation
-Components
-Releases
-  
-
-
-
-  Resources
-
-  
-Discussion
-Issues
-Source code
-More resources
-  
-
-
-
-  More
-
-  
-AMQP
-Developer central
-https://cwiki.apache.org/confluence/display/qpid/;>Wiki
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-ReleasesQpid 0.26Qpid JMS Client for 
AMQP protocols 0-8, 0-9 and 0-9-13.2.Dependencies
-3.2.DependenciesPrevChapter3.Getting the Client And 
DependenciesNext3.2.DependenciesThe
 Qpid JMS client has minimal set of external dependencies.  It requires: 
JDK 1.6 or higher. (An up to date JDK 1.7 is 
recommended)JMS 1.1 specification (such as ge
 ronimo-jms_1.1_spec JAR)http://www.slf4j.org; target="_top">Apache SLF4J (slf4j-api-x.y.z 
JAR)
-The use of SLF4J means that application authors are free to plug in 
any logging framework
-  for which an SLF4J binding exists. PrevUpNextChapter3.Getting the Client And 
DependenciesHomeChapter4.Examples
-
-
-
-
-  http://www.apache.org/;>Apache
-  http://www.apache.org/licenses/;>License
-  http://www.apache.org/foundation/sponsorship.html;>Sponsorship
-  http://www.apache.org/foundation/thanks.html;>Thanks!
-  http://www.apache.org/security/;>Security
-  http://www.apache.org/;>
-
-
-
-  Apache Qpid, Messaging built on AMQP; Copyright  2013
-  The Apache Software Foundation; Licensed under
-  the http://www.apache.org/licenses/LICENSE-2.0;>Apache
-  License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
-  Proton, Apache, the Apache feather logo, and the Apache Qpid
-  project logo are trademarks of The Apache Software
-  Foundation; All other marks mentioned may be trademarks or
-  registered trademarks of their respective owners
-
-  
-
-  
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies.html
--
diff --git 
a/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies.html
 
b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies.html
deleted file mode 100644
index 7cb0794..000
--- 
a/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies.html
+++ /dev/null
@@ -1,146 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-Chapter3.Getting the Client And Dependencies - Apache 
Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Download
-  Documentation
-  Discussion
-  Issues
-  Source Code
-  More Resources
-
-  
-
-  
-
-  Project
-
-  
-Overview
-Qpid Proton
-Contributors
-Get involved
-  
-
-
-
-  Software
-
-  
-Download
-Documentation
-Components
-Releases
-  
-
-
-
-  Resources
-
-  
-Discussion
-Issues
-

[43/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/index.html
--
diff --git a/content/releases/qpid-0.26/index.html 
b/content/releases/qpid-0.26/index.html
deleted file mode 100644
index 9611bd1..000
--- a/content/releases/qpid-0.26/index.html
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-Qpid 0.26 - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26
-
-
-  
-  _deferredFunctions.push(function() {
-  if ("0.26" === "0.32") {
-  _modifyCurrentReleaseLinks();
-  }
-  });
-
-
-Qpid 0.26
-
-Qpid is a cross-platform AMQP messaging system.  It provides message
-brokers written in C++ and Java, and clients for C++, Java, Perl,
-Python, Ruby, and .NET.  More about Qpid.
-
-For a detailed list of the changes in this release, see the release
-notes.
-
-Downloads
-
-It's important to verify 
the
-integrity of the
-files you download.
-
-
-
-
-  Content
-  Download
-  Signature
-
-
-
-
-  Full source
-  http://archive.apache.org/dist/qpid/0.26/qpid-0.26.tar.gz;>qpid-0.26.tar.gz
-  http://archive.apache.org/dist/qpid/0.26/qpid-0.26.tar.gz.asc;>PGP
-
-
-  C++ broker, Qpid Messaging API (C++, bindings)
-  http://archive.apache.org/dist/qpid/0.26/qpid-cpp-0.26.tar.gz;>qpid-cpp-0.26.tar.gz
-  http://archive.apache.org/dist/qpid/0.26/qpid-cpp-0.26.tar.gz.asc;>PGP
-
-
-  C++ broker command-line tools
-  http://archive.apache.org/dist/qpid/0.26/qpid-tools-0.26.tar.gz;>qpid-tools-0.26.tar.gz
-  http://archive.apache.org/dist/qpid/0.26/qpid-tools-0.26.tar.gz.asc;>PGP
-
-
-  Java broker
-  http://archive.apache.org/dist/qpid/0.26/qpid-java-broker-0.26.tar.gz;>qpid-java-broker-0.26.tar.gz
-  http://archive.apache.org/dist/qpid/0.26/qpid-java-broker-0.26.tar.gz.asc;>PGP
-
-
-  Qpid JMS (AMQP 0-10, 0-91, 0-9, 0-8)
-  http://archive.apache.org/dist/qpid/0.26/qpid-java-client-0.26.tar.gz;>qpid-java-client-0.26.tar.gz
-  http://archive.apache.org/dist/qpid/0.26/qpid-java-client-0.26.tar.gz.asc;>PGP
-
-
-  Qpid JMS (AMQP 1.0)
-  http://archive.apache.org/dist/qpid/0.26/qpid-java-amqp-1-0-client-jms-0.26.tar.gz;>qpid-java-amqp-1-0-client-jms-0.26.tar.gz
-  http://archive.apache.org/dist/qpid/0.26/qpid-java-amqp-1-0-client-jms-0.26.tar.gz.asc;>PGP
-
-
-  Qpid JCA
-  http://archive.apache.org/dist/qpid/0.26/qpid-java-0.26.tar.gz;>qpid-java-0.26.tar.gz
-  http://archive.apache.org/dist/qpid/0.26/qpid-java-0.26.tar.gz.asc;>PGP
-
-
-  Qpid Messaging API (Python)
-  http://archive.apache.org/dist/qpid/0.26/qpid-python-0.26.tar.gz;>qpid-python-0.26.tar.gz
-  http://archive.apache.org/dist/qpid/0.26/qpid-python-0.26.tar.gz.asc;>PGP
-
-
-  Qpid WCF
-  http://archive.apache.org/dist/qpid/0.26/qpid-wcf-0.26.zip;>qpid-wcf-0.26.zip
-  http://archive.apache.org/dist/qpid/0.26/qpid-wcf-0.26.zip.asc;>PGP
-
-
-  QMF
-  http://archive.apache.org/dist/qpid/0.26/qpid-qmf-0.26.tar.gz;>qpid-qmf-0.26.tar.gz
-  http://archive.apache.org/dist/qpid/0.26/qpid-qmf-0.26.tar.gz.asc;>PGP
-
-
-
-
-Java artefacts are released as compiled bytecode.  Source code is
-available in the full source artefact.
-
-Components
-
-
-
-
-  Component
-  Languages
-  Platforms
-  AMQP versions
-
-
-
-
-  C++ broker
-  C++
-  Linux, Windows
-  1.0, 0-10
-
-
-  Java broker
-  Java
-  JVM
-  1.0, 0-10, 0-91, 0-9, 0-8
-
-
-  Qpid JCA
-  Java
-  JVM
-  0-10
-
-
-  Qpid JMS
-  Java
-  JVM
-  1.0, 0-10, 0-91, 0-9, 0-8
-
-
-  Qpid Messaging 
API
-  C++, Perl, Python, Ruby, .NET
-  Linux, Windows
-  1.0, 0-10
-
-
-  Qpid WCF
-  .NET
-  

[17/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
deleted file mode 100644
index c4d564f..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
+++ /dev/null
@@ -1,912 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid::messaging::Message Class Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Message.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Public Member Functions 
-Friends 
-List of all 
members  
-  
-qpid::messaging::Message Class ReferenceQpid C++ Client 
API  
-
-
-
-#include Message.h
-
-
-Public Member Functions
-QPID_MESSAGING_EXTERNMessage
 (qpid::types::Variant 
)
-
-QPID_MESSAGING_EXTERNMessage
 (const std::string bytes=std::string())
-
-QPID_MESSAGING_EXTERNMessage
 (const char *, size_t)
-
-QPID_MESSAGING_EXTERNMessage
 (const Message 
)
-
-QPID_MESSAGING_EXTERN~Message
 ()
-
-QPID_MESSAGING_EXTERN
 Message 
operator=
 (const Message 
)
-
-QPID_MESSAGING_EXTERN
 voidsetReplyTo
 (const Address 
)
-
-QPID_MESSAGING_EXTERN
 const 
-Address 
getReplyTo
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetSubject
 (const std::string )
-
-QPID_MESSAGING_EXTERN
 const 
-std::string getSubject
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetContentType
 (const std::string )
-
-QPID_MESSAGING_EXTERN
 const 
-std::string getContentType
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetMessageId
 (const std::string )
-
-QPID_MESSAGING_EXTERN
 const 
-std::string getMessageId
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetUserId
 (const std::string )
-
-QPID_MESSAGING_EXTERN
 const 
-std::string getUserId
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetCorrelationId
 (const std::string )
-
-QPID_MESSAGING_EXTERN
 const 
-std::string getCorrelationId
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetPriority
 (uint8_t)
-
-QPID_MESSAGING_EXTERN
 uint8_tgetPriority
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetTtl
 (Duration 
ttl)
-
-QPID_MESSAGING_EXTERN
 DurationgetTtl
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetDurable
 (bool durable)
-
-QPID_MESSAGING_EXTERN
 boolgetDurable
 () const 
-
-QPID_MESSAGING_EXTERN
 boolgetRedelivered
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetRedelivered
 (bool)
-
-QPID_MESSAGING_EXTERN
 const 
-qpid::types::Variant::Map
 getProperties
 () const 
-
-QPID_MESSAGING_EXTERN
 
-qpid::types::Variant::Map
 getProperties
 ()
-
-QPID_MESSAGING_EXTERN
 voidsetProperties
 (const qpid::types::Variant::Map
 )
-
-QPID_MESSAGING_EXTERN
 voidsetContent
 (const std::string )
-
-QPID_MESSAGING_EXTERN
 voidsetContent
 (const char *chars, size_t count)
-
-QPID_MESSAGING_EXTERN
 std::stringgetContent
 () const 
-
-QPID_MESSAGING_EXTERN
 std::stringgetContentBytes
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetContentBytes
 (const std::string )
-
-QPID_MESSAGING_EXTERN
 
-qpid::types::Variant 
getContentObject
 ()
-
-QPID_MESSAGING_EXTERN
 const 
-qpid::types::Variant 
getContentObject
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetContentObject
 (const qpid::types::Variant 
)
-
-QPID_MESSAGING_EXTERN
 const char *getContentPtr
 () const 
-
-QPID_MESSAGING_EXTERN
 size_tgetContentSize
 () const 
-
-QPID_MESSAGING_EXTERN
 voidsetProperty
 (const std::string , const qpid::types::Variant 
)
-
-
-
-Friends
-structMessageImplAccess
-
-
-Detailed 
Description
-Representation of a message. 
-Constructor  Destructor Documentation
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Message::Message 
-  (
-  qpid::types::Variant 

-  )
-  
-
-  
-
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Message::Message 
-  (
-  const std::string 
-  bytes = 
std::string())
-  
-
-  
-
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Message::Message 
-  (
-  const char *
-  , 
-
-
-  
-  
-  size_t
-  
-
-
-  
-

[37/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Introduction.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Introduction.html 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Introduction.html
deleted file mode 100644
index dcdd4c8..000
--- a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Introduction.html
+++ /dev/null
@@ -1,151 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-Chapter1.Introduction - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Java)Chapter1.Introduction
-
-
-  Chapter1.IntroductionPrevNextChapter1.IntroductionThe
 Java Broker is a powerful open-source message broker that implements all 
versions of the
-  http://www.amqp.org; target="_top"> Advanced 
Message Queuing Protocol (AMQP). The Java
-Broker is actually one of two message brokers provided by the http://qpid.apache.org; target="_top">Apache Qpid 
project: the Java Broker and the C++
-Broker.This document relates to the Java Broker. The C++ Broker is
-described separately.Headline 
features100% Java implementation - runs on any 
platform supporting Java 1.6 or higherMessaging clients support in Java, C++, Python.JMS 1.1 compliance (Java client).Persistent and non-persistent (transient) message 
supportSupports for all common messaging 
patterns (point-to-point, publish/subscribe, fan-out
-etc).Transaction support including 
XA[1]Supports for all versions of the AMQP protocolAutomatic message translation, allowing clients using 
different AMQP versions to communicate with each other.Pluggable authentication architecture with out-of-the-box 
support for Kerberos, LDAP,
-External, and file-based authentication mechanisms.Pluggable message store architecture with implementations 
based on http://db.apache.org/derby/; 
target="_top">Apache Derby, http://www.oracle.com/technetwork/products/berkeleydb/overview/index-093405.html;
 target="_top">Oracle BDB JE[2], and Memory StoreWeb based management interface and programmatic management 
interfaces  via REST and JMX
-APIs.SSL supportHigh availability (HA) support.[3][1] XA provided when using AMQP 0-10[2] Oracle BDB JE must 
be downloaded separately.[3] HA currently only available to users of the optional 
BDB JE HA based message store.PrevNextAMQP Messaging Broker 
(Java)HomeChapter2.Installation
-
-  
-
-  
-http://www.apache.org/;>Apache
-http://www.apache.org/licenses/;>License
-http://www.apache.org/foundation/sponsorship.html;>Sponsorship
-http://www.apache.org/foundation/thanks.html;>Thanks!
-Security
-http://www.apache.org/;>
-  
-
-  
-Apache Qpid, Messaging built on AMQP; Copyright  2015
-The Apache Software Foundation; Licensed under
-the http://www.apache.org/licenses/LICENSE-2.0;>Apache
-License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
-Proton, Apache, the Apache feather logo, and the Apache Qpid
-project logo are trademarks of The Apache Software
-Foundation; All other marks mentioned may be trademarks or
-registered trademarks of their respective owners
-  
-
-  
-
-  
-


[36/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Runtime-Disk-Space-Management.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Runtime-Disk-Space-Management.html
 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Runtime-Disk-Space-Management.html
deleted file mode 100644
index d5992b7..000
--- 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Runtime-Disk-Space-Management.html
+++ /dev/null
@@ -1,240 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-12.3.Disk Space Management - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Java)12.3.Disk Space Management
-
-
-  12.3.Disk Space ManagementPrevChapter12.RuntimeNext12.3.Disk Space 
Management12.3.1.Producer Flow 
Control12.3.1.1.General 
Information
-The Qpid 0.6 release introduced a simplistic producer-side flow 
control mechanism
-into the Java Messaging Broker, causing producers to be 
flow-controlled when they
-attempt to send messages to an overfull queue. Qpid 0.18 
introduced a similar
-mechanism triggered by an overfull persistent message store on a 
virtual host.
-12.3.1.2.Server
 ConfigurationConfiguring a Queue to use flow 
control
-Flow control is enabled on a producer when it sends a message 
to a Queue
-which is "overfull". The producer flow control will be 
rescinded when all
-Queues on which a producer is blocking become "underfull". A 
Queue is defined
-as overfull when the size (in bytes) of the messages on the 
queue exceeds the
-"capacity" of the Queue. A Queue becomes "underfull" when its 
size becomes
-less than the "flowResumeCapacity".
-
-Examples how to configure flow control in virtual host 
configuration are provided in
-Section14.11, 
Configuring of Producer Flow Control.
-
-Where no flowResumeCapacity is set, the flowResumeCapacity is 
set to be equal
-to the capacity. Where no capacity is set, capacity is 
defaulted to 0 meaning
-there is no capacity limit.
-ImportantFlow control can be 
configured globally for all virtual hosts by specifying threshold values for 
Broker flow control attributes.Broker Log Messages
-There are four new Broker log messages that may occur if 
flow control through queue capacity limits is enabled.
-Firstly, when a capacity limited queue becomes overfull, a 
log message similar to the following is produced
-
-MESSAGE [vh(/test)/qu(MyQueue)] [vh(/test)/qu(MyQueue)] QUE-1003 : Overfull : 
Size : 1,200 bytes, Capacity : 1,000
-Then for each channel which becomes blocked upon the 
overful queue a log message similar to the following is produced:
-MESSAGE [con:2(guest@anonymous(713889609)/test)/ch:1] 
[con:2(guest@anonymous(713889609)/test)/ch:1] CHN-1005 : Flow Control Enforced 
(Queue MyQueue)
-When enough messages have been consumed from the 
queue that it becomes underfull, then the following log is generated: 
-MESSAGE [vh(/test)/qu(MyQueue)] [vh(/test)/qu(MyQueue)] QUE-1004 : Underfull : 
Size : 600 bytes, Resume Capacity : 800
-And for every channel which becomes unblocked you 
will see a message similar to: 
-MESSAGE 

[50/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/index.html
--
diff --git a/content/releases/index.html b/content/releases/index.html
index 6436bef..fe7201a 100644
--- a/content/releases/index.html
+++ b/content/releases/index.html
@@ -170,12 +170,6 @@ the
 Qpid Dispatch 0.3, January 
2015
 Qpid Proton 0.8, October 2014
 Qpid 0.30, September 2014
-Qpid 0.28, June 2014
-Qpid Dispatch 0.2, April 
2014
-Qpid Proton 0.7, April 2014
-Qpid 0.26, February 2014
-Qpid Proton 0.6, January 2014
-Qpid Dispatch 0.1, January 
2014
 
 
 

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/cpp-broker/book/AMQP-Compatibility.html
--
diff --git a/content/releases/qpid-0.26/cpp-broker/book/AMQP-Compatibility.html 
b/content/releases/qpid-0.26/cpp-broker/book/AMQP-Compatibility.html
deleted file mode 100644
index 1d7f12e..000
--- a/content/releases/qpid-0.26/cpp-broker/book/AMQP-Compatibility.html
+++ /dev/null
@@ -1,536 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-AMQP-Compatibility.html - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Implemented in C++)AMQP-Compatibility.html
-
-
-  1.9.
-  AMQP compatibility
-PrevChapter1.
-  Running the AMQP Messaging Broker
-Next1.9.
-  AMQP compatibility
-
-Qpid provides the most complete and compatible implementation
-of AMQP. And is the most aggressive in implementing the latest
-version of the specification.
-  
-There are two brokers:
-  C++ with support for AMQP 0-10Java with support for AMQP 0-8 and 0-9 (0-10 
planned)
-There are client libraries for C++, Java (JMS), .Net (written in
-C#), python and ruby.
-  All clients support 0-10 and interoperate 
with the C++
-broker.
-The JMS client 
supports 0-8, 0-9 and 0-10 and interoperates
-with both brokers.
-The python and ruby 
clients will also support all versions,
-but the API is dynamically driven by the specification used and
-so differs between versions. To work with the Java broker you
-must use 0-8 or 0-9, to work with the C++ broker you must use
-0-10.
-There are two separate 
C# clients, one for 0-8 that
-interoperates with the Java broker, one for 0-10 that
-inteoperates with the C++ broker.
-
-QMF Management is supported in Ruby, Python, C++, and via QMan
-for Java JMX  WS-DM.
-  1.9.1.
-AMQP
-Compatibility of Qpid releases:
-  
-Qpid implements the AMQP Specification, and as the specification
-has progressed Qpid is keeping up with the updates. This means
-that different Qpid versions support different versions of AMQP.
-Here is a simple guide on what use.
-  
-Here is a matrix that describes the different versions supported
-by each release. The status symbols are interpreted as follows:
-  YsupportedNunsupportedIPin progressPplannedTable1.21.AMQP Version Support by Qpid 
Release
-  Component
-
-  Spec
-
-  
-
-  
-
-  
-  

[35/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Security-ACLs.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Security-ACLs.html 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Security-ACLs.html
deleted file mode 100644
index 3848721..000
--- a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Security-ACLs.html
+++ /dev/null
@@ -1,411 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-11.3.Access Control Lists - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Java)11.3.Access Control Lists
-
-
-  11.3.Access Control ListsPrevChapter11.SecurityNext11.3.Access Control 
Lists
-In Qpid, Access Control Lists (ACLs) specify which actions can be 
performed by each authenticated user.
-To enable, an Access Control 
Provider needs to be configured on the Broker
-level or/and ACL configuration should be provided on a Virtual Host level.
-The first imposes the ACL broker wide, and the second is applied to 
individual virtual hosts.
-The Access Control Provider of type 
"AclFile" uses local file to specify the ACL rules.
-By convention, this file should have a .acl extension.
-  
-A Group Provider can be configured with ACL to define the user groups 
which can be used in ACL
-to determine the ACL rules applicable to the entire group. The 
configuration details for the Group Providers are described in
-Section11.2, Group 
Providers. On creation of ACL Provider with group rules,
-the Group Provider should be added first. Otherwise, if the individual ACL 
rules are not defined for the logged principal
-the following invocation of management operations could be denied due to 
absence of the required groups.Only one Access Control Provider can be used by the 
Broker.
-If several Access Control Providers 
are configured on Broker level
-only one of them will be used (the latest one). Section14.2, Configuring 
ACL
-shows how to configure ACL on Virtual 
Host using virtual host configuration xml.
-If both Broker Access Control 
Provider and Virtual Host 
ACL are configured,
-the Virtual Host ACL is used for 
authorization of operations on Virtual 
Host and
-Virtual Host objects and Broker level ACL is used to authorization of 
operations on Broker and Broker children
-(excluding Virtual Hosts having ACL configured).
-  
-The ACL Providers can be configured using REST Management interfaces
-and Web Management Console.
-  The following ACL Provider managing operations are available from Web 
Management Console:
-A new ACL Provider can be added by clicking onto "Add 
Access Control Provider" on the Broker tab.An 
ACL Provider details can be viewed on the Access Control Provider tab.
-The tab is shown after clicking onto ACL Provider name in the Broker 
object tree or after clicking
-onto ACL Provider row in ACL Providers grid on the Broker 
tab.An existing ACL Provider can be deleted by 
clicking onto buttons "Delete Access Control Provider"
-on the Broker tab or Access Control Provider 
tab.
-  11.3.1.
-   Writing .acl files
-
-  The ACL file consists of a series of rules associating behaviour for a 
user or group. Use of groups can serve to make the ACL file more concise. See 
Configuring Group Providers for more 
information on defining groups.
-
-  Each ACL rule grants or denies a 

[25/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Exception_8h_source.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Exception_8h_source.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Exception_8h_source.html
deleted file mode 100644
index 41f88fd..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Exception_8h_source.html
+++ /dev/null
@@ -1,154 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid/types/Exception.h Source File
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('Exception_8h_source.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Exception.h  
-
-
-Go to the documentation of this file.   
 1#ifndef 
QPID_TYPES_EXCEPTION_H
-
2#define QPID_TYPES_EXCEPTION_H
-
3
-
4/*
-
5 *
-
6 * Licensed to the Apache Software 
Foundation (ASF) under one
-
7 * or more contributor license agreements.  
See the NOTICE file
-
8 * distributed with this work for 
additional information
-
9 * regarding copyright ownership.  The ASF 
licenses this file
-   
10 * to you under the Apache License, 
Version 2.0 (the
-   
11 * License); you may not use 
this file except in compliance
-   
12 * with the License.  You may obtain a 
copy of the License at
-   
13 * 
-   
14 *   
http://www.apache.org/licenses/LICENSE-2.0
-   
15 * 
-   
16 * Unless required by applicable law or 
agreed to in writing,
-   
17 * software distributed under the License 
is distributed on an
-   
18 * AS IS BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
-   
19 * KIND, either express or implied.  See 
the License for the
-   
20 * specific language governing permissions 
and limitations
-   
21 * under the License.
-   
22 *
-   
23 */
-   
24
-   
25#include string
-   
26#include qpid/types/ImportExport.h
-   
27
-   
28namespace qpid {
-   29namespace types {
-   
30
-   31class QPID_TYPES_CLASS_EXTERN
 Exception : 
public std::exception
-   
32{
-   33 
 public:
-   34 
   QPID_TYPES_EXTERN
 explicit Exception(const std::string message=std::string()) throw();
-   35 
   QPID_TYPES_EXTERN
 virtual ~Exception() throw();
-   36 
   QPID_TYPES_EXTERN
 virtual const char* what() const 
throw();
-   
37
-   38 
 private:
-   39 
   const std::string message;
-   
40};
-   
41
-   
42}} // namespace qpid::types
-   
43
-   
44#endif  
-qpid::types::ExceptionDefinition: Exception.h:31
-QPID_TYPES_CLASS_EXTERN#define QPID_TYPES_CLASS_EXTERNDefinition: ImportExport.h:31
-ImportExport.h
-QPID_TYPES_EXTERN#define QPID_TYPES_EXTERNDefinition: ImportExport.h:30
-
-
-
-
-  
-qpidtypesException.h
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/FailoverUpdates_8h.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/FailoverUpdates_8h.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/FailoverUpdates_8h.html
deleted file mode 100644
index 1d045a7..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/FailoverUpdates_8h.html
+++ /dev/null
@@ -1,132 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid/messaging/FailoverUpdates.h File 
Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('FailoverUpdates_8h.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Classes 
-Namespaces  
-  
-FailoverUpdates.h File Reference  
-
-
-#include qpid/messaging/ImportExport.h
-
-Include dependency graph for FailoverUpdates.h:
-
-
-
-
-
-
-Go to the source code of this 
file.
-
-
-Classes
-class 

[06/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_~.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_~.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_~.html
deleted file mode 100644
index e35051b..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_~.html
+++ /dev/null
@@ -1,138 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class Members - Functions
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('functions_func_~.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-
-
-- ~ -
-~Address()
-: qpid::messaging::Address
-
-~Connection()
-: qpid::messaging::Connection
-
-~Exception()
-: qpid::types::Exception
-
-~FailoverUpdates()
-: qpid::messaging::FailoverUpdates
-
-~InvalidConversion()
-: qpid::types::InvalidConversion
-
-~Message()
-: qpid::messaging::Message
-
-~MessagingException()
-: qpid::messaging::MessagingException
-
-~Receiver()
-: qpid::messaging::Receiver
-
-~Sender()
-: qpid::messaging::Sender
-
-~Session()
-: qpid::messaging::Session
-
-~Variant()
-: qpid::types::Variant
-
-
-
-
-
-
-  
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_g.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_g.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_g.html
deleted file mode 100644
index 80b430b..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_g.html
+++ /dev/null
@@ -1,223 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class Members
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('functions_g.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-Here is a list of all class members with links to the 
classes they belong to:
-
-- g -
-generate()
-: qpid::types::Uuid
-
-get()
-: qpid::messaging::Receiver
-
-getAddress()
-: qpid::messaging::Receiver
-, qpid::messaging::Sender
-
-getAuthenticatedUsername()
-: qpid::messaging::Connection
-
-getAvailable()
-: qpid::messaging::Receiver
-, qpid::messaging::Sender
-
-getCapacity()
-: qpid::messaging::Receiver
-, qpid::messaging::Sender
-
-getConnection()
-: qpid::messaging::Session
-
-getContent()
-: qpid::messaging::Message
-
-getContentBytes()
-: qpid::messaging::Message
-
-getContentObject()
-: qpid::messaging::Message
-
-getContentPtr()
-: qpid::messaging::Message
-
-getContentSize()
-: qpid::messaging::Message
-
-getContentType()
-: qpid::messaging::Message
-
-getCorrelationId()
-: qpid::messaging::Message
-
-getDurable()
-: qpid::messaging::Message
-
-getEncoding()
-: qpid::types::Variant
-
-getMessageId()
-: qpid::messaging::Message
-
-getMilliseconds()
-: qpid::messaging::Duration
-
-getName()
-: qpid::messaging::Address
-, qpid::messaging::Receiver
-, qpid::messaging::Sender
-
-getOptions()
-: qpid::messaging::Address
-
-getPriority()
-: qpid::messaging::Message
-
-getProperties()
-: qpid::messaging::Message
-
-getReceivable()
-: qpid::messaging::Session
-
-getReceiver()
-: qpid::messaging::Session
-
-getRedelivered()
-: qpid::messaging::Message
-
-getReplyTo()
-: qpid::messaging::Message
-
-getSender()
-: qpid::messaging::Session
-
-getSession()
-: qpid::messaging::Connection
-, qpid::messaging::Receiver
-, qpid::messaging::Sender
-
-getString()
-: qpid::types::Variant
-
-getSubject()
-: qpid::messaging::Address
-, qpid::messaging::Message
-
-getTtl()
-: qpid::messaging::Message
-
-getType()
-: qpid::messaging::Address
-, 

[45/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/cpp-broker/book/chapter-Managing-CPP-Broker.html
--
diff --git 
a/content/releases/qpid-0.26/cpp-broker/book/chapter-Managing-CPP-Broker.html 
b/content/releases/qpid-0.26/cpp-broker/book/chapter-Managing-CPP-Broker.html
deleted file mode 100644
index 79a276b..000
--- 
a/content/releases/qpid-0.26/cpp-broker/book/chapter-Managing-CPP-Broker.html
+++ /dev/null
@@ -1,606 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-2.1. Managing the C++ Broker - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Implemented in C++)2.1. Managing the C++ Broker
-
-
-  Chapter2.
-  Managing the AMQP Messaging Broker
-PrevNextChapter2.
-  Managing the AMQP Messaging Broker
-Table of 
Contents2.1.  
Managing the C++ Broker 2.1.1. 
-Using qpid-config
-  2.1.2. 
-Using qpid-route
-  2.1.3. 
-Using qpid-tool
-  2.1.4. 
-Using
-qpid-printevents
-  2.1.5. Using 
qpid-ha2.2. 
-  Qpid Management Framework
-2.2.1. 
-What Is QMF
-  2.2.2. 
-Getting
-Started with QMF
-  2.2.3. 
-QMF Concepts
-  2.2.4. 
-The QMF
-Protocol
-  2.2.5. 
-How
-to Write a QMF Console
-  2.2.6. 
-How to
-Write a QMF Agent
-  2.3. 
-  QMF Python Console Tutorial
-2.3.1.
 
-Prerequisite
-- Install Qpid Messaging
-  2.3.2.
 
-Synchronous
-Console Operations
-  2.3.3.
 
-Asynchronous
-Console Operations
-  2.3.4.
 
-Discovering what Kinds of Objects are Available
-  2.1. Managing the C++ Broker 

-There are quite a few ways to interact with the C++ broker. The
-command line tools
-include:
-  qpid-route - used to configure federation 
(a set of federated
-brokers)
-qpid-config - used to configure 
queues, exchanges, bindings
-and list them etc
-qpid-tool - used to view 
management information/statistics
-and call any management actions on the broker
-qpid-printevents - used to 
receive and print QMF events
-qpid-ha - used to interact with 
the High Availability module
-2.1.1.
-Using qpid-config
-  
-This utility can be used to create queues exchanges and bindings,
-both durable and transient. Always check for latest options by
-running --help command.
-  
-$ qpid-config --help
-Usage:  qpid-config [OPTIONS]
-qpid-config [OPTIONS] exchanges [filter-string]
-qpid-config [OPTIONS] queues[filter-string]
-qpid-config [OPTIONS] add exchange type name 
[AddExchangeOptions]
-qpid-config [OPTIONS] del exchange name
-qpid-config [OPTIONS] add queue name [AddQueueOptions]
-qpid-config [OPTIONS] del queue name
-qpid-config [OPTIONS] bind   exchange-name queue-name 
[binding-key]
-qpid-config [OPTIONS] unbind exchange-name queue-name 
[binding-key]
-
-Options:
--b [ --bindings ] Show bindings in queue or 
exchange list
--a [ --broker-addr ] Address (localhost)  Address of qpidd broker
- 

[41/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Configuring-And-Managing.html
--
diff --git 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Configuring-And-Managing.html
 
b/content/releases/qpid-0.26/java-broker/book/Java-Broker-Configuring-And-Managing.html
deleted file mode 100644
index cd35915..000
--- 
a/content/releases/qpid-0.26/java-broker/book/Java-Broker-Configuring-And-Managing.html
+++ /dev/null
@@ -1,342 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-Chapter5.Configuring And Managing - Apache 
Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Java)Chapter5.Configuring And Managing
-
-
-  Chapter5.Configuring And ManagingPrevNextChapter5.Configuring 
And ManagingTable of 
Contents5.1.
 Broker Configuration Store5.1.1.
 Introduction5.1.2.
 Configuration Store Location5.1.3.
 'Initial Configuration' Location5.1.4.
 Creating an 'Initial Configuration' JSON File5.1.5.
 Overwriting An Existing Configuration Store5.1.6.
 Configuration Store Type5.1.7.
 Customising Configuration using Configuration 
Properties5.1.8.
 Example of JSON 'Initial Configuration'5.1.9.
 Configuring Broker Attributes5.2. HTTP 
Management5.2.1.
 Introduction5.2.2.
 Web Management Console5.2.3.
 HTTP Management Plugin Configuration5.2.4.
 REST API5.3. JMX 
Management5.3.1. 
Introduction5.3.2.
 JMX Management Plugin Configuration5.4. Other 
Tooling5.1.Broker
 Configuration Store5.1.1.Introduction
-The Broker supports configuration of all its primary components 
via its HTTP management interface, using
-the Web Management Console.
-
-The configuration for each component is stored as an entry in the 
broker configuration store, currently implemented as either a JSON file
-which persists changes to disk, or an in-memory store which does 
not.
-The following components configuration is stored there:
-BrokerVirtual HostPortAuthentication 
ProviderAccess Control ProviderGroup ProviderKey 
storeTrust storePlugin
-
-Broker startup involves two configuration related items, the 
'Initial Configuration' and the Configuration Store. When the broker is started,
-if a Configuration Store does not exist at the current store location
-then one will be initialised with the current 'Initial 
Configuration'.
-Unless otherwise requested to overwrite the configuration 
store then
-subsequent broker restarts will use the existing configuration 
store and ignore the contents of the 'Initial Configuration'.
-5.1.2.Configuration
 Store Location
-The broker will default to using ${qpid.work_dir}/config.json
-as the path for its configuration store unless otherwise 
instructed.
-
-The command line argument -sp (or --store-path) can optionally be used to 
specify a different
-relative or absolute path to use for the broker configuration 
store:
-
-$ ./qpid-server -sp ./my-broker-configuration.json
-
-If no configuration store exists at the specified/defaulted 
location when the broker starts then one will be initialised using the current
-'Initial 
Configuration'.
-5.1.3.'Initial
 Configuration' Location
-The 'Initial Configuration' JSON file is used when initialiasing 
new broker configuration stores. The broker 

[qpid-proton] Git Push Summary

2016-10-14 Thread robbie
Repository: qpid-proton
Updated Tags:  refs/tags/0.15.0 [created] c87a4faba

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



[18/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Duration.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Duration.html
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Duration.html
deleted file mode 100644
index dcb11d8..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Duration.html
+++ /dev/null
@@ -1,269 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid::messaging::Duration Class 
Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Duration.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Public Member Functions 
-Static Public Attributes 
-List of all 
members  
-  
-qpid::messaging::Duration Class ReferenceQpid C++ Client 
API  
-
-
-
-#include Duration.h
-
-Collaboration diagram for qpid::messaging::Duration:
-
-
-
-
-[legend]
-
-
-Public Member Functions
-QPID_MESSAGING_EXTERNDuration
 (uint64_t milliseconds)
-
-QPID_MESSAGING_EXTERN
 uint64_tgetMilliseconds
 () const 
-
-
-
-Static Public Attributes
-static QPID_MESSAGING_EXTERN
 
-const DurationFOREVER
-
-static QPID_MESSAGING_EXTERN
 
-const DurationIMMEDIATE
-
-static QPID_MESSAGING_EXTERN
 
-const DurationSECOND
-
-static QPID_MESSAGING_EXTERN
 
-const DurationMINUTE
-
-
-Detailed 
Description
-A duration is a time in milliseconds. 
-Constructor  Destructor Documentation
-
-
-
-
-  
-  
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Duration::Duration 
-  (
-  uint64_t
-  milliseconds)
-  
-
-  
-  
-  
-explicit  
-  
-
-
-
-
-
-Member Function Documentation
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 uint64_t qpid::messaging::Duration::getMilliseconds 
-  (
-  )
-   const
-
-  
-
-
-
-
-Member Data Documentation
-
-
-
-
-  
-  
-  
-
-  QPID_MESSAGING_EXTERN
 const Duration 
qpid::messaging::Duration::FOREVER
-
-  
-  
-  
-static  
-  
-
-
-
-
-
-
-
-
-
-  
-  
-  
-
-  QPID_MESSAGING_EXTERN
 const Duration 
qpid::messaging::Duration::IMMEDIATE
-
-  
-  
-  
-static  
-  
-
-
-
-
-
-
-
-
-
-  
-  
-  
-
-  QPID_MESSAGING_EXTERN
 const Duration 
qpid::messaging::Duration::MINUTE
-
-  
-  
-  
-static  
-  
-
-
-
-
-
-
-
-
-
-  
-  
-  
-
-  QPID_MESSAGING_EXTERN
 const Duration 
qpid::messaging::Duration::SECOND
-
-  
-  
-  
-static  
-  
-
-
-
-
-
-The documentation for this class was generated from the following 
file:
-qpid/messaging/Duration.h
-
-
-
-
-
-  
-qpidmessagingDuration
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Duration.js
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Duration.js
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Duration.js
deleted file mode 100644
index 0e5d683..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Duration.js
+++ /dev/null
@@ -1,5 +0,0 @@
-var classqpid_1_1messaging_1_1Duration =
-[
-[ "Duration", 
"classqpid_1_1messaging_1_1Duration.html#a043c3696e7f124763204a6da14f874d8", 
null ],
-[ "getMilliseconds", 
"classqpid_1_1messaging_1_1Duration.html#ab1346e5ea9b94dc82104826749632ab2", 
null ]
-];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Duration__coll__graph.map
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Duration__coll__graph.map
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Duration__coll__graph.map
deleted file mode 100644
index e9cdcbe..000
--- 

[49/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/cpp-broker/book/ch01.html
--
diff --git a/content/releases/qpid-0.26/cpp-broker/book/ch01.html 
b/content/releases/qpid-0.26/cpp-broker/book/ch01.html
deleted file mode 100644
index 41f0875..000
--- a/content/releases/qpid-0.26/cpp-broker/book/ch01.html
+++ /dev/null
@@ -1,690 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-ch01.html - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Implemented in C++)ch01.html
-
-
-  Chapter1.
-  Running the AMQP Messaging Broker
-PrevNextChapter1.
-  Running the AMQP Messaging Broker
-Table of 
Contents1.1. 
-Running a Qpid C++ Broker
-  1.1.1. 
-Building the
-C++ Broker and Client Libraries
-  1.1.2. 
-Running the C++ Broker
-  1.1.3. 
-Most
-common questions getting qpidd running
-  1.1.4. 
-Authentication
-  1.1.5. 
-Slightly more
-complex configuration
-  1.1.6. 
-Loading extra modules
-  1.1.7. Timestamping Received 
Messages1.1.8. Logging 
Options1.2. 
-  Cheat Sheet for configuring Queue Options
-1.2.1.
 
-Configuring
-Queue Options
-  1.3. 
-Cheat Sheet for configuring Exchange Options
-  1.3.1.
 
-  Configuring Exchange Options
-1.4. Broker 
Federation1.4.1.
 Message Routes1.4.2.
 Federation Topologies1.4.3.
 Federation among High Availability Message Clusters1.4.4.
 The qpid-route Utility1.5. 
Security1.5.1.
 User Authentication1.5.2.
 Authorization1.5.3.
 User Connection and Queue Quotas1.5.4.
 Encryption using SSL1.6. LVQ - Last Value 
Queue
 1.6.1. Understanding LVQ1.6.2. Creating a Last Value 
Queue1.6.3. LVQ Example1.6.4. Deprecated LVQ 
Modes1.7. 
-Queue State Replication
-  1.7.1.
 
-  Asynchronous
-  Replication of Queue State
-1.8. 
-Producer Flow Control
-  1.8.1. 
-  Overview
-1.8.2. 
-User Interface
-  1.9. 
-  AMQP compatibility
-1.9.1.
 
-AMQP
-Compatibility of Qpid releases:
-  1.9.2.
 
-Interop
-table by AMQP specification version
-  1.10.
 Qpid Interoperability Documentation1.10.1.
 
-SASL
-  1.11. 
-Using Message Groups
-  1.11.1. 
-  Overview
-1.11.2. 
-Grouping Messages
-  1.11.3. 
-The Role of the Broker
-  1.11.4. 
-Well Behaved Consumers
-  1.11.5. 
-Broker Configuration
-  1.12. Active-Passive Messaging 
Clusters1.12.1. Overview1.12.2. Virtual IP 
Addresses1.12.3. Configuring the 
Brokers1.12.4. The Cluster Resource 
Manager1.12.5. Configuring rgmanager as resource 
manager1.12.6. Broker Administration 
Tools1.12.7. Controlling replication of 
queues and excha
 nges1.12.8. Client Connection and 
Fail-over1.12.9. Security and Access 
Control.1.12.10. Integrating with other Cluster 
Resource Managers1.12.11. Using a message store in a 
cluster1.13. Replicating Queues with the HA 
module1.13.1. Replicating 
queues1.13.2. Replicating queues 
between clusters1.1.
-Running a Qpid C++ Broker
-  1.1.1.
-Building the
-C++ Broker and Client Libraries
-  
-The root directory for the C++ distribution is named
-qpidc-0.4. The README file in that directory gives
-instructions for 

[27/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-System-Properties.html
--
diff --git 
a/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-System-Properties.html
 
b/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-System-Properties.html
deleted file mode 100644
index c428e78..000
--- 
a/content/releases/qpid-0.26/jms-client-0-8/book/JMS-Client-0-8-System-Properties.html
+++ /dev/null
@@ -1,224 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-Chapter9.System Properties - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Download
-  Documentation
-  Discussion
-  Issues
-  Source Code
-  More Resources
-
-  
-
-  
-
-  Project
-
-  
-Overview
-Qpid Proton
-Contributors
-Get involved
-  
-
-
-
-  Software
-
-  
-Download
-Documentation
-Components
-Releases
-  
-
-
-
-  Resources
-
-  
-Discussion
-Issues
-Source code
-More resources
-  
-
-
-
-  More
-
-  
-AMQP
-Developer central
-https://cwiki.apache.org/confluence/display/qpid/;>Wiki
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-ReleasesQpid 0.26Qpid JMS Client for 
AMQP protocols 0-8, 0-9 and 0-9-1Chapter9.System 
Properties
-Chapter9.System PropertiesPrevNextChapter9.System 
PropertiesThe following system properties affect the 
behaviour of the Qpid JMS client. System
-   properties are global in nature so affect all Qpid interactions 
made from within the same
-   JVM. For many options, there are equivalent Connection URL options 
allowing the option to be controlled at the level of the
-   Connection.Table9.1.System Properties Affecting 
Connection BehaviourProperty NameTypeDefault 
ValueDescriptionqpid.amqp.versionstring0-10Sets
 the AMQP version to be used - currently supports one of
-   
{0-8,0-9,0-91,0-10}.The client will begin negotiation at
-   the specified version 
and only negotiate downwards if the Broker does
-   not support the 
specified version.qpid.heartbeatintDefaults
 to the heartbeat value suggested by the Broker, if
-   
any.Frequency of heartbeat messages (in seconds). A value of 0 
disables
-   heartbeating. Two 
consecutive missed heartbeats will result in the
-   connection timing 
out.This can also be set per connection
-   using the Connection
 URL options.For compatibility with
-   old client 
configuration, the synonym
-   amqj.heartbeat.delay is 
supported.ignore_setclientIDbooleanfalseIf
 a client ID is specified in the connection URL it's used or else an ID
-   is generated. If an ID is 
specified after it's been set Qpid will throw an
-   exception. Setting this 
property to 'true' will disable that check and
-   allow you to set a 
client ID of your choice later on.Table9.2.Config Options For Session 
BehaviourProperty 
NameTypeDefault 
ValueDescriptionqpid.dest_syntaxStringADDRThe
 default addressing syntax.  The Address (ADDR) syntax is supported when using 
AMQP 0-10.  Binding URL (BURL)
- is supported by AMQP protocols 0-8 
through to 0-10.max_prefetchint500Maximum
 number of pre-fetched messages per Session. This can also
-   be defaulted for 
sessions created on a particular connection using the
-   Connection
 URL 
options.qpid.use_legacy_map_messagebooleanfalseIf
 set will use the old map message encoding. By default the Map
-   messages are encoded 
using the 0-10 map encoding.This can
-  

[19/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Address.js
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Address.js
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Address.js
deleted file mode 100644
index 2248f45..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Address.js
+++ /dev/null
@@ -1,22 +0,0 @@
-var classqpid_1_1messaging_1_1Address =
-[
-[ "Address", 
"classqpid_1_1messaging_1_1Address.html#ad67acb35fc50618bfc2e966d1224b3cd", 
null ],
-[ "Address", 
"classqpid_1_1messaging_1_1Address.html#aa98fd95e827c18f56e54c6c1f02eafdb", 
null ],
-[ "Address", 
"classqpid_1_1messaging_1_1Address.html#a408b321c74b36519d1ad7fa62e92c58f", 
null ],
-[ "Address", 
"classqpid_1_1messaging_1_1Address.html#a0e4923dfcd343e160cbf469f44ba2b5f", 
null ],
-[ "~Address", 
"classqpid_1_1messaging_1_1Address.html#a7e951acdebd9e289bff2ff18388fd0c1", 
null ],
-[ "getName", 
"classqpid_1_1messaging_1_1Address.html#ac91d11b9c5fa94c01af6df1b84eb0c66", 
null ],
-[ "getOptions", 
"classqpid_1_1messaging_1_1Address.html#a72302b077369f876074853f4646f02e7", 
null ],
-[ "getOptions", 
"classqpid_1_1messaging_1_1Address.html#ad329ab955d5d3b42083f485a618b2543", 
null ],
-[ "getSubject", 
"classqpid_1_1messaging_1_1Address.html#a04d7e8192bb257d0040e9af7e043fbec", 
null ],
-[ "getType", 
"classqpid_1_1messaging_1_1Address.html#a85ac438faa3d9c18b4f53c20f392bcf1", 
null ],
-[ "operator bool", 
"classqpid_1_1messaging_1_1Address.html#aca4c699de0a6c0e6843bac95e13a420c", 
null ],
-[ "operator!", 
"classqpid_1_1messaging_1_1Address.html#ad70ca973f0b302ec44908af3b9ab1637", 
null ],
-[ "operator=", 
"classqpid_1_1messaging_1_1Address.html#af1921cf4f68d90e6fb34b39589ad50a7", 
null ],
-[ "setName", 
"classqpid_1_1messaging_1_1Address.html#a975c671bf656f45d72a83fb483ff0dba", 
null ],
-[ "setOptions", 
"classqpid_1_1messaging_1_1Address.html#adccf31c2bfa4b66d1f97289c1c00f64d", 
null ],
-[ "setSubject", 
"classqpid_1_1messaging_1_1Address.html#aa810692ece0c2b1a8fe8782424925cd5", 
null ],
-[ "setType", 
"classqpid_1_1messaging_1_1Address.html#abca57a308f240c074cab8571c7f4f03f", 
null ],
-[ "str", 
"classqpid_1_1messaging_1_1Address.html#a2c36e1991e26b2108e440988f79c2808", 
null ],
-[ "AddressImpl", 
"classqpid_1_1messaging_1_1Address.html#a628ad1f7e1ff788bb257d1c47fa491b0", 
null ]
-];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
deleted file mode 100644
index 6e5cd90..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
+++ /dev/null
@@ -1,136 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Member List
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Connection.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-qpid::messaging::Connection Member List  
-
-
-
-This is the complete list of members for qpid::messaging::Connection,
 including all inherited members.
-
-  close()qpid::messaging::Connection
-  Connection(ConnectionImpl
 *impl)qpid::messaging::Connection
-  Connection(const
 Connection )qpid::messaging::Connection
-  Connection()qpid::messaging::Connection
-  Connection(const
 std::string url, const qpid::types::Variant::Map 
options=qpid::types::Variant::Map())qpid::messaging::Connection
-  Connection(const
 std::string url, const std::string options)qpid::messaging::Connection
-  createSession(const
 std::string name=std::string())qpid::messaging::Connection
-  createTransactionalSession(const
 std::string name=std::string())qpid::messaging::Connection
-  getAuthenticatedUsername()qpid::messaging::Connection
-  getSession(const
 std::string name) const 

[07/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_k.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_k.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_k.html
deleted file mode 100644
index 9d1d2c5..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_k.html
+++ /dev/null
@@ -1,108 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class Members - Functions
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('functions_func_k.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-
-
-- k -
-KeyError()
-: qpid::messaging::KeyError
-
-
-
-
-
-
-  
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_l.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_l.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_l.html
deleted file mode 100644
index 5262f93..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_l.html
+++ /dev/null
@@ -1,108 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class Members - Functions
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('functions_func_l.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-
-
-- l -
-LinkError()
-: qpid::messaging::LinkError
-
-
-
-
-
-
-  
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_m.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_m.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_m.html
deleted file mode 100644
index e041a81..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_m.html
+++ /dev/null
@@ -1,114 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class Members - Functions
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('functions_func_m.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-
-
-- m -
-MalformedAddress()
-: qpid::messaging::MalformedAddress
-
-Message()
-: qpid::messaging::Message
-
-MessagingException()
-: qpid::messaging::MessagingException
-
-
-
-
-
-
-  
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_n.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_n.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_func_n.html
deleted file mode 100644
index 76a7b7d..000
--- 

[12/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.html
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.html
deleted file mode 100644
index a3c6650..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.html
+++ /dev/null
@@ -1,1472 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid::types::Variant Class Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('classqpid_1_1types_1_1Variant.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Public Types 
-Public Member Functions 
-List of all members  

-  
-qpid::types::Variant Class Reference  
-
-
-
-#include Variant.h
-
-
-Public Types
-typedef std::map std::string, 
-Variant 
Map
-
-typedef std::list Variant List
-
-
-
-Public Member Functions
-QPID_TYPES_EXTERNVariant
 ()
-
-QPID_TYPES_EXTERNVariant
 (bool)
-
-QPID_TYPES_EXTERNVariant
 (uint8_t)
-
-QPID_TYPES_EXTERNVariant
 (uint16_t)
-
-QPID_TYPES_EXTERNVariant
 (uint32_t)
-
-QPID_TYPES_EXTERNVariant
 (uint64_t)
-
-QPID_TYPES_EXTERNVariant
 (int8_t)
-
-QPID_TYPES_EXTERNVariant
 (int16_t)
-
-QPID_TYPES_EXTERNVariant
 (int32_t)
-
-QPID_TYPES_EXTERNVariant
 (int64_t)
-
-QPID_TYPES_EXTERNVariant
 (float)
-
-QPID_TYPES_EXTERNVariant
 (double)
-
-QPID_TYPES_EXTERNVariant
 (const std::string )
-
-QPID_TYPES_EXTERNVariant
 (const char *)
-
-QPID_TYPES_EXTERNVariant
 (const Map
 )
-
-QPID_TYPES_EXTERNVariant
 (const List
 )
-
-QPID_TYPES_EXTERNVariant
 (const Variant 
)
-
-QPID_TYPES_EXTERNVariant
 (const Uuid 
)
-
-QPID_TYPES_EXTERN~Variant
 ()
-
-QPID_TYPES_EXTERN
 VariantTypegetType
 () const 
-
-QPID_TYPES_EXTERN
 boolisVoid
 () const 
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (bool)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (uint8_t)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (uint16_t)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (uint32_t)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (uint64_t)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (int8_t)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (int16_t)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (int32_t)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (int64_t)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (float)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (double)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (const std::string )
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (const char *)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (const Map
 )
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (const List
 )
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (const Variant 
)
-
-QPID_TYPES_EXTERN
 Variant 
operator=
 (const Uuid 
)
-
-QPID_TYPES_EXTERN
 Variant 
parse
 (const std::string )
-
-QPID_TYPES_EXTERN
 boolasBool
 () const 
-
-QPID_TYPES_EXTERN
 uint8_tasUint8
 () const 
-
-QPID_TYPES_EXTERN
 uint16_tasUint16
 () const 
-
-QPID_TYPES_EXTERN
 uint32_tasUint32
 () const 
-
-QPID_TYPES_EXTERN
 uint64_tasUint64
 () const 
-
-QPID_TYPES_EXTERN
 int8_tasInt8
 () const 
-
-QPID_TYPES_EXTERN
 int16_tasInt16
 () const 
-
-QPID_TYPES_EXTERN
 int32_tasInt32
 () const 
-
-QPID_TYPES_EXTERN
 int64_tasInt64
 () const 
-
-QPID_TYPES_EXTERN
 floatasFloat
 () const 
-
-QPID_TYPES_EXTERN
 doubleasDouble
 () const 
-
-QPID_TYPES_EXTERN
 std::stringasString
 () const 
-
-QPID_TYPES_EXTERN
 UuidasUuid
 () const 
-
-QPID_TYPES_EXTERNoperator
 bool () const 
-
-QPID_TYPES_EXTERNoperator
 uint8_t () const 
-
-QPID_TYPES_EXTERNoperator
 uint16_t () const 
-
-QPID_TYPES_EXTERNoperator
 uint32_t () const 
-
-QPID_TYPES_EXTERNoperator
 uint64_t () const 
-
-QPID_TYPES_EXTERNoperator
 int8_t () const 
-
-QPID_TYPES_EXTERNoperator
 int16_t () const 
-
-QPID_TYPES_EXTERNoperator
 int32_t () const 
-
-QPID_TYPES_EXTERNoperator
 int64_t () const 
-
-QPID_TYPES_EXTERNoperator
 float () const 
-
-QPID_TYPES_EXTERNoperator
 double () const 
-
-QPID_TYPES_EXTERNoperator
 std::string () const 
-
-QPID_TYPES_EXTERNoperator
 Uuid () const 
-
-QPID_TYPES_EXTERN
 const Map
 asMap
 () const 
-
-QPID_TYPES_EXTERN
 Map
 asMap
 ()
-
-QPID_TYPES_EXTERN
 const List
 asList
 () const 
-
-QPID_TYPES_EXTERN
 List
 asList
 ()
-
-QPID_TYPES_EXTERN
 const 
-std::string getString
 () const 
-

[52/52] qpid-site git commit: remove broken link to documentation snapshots, the target anchor was previously removed

2016-10-14 Thread robbie
remove broken link to documentation snapshots, the target anchor was previously 
removed


Project: http://git-wip-us.apache.org/repos/asf/qpid-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-site/commit/b2692d07
Tree: http://git-wip-us.apache.org/repos/asf/qpid-site/tree/b2692d07
Diff: http://git-wip-us.apache.org/repos/asf/qpid-site/diff/b2692d07

Branch: refs/heads/asf-site
Commit: b2692d07f057b9fe660a7321bca75f12d5c9fd86
Parents: a39b425
Author: Robert Gemmell 
Authored: Fri Oct 14 16:46:36 2016 +0100
Committer: Robert Gemmell 
Committed: Fri Oct 14 16:46:36 2016 +0100

--
 content/dashboard.html | 1 -
 input/dashboard.md | 1 -
 2 files changed, 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-site/blob/b2692d07/content/dashboard.html
--
diff --git a/content/dashboard.html b/content/dashboard.html
index 5328fe0..bb3144d 100644
--- a/content/dashboard.html
+++ b/content/dashboard.html
@@ -254,7 +254,6 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
 
 Components
 Releases
-Devel 
snapshots
 
 
 

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/b2692d07/input/dashboard.md
--
diff --git a/input/dashboard.md b/input/dashboard.md
index 2e96c38..eb094fa 100644
--- a/input/dashboard.md
+++ b/input/dashboard.md
@@ -79,7 +79,6 @@
 
  - [Components]({{site_url}}/components/index.html)
  - [Releases]({{site_url}}/releases/index.html)
- - [Devel snapshots]({{site_url}}/releases/index.html#development-snapshots)
 
 
 


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



[48/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/cpp-broker/book/ch01s06.html
--
diff --git a/content/releases/qpid-0.26/cpp-broker/book/ch01s06.html 
b/content/releases/qpid-0.26/cpp-broker/book/ch01s06.html
deleted file mode 100644
index 6e4f2b3..000
--- a/content/releases/qpid-0.26/cpp-broker/book/ch01s06.html
+++ /dev/null
@@ -1,250 +0,0 @@
-
-
-http://www.w3.org/1999/xhtml; xml:lang="en">
-  
-1.6.LVQ - Last Value Queue - Apache Qpid
-
-
-
-
-var _deferredFunctions = [];
-
-
-
-
-https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
-https://github.com/apache/qpid-proton/blob/go1/README.md
-https://github.com/apache/qpid-proton/tree/go1{/dir}
-https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
-  
-  
-
-  
-
-
-
-
-
-  Apache 
Qpid
-  Documentation
-  Download
-  Discussion
-
-  
-
-  
-
-  
-Project
-
-
-  Overview
-  Components
-  Releases
-
-  
-
-  
-Messaging APIs
-
-
-  Qpid Proton
-  Qpid JMS
-  Qpid 
Messaging API
-
-  
-
-  
-Servers and tools
-
-
-  Broker for 
Java
-  C++ 
broker
-  Dispatch 
router
-
-  
-
-  
-Resources
-
-
-  Dashboard
-  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
-  More resources
-
-  
-
-  
-
-  
-http://www.google.com/search; method="get">
-  
-  
-  Search
-  More ways to search
-
-  
-
-  
-HomeReleasesQpid 0.26AMQP Messaging Broker 
(Implemented in C++)1.6.LVQ - Last Value Queue
-
-
-  1.6.LVQ - Last Value QueuePrevChapter1.
-  Running the AMQP Messaging Broker
-Next1.6.LVQ - Last Value 
Queue1.6.1.Understanding 
LVQ
-  A Last Value Queue is configured with the name of a message header that
-  is used as a key.  The queue behaves as a normal FIFO queue with the
-  exception that when a message is enqueued, any other message in the
-  queue with the same value in the key header is removed and discarded.
-  Thus, for any given key value, the queue holds only the most recent
-  message.
-
-  The following example illustrates the operation of a Last Value Queue.
-  The example shows an empty queue with no consumers and a sequence of
-  produced messages.  The numbers represent the key for each message.
-
-   empty queue
-  1 =
-   1
-  2 =
-   1 2
-  3 =
-   1 2 3
-  4 =
-   1 2 3 4
-  2 =
-   1 3 4 2
-  1 =
-   3 4 2 1
-
-  Note that the first four messages are enqueued normally in FIFO order.
-  The fifth message has key '2' and is also enqueued on the tail of the
-  queue.  However the message already in the queue with the same key is
-  discarded.
-  Note
-  If the set of keys used in the messages in a LVQ is constrained, the
-  number of messages in the queue shall not exceed the number of
-  distinct keys in use.
-
-1.6.1.1.Common 
Use-Cases
-LVQ with zero or one consuming subscriptions - In this case, if
-the consumer drops momentarily or is slower than the producer(s),
-it will only receive current information relative to the message
-keys.
-  
-LVQ with zero or more browsing subscriptions - A browsing consumer
-can subscribe to the LVQ and get an immediate dump of all of the
-"current" messages and track updates thereafter.  Any number of
-independent browsers can subscribe to the same LVQ with the same
-effect.  Since messages are never consumed, they only disappear
-when replaced with a newer message with the same key or when their
-TTL expires.
-  1.6.2.Creating a Last Value 
Queue1.6.2.1.Using Addressing 
Syntax
-A LVQ may be created using directives in the API's address syntax.
-The important argument is "qpid.last_value_queue_key".  The following
-Python example shows how a producer of stock price updates can create
-a LVQ to hold the latest stock prices for each ticker symbol.  The
-message header used to hold the ticker symbol is called "ticker".
-  
-conn = Connection(url)
-conn.open()
-sess = conn.session()
-tx = sess.sender("prices;{create:always, node:{type:queue, 
x-declare:{arguments:{'qpid.last_value_queue_key':'ticker'")
-  

[15/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Sender.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Sender.html
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Sender.html
deleted file mode 100644
index c9336f2..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Sender.html
+++ /dev/null
@@ -1,439 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid::messaging::Sender Class Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Sender.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Public Member Functions 
-Friends 
-List of all 
members  
-  
-qpid::messaging::Sender Class ReferenceQpid C++ Client 
API  
-
-
-
-#include Sender.h
-
-Inheritance diagram for qpid::messaging::Sender:
-
-
-
-
-[legend]
-
-Collaboration diagram for qpid::messaging::Sender:
-
-
-
-
-[legend]
-
-
-Public Member Functions
-QPID_MESSAGING_EXTERNSender
 (SenderImpl *impl=0)
-
-QPID_MESSAGING_EXTERNSender
 (const Sender 
)
-
-QPID_MESSAGING_EXTERN~Sender
 ()
-
-QPID_MESSAGING_EXTERN
 Sender 
operator=
 (const Sender 
)
-
-QPID_MESSAGING_EXTERN
 voidsend
 (const Message 
message, bool sync=false)
-
-QPID_MESSAGING_EXTERN
 voidclose
 ()
-
-QPID_MESSAGING_EXTERN
 voidsetCapacity
 (uint32_t)
-
-QPID_MESSAGING_EXTERN
 uint32_tgetCapacity
 ()
-
-QPID_MESSAGING_EXTERN
 uint32_tgetUnsettled
 ()
-
-QPID_MESSAGING_EXTERN
 uint32_tgetAvailable
 ()
-
-QPID_MESSAGING_EXTERN
 const 
-std::string getName
 () const 
-
-QPID_MESSAGING_EXTERN
 SessiongetSession
 () const 
-
-QPID_MESSAGING_EXTERN
 AddressgetAddress
 () const 
-
-Public Member Functions inherited from qpid::messaging::Handle 
SenderImpl 
-QPID_MESSAGING_INLINE_EXTERN
 boolisValid
 () const
-
-QPID_MESSAGING_INLINE_EXTERN
 boolisNull
 () const
-
-QPID_MESSAGING_INLINE_EXTERNoperator
 bool () const
-
-QPID_MESSAGING_INLINE_EXTERN
 booloperator!
 () const
-
-voidswap
 (Handle 
SenderImpl  h)
-
-
-
-Friends
-classqpid::messaging::PrivateImplRef
 Sender 
-
-
-
-Additional Inherited Members
-Protected Types inherited from qpid::messaging::Handle 
SenderImpl 
-typedef SenderImplImpl
-
-Protected Member Functions inherited from qpid::messaging::Handle 
SenderImpl 
-QPID_MESSAGING_INLINE_EXTERNHandle
 ()
-
-Protected Attributes inherited from qpid::messaging::Handle 
SenderImpl 
-Impl
 *impl
-
-
-Detailed 
Description
-Interface through which messages are sent. 
-Constructor  Destructor Documentation
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Sender::Sender 
-  (
-  SenderImpl *
-  impl = 0)
-  
-
-  
-
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Sender::Sender 
-  (
-  const Sender 
-  )
-  
-
-  
-
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Sender::~Sender 
-  (
-  )
-  
-
-  
-
-
-
-
-Member Function Documentation
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 void qpid::messaging::Sender::close 
-  (
-  )
-  
-
-  
-
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 Address 
qpid::messaging::Sender::getAddress 
-  (
-  )
-   const
-
-  
-
-Returns an address for this sender. 
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 uint32_t qpid::messaging::Sender::getAvailable 
-  (
-  )
-  
-
-  
-
-Returns the number of messages for which there is available capacity. 
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 uint32_t qpid::messaging::Sender::getCapacity 
-  (
-  )
-  
-
-  
-
-Returns the capacity of the sender. 
-See AlsosetCapacity
 
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 const std::string qpid::messaging::Sender::getName 
-  (
-  )
-   const
-
-  
-
-Returns the name of this sender. 
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 Session 

[03/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/index.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/index.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/index.html
deleted file mode 100644
index eb4da97..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/index.html
+++ /dev/null
@@ -1,261 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Qpid C++ API Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('index.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Qpid C++ API Reference   
-
-
-Messaging Client API classes
-
-
-
-Qpid C++ Client API
-
-
-
-
-Qpid Management Framework C++ 
API
-
-
-
-Code for common tasks
-Includes and Namespaces
-
-#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#include 
iostreamusing namespace qpid::messaging;
-Opening Sessions and Connections
-
-int main(int argc, char** argv) {
-std::string broker = argc  1 ? argv[1] : "localhost:5672";
-std::string address = argc  2 ? argv[2] : "amq.topic";
-Connection connection(broker);
-try {
-connection.open();
-Session session = connection.createSession();// ### 
Your Code Here ###connection.close();
-return 0;
-} catch(const std::exception error) {
-std::cerr  error.what()  std::endl;
-connection.close();
-return 1;   
-}
-}
-Creating and Sending a Message
-
-Sender sender = session.createSender(address);
-sender.send(Message("Hello world!"));
-Setting Message Content
-
-Message message;
-message.setContent("Hello world!");// In some applications, you 
should also set the content type,
-// which is a MIME type
-message.setContentType("text/plain");
-Receiving a Message
-
-Receiver receiver = session.createReceiver(address);
-Message message = receiver.fetch(Duration::SECOND * 1); // timeout is optional
-session.acknowledge(); // acknowledge message receipt
-std::cout  message.getContent()  std::endl;
-Receiving Messages from Multiple Sources
-To receive messages from multiple sources, create a receiver for each 
source, and use session.nextReceiver().fetch() to fetch messages. 
session.nextReceiver() is guaranteed to return the receiver responsible for the 
first available message on the session.
-
-Receiver receiver1 = session.createReceiver(address1);
-Receiver receiver2 = session.createReceiver(address2);Message 
message =  session.nextReceiver().fetch();
-session.acknowledge(); // acknowledge message receipt
-std::cout  message.getContent()  std::endl;
-Replying to a message:
-
-// Server creates a service queue and waits for messages
-// If it gets a request, it sends a response to the reply to 
addressReceiver receiver = session.createReceiver("service_queue; 
{create: always}");
-Message request = receiver.fetch();
-const Address address = request.getReplyTo(); // Get "reply-to" from 
request ...
-if (address) {
-  Sender sender = session.createSender(address); // ... send response to 
"reply-to"
-  Message response("pong!");
-  sender.send(response);
-  session.acknowledge();
-}// Client creates a private response queue - the # gets converted
-// to a unique string for the response queue name. Client uses the
-// name of this queue as its reply-to.Sender sender = 
session.createSender("service_queue");
-Address responseQueue("#response-queue; {create:always, delete:always}");
-Receiver receiver = session.createReceiver(responseQueue);Message 
request;
-request.setReplyTo(responseQueue);
-request.setContent("ping");
-sender.send(request);
-Message response = receiver.fetch();
-std::cout  request.getContent()  " - "  
response.getContent()  std::endl;
-Getting and Setting Standard Message Properties
-This shows some of the most commonly used message properties, it is not 
complete.
-
-Message message("Hello world!");
-message.setContentType("text/plain");
-message.setSubject("greeting");
-message.setReplyTo("response-queue");
-message.setTtl(100); // milliseconds
-message.setDurable(1);std::cout  "Content: "  
message.getContent()  std::endl
-   "Content Type: "  message.getContentType()
-   "Subject: "  

[23/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Receiver_8h_source.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Receiver_8h_source.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Receiver_8h_source.html
deleted file mode 100644
index f531083..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Receiver_8h_source.html
+++ /dev/null
@@ -1,195 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid/messaging/Receiver.h Source File
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('Receiver_8h_source.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Receiver.h  
-
-
-Go to the documentation of this file.   
 1#ifndef 
QPID_MESSAGING_RECEIVER_H
-
2#define QPID_MESSAGING_RECEIVER_H
-
3
-
4/*
-
5 *
-
6 * Licensed to the Apache Software 
Foundation (ASF) under one
-
7 * or more contributor license agreements.  
See the NOTICE file
-
8 * distributed with this work for 
additional information
-
9 * regarding copyright ownership.  The ASF 
licenses this file
-   
10 * to you under the Apache License, 
Version 2.0 (the
-   
11 * License); you may not use 
this file except in compliance
-   
12 * with the License.  You may obtain a 
copy of the License at
-   
13 * 
-   
14 *   
http://www.apache.org/licenses/LICENSE-2.0
-   
15 * 
-   
16 * Unless required by applicable law or 
agreed to in writing,
-   
17 * software distributed under the License 
is distributed on an
-   
18 * AS IS BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
-   
19 * KIND, either express or implied.  See 
the License for the
-   
20 * specific language governing permissions 
and limitations
-   
21 * under the License.
-   
22 *
-   
23 */
-   
24#include qpid/messaging/ImportExport.h
-   
25
-   
26#include qpid/messaging/exceptions.h
-   
27#include qpid/messaging/Handle.h
-   
28#include qpid/messaging/Duration.h
-   
29
-   
30namespace qpid {
-   
31namespace messaging {
-   
32
-   
33#ifndef SWIG
-   
34template class 
class PrivateImplRef;
-   
35#endif
-   
36
-   
37class Address;
-   
38class Message;
-   
39class ReceiverImpl;
-   
40class Session;
-   
41
-   45class QPID_MESSAGING_CLASS_EXTERN
 Receiver : 
public qpid::messaging::HandleReceiverImpl
-   
46{
-   47 
 public:
-   48 
   QPID_MESSAGING_EXTERN
 Receiver(ReceiverImpl* impl 
= 0);
-   49 
   QPID_MESSAGING_EXTERN
 Receiver(const Receiver);
-   50 
   QPID_MESSAGING_EXTERN
 ~Receiver();
-   51 
   QPID_MESSAGING_EXTERN
 Receiver operator=(const 
Receiver);
-   57 
   QPID_MESSAGING_EXTERN
 bool get(Message 
message, Duration timeout=Duration::FOREVER);
-   67 
   QPID_MESSAGING_EXTERN
 Message 
get(Duration timeout=Duration::FOREVER);
-   79 
   QPID_MESSAGING_EXTERN
 bool fetch(Message message, Duration 
timeout=Duration::FOREVER);
-   91 
   QPID_MESSAGING_EXTERN
 Message 
fetch(Duration timeout=Duration::FOREVER);
-   97 
   QPID_MESSAGING_EXTERN
 void setCapacity(uint32_t);
-  104 
   QPID_MESSAGING_EXTERN
 uint32_t getCapacity();
-  109 
   QPID_MESSAGING_EXTERN
 uint32_t getAvailable();
-  116 
   QPID_MESSAGING_EXTERN
 uint32_t getUnsettled();
-  
117
-  121 
   QPID_MESSAGING_EXTERN
 void close();
-  
122
-  126 
   QPID_MESSAGING_EXTERN
 bool isClosed() const;
-  
127
-  131 
   QPID_MESSAGING_EXTERN
 const std::string getName() const;
-  
132
-  136 
   QPID_MESSAGING_EXTERN
 Session 
getSession() const;
-  
137
-  141 
   QPID_MESSAGING_EXTERN
 Address 
getAddress() const;
-  
142
-  
143#ifndef SWIG
-  
144  private:
-
  145  friend class qpid::messaging::PrivateImplRefReceiver;
-  
146#endif
-  
147};
-  
148}} // namespace 
qpid::messaging
-  
149
-  
150#endif  
-qpid::messaging::AddressDefinition: Address.h:122
-QPID_MESSAGING_CLASS_EXTERN#define QPID_MESSAGING_CLASS_EXTERNDefinition: ImportExport.h:31
-QPID_MESSAGING_EXTERN#define QPID_MESSAGING_EXTERNDefinition: ImportExport.h:30
-qpid::messaging::ReceiverDefinition: Receiver.h:45
-qpid::messaging::Duration::FOREVERstatic QPID_MESSAGING_EXTERN const Duration FOREVERDefinition: Duration.h:40
-Handle.h
-qpid::messaging::PrivateImplRefDefinition: Connection.h:36
-qpid::messaging::DurationDefinition: Duration.h:35
-Duration.h
-exceptions.h
-ImportExport.h
-qpid::messaging::MessageDefinition: 

[11/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.js
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.js
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.js
deleted file mode 100644
index 3ba1463..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.js
+++ /dev/null
@@ -1,80 +0,0 @@
-var classqpid_1_1types_1_1Variant =
-[
-[ "List", 
"classqpid_1_1types_1_1Variant.html#a8603092790e51851bc2166e9562a2e11", null ],
-[ "Map", 
"classqpid_1_1types_1_1Variant.html#ae4e24d890f56397299a6ebadb2dfa7f0", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a1d1514205ebd981b764ce190c78a2a7f", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a40e4354f290c717ff0cf8793e5ddce74", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a191104ace1f896a44cafa40501886e20", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a0ad50ff5b14904ddb2df386210ea1617", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a9cf38698c638ff5a98266a25cb9cacd5", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a9387f121e09b09db45449565f36e239a", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#ad3f92c2487d3fed531c2881b2bbcd9e8", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a8950df90d615d610600a0fb754d2d923", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a154c908bf9d3121342fc32bcaaab8b97", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#af39fa4c88448d3be2ec2e3e0827b5e1a", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a28dfabd861c7b4faf91d1062993b9172", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#ad63bc95281ae423a1790b676450dc26f", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a706e959524f8bf36037db181cef6cc9b", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#aebde1e755649820b840bb627b9e88e89", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a7a50e44e1701f6ed368bd2025f91cf52", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a42541a03fd42df33076aa23868ad9c51", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a760721d1db05da274cbcfe3bcfd82cfa", null ],
-[ "Variant", 
"classqpid_1_1types_1_1Variant.html#a38c52d1b69bc8a490878cf8f7ef66b89", null ],
-[ "~Variant", 
"classqpid_1_1types_1_1Variant.html#a89977f55dd4cb9eaadf90595dbfa9653", null ],
-[ "asBool", 
"classqpid_1_1types_1_1Variant.html#a6685a9459ea37041dc8d6d8405ab76a5", null ],
-[ "asDouble", 
"classqpid_1_1types_1_1Variant.html#a84615d796c7bea1fdb624d6443c1b000", null ],
-[ "asFloat", 
"classqpid_1_1types_1_1Variant.html#ad0215577abd856accc17146d1b98da43", null ],
-[ "asInt16", 
"classqpid_1_1types_1_1Variant.html#a961cdc14472fa35e0fe91beb695a7c8f", null ],
-[ "asInt32", 
"classqpid_1_1types_1_1Variant.html#a0306b3423c2948a521c802dd1ce64f24", null ],
-[ "asInt64", 
"classqpid_1_1types_1_1Variant.html#a1d638158e3f252622c023df7e5ab5aa5", null ],
-[ "asInt8", 
"classqpid_1_1types_1_1Variant.html#a6abfc347f66be010061eeb76c84c72a6", null ],
-[ "asList", 
"classqpid_1_1types_1_1Variant.html#af3e28b4fb15e9f2cfa0cca34021b3f27", null ],
-[ "asList", 
"classqpid_1_1types_1_1Variant.html#a7f57bc9a27aa9568bb86a003d326ecc3", null ],
-[ "asMap", 
"classqpid_1_1types_1_1Variant.html#a3f964dfc4bc3db1d6e72c30cfc75953a", null ],
-[ "asMap", 
"classqpid_1_1types_1_1Variant.html#aa379a62d5eab055bbde3aa1a262e555b", null ],
-[ "asString", 
"classqpid_1_1types_1_1Variant.html#afbbba4337eb9edfacff5b7e92b32cff5", null ],
-[ "asUint16", 
"classqpid_1_1types_1_1Variant.html#af49d4763551ba67e5b392055004e3340", null ],
-[ "asUint32", 
"classqpid_1_1types_1_1Variant.html#ab8cfe06fcafaa17f447efc3ba60be951", null ],
-[ "asUint64", 
"classqpid_1_1types_1_1Variant.html#a46d36d22eaee3f95880685159dae2971", null ],
-[ "asUint8", 
"classqpid_1_1types_1_1Variant.html#aa58ccfbd015793418a7a675f0d2f29c0", null ],
-[ "asUuid", 
"classqpid_1_1types_1_1Variant.html#a56d16ac10ffd0a134480aea6feb6ef59", null ],
-[ "getEncoding", 
"classqpid_1_1types_1_1Variant.html#ab6563961bd21d3e0549b4e185cb0f75b", null ],
-[ "getString", 
"classqpid_1_1types_1_1Variant.html#a40632d7034fbdd23f208edf81f8b5fa6", null ],
-[ "getString", 
"classqpid_1_1types_1_1Variant.html#ac8605b8561b2c3012a84078d56275140", null ],
-[ "getType", 
"classqpid_1_1types_1_1Variant.html#a8d5b19af1848a2a2a454be9439bdbdbe", null ],
-[ "isEqualTo", 
"classqpid_1_1types_1_1Variant.html#a97dd59214dd27a6e475b5770ea41317d", null ],
-[ "isVoid", 
"classqpid_1_1types_1_1Variant.html#a5570248042b8b62f5f3c5186e336a34f", null ],
-[ "operator bool", 

[21/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Variant_8h.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/Variant_8h.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Variant_8h.html
deleted file mode 100644
index 3ec49f1..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Variant_8h.html
+++ /dev/null
@@ -1,193 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid/types/Variant.h File Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('Variant_8h.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Classes 
-Namespaces 
-Enumerations 
-Functions  
-  
-Variant.h File Reference  
-
-
-#include list
-#include map
-#include ostream
-#include string
-#include Uuid.h
-#include qpid/types/Exception.h
-#include qpid/sys/IntegerTypes.h
-#include qpid/types/ImportExport.h
-
-Include dependency graph for Variant.h:
-
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-
-Go to the source code of this file.
-
-
-Classes
-struct 
qpid::types::InvalidConversion
-
-class 
qpid::types::Variant
-
-
-
-Namespaces
-qpid
-
-qpid::types
-
-
-
-Enumerations
-enum qpid::types::VariantType
 { 
-qpid::types::VAR_VOID
 = 0, 
-qpid::types::VAR_BOOL,
 
-qpid::types::VAR_UINT8,
 
-qpid::types::VAR_UINT16,
 
-
-qpid::types::VAR_UINT32,
 
-qpid::types::VAR_UINT64,
 
-qpid::types::VAR_INT8,
 
-qpid::types::VAR_INT16,
 
-
-qpid::types::VAR_INT32,
 
-qpid::types::VAR_INT64,
 
-qpid::types::VAR_FLOAT,
 
-qpid::types::VAR_DOUBLE,
 
-
-qpid::types::VAR_STRING,
 
-qpid::types::VAR_MAP,
 
-qpid::types::VAR_LIST,
 
-qpid::types::VAR_UUID
-
- }
-
-
-
-Functions
-QPID_TYPES_EXTERN
 std::stringqpid::types::getTypeName
 (VariantType type)
-
-QPID_TYPES_EXTERN
 boolqpid::types::isIntegerType
 (VariantType type)
-
-QPID_TYPES_EXTERN
 std::ostream qpid::types::operator
 (std::ostream out, const Variant value)
-
-QPID_TYPES_EXTERN
 std::ostream qpid::types::operator
 (std::ostream out, const Variant::Map map)
-
-QPID_TYPES_EXTERN
 std::ostream qpid::types::operator
 (std::ostream out, const Variant::List list)
-
-QPID_TYPES_EXTERN
 boolqpid::types::operator==
 (const Variant a, const Variant b)
-
-QPID_TYPES_EXTERN
 boolqpid::types::operator!=
 (const Variant a, const Variant b)
-
-
-
-
-
-
-  
-qpidtypesVariant.h
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Variant_8h.js
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/Variant_8h.js 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Variant_8h.js
deleted file mode 100644
index 7ca477c..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Variant_8h.js
+++ /dev/null
@@ -1,30 +0,0 @@
-var Variant_8h =
-[
-[ "InvalidConversion", "structqpid_1_1types_1_1InvalidConversion.html", 
"structqpid_1_1types_1_1InvalidConversion" ],
-[ "Variant", "classqpid_1_1types_1_1Variant.html", 
"classqpid_1_1types_1_1Variant" ],
-[ "VariantType", "Variant_8h.html#a323b1c4216c2de54ac6383df362fde16", [
-  [ "VAR_VOID", 
"Variant_8h.html#a323b1c4216c2de54ac6383df362fde16a7676ba2aa51c62d7990234b3182cda8d",
 null ],
-  [ "VAR_BOOL", 
"Variant_8h.html#a323b1c4216c2de54ac6383df362fde16a459b6a348d780e9e0f051b58d6742446",
 null ],
-  [ "VAR_UINT8", 
"Variant_8h.html#a323b1c4216c2de54ac6383df362fde16afebe70b5d29e4b292a18227512aed3aa",
 null ],
-  [ "VAR_UINT16", 
"Variant_8h.html#a323b1c4216c2de54ac6383df362fde16a64223439b1202ebd6bb34e62d7d64ef7",
 null ],
-  [ "VAR_UINT32", 
"Variant_8h.html#a323b1c4216c2de54ac6383df362fde16ab7d539b6a29d6a00a6bd50e3c9d4eae9",
 null ],
-  [ "VAR_UINT64", 
"Variant_8h.html#a323b1c4216c2de54ac6383df362fde16a196a192a2191a3b500b119963c1235c1",
 null ],
-  [ "VAR_INT8", 
"Variant_8h.html#a323b1c4216c2de54ac6383df362fde16a4f0446bae585ccffaf8fc56e064ef54b",
 null ],
-  [ "VAR_INT16", 
"Variant_8h.html#a323b1c4216c2de54ac6383df362fde16a4d0c9b0c123719d4584695185bc4b6db",
 null ],
-  [ "VAR_INT32", 
"Variant_8h.html#a323b1c4216c2de54ac6383df362fde16a33fddb08e1155588686215917619dda5",
 null 

[16/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
deleted file mode 100644
index 229dc3a..000
--- 
a/content/releases/qpid-0.26/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
+++ /dev/null
@@ -1,530 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid::messaging::Receiver Class 
Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Receiver.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Public Member Functions 
-Friends 
-List of all 
members  
-  
-qpid::messaging::Receiver Class ReferenceQpid C++ Client 
API  
-
-
-
-#include Receiver.h
-
-Inheritance diagram for qpid::messaging::Receiver:
-
-
-
-
-[legend]
-
-Collaboration diagram for qpid::messaging::Receiver:
-
-
-
-
-[legend]
-
-
-Public Member Functions
-QPID_MESSAGING_EXTERNReceiver
 (ReceiverImpl *impl=0)
-
-QPID_MESSAGING_EXTERNReceiver
 (const Receiver )
-
-QPID_MESSAGING_EXTERN~Receiver
 ()
-
-QPID_MESSAGING_EXTERN
 Receiver 
operator=
 (const Receiver )
-
-QPID_MESSAGING_EXTERN
 boolget
 (Message 
message, Duration timeout=Duration::FOREVER)
-
-QPID_MESSAGING_EXTERN
 Messageget
 (Duration 
timeout=Duration::FOREVER)
-
-QPID_MESSAGING_EXTERN
 boolfetch
 (Message 
message, Duration timeout=Duration::FOREVER)
-
-QPID_MESSAGING_EXTERN
 Messagefetch
 (Duration 
timeout=Duration::FOREVER)
-
-QPID_MESSAGING_EXTERN
 voidsetCapacity
 (uint32_t)
-
-QPID_MESSAGING_EXTERN
 uint32_tgetCapacity
 ()
-
-QPID_MESSAGING_EXTERN
 uint32_tgetAvailable
 ()
-
-QPID_MESSAGING_EXTERN
 uint32_tgetUnsettled
 ()
-
-QPID_MESSAGING_EXTERN
 voidclose
 ()
-
-QPID_MESSAGING_EXTERN
 boolisClosed
 () const 
-
-QPID_MESSAGING_EXTERN
 const 
-std::string getName
 () const 
-
-QPID_MESSAGING_EXTERN
 SessiongetSession
 () const 
-
-QPID_MESSAGING_EXTERN
 AddressgetAddress
 () const 
-
-Public Member Functions inherited from qpid::messaging::Handle 
ReceiverImpl 
-QPID_MESSAGING_INLINE_EXTERN
 boolisValid
 () const
-
-QPID_MESSAGING_INLINE_EXTERN
 boolisNull
 () const
-
-QPID_MESSAGING_INLINE_EXTERNoperator
 bool () const
-
-QPID_MESSAGING_INLINE_EXTERN
 booloperator!
 () const
-
-voidswap
 (Handle 
ReceiverImpl  h)
-
-
-
-Friends
-classqpid::messaging::PrivateImplRef
 Receiver 
-
-
-
-Additional Inherited Members
-Protected Types inherited from qpid::messaging::Handle 
ReceiverImpl 
-typedef ReceiverImplImpl
-
-Protected Member Functions inherited from qpid::messaging::Handle 
ReceiverImpl 
-QPID_MESSAGING_INLINE_EXTERNHandle
 ()
-
-Protected Attributes inherited from qpid::messaging::Handle 
ReceiverImpl 
-Impl
 *impl
-
-
-Detailed 
Description
-Interface through which messages are received. 
-Constructor  Destructor Documentation
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Receiver::Receiver 
-  (
-  ReceiverImpl *
-  impl = 0)
-  
-
-  
-
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Receiver::Receiver 
-  (
-  const Receiver 
-  )
-  
-
-  
-
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 qpid::messaging::Receiver::~Receiver 
-  (
-  )
-  
-
-  
-
-
-
-
-Member Function Documentation
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 void qpid::messaging::Receiver::close 
-  (
-  )
-  
-
-  
-
-Cancels this receiver. 
-
-
-
-
-
-
-  
-
-  QPID_MESSAGING_EXTERN
 bool qpid::messaging::Receiver::fetch 
-  (
-  Message 
-  message, 
-
-
-  
-  
-  Duration
-  timeout = Duration::FOREVER
-
-
-  
-  )
-  
-
-  
-
-Retrieves a message for this receivers subscription or waits for up to the 
specified timeout for one to become available. Unlike get()
 this method will check with the server that there is no message for the 
subscription this receiver is serving before 

[20/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/annotated.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/annotated.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/annotated.html
deleted file mode 100644
index 11250d9..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/annotated.html
+++ /dev/null
@@ -1,149 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class List
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('annotated.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Class List  
-
-
-Here are the classes, structs, unions and interfaces 
with brief descriptions:
-[detail level 1234]
-qpid
-messaging
-Address
-PrivateImplRef
-Connection
-Duration
-MessagingException
-InvalidOptionString
-KeyError
-LinkError
-AddressError
-ResolutionError
-AssertionFailed
-NotFound
-MalformedAddress
-ReceiverError
-FetchError
-NoMessageAvailable
-SenderError
-SendError
-TargetCapacityExceeded
-SessionError
-TransactionError
-TransactionAborted
-UnauthorizedAccess
-ConnectionError
-TransportFailure
-FailoverUpdates
-Handle
-Message
-EncodingException
-Receiver
-Sender
-Session
-types
-Exception
-Uuid
-Hasher
-InvalidConversion
-Variant
-
-
-
-
-
-
-  
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/annotated.js
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/annotated.js 
b/content/releases/qpid-0.26/messaging-api/cpp/api/annotated.js
deleted file mode 100644
index 99e0cd8..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/annotated.js
+++ /dev/null
@@ -1,4 +0,0 @@
-var annotated =
-[
-[ "qpid", "namespaceqpid.html", "namespaceqpid" ]
-];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/bc_s.png
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/bc_s.png 
b/content/releases/qpid-0.26/messaging-api/cpp/api/bc_s.png
deleted file mode 100644
index 224b29a..000
Binary files a/content/releases/qpid-0.26/messaging-api/cpp/api/bc_s.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/bdwn.png
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/bdwn.png 
b/content/releases/qpid-0.26/messaging-api/cpp/api/bdwn.png
deleted file mode 100644
index 940a0b9..000
Binary files a/content/releases/qpid-0.26/messaging-api/cpp/api/bdwn.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/classes.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/classes.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/classes.html
deleted file mode 100644
index ccc9dd6..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/classes.html
+++ /dev/null
@@ -1,143 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class Index
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('classes.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Class Index  
-
-
-A|C|D|E|F|H|I|K|L|M|N|P|R|S|T|U|V
-
-A
-Exception (qpid::types)L
-R
-TransactionAborted
 (qpid::messaging)
-F
-TransactionError 
(qpid::messaging)

[24/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h.html
deleted file mode 100644
index 82f89fa..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h.html
+++ /dev/null
@@ -1,150 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: qpid/messaging/Message.h File Reference
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('Message_8h.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-  
-Classes 
-Namespaces 
-Functions  
-  
-Message.h File Reference  
-
-
-#include qpid/messaging/ImportExport.h
-#include qpid/messaging/Duration.h
-#include qpid/types/Exception.h
-#include qpid/types/Variant.h
-#include string
-
-Include dependency graph for Message.h:
-
-
-
-
-
-
-Go to the source code of this file.
-
-
-Classes
-class 
qpid::messaging::Message
-
-struct 
qpid::messaging::EncodingException
-
-
-
-Namespaces
-qpid
-
-qpid::messaging
-
-
-
-Functions
-QPID_MESSAGING_EXTERN
 voidqpid::messaging::decode
 (const Message message, qpid::types::Variant::Map
 map, const std::string encoding=std::string())
-
-QPID_MESSAGING_EXTERN
 voidqpid::messaging::decode
 (const Message message, qpid::types::Variant::List
 list, const std::string encoding=std::string())
-
-QPID_MESSAGING_EXTERN
 voidqpid::messaging::encode
 (const qpid::types::Variant::Map
 map, Message message, const std::string 
encoding=std::string())
-
-QPID_MESSAGING_EXTERN
 voidqpid::messaging::encode
 (const qpid::types::Variant::List
 list, Message message, const std::string 
encoding=std::string())
-
-
-
-
-
-
-  
-qpidmessagingMessage.h
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h.js
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h.js 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h.js
deleted file mode 100644
index 9f8cb08..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var Message_8h =
-[
-[ "EncodingException", 
"structqpid_1_1messaging_1_1EncodingException.html", 
"structqpid_1_1messaging_1_1EncodingException" ],
-[ "decode", "Message_8h.html#aee600167b6d0045085aa87486d15e3ce", null ],
-[ "decode", "Message_8h.html#ab95026f0bcfab3f7d5f2dfdc91f7165e", null ],
-[ "encode", "Message_8h.html#a950c7ad4cd0650513e4d02741f480ee7", null ],
-[ "encode", "Message_8h.html#a55dd99067ddd06c285c44dca46c683f3", null ]
-];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h__incl.map
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h__incl.map 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h__incl.map
deleted file mode 100644
index c4c01ad..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h__incl.map
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h__incl.md5
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h__incl.md5 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h__incl.md5
deleted file mode 100644
index 0a571ed..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h__incl.md5
+++ /dev/null
@@ -1 +0,0 @@
-54b2b3fd44044107925ac9d8436109cb
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h__incl.png
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h__incl.png 
b/content/releases/qpid-0.26/messaging-api/cpp/api/Message_8h__incl.png
deleted file mode 

[05/52] [partial] qpid-site git commit: scrub various older releases from the site

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_r.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_r.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_r.html
deleted file mode 100644
index 5baff24..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_r.html
+++ /dev/null
@@ -1,129 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class Members
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('functions_r.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-Here is a list of all class members with links to the 
classes they belong to:
-
-- r -
-Receiver()
-: qpid::messaging::Receiver
-
-ReceiverError()
-: qpid::messaging::ReceiverError
-
-reconnect()
-: qpid::messaging::Connection
-
-reject()
-: qpid::messaging::Session
-
-release()
-: qpid::messaging::Session
-
-reset()
-: qpid::types::Variant
-
-ResolutionError()
-: qpid::messaging::ResolutionError
-
-rollback()
-: qpid::messaging::Session
-
-
-
-
-
-
-  
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_rela.html
--
diff --git 
a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_rela.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_rela.html
deleted file mode 100644
index cdf5639..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_rela.html
+++ /dev/null
@@ -1,148 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class Members - Related Functions
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
-
-
-  
-
-  
-
-  
-  
-  
-
-
-$(document).ready(function(){initNavTree('functions_rela.html','');});
-
-
-
-
-AllClassesNamespacesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorFriendsMacrosGroupsPages
-
-
-
-
-
-
-
-
-
-AddressImpl
-: qpid::messaging::Address
-
-MessageImplAccess
-: qpid::messaging::Message
-
-operator!=
-: qpid::types::Uuid
-
-operator
-: qpid::types::Uuid
-
-operator
-: qpid::types::Uuid
-
-operator=
-: qpid::types::Uuid
-
-operator==
-: qpid::types::Uuid
-
-operator
-: qpid::types::Uuid
-
-operator=
-: qpid::types::Uuid
-
-operator
-: qpid::types::Uuid
-
-PrivateImplRef T 
-: qpid::messaging::Handle
 T 
-
-qpid::messaging::PrivateImplRef Connection 
-: qpid::messaging::Connection
-
-qpid::messaging::PrivateImplRef Receiver 
-: qpid::messaging::Receiver
-
-qpid::messaging::PrivateImplRef Sender 
-: qpid::messaging::Sender
-
-qpid::messaging::PrivateImplRef Session 
-: qpid::messaging::Session
-
-
-
-
-
-
-  
-Generated by
-http://www.doxygen.org/index.html;>
- 1.8.6 
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/a39b425b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_s.html
--
diff --git a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_s.html 
b/content/releases/qpid-0.26/messaging-api/cpp/api/functions_s.html
deleted file mode 100644
index 08dc2e3..000
--- a/content/releases/qpid-0.26/messaging-api/cpp/api/functions_s.html
+++ /dev/null
@@ -1,207 +0,0 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml;>
-
-
-
-
-Qpid C++ Messaging API: Class Members
-
-
-
-
-
-
-
-  $(document).ready(initResizable);
-  $(window).load(resizeHeight);
-
-
-
-
-  $(document).ready(function() { searchBox.OnSelectItem(0); });
-
-
-
-
-
-
-
- 
- 
-  
-   Qpid C++ Messaging API
-   0.26
-   
-  
-   
-
-  
-  
-  
-
-  
-
-
- 
- 
-
-
-
-
-
-var searchBox = new SearchBox("searchBox", 

[qpid-proton] Git Push Summary

2016-10-14 Thread robbie
Repository: qpid-proton
Updated Tags:  refs/tags/0.15.0-rc1 [created] 22ab64740

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



svn commit: r1764917 - in /qpid/java/trunk/broker-plugins: amqp-0-10-protocol/src/test/java/org/apache/qpid/server/protocol/v0_10/ServerSessionTest.java amqp-0-8-protocol/src/test/java/org/apache/qpid

2016-10-14 Thread rgodfrey
Author: rgodfrey
Date: Fri Oct 14 14:36:01 2016
New Revision: 1764917

URL: http://svn.apache.org/viewvc?rev=1764917=rev
Log:
QPID-7447 : Fix test failures from last commit

Modified:

qpid/java/trunk/broker-plugins/amqp-0-10-protocol/src/test/java/org/apache/qpid/server/protocol/v0_10/ServerSessionTest.java

qpid/java/trunk/broker-plugins/amqp-0-8-protocol/src/test/java/org/apache/qpid/server/protocol/v0_8/AMQChannelTest.java

Modified: 
qpid/java/trunk/broker-plugins/amqp-0-10-protocol/src/test/java/org/apache/qpid/server/protocol/v0_10/ServerSessionTest.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-plugins/amqp-0-10-protocol/src/test/java/org/apache/qpid/server/protocol/v0_10/ServerSessionTest.java?rev=1764917=1764916=1764917=diff
==
--- 
qpid/java/trunk/broker-plugins/amqp-0-10-protocol/src/test/java/org/apache/qpid/server/protocol/v0_10/ServerSessionTest.java
 (original)
+++ 
qpid/java/trunk/broker-plugins/amqp-0-10-protocol/src/test/java/org/apache/qpid/server/protocol/v0_10/ServerSessionTest.java
 Fri Oct 14 14:36:01 2016
@@ -33,6 +33,7 @@ import org.apache.qpid.server.logging.Ev
 import org.apache.qpid.server.model.Broker;
 import org.apache.qpid.server.model.BrokerModel;
 import org.apache.qpid.server.model.Port;
+import org.apache.qpid.server.model.Session;
 import org.apache.qpid.server.model.Transport;
 import org.apache.qpid.server.model.VirtualHost;
 import org.apache.qpid.server.model.port.AmqpPort;
@@ -86,6 +87,8 @@ public class ServerSessionTest extends Q
 when(modelConnection.getContextProvider()).thenReturn(_virtualHost);
 when(modelConnection.getBroker()).thenReturn((Broker)broker);
 
when(modelConnection.getEventLogger()).thenReturn(mock(EventLogger.class));
+when(modelConnection.getContextValue(Long.class, 
Session.PRODUCER_AUTH_CACHE_TIMEOUT)).thenReturn(Session.PRODUCER_AUTH_CACHE_TIMEOUT_DEFAULT);
+when(modelConnection.getContextValue(Integer.class, 
Session.PRODUCER_AUTH_CACHE_SIZE)).thenReturn(Session.PRODUCER_AUTH_CACHE_SIZE_DEFAULT);
 Subject subject = new Subject();
 when(modelConnection.getSubject()).thenReturn(subject);
 when(modelConnection.getMaxMessageSize()).thenReturn(1024l);

Modified: 
qpid/java/trunk/broker-plugins/amqp-0-8-protocol/src/test/java/org/apache/qpid/server/protocol/v0_8/AMQChannelTest.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-plugins/amqp-0-8-protocol/src/test/java/org/apache/qpid/server/protocol/v0_8/AMQChannelTest.java?rev=1764917=1764916=1764917=diff
==
--- 
qpid/java/trunk/broker-plugins/amqp-0-8-protocol/src/test/java/org/apache/qpid/server/protocol/v0_8/AMQChannelTest.java
 (original)
+++ 
qpid/java/trunk/broker-plugins/amqp-0-8-protocol/src/test/java/org/apache/qpid/server/protocol/v0_8/AMQChannelTest.java
 Fri Oct 14 14:36:01 2016
@@ -51,6 +51,7 @@ import org.apache.qpid.server.model.Brok
 import org.apache.qpid.server.model.BrokerModel;
 import org.apache.qpid.server.model.Connection;
 import org.apache.qpid.server.model.Exchange;
+import org.apache.qpid.server.model.Session;
 import org.apache.qpid.server.model.VirtualHost;
 import org.apache.qpid.server.model.port.AmqpPort;
 import org.apache.qpid.server.security.auth.AuthenticatedPrincipal;
@@ -115,6 +116,8 @@ public class AMQChannelTest extends Qpid
 when(_amqConnection.getBroker()).thenReturn((Broker) _broker);
 when(_amqConnection.getMethodRegistry()).thenReturn(new 
MethodRegistry(ProtocolVersion.v0_9));
 when(_amqConnection.getContextProvider()).thenReturn(_virtualHost);
+when(_amqConnection.getContextValue(Long.class, 
Session.PRODUCER_AUTH_CACHE_TIMEOUT)).thenReturn(Session.PRODUCER_AUTH_CACHE_TIMEOUT_DEFAULT);
+when(_amqConnection.getContextValue(Integer.class, 
Session.PRODUCER_AUTH_CACHE_SIZE)).thenReturn(Session.PRODUCER_AUTH_CACHE_SIZE_DEFAULT);
 
when(_amqConnection.getEventLogger()).thenReturn(mock(EventLogger.class));
 _messageDestination = mock(MessageDestination.class);
 }



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



svn commit: r1764918 - in /qpid/java/trunk/broker-core/src: main/java/org/apache/qpid/server/stats/StatisticsCounter.java test/java/org/apache/qpid/server/stats/StatisticsCounterTest.java

2016-10-14 Thread rgodfrey
Author: rgodfrey
Date: Fri Oct 14 14:36:25 2016
New Revision: 1764918

URL: http://svn.apache.org/viewvc?rev=1764918=rev
Log:
QPID-7447 : Remove synchronization on StatisticsCounter

Modified:

qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/stats/StatisticsCounter.java

qpid/java/trunk/broker-core/src/test/java/org/apache/qpid/server/stats/StatisticsCounterTest.java

Modified: 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/stats/StatisticsCounter.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/stats/StatisticsCounter.java?rev=1764918=1764917=1764918=diff
==
--- 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/stats/StatisticsCounter.java
 (original)
+++ 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/stats/StatisticsCounter.java
 Fri Oct 14 14:36:25 2016
@@ -18,12 +18,12 @@
  */
 package org.apache.qpid.server.stats;
 
+import java.util.concurrent.atomic.AtomicLong;
+import java.util.concurrent.atomic.AtomicReference;
+
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import java.util.Date;
-import java.util.concurrent.atomic.AtomicLong;
-
 /**
  * This class collects statistics and counts the total, rate per second and
  * peak rate per second values for the events that are registered with it. 
@@ -36,15 +36,7 @@ public class StatisticsCounter
 
 private static final String COUNTER = "counter";
 private static final AtomicLong _counterIds = new AtomicLong(0L);
-
-private long _peak = 0L;
-private long _total = 0L;
-private long _temp = 0L;
-private long _last = 0L;
-private long _rate = 0L;
 
-private long _start;
-
 private final long _period;
 private final String _name;
 
@@ -63,10 +55,91 @@ public class StatisticsCounter
 _period = period;
 _name = name + "-" + + _counterIds.incrementAndGet();
 
-_start = System.currentTimeMillis();
-_last = _start / _period;
+_currentSample.set(new Sample(period));
 }
-
+
+private static final class Sample
+{
+private final long _sampleId;
+private final AtomicLong _count = new AtomicLong();
+private final AtomicLong _total;
+private final long _peak;
+private final long _lastRate;
+private final long _start;
+private final long _period;
+
+private Sample(final long period)
+{
+_period = period;
+_total = new AtomicLong();
+_peak = 0L;
+_lastRate = 0L;
+_start = System.currentTimeMillis();
+_sampleId = _start / period;
+
+}
+
+private Sample(final long timestamp, Sample priorSample)
+{
+_period = priorSample._period;
+_sampleId = timestamp / _period;
+_total = priorSample._total;
+_peak = priorSample.getRate() > priorSample.getPeak() ? 
priorSample.getRate() : priorSample.getPeak();
+_lastRate = priorSample.getRate();
+_start = priorSample._start;
+}
+
+public long getTotal()
+{
+return _total.get();
+}
+
+public long getRate()
+{
+return _count.get();
+}
+
+public long getPeak()
+{
+return _peak;
+}
+
+public long getLastRate()
+{
+return _lastRate;
+}
+
+public long getStart()
+{
+return _start;
+}
+
+public boolean add(final long value, final long timestamp)
+{
+if(timestamp >= _start)
+{
+long eventSampleId = timestamp / _period;
+if(eventSampleId > _sampleId)
+{
+return false;
+}
+_total.addAndGet(value);
+if(eventSampleId == _sampleId)
+{
+_count.addAndGet(value);
+}
+return true;
+}
+else
+{
+// ignore - event occurred before reset;
+return true;
+}
+}
+}
+
+private AtomicReference _currentSample = new AtomicReference<>();
+
 
 public void registerEvent(long value)
 {
@@ -75,22 +148,12 @@ public class StatisticsCounter
 
 public void registerEvent(long value, long timestamp)
 {
-long thisSample = (timestamp / _period);
-synchronized (this)
+Sample currentSample;
+
+while(!(currentSample = getSample()).add(value, timestamp))
 {
-if (thisSample > _last)
-{
-_last = thisSample;
-_rate = _temp;
-_temp = 0L;
-if (_rate > _peak)
-{
-   

qpid-proton git commit: PROTON-1327: [Go binding] Replaced c handler based flowcontroller with native go - The go binding now has no dependency on the proton-c reactor code

2016-10-14 Thread astitcher
Repository: qpid-proton
Updated Branches:
  refs/heads/master 5639656cf -> cd011b6b2


PROTON-1327: [Go binding] Replaced c handler based flowcontroller with native go
- The go binding now has no dependency on the proton-c reactor code


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/cd011b6b
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/cd011b6b
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/cd011b6b

Branch: refs/heads/master
Commit: cd011b6b2927f9a62b63884db723a496d54fe604
Parents: 5639656
Author: Andrew Stitcher 
Authored: Mon Oct 10 15:31:25 2016 -0400
Committer: Andrew Stitcher 
Committed: Fri Oct 14 13:39:08 2016 -0400

--
 .../go/src/qpid.apache.org/proton/engine.go |  6 
 .../go/src/qpid.apache.org/proton/handlers.go   | 33 +++-
 2 files changed, 19 insertions(+), 20 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/cd011b6b/proton-c/bindings/go/src/qpid.apache.org/proton/engine.go
--
diff --git a/proton-c/bindings/go/src/qpid.apache.org/proton/engine.go 
b/proton-c/bindings/go/src/qpid.apache.org/proton/engine.go
index 7f1368e..a0b 100644
--- a/proton-c/bindings/go/src/qpid.apache.org/proton/engine.go
+++ b/proton-c/bindings/go/src/qpid.apache.org/proton/engine.go
@@ -385,12 +385,6 @@ func (eng *Engine) Run() error {
_ = eng.conn.Close() // Close conn, force read/write goroutines to exit 
(they will Inject)
wait.Wait()  // Wait for goroutines
 
-   for _, h := range eng.handlers {
-   switch h := h.(type) {
-   case cHandler:
-   C.pn_handler_free(h.pn)
-   }
-   }
C.pn_connection_engine_final()
return eng.err.Get()
 }

http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/cd011b6b/proton-c/bindings/go/src/qpid.apache.org/proton/handlers.go
--
diff --git a/proton-c/bindings/go/src/qpid.apache.org/proton/handlers.go 
b/proton-c/bindings/go/src/qpid.apache.org/proton/handlers.go
index 24e5eb3..8213b65 100644
--- a/proton-c/bindings/go/src/qpid.apache.org/proton/handlers.go
+++ b/proton-c/bindings/go/src/qpid.apache.org/proton/handlers.go
@@ -19,8 +19,6 @@ under the License.
 
 package proton
 
-// #include 
-import "C"
 import "fmt"
 
 // EventHandler handles core proton events.
@@ -31,17 +29,6 @@ type EventHandler interface {
HandleEvent(e Event)
 }
 
-// FIXME aconway 2016-06-21: get rid of C handlers?
-
-// cHandler wraps a C pn_handler_t
-type cHandler struct {
-   pn *C.pn_handler_t
-}
-
-func (h cHandler) HandleEvent(e Event) {
-   C.pn_handler_dispatch(h.pn, e.pn, C.pn_event_type(e.pn))
-}
-
 // MessagingHandler provides an alternative interface to EventHandler.
 // it is easier to use for most applications that send and receive messages.
 //
@@ -239,6 +226,24 @@ func (d endpointDelegator) HandleEvent(e Event) {
}
 }
 
+type flowcontroller struct {
+   window, drained int
+}
+
+func (d flowcontroller) HandleEvent(e Event) {
+   link := e.Link();
+
+   switch e.Type() {
+   case ELinkLocalOpen, ELinkRemoteOpen, ELinkFlow, EDelivery:
+   if link.IsReceiver() {
+   d.drained += link.Drained()
+   if d.drained != 0 {
+   link.Flow(d.window-link.Credit())
+   }
+   }
+   }
+}
+
 // MessagingAdapter implments a EventHandler and delegates to a 
MessagingHandler.
 // You can modify the exported fields before you pass the MessagingAdapter to
 // a Engine.
@@ -308,7 +313,7 @@ func (d *MessagingAdapter) HandleEvent(e Event) {
d,
}
if d.Prefetch > 0 {
-   d.flowcontroller = 
cHandler{C.pn_flowcontroller(C.int(d.Prefetch))}
+   d.flowcontroller = flowcontroller{ window:d.Prefetch, 
drained:0 }
}
d.mhandler.HandleMessagingEvent(MStart, e)
 


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



qpid-proton git commit: NO-JIRA: Don't build Java on appveyor to avoid CI failure - Appveyor Windows CI never previously build/tested Proton-J. Its configuration has changed and it tries to test Proto

2016-10-14 Thread astitcher
Repository: qpid-proton
Updated Branches:
  refs/heads/master cd011b6b2 -> 0eafe3af7


NO-JIRA: Don't build Java on appveyor to avoid CI failure
- Appveyor Windows CI never previously build/tested Proton-J.
  Its configuration has changed and it tries to test Proton-J
  but fails, so turning off Java is no problem as we never had this
  working before in any case.


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/0eafe3af
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/0eafe3af
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/0eafe3af

Branch: refs/heads/master
Commit: 0eafe3af73e6d8e45d4ee2125aaba3bbd36046b9
Parents: cd011b6
Author: Andrew Stitcher 
Authored: Fri Oct 14 13:48:12 2016 -0400
Committer: Andrew Stitcher 
Committed: Fri Oct 14 13:48:12 2016 -0400

--
 appveyor.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/0eafe3af/appveyor.yml
--
diff --git a/appveyor.yml b/appveyor.yml
index 8c61be0..368e9ad 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -8,7 +8,7 @@ cache:
 before_build:
 - mkdir BLD
 - cd BLD
-- cmake -G "Visual Studio 12" -DBUILD_PERL=no ..
+- cmake -G "Visual Studio 12" -DBUILD_PERL=no i-DBUILD_JAVA=no ..
 - cd ..
 build:
   parallel: true


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



qpid-site git commit: move 0.32 to the 'past releases' section

2016-10-14 Thread robbie
Repository: qpid-site
Updated Branches:
  refs/heads/asf-site de3c34889 -> 7d04bed3f


move 0.32 to the 'past releases' section


Project: http://git-wip-us.apache.org/repos/asf/qpid-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-site/commit/7d04bed3
Tree: http://git-wip-us.apache.org/repos/asf/qpid-site/tree/7d04bed3
Diff: http://git-wip-us.apache.org/repos/asf/qpid-site/diff/7d04bed3

Branch: refs/heads/asf-site
Commit: 7d04bed3ffcd32068a776f71e4ac2b2dad12189f
Parents: de3c348
Author: Robert Gemmell 
Authored: Fri Oct 14 17:39:39 2016 +0100
Committer: Robert Gemmell 
Committed: Fri Oct 14 17:39:39 2016 +0100

--
 content/releases/index.html | 2 +-
 input/releases/index.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-site/blob/7d04bed3/content/releases/index.html
--
diff --git a/content/releases/index.html b/content/releases/index.html
index bc7d16c..c5c3351 100644
--- a/content/releases/index.html
+++ b/content/releases/index.html
@@ -130,7 +130,6 @@ the
 Qpid Python 1.35.0, August 
2016
 Qpid for Java 6.0.4, July 
2016
 Qpid Dispatch 0.6.1, August 
2016
-Qpid 0.32, March 2015
 
 
 Past releases
@@ -167,6 +166,7 @@ the
 Qpid JMS 0.2.0, May 2015
 Qpid Dispatch 0.4, April 
2015
 Qpid JMS 0.1.0, March 2015
+Qpid 0.32, March 2015
 Qpid Proton 0.9, March 2015
 Qpid Dispatch 0.3, January 
2015
 Qpid Proton 0.8, October 2014

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/7d04bed3/input/releases/index.md
--
diff --git a/input/releases/index.md b/input/releases/index.md
index bbcae9d..af04036 100644
--- a/input/releases/index.md
+++ b/input/releases/index.md
@@ -32,7 +32,6 @@ the
  - [Qpid Python 1.35.0](qpid-python-1.35.0/index.html), August 2016
  - [Qpid for Java 6.0.4](qpid-java-6.0.4/index.html), July 2016
  - [Qpid Dispatch 0.6.1](qpid-dispatch-0.6.1/index.html), August 2016
- - [Qpid 0.32](qpid-0.32/index.html), March 2015
 
 ## Past releases
 
@@ -67,6 +66,7 @@ the
  - [Qpid JMS 0.2.0](qpid-jms-0.2.0/index.html), May 2015
  - [Qpid Dispatch 0.4](qpid-dispatch-0.4/index.html), April 2015
  - [Qpid JMS 0.1.0](qpid-jms-0.1.0/index.html), March 2015
+ - [Qpid 0.32](qpid-0.32/index.html), March 2015
  - [Qpid Proton 0.9](qpid-proton-0.9/index.html), March 2015
  - [Qpid Dispatch 0.3](qpid-dispatch-0.3/index.html), January 2015
  - [Qpid Proton 0.8](qpid-proton-0.8/index.html), October 2014


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



[04/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/reactor_8h.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/reactor_8h.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/reactor_8h.html
new file mode 100755
index 000..5881c4b
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/reactor_8h.html
@@ -0,0 +1,289 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/reactor.h File Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('reactor_8h.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Typedefs 
+Functions  
+  
+reactor.h File Reference  
+
+
+#include 
proton/import_export.h
+#include proton/type_compat.h
+#include proton/event.h
+#include proton/selectable.h
+#include proton/ssl.h
+
+Go to the source code of this file.
+
+
+Typedefs
+
+typedef struct pn_reactor_tpn_reactor_t
+
+
+typedef struct pn_acceptor_tpn_acceptor_t
+
+
+typedef struct pn_timer_tpn_timer_t
+
+
+typedef struct pn_task_tpn_task_t
+
+
+
+Functions
+
+PN_EXTERN pn_handler_t 
*pn_handler 
(void(*dispatch)(pn_handler_t 
*, pn_event_t *, 
pn_event_type_t))
+
+
+PN_EXTERN pn_handler_t 
*pn_handler_new 
(void(*dispatch)(pn_handler_t 
*, pn_event_t *, 
pn_event_type_t),
 size_t size, void(*finalize)(pn_handler_t 
*))
+
+
+PN_EXTERN voidpn_handler_free (pn_handler_t 
*handler)
+
+
+PN_EXTERN void *pn_handler_mem (pn_handler_t 
*handler)
+
+
+PN_EXTERN voidpn_handler_add (pn_handler_t 
*handler, pn_handler_t 
*child)
+
+
+PN_EXTERN voidpn_handler_clear (pn_handler_t 
*handler)
+
+
+PN_EXTERN voidpn_handler_dispatch (pn_handler_t 
*handler, pn_event_t 
*event, pn_event_type_t 
type)
+
+
+PN_EXTERN pn_reactor_t *pn_reactor (void)
+
+
+PN_EXTERN pn_record_t *pn_reactor_attachments (pn_reactor_t *reactor)
+
+
+PN_EXTERN pn_millis_tpn_reactor_get_timeout (pn_reactor_t *reactor)
+
+
+PN_EXTERN voidpn_reactor_set_timeout (pn_reactor_t *reactor, 
pn_millis_t timeout)
+
+
+PN_EXTERN pn_timestamp_tpn_reactor_mark (pn_reactor_t *reactor)
+
+
+PN_EXTERN pn_timestamp_tpn_reactor_now (pn_reactor_t *reactor)
+
+
+PN_EXTERN voidpn_reactor_yield (pn_reactor_t *reactor)
+
+
+PN_EXTERN voidpn_reactor_free (pn_reactor_t *reactor)
+
+
+PN_EXTERN pn_collector_t 
*pn_reactor_collector (pn_reactor_t *reactor)
+
+
+PN_EXTERN pn_handler_t 
*pn_reactor_get_global_handler (pn_reactor_t 
*reactor)
+
+
+PN_EXTERN voidpn_reactor_set_global_handler (pn_reactor_t *reactor, pn_handler_t 
*handler)
+
+
+PN_EXTERN pn_handler_t 
*pn_reactor_get_handler (pn_reactor_t *reactor)
+
+
+PN_EXTERN voidpn_reactor_set_handler (pn_reactor_t *reactor, pn_handler_t 
*handler)
+
+
+PN_EXTERN pn_io_t *pn_reactor_io (pn_reactor_t *reactor)
+
+
+PN_EXTERN pn_list_t *pn_reactor_children (pn_reactor_t *reactor)
+
+
+PN_EXTERN pn_selectable_t
 *pn_reactor_selectable (pn_reactor_t *reactor)
+
+
+PN_EXTERN voidpn_reactor_update (pn_reactor_t *reactor, pn_selectable_t
 *selectable)
+
+
+PN_EXTERN pn_acceptor_t *pn_reactor_acceptor (pn_reactor_t *reactor, const char 
*host, const char *port, pn_handler_t 
*handler)
+
+
+PN_EXTERN pn_error_t *pn_reactor_error (pn_reactor_t *reactor)
+
+PN_EXTERN pn_connection_t
 *pn_reactor_connection_to_host
 (pn_reactor_t *reactor, const char *host, const char *port, pn_handler_t 
*handler)
+
+PN_EXTERN pn_connection_t
 *pn_reactor_connection
 (pn_reactor_t *reactor, pn_handler_t 
*handler)
+
+PN_EXTERN voidpn_reactor_set_connection_host
 (pn_reactor_t *reactor, pn_connection_t
 *connection, const char *host, const char *port)
+
+PN_EXTERN const char *pn_reactor_get_connection_address
 (pn_reactor_t *reactor, pn_connection_t
 *connection)
+
+
+PN_EXTERN intpn_reactor_wakeup (pn_reactor_t *reactor)
+
+
+PN_EXTERN voidpn_reactor_start (pn_reactor_t *reactor)
+
+
+PN_EXTERN boolpn_reactor_quiesced (pn_reactor_t *reactor)
+
+
+PN_EXTERN boolpn_reactor_process (pn_reactor_t *reactor)
+
+
+PN_EXTERN voidpn_reactor_stop (pn_reactor_t *reactor)
+
+
+PN_EXTERN voidpn_reactor_run (pn_reactor_t *reactor)
+
+
+PN_EXTERN pn_task_t *pn_reactor_schedule (pn_reactor_t *reactor, int delay, 
pn_handler_t 
*handler)
+
+
+PN_EXTERN voidpn_acceptor_set_ssl_domain (pn_acceptor_t *acceptor, 
pn_ssl_domain_t *domain)
+
+
+PN_EXTERN voidpn_acceptor_close (pn_acceptor_t *acceptor)
+
+
+PN_EXTERN pn_acceptor_t 

[36/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/globals.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/globals.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/globals.html
new file mode 100755
index 000..9194e3c
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/globals.html
@@ -0,0 +1,2097 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: File Members
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('globals.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+Here is a list of all documented file members with 
links to the documentation:
+
+- p -
+PN_ACCEPTED
+: disposition.h
+
+PN_ARRAY
+: codec.h
+
+PN_BINARY
+: codec.h
+
+PN_BOOL
+: codec.h
+
+PN_BYTE
+: codec.h
+
+pn_bytes_t
+: types.h
+
+PN_CHAR
+: codec.h
+
+pn_collector()
+: event.h
+
+pn_collector_free()
+: event.h
+
+pn_collector_more()
+: event.h
+
+pn_collector_peek()
+: event.h
+
+pn_collector_pop()
+: event.h
+
+pn_collector_put()
+: event.h
+
+pn_collector_release()
+: event.h
+
+pn_collector_t
+: types.h
+
+pn_condition_clear()
+: condition.h
+
+pn_condition_format()
+: condition.h
+
+pn_condition_get_description()
+: condition.h
+
+pn_condition_get_name()
+: condition.h
+
+pn_condition_info()
+: condition.h
+
+pn_condition_is_redirect()
+: condition.h
+
+pn_condition_is_set()
+: condition.h
+
+pn_condition_redirect_host()
+: condition.h
+
+pn_condition_redirect_port()
+: condition.h
+
+pn_condition_set_description()
+: condition.h
+
+pn_condition_set_name()
+: condition.h
+
+pn_condition_t
+: condition.h
+
+pn_condition_vformat()
+: condition.h
+
+PN_CONFIGURATION
+: terminus.h
+
+pn_connection()
+: connection.h
+
+pn_connection_attachments()
+: connection.h
+
+PN_CONNECTION_BOUND
+: event.h
+
+pn_connection_close()
+: connection.h
+
+pn_connection_collect()
+: connection.h
+
+pn_connection_condition()
+: connection.h
+
+pn_connection_desired_capabilities()
+: connection.h
+
+pn_connection_engine_condition()
+: connection_engine.h
+
+pn_connection_engine_connection()
+: connection_engine.h
+
+pn_connection_engine_disconnected()
+: connection_engine.h
+
+pn_connection_engine_dispatch()
+: connection_engine.h
+
+pn_connection_engine_final()
+: connection_engine.h
+
+pn_connection_engine_finished()
+: connection_engine.h
+
+pn_connection_engine_init()
+: connection_engine.h
+
+pn_connection_engine_read_buffer()
+: connection_engine.h
+
+pn_connection_engine_read_close()
+: connection_engine.h
+
+pn_connection_engine_read_done()
+: connection_engine.h
+
+pn_connection_engine_start()
+: connection_engine.h
+
+pn_connection_engine_t
+: connection_engine.h
+
+pn_connection_engine_transport()
+: connection_engine.h
+
+pn_connection_engine_write_buffer()
+: connection_engine.h
+
+pn_connection_engine_write_close()
+: connection_engine.h
+
+pn_connection_engine_write_done()
+: connection_engine.h
+
+pn_connection_error()
+: connection.h
+
+PN_CONNECTION_FINAL
+: event.h
+
+pn_connection_free()
+: connection.h
+
+pn_connection_get_container()
+: connection.h
+
+pn_connection_get_context()
+: connection.h
+
+pn_connection_get_hostname()
+: connection.h
+
+pn_connection_get_user()
+: connection.h
+
+PN_CONNECTION_INIT
+: event.h
+
+PN_CONNECTION_LOCAL_CLOSE
+: event.h
+
+PN_CONNECTION_LOCAL_OPEN
+: event.h
+
+pn_connection_offered_capabilities()
+: connection.h
+
+pn_connection_open()
+: connection.h
+
+pn_connection_properties()
+: connection.h
+
+pn_connection_release()
+: connection.h
+
+PN_CONNECTION_REMOTE_CLOSE
+: event.h
+
+pn_connection_remote_condition()
+: connection.h
+
+pn_connection_remote_container()
+: connection.h
+
+pn_connection_remote_desired_capabilities()
+: connection.h
+
+pn_connection_remote_hostname()
+: connection.h
+
+pn_connection_remote_offered_capabilities()
+: connection.h
+
+PN_CONNECTION_REMOTE_OPEN
+: event.h
+
+pn_connection_remote_properties()
+: connection.h
+
+pn_connection_reset()
+: connection.h
+
+pn_connection_set_container()
+: connection.h
+
+pn_connection_set_context()
+: connection.h
+
+pn_connection_set_hostname()
+: connection.h
+
+pn_connection_set_password()
+: connection.h
+
+pn_connection_set_user()
+: connection.h
+
+pn_connection_state()
+: connection.h
+
+pn_connection_t
+: types.h
+
+pn_connection_transport()
+: connection.h
+

[10/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/message_8h_source.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/message_8h_source.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/message_8h_source.html
new file mode 100755
index 000..691c243
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/message_8h_source.html
@@ -0,0 +1,255 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/message.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('message_8h_source.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+message.h  
+
+
+Go to the documentation of this file.   
 1#ifndef PROTON_MESSAGE_H
+
2#define PROTON_MESSAGE_H 1
+
3
+
4/*
+
5 *
+
6 * Licensed to the Apache Software 
Foundation (ASF) under one
+
7 * or more contributor license agreements.  
See the NOTICE file
+
8 * distributed with this work for 
additional information
+
9 * regarding copyright ownership.  The ASF 
licenses this file
+   
10 * to you under the Apache License, 
Version 2.0 (the
+   
11 * License); you may not use 
this file except in compliance
+   
12 * with the License.  You may obtain a 
copy of the License at
+   
13 *
+   
14 *   
http://www.apache.org/licenses/LICENSE-2.0
+   
15 *
+   
16 * Unless required by applicable law or 
agreed to in writing,
+   
17 * software distributed under the License 
is distributed on an
+   
18 * AS IS BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
19 * KIND, either express or implied.  See 
the License for the
+   
20 * specific language governing permissions 
and limitations
+   
21 * under the License.
+   
22 *
+   
23 */
+   
24
+   
25#include 
proton/import_export.h
+   
26#include proton/types.h
+   
27#include proton/codec.h
+   
28#include 
proton/error.h
+   
29#include 
proton/type_compat.h
+   
30
+   
31#ifdef __cplusplus
+   
32extern C 
{
+   
33#endif
+   
34
+   
49typedef struct pn_message_t 
pn_message_t;
+   
50
+   
54#define PN_DEFAULT_PRIORITY 
(4)
+   
55
+   
64PN_EXTERN pn_message_t 
* pn_message(void);
+   
65
+   
71PN_EXTERN void   pn_message_free(pn_message_t 
*msg);
+   
72
+   
82PN_EXTERN void   pn_message_clear(pn_message_t 
*msg);
+   
83
+   
95PN_EXTERN intpn_message_errno(pn_message_t 
*msg);
+   
96
+  
109PN_EXTERN pn_error_t*pn_message_error(pn_message_t 
*msg);
+  
110
+  
125PN_EXTERN bool   pn_message_is_inferred(pn_message_t 
*msg);
+  
126
+  
137PN_EXTERN intpn_message_set_inferred(pn_message_t 
*msg, bool inferred);
+  
138
+  
139// standard message headers and 
properties
+  
140
+  
150PN_EXTERN bool   pn_message_is_durable
(pn_message_t 
*msg);
+  
151
+  
162PN_EXTERN intpn_message_set_durable
   (pn_message_t 
*msg, bool durable);
+  
163
+  
174PN_EXTERN uint8_tpn_message_get_priority
  (pn_message_t 
*msg);
+  
175
+  
185PN_EXTERN intpn_message_set_priority
  (pn_message_t 
*msg, uint8_t priority);
+  
186
+  
199PN_EXTERN pn_millis_tpn_message_get_ttl
   (pn_message_t 
*msg);
+  
200
+  
210PN_EXTERN intpn_message_set_ttl
   (pn_message_t 
*msg, pn_millis_t ttl);
+  
211
+  
224PN_EXTERN bool   pn_message_is_first_acquirer
 (pn_message_t 
*msg);
+  
225
+  
236PN_EXTERN intpn_message_set_first_acquirer
(pn_message_t 
*msg, bool first);
+  
237
+  
248PN_EXTERN uint32_t   pn_message_get_delivery_count
(pn_message_t 
*msg);
+  
249
+  
260PN_EXTERN intpn_message_set_delivery_count
(pn_message_t 
*msg, uint32_t count);
+  
261
+  
275PN_EXTERN pn_data_t *
pn_message_id 
   (pn_message_t 
*msg);
+  
276
+  
289PN_EXTERN pn_atom_t  pn_message_get_id
(pn_message_t 
*msg);
+  
290
+  
302PN_EXTERN intpn_message_set_id
(pn_message_t 
*msg, pn_atom_t id);
+  
303
+  
317PN_EXTERN pn_bytes_t pn_message_get_user_id
   (pn_message_t 
*msg);
+  
318
+  
329PN_EXTERN intpn_message_set_user_id
   (pn_message_t 
*msg, pn_bytes_t 
user_id);
+  
330
+  
345PN_EXTERN const char *   pn_message_get_address
   (pn_message_t 

[28/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__disposition.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/group__disposition.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__disposition.html
new file mode 100755
index 000..43c6d2f
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__disposition.html
@@ -0,0 +1,579 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: Disposition
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('group__disposition.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Macros 
+Typedefs 
+Functions  
+  
+DispositionDelivery  
+
+
+
+
+Macros
+#definePN_RECEIVED(0x0023)
+
+#definePN_ACCEPTED(0x0024)
+
+#definePN_REJECTED(0x0025)
+
+#definePN_RELEASED(0x0026)
+
+#definePN_MODIFIED(0x0027)
+
+
+
+Typedefs
+typedef struct pn_disposition_tpn_disposition_t
+
+
+
+Functions
+PN_EXTERN uint64_tpn_disposition_type
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN pn_condition_t
 *pn_disposition_condition
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN pn_data_t 
*pn_disposition_data
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN uint32_tpn_disposition_get_section_number
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN voidpn_disposition_set_section_number
 (pn_disposition_t
 *disposition, uint32_t section_number)
+
+PN_EXTERN uint64_tpn_disposition_get_section_offset
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN voidpn_disposition_set_section_offset
 (pn_disposition_t
 *disposition, uint64_t section_offset)
+
+PN_EXTERN boolpn_disposition_is_failed
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN voidpn_disposition_set_failed
 (pn_disposition_t
 *disposition, bool failed)
+
+PN_EXTERN boolpn_disposition_is_undeliverable
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN voidpn_disposition_set_undeliverable
 (pn_disposition_t
 *disposition, bool undeliverable)
+
+PN_EXTERN pn_data_t 
*pn_disposition_annotations
 (pn_disposition_t
 *disposition)
+
+
+Detailed 
Description
+Macro Definition Documentation
+
+
+
+  
+
+  #define 
PN_ACCEPTED(0x0024)
+
+  
+
+The PN_ACCEPTED delivery state is a terminal state indicating that the 
delivery was successfully processed. Once in this state there will be no 
further state changes prior to the delivery being settled. 
+
+
+
+
+
+
+  
+
+  #define 
PN_MODIFIED(0x0027)
+
+  
+
+The PN_MODIFIED delivery state is a terminal state indicating that the 
delivery is being returned to the sender and should be annotated by the sender 
prior to further delivery attempts. Once in this state there will be no further 
state changes prior to the delivery being settled. 
+
+
+
+
+
+
+  
+
+  #define 
PN_RECEIVED(0x0023)
+
+  
+
+The PN_RECEIVED delivery state is a non terminal state indicating how much 
(if any) message data has been received for a delivery. 
+
+
+
+
+
+
+  
+
+  #define 
PN_REJECTED(0x0025)
+
+  
+
+The PN_REJECTED delivery state is a terminal state indicating that the 
delivery could not be processed due to some error condition. Once in this state 
there will be no further state changes prior to the delivery being settled. 
+
+
+
+
+
+
+  
+
+  #define 
PN_RELEASED(0x0026)
+
+  
+
+The PN_RELEASED delivery state is a terminal state indicating that the 
delivery is being returned to the sender. Once in this state there will be no 
further state changes prior to the delivery being settled. 
+
+
+
+Typedef Documentation
+
+
+
+  
+
+  typedef struct pn_disposition_t
 pn_disposition_t
+
+  
+
+Dispositions record the current state and/or final outcome of a transfer. 
Every delivery contains both a local and remote disposition. The local 
disposition holds the local state of the delivery, and the remote disposition 
holds the last known remote state of the delivery. 
+
+
+
+Function Documentation
+
+
+
+  
+
+  PN_EXTERN pn_data_t* 
pn_disposition_annotations 
+  (
+  pn_disposition_t
 *
+  disposition)
+  
+
+  
+

[46/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/messenger/python/examples/recv.py.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/messenger/python/examples/recv.py.html 
b/content/releases/qpid-proton-0.15.0/messenger/python/examples/recv.py.html
new file mode 100644
index 000..48038e2
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/messenger/python/examples/recv.py.html
@@ -0,0 +1,185 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en">
+  
+recv.py - Apache Qpid
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid Proton 
0.15.0Python 
AMQP Messenger Examplesrecv.py
+
+
+  
+recv.py
+from __future__ import print_function
+import sys, optparse
+from proton import *
+
+parser = optparse.OptionParser(usage=usage: 
%prog [options] addr_1 ... addr_n,
+   description=simple message 
receiver)
+parser.add_option(-c, --certificate, help=path to 
certificate file)
+parser.add_option(-k, --private-key, help=path to 
private key file)
+parser.add_option(-p, --password, help=password for 
private key file)
+
+opts, args = parser.parse_args()
+
+if not args:
+  args = [amqp://~0.0.0.0]
+
+mng = Messenger()
+mng.certificate=opts.certificate
+mng.private_key=opts.private_key
+mng.password=opts.password
+mng.start()
+
+for a in 
args:
+  mng.subscribe(a)
+
+msg = Message()
+while True:
+  mng.recv()
+  while mng.incoming:
+try:
+  mng.get(msg)
+except Exception as e:
+  print(e)
+else:
+  print(msg.address, msg.subject or (no 
subject), msg.properties, 
msg.body)
+
+mng.stop()
+
+
+Download this file
+
+
+  
+
+  
+http://www.apache.org/;>Apache
+http://www.apache.org/licenses/;>License
+http://www.apache.org/foundation/sponsorship.html;>Sponsorship
+http://www.apache.org/foundation/thanks.html;>Thanks!
+Security
+http://www.apache.org/;>
+  
+
+  
+Apache Qpid, Messaging built on AMQP; Copyright  2015
+The Apache Software Foundation; Licensed under
+the http://www.apache.org/licenses/LICENSE-2.0;>Apache
+License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
+Proton, Apache, the Apache feather logo, and the Apache Qpid
+project logo are trademarks of The Apache Software
+Foundation; All other marks mentioned may be trademarks or
+registered trademarks of their respective owners
+  
+
+  
+
+  
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/messenger/python/examples/recv_async.py
--
diff --git 
a/content/releases/qpid-proton-0.15.0/messenger/python/examples/recv_async.py 
b/content/releases/qpid-proton-0.15.0/messenger/python/examples/recv_async.py
new file mode 100755
index 000..b38c31a
--- /dev/null
+++ 
b/content/releases/qpid-proton-0.15.0/messenger/python/examples/recv_async.py
@@ -0,0 +1,56 @@
+#!/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 

[27/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__event.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/group__event.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__event.html
new file mode 100755
index 000..cc3d580
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__event.html
@@ -0,0 +1,813 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: Event
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('group__event.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Typedefs 
+Enumerations 
+Functions  
+  
+EventEngine  
+
+
+
+
+Typedefs
+typedef struct pn_event_tpn_event_t
+
+typedef struct pn_collector_tpn_collector_t
+
+
+
+Enumerations
+enum pn_event_type_t 
{ 
+PN_EVENT_NONE
 = 0, 
+PN_REACTOR_INIT,
 
+PN_REACTOR_QUIESCED,
 
+PN_REACTOR_FINAL,
 
+
+PN_TIMER_TASK,
 
+PN_CONNECTION_INIT,
 
+PN_CONNECTION_BOUND,
 
+PN_CONNECTION_UNBOUND,
 
+
+PN_CONNECTION_LOCAL_OPEN,
 
+PN_CONNECTION_REMOTE_OPEN,
 
+PN_CONNECTION_LOCAL_CLOSE,
 
+PN_CONNECTION_REMOTE_CLOSE,
 
+
+PN_CONNECTION_FINAL,
 
+PN_SESSION_INIT,
 
+PN_SESSION_LOCAL_OPEN,
 
+PN_SESSION_REMOTE_OPEN,
 
+
+PN_SESSION_LOCAL_CLOSE,
 
+PN_SESSION_REMOTE_CLOSE,
 
+PN_SESSION_FINAL,
 
+PN_LINK_INIT,
 
+
+PN_LINK_LOCAL_OPEN,
 
+PN_LINK_REMOTE_OPEN,
 
+PN_LINK_LOCAL_CLOSE,
 
+PN_LINK_REMOTE_CLOSE,
 
+
+PN_LINK_LOCAL_DETACH,
 
+PN_LINK_REMOTE_DETACH,
 
+PN_LINK_FLOW,
 
+PN_LINK_FINAL,
 
+
+PN_DELIVERY,
 
+PN_TRANSPORT,
 
+PN_TRANSPORT_AUTHENTICATED,
 
+PN_TRANSPORT_ERROR,
 
+
+PN_TRANSPORT_HEAD_CLOSED,
 
+PN_TRANSPORT_TAIL_CLOSED,
 
+PN_TRANSPORT_CLOSED,
 
+PN_SELECTABLE_INIT, 
+
+PN_SELECTABLE_UPDATED, 
+PN_SELECTABLE_READABLE, 
+PN_SELECTABLE_WRITABLE, 
+PN_SELECTABLE_ERROR, 
+
+PN_SELECTABLE_EXPIRED, 
+PN_SELECTABLE_FINAL
+
+ }
+
+
+
+Functions
+PN_EXTERN const char *pn_event_type_name
 (pn_event_type_t 
type)
+
+PN_EXTERN pn_collector_t 
*pn_collector 
(void)
+
+PN_EXTERN voidpn_collector_free
 (pn_collector_t 
*collector)
+
+PN_EXTERN voidpn_collector_release
 (pn_collector_t 
*collector)
+
+PN_EXTERN pn_event_t 
*pn_collector_put
 (pn_collector_t 
*collector, const pn_class_t 
*clazz, void *context, pn_event_type_t 
type)
+
+PN_EXTERN pn_event_t 
*pn_collector_peek
 (pn_collector_t 
*collector)
+
+PN_EXTERN boolpn_collector_pop
 (pn_collector_t 
*collector)
+
+PN_EXTERN boolpn_collector_more
 (pn_collector_t 
*collector)
+
+PN_EXTERN pn_event_type_tpn_event_type 
(pn_event_t 
*event)
+
+PN_EXTERN const pn_class_t *pn_event_class 
(pn_event_t 
*event)
+
+PN_EXTERN void *pn_event_context
 (pn_event_t 
*event)
+
+PN_EXTERN pn_handler_t 
*pn_event_root 
(pn_event_t 
*event)
+
+PN_EXTERN pn_connection_t
 *pn_event_connection
 (pn_event_t 
*event)
+
+PN_EXTERN pn_session_t 
*pn_event_session
 (pn_event_t 
*event)
+
+PN_EXTERN pn_link_t 
*pn_event_link 
(pn_event_t 
*event)
+
+PN_EXTERN pn_delivery_t
 *pn_event_delivery
 (pn_event_t 
*event)
+
+PN_EXTERN pn_transport_t
 *pn_event_transport
 (pn_event_t 
*event)
+
+PN_EXTERN pn_record_t *pn_event_attachments
 (pn_event_t 
*event)
+
+
+Detailed 
Description
+Typedef Documentation
+
+
+
+  
+
+  typedef struct pn_collector_t 
pn_collector_t
+
+  
+
+An event collector.
+A pn_collector_t may be used to register interest in being notified of high 
level events that can occur to the various objects representing AMQP endpoint 
state. See pn_event_t for 
more details. 
+
+
+
+
+
+
+  
+
+  typedef struct pn_event_t pn_event_t
+
+  
+
+An event provides notification of a state change within the protocol 
engine's object model.
+The AMQP endpoint state modeled by the protocol engine is captured by the 
following object types: Deliveries , 
Links 
, Sessions , Connections 
, and Transports 
. These objects are related as follows:
+
+Deliveries  
always have a single parent Link
+Links  always 
have a single parent Session
+Sessions  
always have a single parent Connection
+Connections 
 optionally have at most one associated Transport
+Transports  
optionally have at most one associated Connection
+
+Every event has a type (see pn_event_type_t)
 that identifies what sort of state change has occurred along with a pointer to 
the object whose state has changed (as well as its associated 

[07/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/navtreeindex0.js
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/navtreeindex0.js 
b/content/releases/qpid-proton-0.15.0/proton/c/api/navtreeindex0.js
new file mode 100755
index 000..e49c45e
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/navtreeindex0.js
@@ -0,0 +1,253 @@
+var NAVTREEINDEX0 =
+{
+"annotated.html":[3,0],
+"cid_8h_source.html":[4,0,0,0],
+"classes.html":[3,1],
+"codec_8h.html":[4,0,0,1],
+"codec_8h.html#ga0032a3390f1c09c4bdbb2db245126524":[4,0,0,1,29],
+"codec_8h.html#ga00cdfc2b8b894ec53143924dc8dcf95b":[4,0,0,1,35],
+"codec_8h.html#ga00d64770a609ca56d0eeda41dd8847bb":[4,0,0,1,70],
+"codec_8h.html#ga00f68f246fe5a0641c206d1e4bd3ce34":[4,0,0,1,12],
+"codec_8h.html#ga017f9e11e72206d02dc82e06282ec956":[4,0,0,1,45],
+"codec_8h.html#ga03a69f9332eee0e205cf9f11ad3d2249":[4,0,0,1,23],
+"codec_8h.html#ga03bbb354d2ebc461e952a6fe84e25d57":[4,0,0,1,63],
+"codec_8h.html#ga03f3769fafcfe3208db645eb629b536c":[4,0,0,1,74],
+"codec_8h.html#ga03fa959001ad29c5646edcb42caaa12c":[4,0,0,1,71],
+"codec_8h.html#ga07a8fa4a555e213b56a92027bf85c341":[4,0,0,1,81],
+"codec_8h.html#ga0fb37ff2b6220644c70c89d07b04b318":[4,0,0,1,57],
+"codec_8h.html#ga10e83457b188e64e16816f4837fbe2f0":[4,0,0,1,58],
+"codec_8h.html#ga1297b27c461838081be7e5e48915736f":[4,0,0,1,37],
+"codec_8h.html#ga1b62c53f552bbd3a7d6104f370547b28":[4,0,0,1,9],
+"codec_8h.html#ga1b744c779f8f9ba14f27b70795cca5e7":[4,0,0,1,26],
+"codec_8h.html#ga1cfcd86ac89600c6bf4d496594daa6bf":[4,0,0,1,33],
+"codec_8h.html#ga1ef7d014a1fcbfc6f39f363b6825ad2c":[4,0,0,1,68],
+"codec_8h.html#ga1f66aec0b42aeb5b1d9b0281ba5482a4":[4,0,0,1,47],
+"codec_8h.html#ga2063c4861ad5fedc59e2c9eab50fd74f":[4,0,0,1,31],
+"codec_8h.html#ga263f241d7f97826ad223f5568b7eae79":[4,0,0,1,49],
+"codec_8h.html#ga2a546fbd721f3b528190b3298014f134":[4,0,0,1,87],
+"codec_8h.html#ga2d0f06871283cdd3cfa9b978ff9a9ae2":[4,0,0,1,78],
+"codec_8h.html#ga2f35af39742c9ae4c7a14f5c2e8ae346":[4,0,0,1,84],
+"codec_8h.html#ga37a5eec807c913d165ba1de45e685b19":[4,0,0,1,11],
+"codec_8h.html#ga37f4661f13f7ede4db33095298089e60":[4,0,0,1,22],
+"codec_8h.html#ga38fe961771db4952b6281e5b00ecac89":[4,0,0,1,28],
+"codec_8h.html#ga4465b5ea7d3c4f15c1dffa4deda905db":[4,0,0,1,1],
+"codec_8h.html#ga44f6fae3db7765bb79eb29394afa02c7":[4,0,0,1,75],
+"codec_8h.html#ga46683edde8b3118f0a28a17737c392b1":[4,0,0,1,80],
+"codec_8h.html#ga4c77a6e34a96f6f955ce30ce9b92b41c":[4,0,0,1,21],
+"codec_8h.html#ga4df82b8d528399bc524eed5561348cf1":[4,0,0,1,48],
+"codec_8h.html#ga50c7179db92da951c918279c4229ec88":[4,0,0,1,4],
+"codec_8h.html#ga51c11e03a76dce0b1013adfd51ceac4b":[4,0,0,1,41],
+"codec_8h.html#ga52cdd84bd9964c29cb6cd4cad7ef0467":[4,0,0,1,69],
+"codec_8h.html#ga538519513a20a441fddd98214c049fb6":[4,0,0,1,67],
+"codec_8h.html#ga5941073925427acd8a8e3a2c8ffe09f2":[4,0,0,1,27],
+"codec_8h.html#ga5c3a83c1afb9b5425d145d5b5a92fbc4":[4,0,0,1,17],
+"codec_8h.html#ga5d6cf528776e8b6ad6d67caf095986bf":[4,0,0,1,0],
+"codec_8h.html#ga5facc4b4d0559c4a6b334a02fd982628":[4,0,0,1,82],
+"codec_8h.html#ga6082cb1e9b6bc00948f0878717b41270":[4,0,0,1,14],
+"codec_8h.html#ga656b946dfaa0e4bc5e2e54275cb6304d":[4,0,0,1,51],
+"codec_8h.html#ga6a964f2c22a015983793a3323651e0f0":[4,0,0,1,61],
+"codec_8h.html#ga6c81297c987e7ff682882c9a85f625ea":[4,0,0,1,36],
+"codec_8h.html#ga6cdc924144c5963bf370da33cc7b0102":[4,0,0,1,52],
+"codec_8h.html#ga7dac51e4345896a1ac969169237b5c16":[4,0,0,1,62],
+"codec_8h.html#ga833462593fa1366867d399e54e12f95a":[4,0,0,1,39],
+"codec_8h.html#ga8364700ba4736437f596cd15e2d90870":[4,0,0,1,85],
+"codec_8h.html#ga847e4703a17ad4ebc1a8013bd34c1c39":[4,0,0,1,77],
+"codec_8h.html#ga8cee2e1f0d422738f99eb538727f4319":[4,0,0,1,20],
+"codec_8h.html#ga8d79239b695728859bb94937ebdb346e":[4,0,0,1,38],
+"codec_8h.html#ga97266ce50aee4c6e0c8603d68c07a2d4":[4,0,0,1,60],
+"codec_8h.html#ga9839bc1094a1626db6684f9fc9997d81":[4,0,0,1,42],
+"codec_8h.html#ga9bd8fa2e72aee9b7a49a471d0ab891d6":[4,0,0,1,56],
+"codec_8h.html#gaa155cf465bb16a4f77a9b939211f1ef8":[4,0,0,1,50],
+"codec_8h.html#gaac31eb899c93e404926081a2650d7f55":[4,0,0,1,66],
+"codec_8h.html#gaac5e69565602301035f58da8759d90d0":[4,0,0,1,83],
+"codec_8h.html#gaae0ba5dd81812d60060505fbae3fcbdb":[4,0,0,1,16],
+"codec_8h.html#gaaec0e43b868e758310bfb65a3065de35":[4,0,0,1,3],
+"codec_8h.html#gab3a5aea516790f3b87b7a0f2f5374e10":[4,0,0,1,73],
+"codec_8h.html#gab3f128742148492c7e8d509674395752":[4,0,0,1,43],
+"codec_8h.html#gab8e7bedd5273ca39de95b8b8b3864d61":[4,0,0,1,19],
+"codec_8h.html#gab909ae76a8f77b31f3f3ebc4b42b3c53":[4,0,0,1,7],
+"codec_8h.html#gabac9485859d8e7e753cc7d5cca18ad63":[4,0,0,1,24],
+"codec_8h.html#gabc1d7ff29b81c7a6f72f5f8a0466b723":[4,0,0,1,72],
+"codec_8h.html#gabe6b2617d9361332c57fac7c152a3ea6":[4,0,0,1,65],
+"codec_8h.html#gabee4683d01f40d0bf0e75cbf55d13d43":[4,0,0,1,53],

[16/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__transport.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/group__transport.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__transport.html
new file mode 100755
index 000..e893360
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__transport.html
@@ -0,0 +1,1751 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: Transport
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('group__transport.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Modules 
+Macros 
+Typedefs 
+Functions  
+  
+TransportEngine  
+
+
+
+
+Modules
+SASL
+
+SSL
+
+
+
+Macros
+#definePN_TRACE_OFF(0)
+
+#definePN_TRACE_RAW(1)
+
+#definePN_TRACE_FRM(2)
+
+#definePN_TRACE_DRV(4)
+
+#definePN_TRACE_EVT(8)
+
+
+
+Typedefs
+typedef intpn_trace_t
+
+typedef void(*pn_tracer_t 
)(pn_transport_t
 *transport, const char *message)
+
+typedef struct pn_transport_tpn_transport_t
+
+
+
+Functions
+PN_EXTERN pn_transport_t
 *pn_transport
 (void)
+
+PN_EXTERN voidpn_transport_set_server
 (pn_transport_t
 *transport)
+
+PN_EXTERN voidpn_transport_free
 (pn_transport_t
 *transport)
+
+PN_EXTERN const char *pn_transport_get_user
 (pn_transport_t
 *transport)
+
+PN_EXTERN voidpn_transport_require_auth
 (pn_transport_t
 *transport, bool required)
+
+PN_EXTERN boolpn_transport_is_authenticated
 (pn_transport_t
 *transport)
+
+PN_EXTERN voidpn_transport_require_encryption
 (pn_transport_t
 *transport, bool required)
+
+PN_EXTERN boolpn_transport_is_encrypted
 (pn_transport_t
 *transport)
+
+PN_EXTERN pn_condition_t
 *pn_transport_condition
 (pn_transport_t
 *transport)
+
+PN_EXTERN pn_error_t *pn_transport_error
 (pn_transport_t
 *transport)
+
+PN_EXTERN intpn_transport_bind
 (pn_transport_t
 *transport, pn_connection_t
 *connection)
+
+PN_EXTERN intpn_transport_unbind
 (pn_transport_t
 *transport)
+
+PN_EXTERN voidpn_transport_trace
 (pn_transport_t
 *transport, pn_trace_t 
trace)
+
+PN_EXTERN voidpn_transport_set_tracer
 (pn_transport_t
 *transport, pn_tracer_t 
tracer)
+
+PN_EXTERN pn_tracer_tpn_transport_get_tracer
 (pn_transport_t
 *transport)
+
+PN_EXTERN void *pn_transport_get_context
 (pn_transport_t
 *transport)
+
+PN_EXTERN voidpn_transport_set_context
 (pn_transport_t
 *transport, void *context)
+
+PN_EXTERN pn_record_t *pn_transport_attachments
 (pn_transport_t
 *transport)
+
+PN_EXTERN voidpn_transport_log
 (pn_transport_t
 *transport, const char *message)
+
+PN_EXTERN voidpn_transport_vlogf
 (pn_transport_t
 *transport, const char *fmt, va_list ap)
+
+PN_EXTERN voidpn_transport_logf
 (pn_transport_t
 *transport, const char *fmt,...)
+
+PN_EXTERN uint16_tpn_transport_get_channel_max
 (pn_transport_t
 *transport)
+
+PN_EXTERN intpn_transport_set_channel_max
 (pn_transport_t
 *transport, uint16_t channel_max)
+
+PN_EXTERN uint16_tpn_transport_remote_channel_max
 (pn_transport_t
 *transport)
+
+PN_EXTERN uint32_tpn_transport_get_max_frame
 (pn_transport_t
 *transport)
+
+PN_EXTERN voidpn_transport_set_max_frame
 (pn_transport_t
 *transport, uint32_t size)
+
+PN_EXTERN uint32_tpn_transport_get_remote_max_frame
 (pn_transport_t
 *transport)
+
+PN_EXTERN pn_millis_tpn_transport_get_idle_timeout
 (pn_transport_t
 *transport)
+
+PN_EXTERN voidpn_transport_set_idle_timeout
 (pn_transport_t
 *transport, pn_millis_t timeout)
+
+PN_EXTERN pn_millis_tpn_transport_get_remote_idle_timeout
 (pn_transport_t
 *transport)
+
+PN_EXTERN ssize_tpn_transport_input
 (pn_transport_t
 *transport, const char *bytes, size_t available)
+
+PN_EXTERN ssize_tpn_transport_output
 (pn_transport_t
 *transport, char *bytes, size_t size)
+
+PN_EXTERN ssize_tpn_transport_capacity
 (pn_transport_t
 *transport)
+
+PN_EXTERN char *pn_transport_tail
 (pn_transport_t
 *transport)
+
+PN_EXTERN ssize_tpn_transport_push
 (pn_transport_t
 *transport, const char *src, size_t size)
+
+PN_EXTERN intpn_transport_process
 (pn_transport_t
 *transport, size_t size)
+
+PN_EXTERN intpn_transport_close_tail
 (pn_transport_t
 *transport)
+
+PN_EXTERN ssize_tpn_transport_pending
 (pn_transport_t
 *transport)
+
+PN_EXTERN const char *pn_transport_head
 (pn_transport_t
 *transport)
+
+PN_EXTERN ssize_tpn_transport_peek
 (pn_transport_t
 *transport, char *dst, size_t size)
+
+PN_EXTERN 

[12/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/link_8h.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/link_8h.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/link_8h.html
new file mode 100755
index 000..fbe9acc
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/link_8h.html
@@ -0,0 +1,230 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/link.h File Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('link_8h.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Enumerations 
+Functions  
+  
+link.h File Reference  
+
+
+#include 
proton/import_export.h
+#include proton/type_compat.h
+#include proton/condition.h
+#include proton/terminus.h
+#include proton/types.h
+#include proton/object.h
+#include stddef.h
+
+Go to the source code of this file.
+
+
+Enumerations
+enum pn_snd_settle_mode_t
 { PN_SND_UNSETTLED
 = 0, 
+PN_SND_SETTLED
 = 1, 
+PN_SND_MIXED
 = 2
+ }
+
+enum pn_rcv_settle_mode_t
 { PN_RCV_FIRST
 = 0, 
+PN_RCV_SECOND
 = 1
+ }
+
+
+
+Functions
+PN_EXTERN pn_link_t 
*pn_sender (pn_session_t 
*session, const char *name)
+
+PN_EXTERN pn_link_t 
*pn_receiver (pn_session_t 
*session, const char *name)
+
+PN_EXTERN voidpn_link_free (pn_link_t 
*link)
+
+PN_EXTERN void *pn_link_get_context
 (pn_link_t 
*link)
+
+PN_EXTERN voidpn_link_set_context
 (pn_link_t *link, 
void *context)
+
+PN_EXTERN pn_record_t *pn_link_attachments
 (pn_link_t 
*link)
+
+PN_EXTERN const char *pn_link_name (pn_link_t 
*link)
+
+PN_EXTERN boolpn_link_is_sender
 (pn_link_t 
*link)
+
+PN_EXTERN boolpn_link_is_receiver
 (pn_link_t 
*link)
+
+PN_EXTERN pn_state_tpn_link_state 
(pn_link_t 
*link)
+
+PN_EXTERN pn_error_t *pn_link_error 
(pn_link_t 
*link)
+
+PN_EXTERN pn_condition_t
 *pn_link_condition
 (pn_link_t 
*link)
+
+PN_EXTERN pn_condition_t
 *pn_link_remote_condition
 (pn_link_t 
*link)
+
+PN_EXTERN pn_session_t 
*pn_link_session 
(pn_link_t 
*link)
+
+PN_EXTERN pn_link_t 
*pn_link_head (pn_connection_t
 *connection, pn_state_t 
state)
+
+PN_EXTERN pn_link_t 
*pn_link_next (pn_link_t *link, 
pn_state_t 
state)
+
+PN_EXTERN voidpn_link_open (pn_link_t 
*link)
+
+PN_EXTERN voidpn_link_close 
(pn_link_t 
*link)
+
+PN_EXTERN voidpn_link_detach 
(pn_link_t 
*link)
+
+PN_EXTERN pn_terminus_t
 *pn_link_source 
(pn_link_t 
*link)
+
+PN_EXTERN pn_terminus_t
 *pn_link_target 
(pn_link_t 
*link)
+
+PN_EXTERN pn_terminus_t
 *pn_link_remote_source
 (pn_link_t 
*link)
+
+PN_EXTERN pn_terminus_t
 *pn_link_remote_target
 (pn_link_t 
*link)
+
+PN_EXTERN pn_delivery_t
 *pn_link_current 
(pn_link_t 
*link)
+
+PN_EXTERN boolpn_link_advance 
(pn_link_t 
*link)
+
+PN_EXTERN intpn_link_credit 
(pn_link_t 
*link)
+
+PN_EXTERN intpn_link_queued 
(pn_link_t 
*link)
+
+PN_EXTERN intpn_link_remote_credit
 (pn_link_t 
*link)
+
+PN_EXTERN boolpn_link_get_drain
 (pn_link_t 
*link)
+
+PN_EXTERN intpn_link_drained 
(pn_link_t 
*link)
+
+PN_EXTERN intpn_link_available
 (pn_link_t 
*link)
+
+PN_EXTERN pn_snd_settle_mode_tpn_link_snd_settle_mode
 (pn_link_t 
*link)
+
+PN_EXTERN pn_rcv_settle_mode_tpn_link_rcv_settle_mode
 (pn_link_t 
*link)
+
+PN_EXTERN voidpn_link_set_snd_settle_mode
 (pn_link_t *link, 
pn_snd_settle_mode_t
 mode)
+
+PN_EXTERN voidpn_link_set_rcv_settle_mode
 (pn_link_t *link, 
pn_rcv_settle_mode_t
 mode)
+
+PN_EXTERN pn_snd_settle_mode_tpn_link_remote_snd_settle_mode
 (pn_link_t 
*link)
+
+PN_EXTERN pn_rcv_settle_mode_tpn_link_remote_rcv_settle_mode
 (pn_link_t 
*link)
+
+PN_EXTERN intpn_link_unsettled
 (pn_link_t 
*link)
+
+PN_EXTERN pn_delivery_t
 *pn_unsettled_head
 (pn_link_t 
*link)
+
+PN_EXTERN pn_delivery_t
 *pn_unsettled_next
 (pn_delivery_t
 *delivery)
+
+PN_EXTERN voidpn_link_offered
 (pn_link_t 
*sender, int credit)
+
+PN_EXTERN ssize_tpn_link_send 
(pn_link_t 
*sender, const char *bytes, size_t n)
+
+PN_EXTERN voidpn_link_flow 
(pn_link_t 
*receiver, int credit)
+
+PN_EXTERN voidpn_link_drain
 (pn_link_t 
*receiver, int credit)
+
+PN_EXTERN voidpn_link_set_drain
 (pn_link_t 
*receiver, bool drain)
+
+PN_EXTERN ssize_tpn_link_recv 
(pn_link_t 
*receiver, char *bytes, size_t n)
+
+PN_EXTERN boolpn_link_draining
 (pn_link_t 
*receiver)
+
+
+Detailed 
Description
+Link API for the proton Engine. 
+
+
+
+
+  
+protonlink.h
+Generated by
+

[23/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__message.js
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/group__message.js 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__message.js
new file mode 100755
index 000..332e931
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__message.js
@@ -0,0 +1,57 @@
+var group__message =
+[
+[ "PN_DEFAULT_PRIORITY", 
"group__message.html#ga732b155202644a5c5be75a651a3c4fac", null ],
+[ "pn_message_t", 
"group__message.html#gad9259fa9271e8844c8e05a7e8978e3b2", null ],
+[ "pn_message", "group__message.html#ga29b1ebb0e3d0f4663e679eb92b5dfdb9", 
null ],
+[ "pn_message_annotations", 
"group__message.html#gac41af78e905b660a8df54baad6499a2d", null ],
+[ "pn_message_body", 
"group__message.html#gad9c06e0d3ef5f2663fc5d8e2dd465ca3", null ],
+[ "pn_message_clear", 
"group__message.html#gad82108b69076e73f9a413297eb0fe93a", null ],
+[ "pn_message_correlation_id", 
"group__message.html#gaa030d35726172445701c3abd365717b3", null ],
+[ "pn_message_data", 
"group__message.html#ga320d01b638a1780bebec73f4a943778a", null ],
+[ "pn_message_decode", 
"group__message.html#ga8e14c80d737f01e2a54b8198c48910d4", null ],
+[ "pn_message_encode", 
"group__message.html#ga9b9e3322a64a594001f1d97f7cf2affa", null ],
+[ "pn_message_errno", 
"group__message.html#ga98c45926c58fabb1465c59d9aa4056ff", null ],
+[ "pn_message_error", 
"group__message.html#ga87bacde8d1733671663832dbb9fd097c", null ],
+[ "pn_message_free", 
"group__message.html#ga02854827986ba1b0e36d0005674661c4", null ],
+[ "pn_message_get_address", 
"group__message.html#ga8cb345cb31c3a3349688799b6b4f2006", null ],
+[ "pn_message_get_content_encoding", 
"group__message.html#ga9ec4d67e6527397023d119ae81f57c03", null ],
+[ "pn_message_get_content_type", 
"group__message.html#ga8b7dbd80b354c3e1210bd7d223c08d64", null ],
+[ "pn_message_get_correlation_id", 
"group__message.html#ga85500c85e451bb223084a5261be4f107", null ],
+[ "pn_message_get_creation_time", 
"group__message.html#gaaac9bf53b47cbfba119f47ecd08c6bc6", null ],
+[ "pn_message_get_delivery_count", 
"group__message.html#gae6061ca4cd91f35db285ad4e736b4880", null ],
+[ "pn_message_get_expiry_time", 
"group__message.html#gab79cc8c5eb7352d82e8f5bbfbe06234c", null ],
+[ "pn_message_get_group_id", 
"group__message.html#gaac9c32067e50f3279fe17b17a3b0cc7f", null ],
+[ "pn_message_get_group_sequence", 
"group__message.html#ga7820752b1c9d5f88e74d291e48fc1638", null ],
+[ "pn_message_get_id", 
"group__message.html#ga6dc34192b0b265792e80b909733fc446", null ],
+[ "pn_message_get_priority", 
"group__message.html#gaf0df7d607fb85c78ada340df52db745c", null ],
+[ "pn_message_get_reply_to", 
"group__message.html#gafe7577a90ec17ff77af79e1b544557d7", null ],
+[ "pn_message_get_reply_to_group_id", 
"group__message.html#ga165beee02cfa76912ec7eb89e3869135", null ],
+[ "pn_message_get_subject", 
"group__message.html#gaf5a583d0cc1ee1a91d02e3f772a25771", null ],
+[ "pn_message_get_ttl", 
"group__message.html#ga9bc059be1b3f8b48e3e02d03bd0e31cf", null ],
+[ "pn_message_get_user_id", 
"group__message.html#gab420ee7f0d06a3771e27b3bc0d97ded2", null ],
+[ "pn_message_id", 
"group__message.html#gad63613b52062ab477ac9c32f7131cda4", null ],
+[ "pn_message_instructions", 
"group__message.html#gae22d080b9928ac446349117783e5e1e7", null ],
+[ "pn_message_is_durable", 
"group__message.html#ga0639e7686a2fdaabec64e26675fa805a", null ],
+[ "pn_message_is_first_acquirer", 
"group__message.html#ga147807825163b84d9fdd7556fad42608", null ],
+[ "pn_message_is_inferred", 
"group__message.html#ga19e41e8cfac95c2cd0f77a92c4ec85eb", null ],
+[ "pn_message_properties", 
"group__message.html#ga197f2c80f13dbfc5ee5527d387a0beab", null ],
+[ "pn_message_set_address", 
"group__message.html#gadae5d992568a088c561e5ddcdde13705", null ],
+[ "pn_message_set_content_encoding", 
"group__message.html#ga39f2990e3a541fd9371d7dfb3ca82953", null ],
+[ "pn_message_set_content_type", 
"group__message.html#ga8881958619bd06d75c0c6cfffc59ee07", null ],
+[ "pn_message_set_correlation_id", 
"group__message.html#gad8cc824cf918cec1a53816c15527322a", null ],
+[ "pn_message_set_creation_time", 
"group__message.html#ga7f328d0874a181f508b0af9eece5e95d", null ],
+[ "pn_message_set_delivery_count", 
"group__message.html#ga9e29a74bbaf88a38d488df17940f637a", null ],
+[ "pn_message_set_durable", 
"group__message.html#ga29d5812830f4379461472761cd5e056b", null ],
+[ "pn_message_set_expiry_time", 
"group__message.html#gad5044e606189589abafd65890d8824d8", null ],
+[ "pn_message_set_first_acquirer", 
"group__message.html#ga00b7a4b62de07b070191398e1f1cff02", null ],
+[ "pn_message_set_group_id", 

[43/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/codec_8h.js
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/codec_8h.js 
b/content/releases/qpid-proton-0.15.0/proton/c/api/codec_8h.js
new file mode 100755
index 000..d8894c2
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/codec_8h.js
@@ -0,0 +1,118 @@
+var codec_8h =
+[
+[ "pn_data_t", "codec_8h.html#ga5d6cf528776e8b6ad6d67caf095986bf", null ],
+[ "pn_type_t", "codec_8h.html#ga4465b5ea7d3c4f15c1dffa4deda905db", [
+  [ "PN_NULL", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dbaee48efaa3cb0c5b5d16c5b869b7e8fbe",
 null ],
+  [ "PN_BOOL", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba2d6444a931a66258de3c73ad01238ae7",
 null ],
+  [ "PN_UBYTE", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba99223ec8d1ae5d915a1eaa7e8fef0256",
 null ],
+  [ "PN_BYTE", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba32d7a9a461945791cb02902af9ff6592",
 null ],
+  [ "PN_USHORT", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba657a836a5ee74d9468924982ba3a3b41",
 null ],
+  [ "PN_SHORT", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba3dbf1221e02329a7f41b41e597833d97",
 null ],
+  [ "PN_UINT", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dbaa7a251ed9fe5c31f0473976467bfefdd",
 null ],
+  [ "PN_INT", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba175c594857c135ea2a9c3a2d415366ab",
 null ],
+  [ "PN_CHAR", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba905512ea57a64d4e2aecf4877b192124",
 null ],
+  [ "PN_ULONG", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba5f6b5fd2edbedf3f21285b69b8864777",
 null ],
+  [ "PN_LONG", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba7a1b08f15b17b3d820a6fb50e65ffe1c",
 null ],
+  [ "PN_TIMESTAMP", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dbaca241b4fa6cd92fdf26b4460d02a17b1",
 null ],
+  [ "PN_FLOAT", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba9c27cba605584c7d093f26e7270bfaa0",
 null ],
+  [ "PN_DOUBLE", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dbaa1367e8029855849dc4e0d3f027279a5",
 null ],
+  [ "PN_DECIMAL32", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dbae998dd044ac55b959427fc90531b14ca",
 null ],
+  [ "PN_DECIMAL64", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dbacb54239601b8bf4795e34417425b92ae",
 null ],
+  [ "PN_DECIMAL128", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dbae54cf8095578932042be640555855cd4",
 null ],
+  [ "PN_UUID", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba0a6946e5c032bae8d108100e2c56ac13",
 null ],
+  [ "PN_BINARY", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba7dc0fd4874c2b57a8249614d348643e9",
 null ],
+  [ "PN_STRING", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba88421417c7be2caf88c2d243cb73da6b",
 null ],
+  [ "PN_SYMBOL", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dbad5f0929805f481d3ca6089ed172451e9",
 null ],
+  [ "PN_DESCRIBED", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dbaff3c998d4a4a4be01cac89418d07",
 null ],
+  [ "PN_ARRAY", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba2c6f15d0ad9e27f040382ef4a2be807d",
 null ],
+  [ "PN_LIST", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba653d98ae82ff7048973b4c755d2b2804",
 null ],
+  [ "PN_MAP", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba3295ee98cb6c69f50951aea30ffe46dd",
 null ],
+  [ "PN_INVALID", 
"codec_8h.html#gga4465b5ea7d3c4f15c1dffa4deda905dba891d1f2ee5621729cd5a07593042dce6",
 null ]
+] ],
+[ "pn_data", "codec_8h.html#gafcc8aae2df7d12f3d2a9b9d3ddc82494", null ],
+[ "pn_data_append", "codec_8h.html#gaaec0e43b868e758310bfb65a3065de35", 
null ],
+[ "pn_data_appendn", "codec_8h.html#ga50c7179db92da951c918279c4229ec88", 
null ],
+[ "pn_data_clear", "codec_8h.html#gadcd2302af4138df54c4746a63d5d1126", 
null ],
+[ "pn_data_copy", "codec_8h.html#gae667fd79f80ce37dde639d3a0cfd38f9", null 
],
+[ "pn_data_decode", "codec_8h.html#gab909ae76a8f77b31f3f3ebc4b42b3c53", 
null ],
+[ "pn_data_dump", "codec_8h.html#gaf2cd71e20873f001af7df46411ea82ec", null 
],
+[ "pn_data_encode", "codec_8h.html#ga1b62c53f552bbd3a7d6104f370547b28", 
null ],
+[ "pn_data_encoded_size", 
"codec_8h.html#gaff5e6d111aaa22b5bb254381bcdd9f79", null ],
+[ "pn_data_enter", "codec_8h.html#ga37a5eec807c913d165ba1de45e685b19", 
null ],
+[ "pn_data_errno", "codec_8h.html#ga00f68f246fe5a0641c206d1e4bd3ce34", 
null ],
+[ "pn_data_error", "codec_8h.html#gac784c15b856ff9f953ec7d22d90fc0fc", 
null ],
+[ "pn_data_exit", "codec_8h.html#ga6082cb1e9b6bc00948f0878717b41270", null 
],
+[ "pn_data_fill", "codec_8h.html#gaf071fc8da4100e8bdde34097fe912f93", null 
],
+[ "pn_data_format", "codec_8h.html#gaae0ba5dd81812d60060505fbae3fcbdb", 
null ],
+

[22/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__messenger.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/group__messenger.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__messenger.html
new file mode 100755
index 000..b0b9720
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__messenger.html
@@ -0,0 +1,2121 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: Messenger
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('group__messenger.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Macros 
+Typedefs 
+Enumerations 
+Functions  
+  
+Messenger  
+
+
+
+
+Macros
+#definePN_CUMULATIVE(0x1)
+
+
+
+Typedefs
+typedef struct pn_messenger_tpn_messenger_t
+
+typedef struct pn_subscription_tpn_subscription_t
+
+typedef int64_tpn_tracker_t
+
+
+
+Enumerations
+enum pn_status_t 
{ 
+PN_STATUS_UNKNOWN
 = 0, 
+PN_STATUS_PENDING
 = 1, 
+PN_STATUS_ACCEPTED
 = 2, 
+PN_STATUS_REJECTED
 = 3, 
+
+PN_STATUS_RELEASED
 = 4, 
+PN_STATUS_MODIFIED
 = 5, 
+PN_STATUS_ABORTED
 = 6, 
+PN_STATUS_SETTLED
 = 7
+
+ }
+
+
+
+Functions
+PN_EXTERN pn_messenger_t
 *pn_messenger
 (const char *name)
+
+PN_EXTERN const char *pn_messenger_name
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_set_certificate
 (pn_messenger_t
 *messenger, const char *certificate)
+
+PN_EXTERN const char *pn_messenger_get_certificate
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_set_private_key
 (pn_messenger_t
 *messenger, const char *private_key)
+
+PN_EXTERN const char *pn_messenger_get_private_key
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_set_password
 (pn_messenger_t
 *messenger, const char *password)
+
+PN_EXTERN const char *pn_messenger_get_password
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_set_trusted_certificates
 (pn_messenger_t
 *messenger, const char *cert_db)
+
+PN_EXTERN const char *pn_messenger_get_trusted_certificates
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_set_timeout
 (pn_messenger_t
 *messenger, int timeout)
+
+PN_EXTERN intpn_messenger_get_timeout
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN boolpn_messenger_is_blocking
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_set_blocking
 (pn_messenger_t
 *messenger, bool blocking)
+
+PN_EXTERN boolpn_messenger_is_passive
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_set_passive
 (pn_messenger_t
 *messenger, bool passive)
+
+PN_EXTERN voidpn_messenger_free
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_errno
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN pn_error_t *pn_messenger_error
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_get_outgoing_window
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_set_outgoing_window
 (pn_messenger_t
 *messenger, int window)
+
+PN_EXTERN intpn_messenger_get_incoming_window
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_set_incoming_window
 (pn_messenger_t
 *messenger, int window)
+
+PN_EXTERN intpn_messenger_start
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN intpn_messenger_stop
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN boolpn_messenger_stopped
 (pn_messenger_t
 *messenger)
+
+PN_EXTERN pn_subscription_t
 *pn_messenger_subscribe
 (pn_messenger_t
 *messenger, const char *source)
+
+PN_EXTERN pn_subscription_t
 *pn_messenger_subscribe_ttl
 (pn_messenger_t
 *messenger, const char *source, pn_seconds_t timeout)
+
+PN_EXTERN pn_link_t 
*pn_messenger_get_link
 (pn_messenger_t
 *messenger, const char *address, bool sender)
+
+PN_EXTERN void *pn_subscription_get_context
 (pn_subscription_t
 *sub)
+
+PN_EXTERN voidpn_subscription_set_context
 (pn_subscription_t
 *sub, void *context)
+
+PN_EXTERN const char *pn_subscription_address
 (pn_subscription_t
 *sub)
+
+PN_EXTERN intpn_messenger_put
 (pn_messenger_t
 *messenger, pn_message_t 
*msg)
+
+PN_EXTERN pn_status_tpn_messenger_status
 (pn_messenger_t
 *messenger, pn_tracker_t
 tracker)
+
+PN_EXTERN pn_delivery_t
 *pn_messenger_delivery
 (pn_messenger_t
 *messenger, pn_tracker_t
 tracker)
+
+PN_EXTERN boolpn_messenger_buffered
 (pn_messenger_t
 *messenger, pn_tracker_t
 tracker)
+
+PN_EXTERN intpn_messenger_settle
 (pn_messenger_t
 *messenger, pn_tracker_t
 tracker, int flags)
+
+PN_EXTERN 

[45/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/messenger/ruby/examples/index.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/messenger/ruby/examples/index.html 
b/content/releases/qpid-proton-0.15.0/messenger/ruby/examples/index.html
new file mode 100644
index 000..298e92b
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/messenger/ruby/examples/index.html
@@ -0,0 +1,161 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en">
+  
+Ruby AMQP Messenger Examples - Apache Qpid
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid Proton 
0.15.0Ruby AMQP Messenger Examples
+
+
+  Ruby AMQP Messenger 
Examples
+
+Example files
+
+
+client.rb
+mailserver.rb
+nonblocking_recv.rb
+recv.rb
+send.rb
+
+
+More information
+
+
+https://github.com/apache/qpid-proton/tree/0.15.0/examples/ruby/messenger;>Source
 location
+
+
+
+  
+
+  
+http://www.apache.org/;>Apache
+http://www.apache.org/licenses/;>License
+http://www.apache.org/foundation/sponsorship.html;>Sponsorship
+http://www.apache.org/foundation/thanks.html;>Thanks!
+Security
+http://www.apache.org/;>
+  
+
+  
+Apache Qpid, Messaging built on AMQP; Copyright  2015
+The Apache Software Foundation; Licensed under
+the http://www.apache.org/licenses/LICENSE-2.0;>Apache
+License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
+Proton, Apache, the Apache feather logo, and the Apache Qpid
+project logo are trademarks of The Apache Software
+Foundation; All other marks mentioned may be trademarks or
+registered trademarks of their respective owners
+  
+
+  
+
+  
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/messenger/ruby/examples/mailserver.rb
--
diff --git 
a/content/releases/qpid-proton-0.15.0/messenger/ruby/examples/mailserver.rb 
b/content/releases/qpid-proton-0.15.0/messenger/ruby/examples/mailserver.rb
new file mode 100755
index 000..594a0e3
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/messenger/ruby/examples/mailserver.rb
@@ -0,0 +1,84 @@
+#!/usr/bin/env ruby
+#
+# 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.
+#
+
+require 'qpid_proton'
+require 'optparse'
+
+FAILED = 0
+CONNECTION_UP  = 1
+AUTHENTICATING = 2
+
+$options  = {
+  :verbose => false,
+  :address => ["amqp://~0.0.0.0"],
+}
+
+OptionParser.new do |opts|
+  opts.banner = "Usage: mailserver [options]  ... "
+
+  opts.on("-v", "--verbose", :NONE,
+  "Print status messages to stdout") do 

[11/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/log_8h_source.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/log_8h_source.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/log_8h_source.html
new file mode 100755
index 000..666d907
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/log_8h_source.html
@@ -0,0 +1,145 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/log.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('log_8h_source.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+log.h  
+
+
+Go to the documentation of this file.   
 1#ifndef LOG_H
+
2#define LOG_H
+
3/*
+
4 * Licensed to the Apache Software 
Foundation (ASF) under one
+
5 * or more contributor license agreements.  
See the NOTICE file
+
6 * distributed with this work for 
additional information
+
7 * regarding copyright ownership.  The ASF 
licenses this file
+
8 * to you under the Apache License, Version 
2.0 (the
+
9 * License); you may not use 
this file except in compliance
+   
10 * with the License.  You may obtain a 
copy of the License at
+   
11 *
+   
12 *   
http://www.apache.org/licenses/LICENSE-2.0
+   
13 *
+   
14 * Unless required by applicable law or 
agreed to in writing,
+   
15 * software distributed under the License 
is distributed on an
+   
16 * AS IS BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
17 * KIND, either express or implied.  See 
the License for the
+   
18 * specific language governing permissions 
and limitations
+   
19 * under the License.
+   
20 */
+   
21
+   
22#include 
proton/import_export.h
+   
23#include 
proton/type_compat.h
+   
24
+   
25#ifdef __cplusplus
+   
26extern C 
{
+   
27#endif
+   
28
+   
36typedef void (*pn_logger_t)(const char 
*message);
+   
37
+   
43PN_EXTERN void pn_log_enable(bool enabled);
+   
44
+   
52PN_EXTERN void pn_log_logger(pn_logger_t 
logger);
+   
53
+   
54#ifdef __cplusplus
+   
55}
+   
56#endif
+   
57
+   
58#endif
+
+
+
+
+  
+protonlog.h
+Generated by
+http://www.doxygen.org/index.html;>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/message_8h.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/message_8h.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/message_8h.html
new file mode 100755
index 000..f965208
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/message_8h.html
@@ -0,0 +1,237 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/message.h File Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('message_8h.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Macros 
+Typedefs 
+Functions  
+  
+message.h File Reference  
+
+
+#include 
proton/import_export.h
+#include proton/types.h
+#include proton/codec.h
+#include proton/error.h
+#include proton/type_compat.h
+
+Go to the source code of this file.
+
+
+Macros
+#definePN_DEFAULT_PRIORITY(4)
+
+
+
+Typedefs
+typedef struct pn_message_tpn_message_t
+
+
+
+Functions
+PN_EXTERN pn_message_t 
*pn_message 
(void)
+
+PN_EXTERN voidpn_message_free
 (pn_message_t 
*msg)
+
+PN_EXTERN voidpn_message_clear
 (pn_message_t 
*msg)
+
+PN_EXTERN intpn_message_errno
 (pn_message_t 
*msg)
+
+PN_EXTERN pn_error_t *pn_message_error
 (pn_message_t 
*msg)
+
+PN_EXTERN boolpn_message_is_inferred
 (pn_message_t 
*msg)
+
+PN_EXTERN intpn_message_set_inferred
 (pn_message_t 
*msg, bool inferred)
+
+PN_EXTERN boolpn_message_is_durable
 (pn_message_t 
*msg)
+
+PN_EXTERN intpn_message_set_durable
 

[17/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__terminus.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/group__terminus.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__terminus.html
new file mode 100755
index 000..e9cc529
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__terminus.html
@@ -0,0 +1,853 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: Terminus
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('group__terminus.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Typedefs 
+Enumerations 
+Functions  
+  
+TerminusLink  
+
+
+
+
+Typedefs
+typedef struct pn_terminus_tpn_terminus_t
+
+
+
+Enumerations
+enum pn_terminus_type_t
 { PN_UNSPECIFIED
 = 0, 
+PN_SOURCE
 = 1, 
+PN_TARGET
 = 2, 
+PN_COORDINATOR
 = 3
+ }
+
+enum pn_durability_t
 { PN_NONDURABLE
 = 0, 
+PN_CONFIGURATION
 = 1, 
+PN_DELIVERIES
 = 2
+ }
+
+enum pn_expiry_policy_t
 { PN_EXPIRE_WITH_LINK,
 
+PN_EXPIRE_WITH_SESSION,
 
+PN_EXPIRE_WITH_CONNECTION,
 
+PN_EXPIRE_NEVER
+ }
+
+enum pn_distribution_mode_t
 { PN_DIST_MODE_UNSPECIFIED
 = 0, 
+PN_DIST_MODE_COPY
 = 1, 
+PN_DIST_MODE_MOVE
 = 2
+ }
+
+
+
+Functions
+PN_EXTERN pn_terminus_type_tpn_terminus_get_type
 (pn_terminus_t
 *terminus)
+
+PN_EXTERN intpn_terminus_set_type
 (pn_terminus_t
 *terminus, pn_terminus_type_t
 type)
+
+PN_EXTERN const char *pn_terminus_get_address
 (pn_terminus_t
 *terminus)
+
+PN_EXTERN intpn_terminus_set_address
 (pn_terminus_t
 *terminus, const char *address)
+
+PN_EXTERN pn_distribution_mode_tpn_terminus_get_distribution_mode
 (const pn_terminus_t
 *terminus)
+
+PN_EXTERN intpn_terminus_set_distribution_mode
 (pn_terminus_t
 *terminus, pn_distribution_mode_t
 mode)
+
+PN_EXTERN pn_durability_tpn_terminus_get_durability
 (pn_terminus_t
 *terminus)
+
+PN_EXTERN intpn_terminus_set_durability
 (pn_terminus_t
 *terminus, pn_durability_t
 durability)
+
+PN_EXTERN pn_expiry_policy_tpn_terminus_get_expiry_policy
 (pn_terminus_t
 *terminus)
+
+PN_EXTERN intpn_terminus_set_expiry_policy
 (pn_terminus_t
 *terminus, pn_expiry_policy_t
 policy)
+
+PN_EXTERN pn_seconds_tpn_terminus_get_timeout
 (pn_terminus_t
 *terminus)
+
+PN_EXTERN intpn_terminus_set_timeout
 (pn_terminus_t
 *terminus, pn_seconds_t timeout)
+
+PN_EXTERN boolpn_terminus_is_dynamic
 (pn_terminus_t
 *terminus)
+
+PN_EXTERN intpn_terminus_set_dynamic
 (pn_terminus_t
 *terminus, bool dynamic)
+
+PN_EXTERN pn_data_t 
*pn_terminus_properties
 (pn_terminus_t
 *terminus)
+
+PN_EXTERN pn_data_t 
*pn_terminus_capabilities
 (pn_terminus_t
 *terminus)
+
+PN_EXTERN pn_data_t 
*pn_terminus_outcomes
 (pn_terminus_t
 *terminus)
+
+PN_EXTERN pn_data_t 
*pn_terminus_filter
 (pn_terminus_t
 *terminus)
+
+PN_EXTERN intpn_terminus_copy
 (pn_terminus_t
 *terminus, pn_terminus_t
 *src)
+
+
+Detailed 
Description
+Typedef Documentation
+
+
+
+  
+
+  typedef struct pn_terminus_t
 pn_terminus_t
+
+  
+
+Encapsulates the endpoint state associated with an AMQP Terminus.
+An AMQP Terminus acts as either a source or target for messages, but never 
both. Every AMQP link is associated with both a source terminus and a target 
terminus that is negotiated during link establishment. A terminus consists of 
an AMQP address, along with a number of other properties defining the quality 
of service and behaviour of the link. 
+
+
+
+Enumeration Type Documentation
+
+
+
+  
+
+  enum pn_distribution_mode_t
+
+  
+
+Distribution mode of an AMQP terminus.
+The distribution mode of a source terminus defines the behaviour when 
multiple receiving links provide addresses that resolve to the same node. 
+
+EnumeratorPN_DIST_MODE_UNSPECIFIED
+the behaviour is defined by the node 
+
+PN_DIST_MODE_COPY
+the receiver gets all messages 
+
+PN_DIST_MODE_MOVE
+the receiver competes for messages 
+
+
+
+
+
+
+
+
+  
+
+  enum pn_durability_t
+
+  
+
+Durability mode of an AMQP terminus.
+An AMQP terminus may provide durable storage for its state, thereby 
permitting link recovery in the event of endpoint failures. This durability may 
be applied to the configuration of the terminus only, or to all delivery state 
as well. 
+
+EnumeratorPN_NONDURABLE
+indicates a non durable terminus 
+

[29/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__data.js
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/group__data.js 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__data.js
new file mode 100755
index 000..570e7cc
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__data.js
@@ -0,0 +1,135 @@
+var group__data =
+[
+[ "pn_atom_t", "structpn__atom__t.html", [
+  [ "as_bool", "structpn__atom__t.html#a6ab6bf03fb481b7ef08f78cb3cf6d466", 
null ],
+  [ "as_byte", "structpn__atom__t.html#a06e1dfa93e6c48e7beab59f7346e2358", 
null ],
+  [ "as_bytes", 
"structpn__atom__t.html#a87314a2ae1273b1112ef22f2b59336a6", null ],
+  [ "as_char", "structpn__atom__t.html#a33b293e97893a8299b8f243db0e629c2", 
null ],
+  [ "as_decimal128", 
"structpn__atom__t.html#a955beb69514c435365e2f0c48882a253", null ],
+  [ "as_decimal32", 
"structpn__atom__t.html#a9ff8357941553ab704dc86c72ced9a1a", null ],
+  [ "as_decimal64", 
"structpn__atom__t.html#a33b5f9e1ec31acc068e92bfcd9f3b763", null ],
+  [ "as_double", 
"structpn__atom__t.html#af6a8ae4a38016fe5d0901c9fbcb3f3d6", null ],
+  [ "as_float", 
"structpn__atom__t.html#acb80d523296b4e648a25960716e543dd", null ],
+  [ "as_int", "structpn__atom__t.html#a16aa788b03544d02be1349bc5e35e4bc", 
null ],
+  [ "as_long", "structpn__atom__t.html#aa4082a13e524808d733a9d1493dcade4", 
null ],
+  [ "as_short", 
"structpn__atom__t.html#aac6b93b1db482325b67c1ec404facda9", null ],
+  [ "as_timestamp", 
"structpn__atom__t.html#a60700b2633fc5c7289af4892883e0860", null ],
+  [ "as_ubyte", 
"structpn__atom__t.html#a4d3c1fda7c47d8cdcc918d0fe94ec11e", null ],
+  [ "as_uint", "structpn__atom__t.html#ab0443c2e37e3d1af47928a3c810bcd07", 
null ],
+  [ "as_ulong", 
"structpn__atom__t.html#aa754243590728e977707720bd95df84f", null ],
+  [ "as_ushort", 
"structpn__atom__t.html#ad1a4b7e07e68791b54524fd985cf50b6", null ],
+  [ "as_uuid", "structpn__atom__t.html#a0bf487fd395f231d75f09f9e3af707ee", 
null ],
+  [ "type", "structpn__atom__t.html#a838b1e92993d7d40b2b0a8702effcf9d", 
null ],
+  [ "u", "structpn__atom__t.html#a75338f13f7c6587b416c2f0f80044a03", null ]
+] ],
+[ "pn_data_t", "group__data.html#ga5d6cf528776e8b6ad6d67caf095986bf", null 
],
+[ "pn_type_t", "group__data.html#ga4465b5ea7d3c4f15c1dffa4deda905db", [
+  [ "PN_NULL", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dbaee48efaa3cb0c5b5d16c5b869b7e8fbe",
 null ],
+  [ "PN_BOOL", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba2d6444a931a66258de3c73ad01238ae7",
 null ],
+  [ "PN_UBYTE", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba99223ec8d1ae5d915a1eaa7e8fef0256",
 null ],
+  [ "PN_BYTE", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba32d7a9a461945791cb02902af9ff6592",
 null ],
+  [ "PN_USHORT", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba657a836a5ee74d9468924982ba3a3b41",
 null ],
+  [ "PN_SHORT", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba3dbf1221e02329a7f41b41e597833d97",
 null ],
+  [ "PN_UINT", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dbaa7a251ed9fe5c31f0473976467bfefdd",
 null ],
+  [ "PN_INT", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba175c594857c135ea2a9c3a2d415366ab",
 null ],
+  [ "PN_CHAR", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba905512ea57a64d4e2aecf4877b192124",
 null ],
+  [ "PN_ULONG", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba5f6b5fd2edbedf3f21285b69b8864777",
 null ],
+  [ "PN_LONG", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba7a1b08f15b17b3d820a6fb50e65ffe1c",
 null ],
+  [ "PN_TIMESTAMP", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dbaca241b4fa6cd92fdf26b4460d02a17b1",
 null ],
+  [ "PN_FLOAT", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba9c27cba605584c7d093f26e7270bfaa0",
 null ],
+  [ "PN_DOUBLE", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dbaa1367e8029855849dc4e0d3f027279a5",
 null ],
+  [ "PN_DECIMAL32", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dbae998dd044ac55b959427fc90531b14ca",
 null ],
+  [ "PN_DECIMAL64", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dbacb54239601b8bf4795e34417425b92ae",
 null ],
+  [ "PN_DECIMAL128", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dbae54cf8095578932042be640555855cd4",
 null ],
+  [ "PN_UUID", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba0a6946e5c032bae8d108100e2c56ac13",
 null ],
+  [ "PN_BINARY", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba7dc0fd4874c2b57a8249614d348643e9",
 null ],
+  [ "PN_STRING", 
"group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba88421417c7be2caf88c2d243cb73da6b",
 null ],
+  [ "PN_SYMBOL", 

[25/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__link.js
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/group__link.js 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__link.js
new file mode 100755
index 000..380155e
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__link.js
@@ -0,0 +1,56 @@
+var group__link =
+[
+[ "Sender", "group__sender.html", "group__sender" ],
+[ "Receiver", "group__receiver.html", "group__receiver" ],
+[ "Terminus", "group__terminus.html", "group__terminus" ],
+[ "pn_link_t", "group__link.html#ga89dad3aa7934329a7ff467c636687bc0", null 
],
+[ "pn_rcv_settle_mode_t", 
"group__link.html#gad1c2388cdae687be26222a5d66fd2d58", [
+  [ "PN_RCV_FIRST", 
"group__link.html#ggad1c2388cdae687be26222a5d66fd2d58ac22b82396bd686940dfcc861302a8262",
 null ],
+  [ "PN_RCV_SECOND", 
"group__link.html#ggad1c2388cdae687be26222a5d66fd2d58ac79dc7f63fce078a8f0fe268c81dcaf3",
 null ]
+] ],
+[ "pn_snd_settle_mode_t", 
"group__link.html#ga3fb58bd0b88d37407ebb615c2630e608", [
+  [ "PN_SND_UNSETTLED", 
"group__link.html#gga3fb58bd0b88d37407ebb615c2630e608a8bd9806d2f8d8c1724ed26bb0543bade",
 null ],
+  [ "PN_SND_SETTLED", 
"group__link.html#gga3fb58bd0b88d37407ebb615c2630e608ac159f0edca565961b554768a42e82bf0",
 null ],
+  [ "PN_SND_MIXED", 
"group__link.html#gga3fb58bd0b88d37407ebb615c2630e608ac33a5700d0247976b465aeb7c1437fd1",
 null ]
+] ],
+[ "pn_link_advance", 
"group__link.html#gaea1f1ff885604e194ecfbae8c43e91d7", null ],
+[ "pn_link_attachments", 
"group__link.html#ga51ace30d440f3f6a1c7b022a17c14738", null ],
+[ "pn_link_available", 
"group__link.html#gae87b35d45c495a640c04376175696403", null ],
+[ "pn_link_close", "group__link.html#gad9d63c2255cae6c913cb980f8812ace0", 
null ],
+[ "pn_link_condition", 
"group__link.html#ga3d9321a1831d214e079152b7a8030cf1", null ],
+[ "pn_link_credit", "group__link.html#gae106eccd62d41a1b6125bc471315066d", 
null ],
+[ "pn_link_current", 
"group__link.html#ga662d2bf8a9a447cf1a69f4ec7d72a6ac", null ],
+[ "pn_link_detach", "group__link.html#ga82df1bbe52ddbc75c7b7403489d4652f", 
null ],
+[ "pn_link_drained", 
"group__link.html#ga72edd3ec60adb06f7af3f53580dfcebc", null ],
+[ "pn_link_error", "group__link.html#ga72d4d05cc2a29cc1a3c96cd984c2a4b6", 
null ],
+[ "pn_link_free", "group__link.html#gaa28fac1437012b534873b6e255bcb494", 
null ],
+[ "pn_link_get_context", 
"group__link.html#ga1bca6c08ba0179233dc76cb3834cbe4e", null ],
+[ "pn_link_get_drain", 
"group__link.html#ga412100bbe765f6fa0313257b6f24a1b8", null ],
+[ "pn_link_head", "group__link.html#gacd5a06ca5daa5d4910d795d7157ebfde", 
null ],
+[ "pn_link_is_receiver", 
"group__link.html#gac02f18d19fa8da9fef840e52be41cf68", null ],
+[ "pn_link_is_sender", 
"group__link.html#gacb14567cf4afa5a3d2ec774cd66ec9fe", null ],
+[ "pn_link_name", "group__link.html#ga3d284db80651c3183a60f706325f2266", 
null ],
+[ "pn_link_next", "group__link.html#ga07d0254efd3df298246a043f5323d540", 
null ],
+[ "pn_link_open", "group__link.html#gab9a73ca4ac5383a71ddf54cbcb748083", 
null ],
+[ "pn_link_queued", "group__link.html#gab5a35ccbd14c04285845a6d7b40f44df", 
null ],
+[ "pn_link_rcv_settle_mode", 
"group__link.html#ga8aec1bf839d167e81037595a86c8751a", null ],
+[ "pn_link_remote_condition", 
"group__link.html#gabac87dd5667123557a0e73a45ad13349", null ],
+[ "pn_link_remote_credit", 
"group__link.html#ga1c9b1a283a88199a2dc56af8ab150760", null ],
+[ "pn_link_remote_rcv_settle_mode", 
"group__link.html#ga13d85968d1ced071196379c9cbd108b1", null ],
+[ "pn_link_remote_snd_settle_mode", 
"group__link.html#ga03991c2d516e68c0eba2a2eb910bb9f5", null ],
+[ "pn_link_remote_source", 
"group__link.html#ga6955876604a5982a969cf3e44bc3b045", null ],
+[ "pn_link_remote_target", 
"group__link.html#gad9c24558b723dc4877abad8bacd5a17a", null ],
+[ "pn_link_session", 
"group__link.html#ga9417ad2f784646ae23318782411e422a", null ],
+[ "pn_link_set_context", 
"group__link.html#ga0be02619b09c3b7b38fe50318466792e", null ],
+[ "pn_link_set_rcv_settle_mode", 
"group__link.html#gaff06cd4918c76523e1893dc1341ebc48", null ],
+[ "pn_link_set_snd_settle_mode", 
"group__link.html#ga410b0f045ee235b93a7fa1439af50d2c", null ],
+[ "pn_link_snd_settle_mode", 
"group__link.html#ga44b6238638d71356b00f3129e0b28182", null ],
+[ "pn_link_source", "group__link.html#ga8a8002b94c660f1fd1cbb3e932bd52f0", 
null ],
+[ "pn_link_state", "group__link.html#gaef39c0b3b65fca7d9b227ef38a345394", 
null ],
+[ "pn_link_target", "group__link.html#ga44c7bdc0a9179d9cdd96c3153e4da36c", 
null ],
+[ "pn_link_unsettled", 
"group__link.html#ga77f816f63c744283b2fd62e6f8abef07", null ],
+[ "pn_receiver", 

[02/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/search/all_70.js
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/search/all_70.js 
b/content/releases/qpid-proton-0.15.0/proton/c/api/search/all_70.js
new file mode 100755
index 000..e1f89cc
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/search/all_70.js
@@ -0,0 +1,668 @@
+var searchData=
+[
+  
['pn_5faccepted',['PN_ACCEPTED',['../group__disposition.html#gac64952b813a707586c6b3898e09552e4',1,'disposition.h']]],
+  
['pn_5farray',['PN_ARRAY',['../group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba2c6f15d0ad9e27f040382ef4a2be807d',1,'codec.h']]],
+  ['pn_5fatom_5ft',['pn_atom_t',['../structpn__atom__t.html',1,'']]],
+  
['pn_5fbinary',['PN_BINARY',['../group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba7dc0fd4874c2b57a8249614d348643e9',1,'codec.h']]],
+  
['pn_5fbool',['PN_BOOL',['../group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba2d6444a931a66258de3c73ad01238ae7',1,'codec.h']]],
+  
['pn_5fbyte',['PN_BYTE',['../group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba32d7a9a461945791cb02902af9ff6592',1,'codec.h']]],
+  
['pn_5fbytes_5ft',['pn_bytes_t',['../structpn__bytes__t.html',1,'pn_bytes_t'],['../group__primitives.html#ga26974f59df66946e2fe1f7e0ef5e9748',1,'pn_bytes_t():types.h']]],
+  
['pn_5fchar',['PN_CHAR',['../group__data.html#gga4465b5ea7d3c4f15c1dffa4deda905dba905512ea57a64d4e2aecf4877b192124',1,'codec.h']]],
+  ['pn_5fclass_5ft',['pn_class_t',['../structpn__class__t.html',1,'']]],
+  
['pn_5fcollector',['pn_collector',['../group__event.html#gaa880eb8a610de74e5d34bc0a4c239ada',1,'event.h']]],
+  
['pn_5fcollector_5ffree',['pn_collector_free',['../group__event.html#gaff9695d4c47feea83a5762cec75d6ccf',1,'event.h']]],
+  
['pn_5fcollector_5fmore',['pn_collector_more',['../group__event.html#ga5ca84a1786d2707cfcfe821bdcf19d15',1,'event.h']]],
+  
['pn_5fcollector_5fpeek',['pn_collector_peek',['../group__event.html#ga93fe9a4d042d37ade5cd00b3cc1cb59f',1,'event.h']]],
+  
['pn_5fcollector_5fpop',['pn_collector_pop',['../group__event.html#gaa555f47b96943d506be173d3bfbb0e2f',1,'event.h']]],
+  
['pn_5fcollector_5fput',['pn_collector_put',['../group__event.html#gafa2f79fd9dd3cd78fb8edef78a70048c',1,'event.h']]],
+  
['pn_5fcollector_5frelease',['pn_collector_release',['../group__event.html#gad1f005d4eae73f8d81e2df08da151f53',1,'event.h']]],
+  
['pn_5fcollector_5ft',['pn_collector_t',['../group__event.html#ga905cdecedb8020bc28e648e43348b5d1',1,'types.h']]],
+  
['pn_5fcondition_5fclear',['pn_condition_clear',['../group__condition.html#ga038f092914fc0fd8ae3713a537e34a05',1,'condition.h']]],
+  
['pn_5fcondition_5fformat',['pn_condition_format',['../group__condition.html#ga1fcf90bc3cbf8463351a50d8aaf6f8b3',1,'condition.h']]],
+  
['pn_5fcondition_5fget_5fdescription',['pn_condition_get_description',['../group__condition.html#ga4cb8ef00e5050a0dfa022a89e44724e1',1,'condition.h']]],
+  
['pn_5fcondition_5fget_5fname',['pn_condition_get_name',['../group__condition.html#ga8bb1e8261bb4c49b20e09d4015d3f8f1',1,'condition.h']]],
+  
['pn_5fcondition_5finfo',['pn_condition_info',['../group__condition.html#ga6ce699cd410d7cef3de1ee97e975720a',1,'condition.h']]],
+  
['pn_5fcondition_5fis_5fredirect',['pn_condition_is_redirect',['../group__condition.html#gaaab127d4d71648f675858e9a250f73b3',1,'condition.h']]],
+  
['pn_5fcondition_5fis_5fset',['pn_condition_is_set',['../group__condition.html#ga42e27e6830b6e29c1a3c769516cd706e',1,'condition.h']]],
+  
['pn_5fcondition_5fredirect_5fhost',['pn_condition_redirect_host',['../group__condition.html#ga6a226262df61311f33a6d5075b15ce41',1,'condition.h']]],
+  
['pn_5fcondition_5fredirect_5fport',['pn_condition_redirect_port',['../group__condition.html#ga09cf10e3bb03d63a12b8d7bb91bc810f',1,'condition.h']]],
+  
['pn_5fcondition_5fset_5fdescription',['pn_condition_set_description',['../group__condition.html#gac20f81e06aa0efb5f5a23b141b36be7b',1,'condition.h']]],
+  
['pn_5fcondition_5fset_5fname',['pn_condition_set_name',['../group__condition.html#ga2ae7b345d3dc1417766e23bf8435cf29',1,'condition.h']]],
+  
['pn_5fcondition_5ft',['pn_condition_t',['../group__condition.html#ga11eb7db7d2c205169fe3d47c996a95a5',1,'condition.h']]],
+  
['pn_5fcondition_5fvformat',['pn_condition_vformat',['../group__condition.html#ga7512764aec8ea62dec4749aae44478a4',1,'condition.h']]],
+  
['pn_5fconfiguration',['PN_CONFIGURATION',['../group__terminus.html#gga213267363be45848f3299471ea93089ba95b1d5b60c47569e0358258305de1d58',1,'terminus.h']]],
+  
['pn_5fconnection',['pn_connection',['../group__connection.html#ga7ad02932efd7fd54938813852f7b61dc',1,'connection.h']]],
+  
['pn_5fconnection_5fattachments',['pn_connection_attachments',['../group__connection.html#ga8510314b8226658d14ee20253bde5853',1,'connection.h']]],
+  

[19/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__session.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/group__session.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__session.html
new file mode 100755
index 000..b91325d
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__session.html
@@ -0,0 +1,720 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: Session
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('group__session.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Typedefs 
+Functions  
+  
+SessionEngine  
+
+
+
+
+Typedefs
+typedef struct pn_session_tpn_session_t
+
+
+
+Functions
+PN_EXTERN pn_session_t 
*pn_session 
(pn_connection_t
 *connection)
+
+PN_EXTERN voidpn_session_free
 (pn_session_t 
*session)
+
+PN_EXTERN void *pn_session_get_context
 (pn_session_t 
*session)
+
+PN_EXTERN voidpn_session_set_context
 (pn_session_t 
*session, void *context)
+
+PN_EXTERN pn_record_t *pn_session_attachments
 (pn_session_t 
*session)
+
+PN_EXTERN pn_state_tpn_session_state
 (pn_session_t 
*session)
+
+PN_EXTERN pn_error_t *pn_session_error
 (pn_session_t 
*session)
+
+PN_EXTERN pn_condition_t
 *pn_session_condition
 (pn_session_t 
*session)
+
+PN_EXTERN pn_condition_t
 *pn_session_remote_condition
 (pn_session_t 
*session)
+
+PN_EXTERN pn_connection_t
 *pn_session_connection
 (pn_session_t 
*session)
+
+PN_EXTERN voidpn_session_open
 (pn_session_t 
*session)
+
+PN_EXTERN voidpn_session_close
 (pn_session_t 
*session)
+
+PN_EXTERN size_tpn_session_get_incoming_capacity
 (pn_session_t 
*session)
+
+PN_EXTERN voidpn_session_set_incoming_capacity
 (pn_session_t 
*session, size_t capacity)
+
+PN_EXTERN size_tpn_session_get_outgoing_window
 (pn_session_t 
*session)
+
+PN_EXTERN voidpn_session_set_outgoing_window
 (pn_session_t 
*session, size_t window)
+
+PN_EXTERN size_tpn_session_outgoing_bytes
 (pn_session_t 
*session)
+
+PN_EXTERN size_tpn_session_incoming_bytes
 (pn_session_t 
*session)
+
+PN_EXTERN pn_session_t 
*pn_session_head
 (pn_connection_t
 *connection, pn_state_t 
state)
+
+PN_EXTERN pn_session_t 
*pn_session_next
 (pn_session_t 
*session, pn_state_t 
state)
+
+
+Detailed 
Description
+Typedef Documentation
+
+
+
+  
+
+  typedef struct pn_session_t 
pn_session_t
+
+  
+
+An AMQP Session object.
+A pn_session_t object encapsulates all of the endpoint state associated 
with an AMQP Session. A pn_session_t object contains zero or more pn_link_t 
objects. 
+
+
+
+Function Documentation
+
+
+
+  
+
+  PN_EXTERN pn_session_t* 
pn_session 
+  (
+  pn_connection_t
 *
+  connection)
+  
+
+  
+
+Factory for creating a new session on a given connection object.
+Creates a new session object and adds it to the set of sessions maintained 
by the connection object.
+Parameters
+  
+[in]connectionthe connection object 
+  
+  
+
+Returnsa pointer to the new session 

+
+
+
+
+
+
+  
+
+  PN_EXTERN pn_record_t* pn_session_attachments 

+  (
+  pn_session_t 
*
+  session)
+  
+
+  
+
+Get the attachments that are associated with a session object.
+Parameters
+  
+[in]sessionthe session whose attachments are to be 
returned. 
+  
+  
+
+Returnsthe attachments for the session 
object 
+
+
+
+
+
+
+  
+
+  PN_EXTERN void pn_session_close 
+  (
+  pn_session_t 
*
+  session)
+  
+
+  
+
+Close a session.
+Once this operation has completed, the PN_LOCAL_CLOSED state flag will be 
set. This may be called without calling pn_session_open,
 in this case it is equivalent to calling pn_session_open
 followed by pn_session_close.
+Parameters
+  
+[in]sessiona 
session object 
+  
+  
+
+
+
+
+
+
+
+  
+
+  PN_EXTERN pn_condition_t*
 pn_session_condition 
+  (
+  pn_session_t 
*
+  session)
+  
+
+  
+
+Get the local condition associated with the session endpoint.
+The pn_condition_t
 object retrieved may be modified prior to closing the session in order to 
indicate a particular condition exists when the session closes. This is 
normally used to communicate 

[26/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__link.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/group__link.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__link.html
new file mode 100755
index 000..5c5d3e3
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__link.html
@@ -0,0 +1,1350 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: Link
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('group__link.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Modules 
+Typedefs 
+Enumerations 
+Functions  
+  
+LinkEngine  
+
+
+
+
+Modules
+Sender
+
+Receiver
+
+Terminus
+
+
+
+Typedefs
+typedef struct pn_link_tpn_link_t
+
+
+
+Enumerations
+enum pn_snd_settle_mode_t
 { PN_SND_UNSETTLED
 = 0, 
+PN_SND_SETTLED
 = 1, 
+PN_SND_MIXED
 = 2
+ }
+
+enum pn_rcv_settle_mode_t
 { PN_RCV_FIRST
 = 0, 
+PN_RCV_SECOND
 = 1
+ }
+
+
+
+Functions
+PN_EXTERN pn_link_t 
*pn_sender (pn_session_t 
*session, const char *name)
+
+PN_EXTERN pn_link_t 
*pn_receiver (pn_session_t 
*session, const char *name)
+
+PN_EXTERN voidpn_link_free (pn_link_t 
*link)
+
+PN_EXTERN void *pn_link_get_context
 (pn_link_t 
*link)
+
+PN_EXTERN voidpn_link_set_context
 (pn_link_t *link, 
void *context)
+
+PN_EXTERN pn_record_t *pn_link_attachments
 (pn_link_t 
*link)
+
+PN_EXTERN const char *pn_link_name (pn_link_t 
*link)
+
+PN_EXTERN boolpn_link_is_sender
 (pn_link_t 
*link)
+
+PN_EXTERN boolpn_link_is_receiver
 (pn_link_t 
*link)
+
+PN_EXTERN pn_state_tpn_link_state 
(pn_link_t 
*link)
+
+PN_EXTERN pn_error_t *pn_link_error 
(pn_link_t 
*link)
+
+PN_EXTERN pn_condition_t
 *pn_link_condition
 (pn_link_t 
*link)
+
+PN_EXTERN pn_condition_t
 *pn_link_remote_condition
 (pn_link_t 
*link)
+
+PN_EXTERN pn_session_t 
*pn_link_session 
(pn_link_t 
*link)
+
+PN_EXTERN pn_link_t 
*pn_link_head (pn_connection_t
 *connection, pn_state_t 
state)
+
+PN_EXTERN pn_link_t 
*pn_link_next (pn_link_t *link, 
pn_state_t 
state)
+
+PN_EXTERN voidpn_link_open (pn_link_t 
*link)
+
+PN_EXTERN voidpn_link_close 
(pn_link_t 
*link)
+
+PN_EXTERN voidpn_link_detach 
(pn_link_t 
*link)
+
+PN_EXTERN pn_terminus_t
 *pn_link_source 
(pn_link_t 
*link)
+
+PN_EXTERN pn_terminus_t
 *pn_link_target 
(pn_link_t 
*link)
+
+PN_EXTERN pn_terminus_t
 *pn_link_remote_source
 (pn_link_t 
*link)
+
+PN_EXTERN pn_terminus_t
 *pn_link_remote_target
 (pn_link_t 
*link)
+
+PN_EXTERN pn_delivery_t
 *pn_link_current 
(pn_link_t 
*link)
+
+PN_EXTERN boolpn_link_advance 
(pn_link_t 
*link)
+
+PN_EXTERN intpn_link_credit 
(pn_link_t 
*link)
+
+PN_EXTERN intpn_link_queued 
(pn_link_t 
*link)
+
+PN_EXTERN intpn_link_remote_credit
 (pn_link_t 
*link)
+
+PN_EXTERN boolpn_link_get_drain
 (pn_link_t 
*link)
+
+PN_EXTERN intpn_link_drained 
(pn_link_t 
*link)
+
+PN_EXTERN intpn_link_available
 (pn_link_t 
*link)
+
+PN_EXTERN pn_snd_settle_mode_tpn_link_snd_settle_mode
 (pn_link_t 
*link)
+
+PN_EXTERN pn_rcv_settle_mode_tpn_link_rcv_settle_mode
 (pn_link_t 
*link)
+
+PN_EXTERN voidpn_link_set_snd_settle_mode
 (pn_link_t *link, 
pn_snd_settle_mode_t
 mode)
+
+PN_EXTERN voidpn_link_set_rcv_settle_mode
 (pn_link_t *link, 
pn_rcv_settle_mode_t
 mode)
+
+PN_EXTERN pn_snd_settle_mode_tpn_link_remote_snd_settle_mode
 (pn_link_t 
*link)
+
+PN_EXTERN pn_rcv_settle_mode_tpn_link_remote_rcv_settle_mode
 (pn_link_t 
*link)
+
+PN_EXTERN intpn_link_unsettled
 (pn_link_t 
*link)
+
+PN_EXTERN pn_delivery_t
 *pn_unsettled_head
 (pn_link_t 
*link)
+
+PN_EXTERN pn_delivery_t
 *pn_unsettled_next
 (pn_delivery_t
 *delivery)
+
+
+Detailed 
Description
+Typedef Documentation
+
+
+
+  
+
+  typedef struct pn_link_t pn_link_t
+
+  
+
+An AMQP Link object.
+A pn_link_t object encapsulates all of the endpoint state associated with 
an AMQP Link. A pn_link_t object contains an ordered sequence of pn_delivery_t
 objects representing in-flight deliveries. A pn_link_t may be either a Sender , or a Receiver , but never both.
+A pn_link_t object maintains a pointer to the current delivery 
within the ordered sequence of deliveries contained by the link (See pn_link_current).
 The current delivery is the target of a number of operations 
associated with the link, such as sending (pn_link_send) 
and receiving (pn_link_recv)
 message data. 
+

[35/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/globals_defs.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/globals_defs.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/globals_defs.html
new file mode 100755
index 000..a05593c
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/globals_defs.html
@@ -0,0 +1,163 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: File Members
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('globals_defs.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+
+PN_ACCEPTED
+: disposition.h
+
+PN_CUMULATIVE
+: messenger.h
+
+PN_DEFAULT_PRIORITY
+: message.h
+
+PN_LOCAL_ACTIVE
+: connection.h
+
+PN_LOCAL_CLOSED
+: connection.h
+
+PN_LOCAL_MASK
+: connection.h
+
+PN_LOCAL_UNINIT
+: connection.h
+
+PN_MODIFIED
+: disposition.h
+
+PN_RECEIVED
+: disposition.h
+
+PN_REJECTED
+: disposition.h
+
+PN_RELEASED
+: disposition.h
+
+PN_REMOTE_ACTIVE
+: connection.h
+
+PN_REMOTE_CLOSED
+: connection.h
+
+PN_REMOTE_MASK
+: connection.h
+
+PN_REMOTE_UNINIT
+: connection.h
+
+PN_TRACE_DRV
+: transport.h
+
+PN_TRACE_EVT
+: transport.h
+
+PN_TRACE_FRM
+: transport.h
+
+PN_TRACE_OFF
+: transport.h
+
+PN_TRACE_RAW
+: transport.h
+
+
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html;>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/globals_dup.js
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/globals_dup.js 
b/content/releases/qpid-proton-0.15.0/proton/c/api/globals_dup.js
new file mode 100755
index 000..b0cbe5b
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/globals_dup.js
@@ -0,0 +1,4 @@
+var globals_dup =
+[
+[ "p", "globals.html", null ]
+];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/globals_enum.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/globals_enum.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/globals_enum.html
new file mode 100755
index 000..0febb2f
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/globals_enum.html
@@ -0,0 +1,148 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: File Members
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('globals_enum.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+
+pn_distribution_mode_t
+: terminus.h
+
+pn_durability_t
+: terminus.h
+
+pn_event_type_t
+: event.h
+
+pn_expiry_policy_t
+: terminus.h
+
+pn_rcv_settle_mode_t
+: link.h
+
+pn_sasl_outcome_t
+: sasl.h
+
+pn_snd_settle_mode_t
+: link.h
+
+pn_ssl_cert_subject_subfield
+: ssl.h
+
+pn_ssl_hash_alg
+: ssl.h
+
+pn_ssl_mode_t
+: ssl.h
+
+pn_ssl_resume_status_t
+: ssl.h
+
+pn_ssl_verify_mode_t
+: ssl.h
+
+pn_status_t
+: messenger.h
+
+pn_terminus_type_t
+: terminus.h
+
+pn_type_t
+: codec.h
+
+
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html;>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/globals_eval.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/globals_eval.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/globals_eval.html
new file mode 100755
index 000..8467d14
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/globals_eval.html
@@ -0,0 +1,411 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>

[37/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/files.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/files.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/files.html
new file mode 100755
index 000..f721e21
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/files.html
@@ -0,0 +1,142 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: File List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('files.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+File List  
+
+
+Here is a list of all documented files with brief 
descriptions:
+[detail level 12]
+proton
+cid.h
+codec.h
+condition.h
+connection.h
+connection_engine.h
+delivery.h
+disposition.h
+engine.h
+error.h
+event.h
+handlers.h
+import_export.h
+io.h
+link.h
+log.h
+message.h
+messenger.h
+object.h
+parser.h
+reactor.h
+sasl.h
+scanner.h
+selectable.h
+selector.h
+session.h
+ssl.h
+terminus.h
+transport.h
+type_compat.h
+types.h
+url.h
+version.h
+
+
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html;>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/files.js
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/files.js 
b/content/releases/qpid-proton-0.15.0/proton/c/api/files.js
new file mode 100755
index 000..ea134f4
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/files.js
@@ -0,0 +1,4 @@
+var files =
+[
+[ "proton", "dir_25143d27009f52d175c1d192441a738a.html", 
"dir_25143d27009f52d175c1d192441a738a" ]
+];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2blank.png
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2blank.png 
b/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2blank.png
new file mode 100755
index 000..63c605b
Binary files /dev/null and 
b/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2blank.png differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2cl.png
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2cl.png 
b/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2cl.png
new file mode 100755
index 000..132f657
Binary files /dev/null and 
b/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2cl.png differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2doc.png
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2doc.png 
b/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2doc.png
new file mode 100755
index 000..17edabf
Binary files /dev/null and 
b/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2doc.png differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2folderclosed.png
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2folderclosed.png 
b/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2folderclosed.png
new file mode 100755
index 000..bb8ab35
Binary files /dev/null and 
b/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2folderclosed.png differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2folderopen.png
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2folderopen.png 
b/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2folderopen.png
new file mode 100755
index 000..d6c7f67
Binary files /dev/null and 
b/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2folderopen.png differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/ftv2lastnode.png

[30/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__data.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/group__data.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__data.html
new file mode 100755
index 000..72e9541
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__data.html
@@ -0,0 +1,2868 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: Data
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('group__data.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Classes 
+Typedefs 
+Enumerations 
+Functions  
+  
+Data  
+
+
+
+
+Classes
+struct 
pn_atom_t
+
+
+
+Typedefs
+typedef struct pn_data_tpn_data_t
+
+
+
+Enumerations
+enum pn_type_t { 
+PN_NULL
 = 1, 
+PN_BOOL
 = 2, 
+PN_UBYTE
 = 3, 
+PN_BYTE
 = 4, 
+
+PN_USHORT
 = 5, 
+PN_SHORT
 = 6, 
+PN_UINT
 = 7, 
+PN_INT
 = 8, 
+
+PN_CHAR
 = 9, 
+PN_ULONG
 = 10, 
+PN_LONG
 = 11, 
+PN_TIMESTAMP
 = 12, 
+
+PN_FLOAT
 = 13, 
+PN_DOUBLE
 = 14, 
+PN_DECIMAL32
 = 15, 
+PN_DECIMAL64
 = 16, 
+
+PN_DECIMAL128
 = 17, 
+PN_UUID
 = 18, 
+PN_BINARY
 = 19, 
+PN_STRING
 = 20, 
+
+PN_SYMBOL
 = 21, 
+PN_DESCRIBED
 = 22, 
+PN_ARRAY
 = 23, 
+PN_LIST
 = 24, 
+
+PN_MAP
 = 25, 
+PN_INVALID
 = -1
+
+ }
+
+
+
+Functions
+PN_EXTERN const char *pn_type_name (pn_type_t 
type)
+
+PN_EXTERN pn_data_t 
*pn_data (size_t 
capacity)
+
+PN_EXTERN voidpn_data_free (pn_data_t 
*data)
+
+PN_EXTERN intpn_data_errno 
(pn_data_t 
*data)
+
+PN_EXTERN pn_error_t *pn_data_error 
(pn_data_t 
*data)
+
+
+PN_EXTERN intpn_data_vfill (pn_data_t *data, 
const char *fmt, va_list ap)
+
+
+PN_EXTERN intpn_data_fill (pn_data_t *data, 
const char *fmt,...)
+
+
+PN_EXTERN intpn_data_vscan (pn_data_t *data, 
const char *fmt, va_list ap)
+
+
+PN_EXTERN intpn_data_scan (pn_data_t *data, 
const char *fmt,...)
+
+PN_EXTERN voidpn_data_clear 
(pn_data_t 
*data)
+
+PN_EXTERN size_tpn_data_size (pn_data_t 
*data)
+
+PN_EXTERN voidpn_data_rewind 
(pn_data_t 
*data)
+
+PN_EXTERN boolpn_data_next (pn_data_t 
*data)
+
+PN_EXTERN boolpn_data_prev (pn_data_t 
*data)
+
+PN_EXTERN boolpn_data_enter 
(pn_data_t 
*data)
+
+PN_EXTERN boolpn_data_exit (pn_data_t 
*data)
+
+
+PN_EXTERN boolpn_data_lookup (pn_data_t *data, 
const char *name)
+
+PN_EXTERN pn_type_tpn_data_type (pn_data_t 
*data)
+
+PN_EXTERN intpn_data_print 
(pn_data_t 
*data)
+
+PN_EXTERN intpn_data_format 
(pn_data_t *data, 
char *bytes, size_t *size)
+
+PN_EXTERN ssize_tpn_data_encode 
(pn_data_t *data, 
char *bytes, size_t size)
+
+PN_EXTERN ssize_tpn_data_encoded_size
 (pn_data_t 
*data)
+
+PN_EXTERN ssize_tpn_data_decode 
(pn_data_t *data, 
const char *bytes, size_t size)
+
+PN_EXTERN intpn_data_put_list 
(pn_data_t 
*data)
+
+PN_EXTERN intpn_data_put_map 
(pn_data_t 
*data)
+
+PN_EXTERN intpn_data_put_array
 (pn_data_t *data, 
bool described, pn_type_t 
type)
+
+PN_EXTERN intpn_data_put_described
 (pn_data_t 
*data)
+
+PN_EXTERN intpn_data_put_null 
(pn_data_t 
*data)
+
+PN_EXTERN intpn_data_put_bool 
(pn_data_t *data, 
bool b)
+
+PN_EXTERN intpn_data_put_ubyte
 (pn_data_t *data, 
uint8_t ub)
+
+PN_EXTERN intpn_data_put_byte 
(pn_data_t *data, 
int8_t b)
+
+PN_EXTERN intpn_data_put_ushort
 (pn_data_t *data, 
uint16_t us)
+
+PN_EXTERN intpn_data_put_short
 (pn_data_t *data, 
int16_t s)
+
+PN_EXTERN intpn_data_put_uint 
(pn_data_t *data, 
uint32_t ui)
+
+PN_EXTERN intpn_data_put_int 
(pn_data_t *data, 
int32_t i)
+
+PN_EXTERN intpn_data_put_char 
(pn_data_t *data, 
pn_char_t c)
+
+PN_EXTERN intpn_data_put_ulong
 (pn_data_t *data, 
uint64_t ul)
+
+PN_EXTERN intpn_data_put_long 
(pn_data_t *data, 
int64_t l)
+
+PN_EXTERN intpn_data_put_timestamp
 (pn_data_t *data, 
pn_timestamp_t t)
+
+PN_EXTERN intpn_data_put_float
 (pn_data_t *data, 
float f)
+
+PN_EXTERN intpn_data_put_double
 (pn_data_t *data, 
double d)
+
+PN_EXTERN intpn_data_put_decimal32
 (pn_data_t *data, 
pn_decimal32_t d)
+
+PN_EXTERN intpn_data_put_decimal64
 (pn_data_t *data, 
pn_decimal64_t d)
+
+PN_EXTERN intpn_data_put_decimal128
 (pn_data_t *data, 
pn_decimal128_t 
d)
+
+PN_EXTERN intpn_data_put_uuid 
(pn_data_t *data, 
pn_uuid_t u)
+
+PN_EXTERN intpn_data_put_binary
 (pn_data_t *data, 
pn_bytes_t bytes)
+
+PN_EXTERN intpn_data_put_string
 (pn_data_t *data, 
pn_bytes_t string)
+
+PN_EXTERN intpn_data_put_symbol
 (pn_data_t *data, 

[03/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/sasl_8h_source.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/sasl_8h_source.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/sasl_8h_source.html
new file mode 100755
index 000..c8409e0
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/sasl_8h_source.html
@@ -0,0 +1,176 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/sasl.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('sasl_8h_source.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+sasl.h  
+
+
+Go to the documentation of this file.   
 1#ifndef PROTON_SASL_H
+
2#define PROTON_SASL_H 1
+
3
+
4/*
+
5 *
+
6 * Licensed to the Apache Software 
Foundation (ASF) under one
+
7 * or more contributor license agreements.  
See the NOTICE file
+
8 * distributed with this work for 
additional information
+
9 * regarding copyright ownership.  The ASF 
licenses this file
+   
10 * to you under the Apache License, 
Version 2.0 (the
+   
11 * License); you may not use 
this file except in compliance
+   
12 * with the License.  You may obtain a 
copy of the License at
+   
13 *
+   
14 *   
http://www.apache.org/licenses/LICENSE-2.0
+   
15 *
+   
16 * Unless required by applicable law or 
agreed to in writing,
+   
17 * software distributed under the License 
is distributed on an
+   
18 * AS IS BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
19 * KIND, either express or implied.  See 
the License for the
+   
20 * specific language governing permissions 
and limitations
+   
21 * under the License.
+   
22 *
+   
23 */
+   
24
+   
25#include 
proton/import_export.h
+   
26#include 
proton/type_compat.h
+   
27#include proton/types.h
+   
28
+   
29#ifdef __cplusplus
+   
30extern C 
{
+   
31#endif
+   
32
+   
47typedef struct pn_sasl_t pn_sasl_t;
+   
48
+   
50typedef enum {
+   51 
 PN_SASL_NONE=-1,  
+
   52  PN_SASL_OK=0,
 
+
   53  PN_SASL_AUTH=1,
   
+
   54  PN_SASL_SYS=2,

+
   55  PN_SASL_PERM=3,
   
+
   56  PN_SASL_TEMP=4

+   
57} pn_sasl_outcome_t;
+   
58
+   
69PN_EXTERN pn_sasl_t *pn_sasl(pn_transport_t
 *transport);
+   
70
+   
82PN_EXTERN bool pn_sasl_extended(void);
+   
83
+   
90PN_EXTERN void pn_sasl_done(pn_sasl_t
 *sasl, pn_sasl_outcome_t
 outcome);
+   
91
+   
96PN_EXTERN pn_sasl_outcome_t
 pn_sasl_outcome(pn_sasl_t
 *sasl);
+   
97
+  
114PN_EXTERN const char *pn_sasl_get_user(pn_sasl_t
 *sasl);
+  
115
+  
124PN_EXTERN const char *pn_sasl_get_mech(pn_sasl_t
 *sasl);
+  
125
+  
134PN_EXTERN void pn_sasl_allowed_mechs(pn_sasl_t
 *sasl, const char *mechs);
+  
135
+  
152PN_EXTERN void pn_sasl_set_allow_insecure_mechs(pn_sasl_t
 *sasl, bool insecure);
+  
153
+  
158PN_EXTERN bool pn_sasl_get_allow_insecure_mechs(pn_sasl_t
 *sasl);
+  
159
+  
172PN_EXTERN void pn_sasl_config_name(pn_sasl_t
 *sasl, const char *name);
+  
173
+  
189PN_EXTERN void pn_sasl_config_path(pn_sasl_t
 *sasl, const char *path);
+  
190
+  
193#ifdef __cplusplus
+  
194}
+  
195#endif
+  
196
+  
197#endif /* sasl.h */
+
+
+
+
+  
+protonsasl.h
+Generated by
+http://www.doxygen.org/index.html;>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/scanner_8h_source.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/scanner_8h_source.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/scanner_8h_source.html
new file mode 100755
index 000..37b874e
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/scanner_8h_source.html
@@ -0,0 +1,188 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/scanner.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+

[34/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/globals_func.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/globals_func.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/globals_func.html
new file mode 100755
index 000..ff84157
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/globals_func.html
@@ -0,0 +1,1605 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: File Members
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('globals_func.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+
+
+- p -
+pn_collector()
+: event.h
+
+pn_collector_free()
+: event.h
+
+pn_collector_more()
+: event.h
+
+pn_collector_peek()
+: event.h
+
+pn_collector_pop()
+: event.h
+
+pn_collector_put()
+: event.h
+
+pn_collector_release()
+: event.h
+
+pn_condition_clear()
+: condition.h
+
+pn_condition_format()
+: condition.h
+
+pn_condition_get_description()
+: condition.h
+
+pn_condition_get_name()
+: condition.h
+
+pn_condition_info()
+: condition.h
+
+pn_condition_is_redirect()
+: condition.h
+
+pn_condition_is_set()
+: condition.h
+
+pn_condition_redirect_host()
+: condition.h
+
+pn_condition_redirect_port()
+: condition.h
+
+pn_condition_set_description()
+: condition.h
+
+pn_condition_set_name()
+: condition.h
+
+pn_condition_vformat()
+: condition.h
+
+pn_connection()
+: connection.h
+
+pn_connection_attachments()
+: connection.h
+
+pn_connection_close()
+: connection.h
+
+pn_connection_collect()
+: connection.h
+
+pn_connection_condition()
+: connection.h
+
+pn_connection_desired_capabilities()
+: connection.h
+
+pn_connection_engine_condition()
+: connection_engine.h
+
+pn_connection_engine_connection()
+: connection_engine.h
+
+pn_connection_engine_disconnected()
+: connection_engine.h
+
+pn_connection_engine_dispatch()
+: connection_engine.h
+
+pn_connection_engine_final()
+: connection_engine.h
+
+pn_connection_engine_finished()
+: connection_engine.h
+
+pn_connection_engine_init()
+: connection_engine.h
+
+pn_connection_engine_read_buffer()
+: connection_engine.h
+
+pn_connection_engine_read_close()
+: connection_engine.h
+
+pn_connection_engine_read_done()
+: connection_engine.h
+
+pn_connection_engine_start()
+: connection_engine.h
+
+pn_connection_engine_transport()
+: connection_engine.h
+
+pn_connection_engine_write_buffer()
+: connection_engine.h
+
+pn_connection_engine_write_close()
+: connection_engine.h
+
+pn_connection_engine_write_done()
+: connection_engine.h
+
+pn_connection_error()
+: connection.h
+
+pn_connection_free()
+: connection.h
+
+pn_connection_get_container()
+: connection.h
+
+pn_connection_get_context()
+: connection.h
+
+pn_connection_get_hostname()
+: connection.h
+
+pn_connection_get_user()
+: connection.h
+
+pn_connection_offered_capabilities()
+: connection.h
+
+pn_connection_open()
+: connection.h
+
+pn_connection_properties()
+: connection.h
+
+pn_connection_release()
+: connection.h
+
+pn_connection_remote_condition()
+: connection.h
+
+pn_connection_remote_container()
+: connection.h
+
+pn_connection_remote_desired_capabilities()
+: connection.h
+
+pn_connection_remote_hostname()
+: connection.h
+
+pn_connection_remote_offered_capabilities()
+: connection.h
+
+pn_connection_remote_properties()
+: connection.h
+
+pn_connection_reset()
+: connection.h
+
+pn_connection_set_container()
+: connection.h
+
+pn_connection_set_context()
+: connection.h
+
+pn_connection_set_hostname()
+: connection.h
+
+pn_connection_set_password()
+: connection.h
+
+pn_connection_set_user()
+: connection.h
+
+pn_connection_state()
+: connection.h
+
+pn_connection_transport()
+: connection.h
+
+pn_data()
+: codec.h
+
+pn_data_append()
+: codec.h
+
+pn_data_appendn()
+: codec.h
+
+pn_data_clear()
+: codec.h
+
+pn_data_copy()
+: codec.h
+
+pn_data_decode()
+: codec.h
+
+pn_data_dump()
+: codec.h
+
+pn_data_encode()
+: codec.h
+
+pn_data_encoded_size()
+: codec.h
+
+pn_data_enter()
+: codec.h
+
+pn_data_errno()
+: codec.h
+
+pn_data_error()
+: codec.h
+
+pn_data_exit()
+: codec.h
+
+pn_data_format()
+: codec.h
+
+pn_data_free()
+: codec.h
+
+pn_data_get_array()
+: codec.h
+
+pn_data_get_array_type()
+: codec.h
+
+pn_data_get_atom()
+: codec.h
+
+pn_data_get_binary()
+: codec.h
+
+pn_data_get_bool()
+: codec.h
+
+pn_data_get_byte()
+: codec.h
+

[13/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/jquery.js
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/jquery.js 
b/content/releases/qpid-proton-0.15.0/proton/c/api/jquery.js
new file mode 100755
index 000..78ad0bd
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/jquery.js
@@ -0,0 +1,77 @@
+/*! jQuery v1.7.1 jquery.com | jquery.org/license */
+(function(a,b){function cy(a){return 
f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function 
cv(a){if(!ck[a]){var 
b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return
 ck[a]}function cu(a,b){var 
c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return 
c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function 
cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function 
ci(){try{return new a.XMLHttpRequest}catch(b){}}function 
cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var 
d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p
 ;for(g=1;g0){if(c!=="border")for(;g

[08/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/messenger_8h_source.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/messenger_8h_source.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/messenger_8h_source.html
new file mode 100755
index 000..4a616f5
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/messenger_8h_source.html
@@ -0,0 +1,311 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/messenger.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('messenger_8h_source.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+messenger.h  
+
+
+Go to the documentation of this file.   
 1#ifndef 
PROTON_MESSENGER_H
+
2#define PROTON_MESSENGER_H 1
+
3
+
4/*
+
5 *
+
6 * Licensed to the Apache Software 
Foundation (ASF) under one
+
7 * or more contributor license agreements.  
See the NOTICE file
+
8 * distributed with this work for 
additional information
+
9 * regarding copyright ownership.  The ASF 
licenses this file
+   
10 * to you under the Apache License, 
Version 2.0 (the
+   
11 * License); you may not use 
this file except in compliance
+   
12 * with the License.  You may obtain a 
copy of the License at
+   
13 *
+   
14 *   
http://www.apache.org/licenses/LICENSE-2.0
+   
15 *
+   
16 * Unless required by applicable law or 
agreed to in writing,
+   
17 * software distributed under the License 
is distributed on an
+   
18 * AS IS BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
19 * KIND, either express or implied.  See 
the License for the
+   
20 * specific language governing permissions 
and limitations
+   
21 * under the License.
+   
22 *
+   
23 */
+   
24
+   
25#include 
proton/import_export.h
+   
26#include proton/message.h
+   
27#include proton/selectable.h
+   
28#include proton/condition.h
+   
29#include proton/terminus.h
+   
30#include proton/link.h
+   
31#include proton/transport.h
+   
32#include proton/ssl.h
+   
33
+   
34#ifdef __cplusplus
+   
35extern C 
{
+   
36#endif
+   
37
+  
157typedef struct pn_messenger_t
 pn_messenger_t;
+  
158
+  
166typedef struct pn_subscription_t
 pn_subscription_t;
+  
167
+  
172typedef int64_t pn_tracker_t;
+  
173
+  
178typedef enum {
+
  179  PN_STATUS_UNKNOWN
 = 0, 
+
  180  PN_STATUS_PENDING
 = 1, 
+
  183  PN_STATUS_ACCEPTED
 = 2, 
+
  184  PN_STATUS_REJECTED
 = 3, 
+
  185  PN_STATUS_RELEASED
 = 4, 
+
  186  PN_STATUS_MODIFIED
 = 5, 
+
  187  PN_STATUS_ABORTED
 = 6, 
+
  188  PN_STATUS_SETTLED
 = 7 
+  
189} pn_status_t;
+  
190
+  
200PN_EXTERN pn_messenger_t
 *pn_messenger(const char 
*name);
+  
201
+  
208PN_EXTERN const char *pn_messenger_name(pn_messenger_t
 *messenger);
+  
209
+  
219PN_EXTERN int pn_messenger_set_certificate(pn_messenger_t
 *messenger, const char *certificate);
+  
220
+  
228PN_EXTERN const char *pn_messenger_get_certificate(pn_messenger_t
 *messenger);
+  
229
+  
238PN_EXTERN int pn_messenger_set_private_key(pn_messenger_t
 *messenger, const char *private_key);
+  
239
+  
246PN_EXTERN const char *pn_messenger_get_private_key(pn_messenger_t
 *messenger);
+  
247
+  
256PN_EXTERN int pn_messenger_set_password(pn_messenger_t
 *messenger, const char *password);
+  
257
+  
264PN_EXTERN const char *pn_messenger_get_password(pn_messenger_t
 *messenger);
+  
265
+  
277PN_EXTERN int pn_messenger_set_trusted_certificates(pn_messenger_t
 *messenger, const char *cert_db);
+  
278
+  
285PN_EXTERN const char *pn_messenger_get_trusted_certificates(pn_messenger_t
 *messenger);
+  
286
+  
299PN_EXTERN int pn_messenger_set_timeout(pn_messenger_t
 *messenger, int timeout);
+  
300
+  
309PN_EXTERN int pn_messenger_get_timeout(pn_messenger_t
 *messenger);
+  
310
+  
317PN_EXTERN bool pn_messenger_is_blocking(pn_messenger_t
 *messenger);
+  
318
+  
327PN_EXTERN int pn_messenger_set_blocking(pn_messenger_t
 *messenger, bool blocking);
+  
328
+  
341PN_EXTERN bool pn_messenger_is_passive(pn_messenger_t
 *messenger);
+  
342
+  
353PN_EXTERN int pn_messenger_set_passive(pn_messenger_t
 *messenger, bool passive);
+  
354
+  
360PN_EXTERN void pn_messenger_free(pn_messenger_t
 *messenger);
+  
361
+  
375PN_EXTERN int pn_messenger_errno(pn_messenger_t
 *messenger);
+  
376
+  
388PN_EXTERN pn_error_t 

[47/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/messenger/perl/examples/server.pl.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/messenger/perl/examples/server.pl.html 
b/content/releases/qpid-proton-0.15.0/messenger/perl/examples/server.pl.html
new file mode 100644
index 000..0c75038
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/messenger/perl/examples/server.pl.html
@@ -0,0 +1,252 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en">
+  
+server.pl - Apache Qpid
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index;>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid Proton 
0.15.0Perl 
AMQP Messenger Examplesserver.pl
+
+
+  
+server.pl
+use strict;
+use warnings;
+use Getopt::Long;
+use Pod::Usage;
+
+use qpid_proton;
+
+my $help = 0;
+my $man = 0;
+
+GetOptions(
+man = \$man,
+help|? = 
\$help
+) or pod2usage(2);
+
+pod2usage(1) if $help;
+pod2usage(-exitval = 
0, -verbose = 2) if $man;
+
+pod2usage(2) unless scalar(@ARGV);
+
+# create a messenger for receiving and holding
+# incoming messages
+our $messenger = new qpid::proton::Messenger;
+$messenger-start;
+
+# subscribe the messenger to all addresses specified 
sources
+foreach (@ARGV) {
+$messenger-subscribe($_);
+}
+
+sub dispatch {
+my $request = $_[0];
+my $reply   = $_[1];
+
+if ($request-get_subject) {
+$reply-set_subject(Re: 
 . $request-get_subject);
+}
+
+$reply-set_properties($request-get_properties);
+print Dispatched 
 . $request-get_subject . \n;
+my $properties = $request-get_properties;
+foreach (keys %{$properties}) {
+my $value = $properties-{%_};
+print \t$_: 
$value\n;
+}
+}
+
+our $message = new qpid::proton::Message;
+our $reply   = new qpid::proton::Message;
+
+while(1) {
+$messenger-receive(1) if $messenger-incoming  10;
+
+if ($messenger-incoming  0) {
+$messenger-get($message);
+
+if ($message-get_reply_to) {
+print $message-get_reply_to . \n;
+$reply-set_address($message-get_reply_to);
+$reply-set_correlation_id($message-get_correlation_id);
+$reply-set_body($message-get_body);
+}
+dispatch($message, $reply);
+$messenger-put($reply);
+$messenger-send;
+}
+}
+
+$message-stop;
+
+__END__
+
+=head1 NAME
+
+server - Proton example server application for Perl.
+
+=head1 SYNOPSIS
+
+server.pl [OPTIONS] addr1 ... addrn
+
+ Options:
+   --help - This help message.
+   --man  - Show the full documentation.
+
+=over 8
+
+=item B--help
+
+Prints a brief help message and exits.
+
+=item B--man
+
+Prints the man page and exits.
+
+=back
+
+=head2 ADDRESS
+
+The form an address takes is:
+
+[amqp://]domain[/name]
+
+=cut
+
+
+Download this file
+
+
+  
+
+  
+http://www.apache.org/;>Apache
+http://www.apache.org/licenses/;>License
+http://www.apache.org/foundation/sponsorship.html;>Sponsorship
+http://www.apache.org/foundation/thanks.html;>Thanks!
+Security
+http://www.apache.org/;>
+  
+
+  
+Apache Qpid, Messaging built on AMQP; Copyright  2015
+The Apache Software Foundation; Licensed under
+the http://www.apache.org/licenses/LICENSE-2.0;>Apache
+License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
+Proton, Apache, the Apache feather logo, and the Apache Qpid
+project logo are trademarks of The Apache Software
+   

[50/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/documentation.html
--
diff --git a/content/documentation.html b/content/documentation.html
index 8bf7b1b..51a0031 100644
--- a/content/documentation.html
+++ b/content/documentation.html
@@ -133,10 +133,10 @@ You can find older versions with our
 
 
 Overview
-C API 
reference
-C++ 
API reference
-Java API 
reference
-Python 
API reference
+C API 
reference
+C++ 
API reference
+Java API 
reference
+Python 
API reference
 
 
 

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/download.html
--
diff --git a/content/download.html b/content/download.html
index c3958d3..5bf6ce5 100644
--- a/content/download.html
+++ b/content/download.html
@@ -120,7 +120,7 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
 Qpid packages and Qpid via 
Maven.
 
 Qpid's source artefacts are produced as part of our community release
-process. The downloads on this page are from our current releases, Qpid Proton 0.14.0,
+process. The downloads on this page are from our current releases, Qpid Proton 0.15.0,
 Qpid Dispatch 0.6.1, Qpid JMS 0.11.1, Qpid for Java 6.0.4 and Qpid C++ 1.35.0. You can also see our
 past releases.
 
@@ -139,8 +139,8 @@ process. The downloads on this page are from our current 
releases, Qpid Proton
-  http://www.apache.org/dyn/closer.lua/qpid/proton/0.14.0/qpid-proton-0.14.0.tar.gz;>qpid-proton-0.14.0.tar.gz
-  http://www.apache.org/dist/qpid/proton/0.14.0/qpid-proton-0.14.0.tar.gz.asc;>ASC,
 http://www.apache.org/dist/qpid/proton/0.14.0/qpid-proton-0.14.0.tar.gz.md5;>MD5,
 http://www.apache.org/dist/qpid/proton/0.14.0/qpid-proton-0.14.0.tar.gz.sha1;>SHA1
+  http://www.apache.org/dyn/closer.lua/qpid/proton/0.15.0/qpid-proton-0.15.0.tar.gz;>qpid-proton-0.15.0.tar.gz
+  http://www.apache.org/dist/qpid/proton/0.15.0/qpid-proton-0.15.0.tar.gz.asc;>ASC,
 http://www.apache.org/dist/qpid/proton/0.15.0/qpid-proton-0.15.0.tar.gz.md5;>MD5,
 http://www.apache.org/dist/qpid/proton/0.15.0/qpid-proton-0.15.0.tar.gz.sha1;>SHA1
 
 
   Qpid JMS (AMQP 1.0)

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/maven.html
--
diff --git a/content/maven.html b/content/maven.html
index 7707532..1eb797c 100644
--- a/content/maven.html
+++ b/content/maven.html
@@ -149,7 +149,7 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
 dependency
   groupIdorg.apache.qpid/groupId
   artifactIdproton-j/artifactId
-  version0.14.0/version
+  version0.15.0/version
 /dependency
 
 

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/proton/index.html
--
diff --git a/content/proton/index.html b/content/proton/index.html
index b87a3e3..366be94 100644
--- a/content/proton/index.html
+++ b/content/proton/index.html
@@ -147,17 +147,17 @@ platform, environment, or language. More about
 
 
 
-C API 
reference
-C++ 
introduction
-C++ 
tutorial
-C++ 
examples
-C++ 
API reference
-Java API 
reference
-Python 
overview
-Python 
tutorial
-Python 
examples
-Python 
API reference
-https://git-wip-us.apache.org/repos/asf?p=qpid-proton.git;a=blob_plain;f=INSTALL.md;hb=0.14.0;>Installing
 Qpid Proton
+C API 
reference
+C++ 
introduction
+C++ 
tutorial
+C++ 
examples
+C++ 
API reference
+Java API 
reference
+Python 
overview
+Python 
tutorial
+Python 
examples
+Python 
API reference
+https://git-wip-us.apache.org/repos/asf?p=qpid-proton.git;a=blob_plain;f=INSTALL.md;hb=0.15.0;>Installing
 Qpid Proton
 
 
 
@@ -169,7 +169,7 @@ platform, environment, or language. More about
 Releases
 
 
-Qpid Proton 0.14.0
+Qpid Proton 0.15.0
 Past releases
 Work in progress 

 

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/proton/messenger.html
--
diff --git a/content/proton/messenger.html b/content/proton/messenger.html
index 394a144..99484fa 100644
--- a/content/proton/messenger.html
+++ b/content/proton/messenger.html
@@ -129,14 +129,14 @@ find previous versions with our
 
 
 
-C 
API reference
-C 
examples
-Java
 API reference
-Perl 
examples
-PHP 
examples
-Python
 API reference
-Python 
examples
-Ruby 
examples
+C 
API reference
+C 
examples
+Java
 API reference
+Perl 
examples
+PHP 
examples
+Python
 API reference
+Python 
examples
+Ruby 
examples
 
 
 

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/index.html
--
diff --git a/content/releases/index.html b/content/releases/index.html
index fe7201a..bc7d16c 100644
--- a/content/releases/index.html
+++ b/content/releases/index.html
@@ -124,10 +124,10 @@ the
 Current releases
 
 
+Qpid Proton 

[01/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
Repository: qpid-site
Updated Branches:
  refs/heads/asf-site b2692d07f -> de3c34889


http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/search/all_72.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/search/all_72.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/search/all_72.html
new file mode 100755
index 000..347b9f6
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/search/all_72.html
@@ -0,0 +1,26 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+
+
+
+
+
+
+
+
+
+Loading...
+
+
+Searching...
+No Matches
+
+
+
+


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



[41/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/connection_8h_source.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/connection_8h_source.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/connection_8h_source.html
new file mode 100755
index 000..a66dbb8
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/connection_8h_source.html
@@ -0,0 +1,224 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/connection.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('connection_8h_source.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+connection.h  
+
+
+Go to the documentation of this file.   
 1#ifndef 
PROTON_CONNECTION_H
+
2#define PROTON_CONNECTION_H 1
+
3
+
4/*
+
5 *
+
6 * Licensed to the Apache Software 
Foundation (ASF) under one
+
7 * or more contributor license agreements.  
See the NOTICE file
+
8 * distributed with this work for 
additional information
+
9 * regarding copyright ownership.  The ASF 
licenses this file
+   
10 * to you under the Apache License, 
Version 2.0 (the
+   
11 * License); you may not use 
this file except in compliance
+   
12 * with the License.  You may obtain a 
copy of the License at
+   
13 *
+   
14 *   
http://www.apache.org/licenses/LICENSE-2.0
+   
15 *
+   
16 * Unless required by applicable law or 
agreed to in writing,
+   
17 * software distributed under the License 
is distributed on an
+   
18 * AS IS BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
19 * KIND, either express or implied.  See 
the License for the
+   
20 * specific language governing permissions 
and limitations
+   
21 * under the License.
+   
22 *
+   
23 */
+   
24
+   
25#include 
proton/import_export.h
+   
26#include proton/codec.h
+   
27#include proton/condition.h
+   
28#include 
proton/error.h
+   
29#include 
proton/type_compat.h
+   
30#include proton/types.h
+   
31
+   
32#include stddef.h
+   
33
+   
34#ifdef __cplusplus
+   
35extern C 
{
+   
36#endif
+   
37
+   
51#define PN_LOCAL_UNINIT 
(1)
+   
52
+   
55#define PN_LOCAL_ACTIVE 
(2)
+   
56
+   
59#define PN_LOCAL_CLOSED 
(4)
+   
60
+   
63#define PN_REMOTE_UNINIT 
(8)
+   
64
+   
67#define PN_REMOTE_ACTIVE 
(16)
+   
68
+   
71#define PN_REMOTE_CLOSED 
(32)
+   
72
+   
77#define PN_LOCAL_MASK 
(PN_LOCAL_UNINIT | PN_LOCAL_ACTIVE | PN_LOCAL_CLOSED)
+   
78
+   
83#define PN_REMOTE_MASK 
(PN_REMOTE_UNINIT | PN_REMOTE_ACTIVE | PN_REMOTE_CLOSED)
+   
84
+   
90PN_EXTERN pn_connection_t
 *pn_connection(void);
+   
91
+  
101PN_EXTERN void pn_connection_free(pn_connection_t
 *connection);
+  
102
+  
112PN_EXTERN void pn_connection_release(pn_connection_t
 *connection);
+  
113
+  
128PN_EXTERN pn_error_t *pn_connection_error(pn_connection_t
 *connection);
+  
129
+  
148PN_EXTERN void pn_connection_collect(pn_connection_t
 *connection, pn_collector_t 
*collector);
+  
149
+  
161PN_EXTERN void *pn_connection_get_context(pn_connection_t
 *connection);
+  
162
+  
173PN_EXTERN void pn_connection_set_context(pn_connection_t
 *connection, void *context);
+  
174
+  
181PN_EXTERN pn_record_t *pn_connection_attachments(pn_connection_t
 *connection);
+  
182
+  
189PN_EXTERN pn_state_t 
pn_connection_state(pn_connection_t
 *connection);
+  
190
+  
199PN_EXTERN void pn_connection_open(pn_connection_t
 *connection);
+  
200
+  
211PN_EXTERN void pn_connection_close(pn_connection_t
 *connection);
+  
212
+  
221PN_EXTERN void pn_connection_reset(pn_connection_t
 *connection);
+  
222
+  
239PN_EXTERN pn_condition_t
 *pn_connection_condition(pn_connection_t
 *connection);
+  
240
+  
255PN_EXTERN pn_condition_t
 *pn_connection_remote_condition(pn_connection_t
 *connection);
+  
256
+  
267PN_EXTERN const char *pn_connection_get_container(pn_connection_t
 *connection);
+  
268
+  
275PN_EXTERN void pn_connection_set_container(pn_connection_t
 *connection, const char *container);
+  
276
+  
291PN_EXTERN void pn_connection_set_user(pn_connection_t
 *connection, const char *user);
+  
292
+  
306PN_EXTERN void pn_connection_set_password(pn_connection_t
 *connection, const char *password);
+  
307
+  
314PN_EXTERN const char *pn_connection_get_user(pn_connection_t
 *connection);
+  
315
+  
326PN_EXTERN const char 

[33/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/group__condition.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/group__condition.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/group__condition.html
new file mode 100755
index 000..b438a43
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/group__condition.html
@@ -0,0 +1,498 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: Condition
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('group__condition.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Typedefs 
+Functions  
+  
+ConditionConnection  
+
+
+
+
+Typedefs
+typedef struct pn_condition_tpn_condition_t
+
+
+
+Functions
+PN_EXTERN boolpn_condition_is_set
 (pn_condition_t
 *condition)
+
+PN_EXTERN voidpn_condition_clear
 (pn_condition_t
 *condition)
+
+PN_EXTERN const char *pn_condition_get_name
 (pn_condition_t
 *condition)
+
+PN_EXTERN intpn_condition_set_name
 (pn_condition_t
 *condition, const char *name)
+
+PN_EXTERN const char *pn_condition_get_description
 (pn_condition_t
 *condition)
+
+PN_EXTERN intpn_condition_set_description
 (pn_condition_t
 *condition, const char *description)
+
+PN_EXTERN pn_data_t 
*pn_condition_info
 (pn_condition_t
 *condition)
+
+PN_EXTERN intpn_condition_vformat
 (pn_condition_t
 *, const char *name, const char *fmt, va_list ap)
+
+PN_EXTERN intpn_condition_format
 (pn_condition_t
 *, const char *name, const char *fmt,...)
+
+PN_EXTERN boolpn_condition_is_redirect
 (pn_condition_t
 *condition)
+
+PN_EXTERN const char *pn_condition_redirect_host
 (pn_condition_t
 *condition)
+
+PN_EXTERN intpn_condition_redirect_port
 (pn_condition_t
 *condition)
+
+
+Detailed 
Description
+Typedef Documentation
+
+
+
+  
+
+  typedef struct pn_condition_t
 pn_condition_t
+
+  
+
+An AMQP Condition object. Conditions hold exceptional information 
pertaining to the closing of an AMQP endpoint such as a Connection, Session, or 
Link. Conditions also hold similar information pertaining to deliveries that 
have reached terminal states. Connections, Sessions, Links, and Deliveries may 
all have local and remote conditions associated with them.
+The local condition may be modified by the local endpoint to signal a 
particular condition to the remote peer. The remote condition may be examined 
by the local endpoint to detect whatever condition the remote peer may be 
signaling. Although often conditions are used to indicate errors, not all 
conditions are errors per/se, e.g. conditions may be used to redirect a 
connection from one host to another.
+Every condition has a short symbolic name, a longer description, and an 
additional info map associated with it. The name identifies the formally 
defined condition, and the map contains additional information relevant to the 
identified condition. 
+
+
+
+Function Documentation
+
+
+
+  
+
+  PN_EXTERN void pn_condition_clear 
+  (
+  pn_condition_t
 *
+  condition)
+  
+
+  
+
+Clears the condition object of any exceptional information. After calling 
pn_condition_clear(),
 pn_condition_is_set()
 is guaranteed to return false and pn_condition_get_name()
 as well as pn_condition_get_description()
 will return NULL. The pn_data_t 
returned by pn_condition_info()
 will still be valid, but will have been cleared as well (See pn_data_clear()).
+Parameters
+  
+[in]conditionthe condition object to clear 
+  
+  
+
+
+
+
+
+
+
+  
+
+  PN_EXTERN int pn_condition_format 
+  (
+  pn_condition_t
 *
+  , 
+
+
+  
+  
+  const char *
+  name, 
+
+
+  
+  
+  const char *
+  fmt, 
+
+
+  
+  
+  
+  ...
+
+
+  
+  )
+  
+
+  
+
+Set the name and printf-style formatted description. 
+
+
+
+
+
+
+  
+
+  PN_EXTERN const char* 
pn_condition_get_description 
+  (
+  pn_condition_t
 *
+  condition)
+  
+
+  
+
+Gets the description associated with the exceptional condition.
+Parameters
+  
+

[39/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/disposition_8h.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/disposition_8h.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/disposition_8h.html
new file mode 100755
index 000..6daea15
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/disposition_8h.html
@@ -0,0 +1,164 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/disposition.h File Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('disposition_8h.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Macros 
+Typedefs 
+Functions  
+  
+disposition.h File Reference  
+
+
+#include 
proton/import_export.h
+#include proton/type_compat.h
+#include proton/condition.h
+#include stddef.h
+
+Go to the source code of this 
file.
+
+
+Macros
+#definePN_RECEIVED(0x0023)
+
+#definePN_ACCEPTED(0x0024)
+
+#definePN_REJECTED(0x0025)
+
+#definePN_RELEASED(0x0026)
+
+#definePN_MODIFIED(0x0027)
+
+
+
+Typedefs
+typedef struct pn_disposition_tpn_disposition_t
+
+
+
+Functions
+PN_EXTERN uint64_tpn_disposition_type
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN pn_condition_t
 *pn_disposition_condition
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN pn_data_t 
*pn_disposition_data
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN uint32_tpn_disposition_get_section_number
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN voidpn_disposition_set_section_number
 (pn_disposition_t
 *disposition, uint32_t section_number)
+
+PN_EXTERN uint64_tpn_disposition_get_section_offset
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN voidpn_disposition_set_section_offset
 (pn_disposition_t
 *disposition, uint64_t section_offset)
+
+PN_EXTERN boolpn_disposition_is_failed
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN voidpn_disposition_set_failed
 (pn_disposition_t
 *disposition, bool failed)
+
+PN_EXTERN boolpn_disposition_is_undeliverable
 (pn_disposition_t
 *disposition)
+
+PN_EXTERN voidpn_disposition_set_undeliverable
 (pn_disposition_t
 *disposition, bool undeliverable)
+
+PN_EXTERN pn_data_t 
*pn_disposition_annotations
 (pn_disposition_t
 *disposition)
+
+
+Detailed 
Description
+Disposition API for the proton Engine. 
+
+
+
+
+  
+protondisposition.h
+Generated by
+http://www.doxygen.org/index.html;>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/disposition_8h.js
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/disposition_8h.js 
b/content/releases/qpid-proton-0.15.0/proton/c/api/disposition_8h.js
new file mode 100755
index 000..91481dc
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/disposition_8h.js
@@ -0,0 +1,21 @@
+var disposition_8h =
+[
+[ "PN_ACCEPTED", "disposition_8h.html#gac64952b813a707586c6b3898e09552e4", 
null ],
+[ "PN_MODIFIED", "disposition_8h.html#ga247e3d1ac7c9096cdd28424353582962", 
null ],
+[ "PN_RECEIVED", "disposition_8h.html#gaae349c977b37b584aa62fff6515802ca", 
null ],
+[ "PN_REJECTED", "disposition_8h.html#ga44a2635392fe2e6f8869a7e1cd64db2f", 
null ],
+[ "PN_RELEASED", "disposition_8h.html#ga628179c16c4a5f5fd7734bc1bfc6edc3", 
null ],
+[ "pn_disposition_t", 
"disposition_8h.html#ga4b28f6cd033babd8a7595fc5d292dca1", null ],
+[ "pn_disposition_annotations", 
"disposition_8h.html#gab1bf2bc1a4a3dff731b486267cf4ef67", null ],
+[ "pn_disposition_condition", 
"disposition_8h.html#gabd35f46e997ed687d715302480d011e2", null ],
+[ "pn_disposition_data", 
"disposition_8h.html#ga451f0c749032dad08b6f960aba3416da", null ],
+[ "pn_disposition_get_section_number", 
"disposition_8h.html#gabcf704fae3e555374ab180befc5b8278", null ],
+[ "pn_disposition_get_section_offset", 
"disposition_8h.html#ga55e4389018c1dc7b026938d2a95eb0c1", null ],
+[ "pn_disposition_is_failed", 
"disposition_8h.html#ga52d49cfa7973e052b25343f5b150dcac", null ],
+[ "pn_disposition_is_undeliverable", 
"disposition_8h.html#ga3bc9fc23bc5c67fe0704af901739afe6", null ],
+[ "pn_disposition_set_failed", 
"disposition_8h.html#gae4fe77f776c68cadf36ce1d11bed30b1", null ],
+[ 

[42/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/condition_8h.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/condition_8h.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/condition_8h.html
new file mode 100755
index 000..f7df6fe
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/condition_8h.html
@@ -0,0 +1,150 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/condition.h File Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('condition_8h.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+Typedefs 
+Functions  
+  
+condition.h File Reference  
+
+
+#include 
proton/import_export.h
+#include proton/codec.h
+#include proton/type_compat.h
+#include stddef.h
+
+Go to the source code of this 
file.
+
+
+Typedefs
+typedef struct pn_condition_tpn_condition_t
+
+
+
+Functions
+PN_EXTERN boolpn_condition_is_set
 (pn_condition_t
 *condition)
+
+PN_EXTERN voidpn_condition_clear
 (pn_condition_t
 *condition)
+
+PN_EXTERN const char *pn_condition_get_name
 (pn_condition_t
 *condition)
+
+PN_EXTERN intpn_condition_set_name
 (pn_condition_t
 *condition, const char *name)
+
+PN_EXTERN const char *pn_condition_get_description
 (pn_condition_t
 *condition)
+
+PN_EXTERN intpn_condition_set_description
 (pn_condition_t
 *condition, const char *description)
+
+PN_EXTERN pn_data_t 
*pn_condition_info
 (pn_condition_t
 *condition)
+
+PN_EXTERN intpn_condition_vformat
 (pn_condition_t
 *, const char *name, const char *fmt, va_list ap)
+
+PN_EXTERN intpn_condition_format
 (pn_condition_t
 *, const char *name, const char *fmt,...)
+
+PN_EXTERN boolpn_condition_is_redirect
 (pn_condition_t
 *condition)
+
+PN_EXTERN const char *pn_condition_redirect_host
 (pn_condition_t
 *condition)
+
+PN_EXTERN intpn_condition_redirect_port
 (pn_condition_t
 *condition)
+
+
+Detailed 
Description
+The Condition API for the proton Engine. 
+
+
+
+
+  
+protoncondition.h
+Generated by
+http://www.doxygen.org/index.html;>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/condition_8h.js
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/condition_8h.js 
b/content/releases/qpid-proton-0.15.0/proton/c/api/condition_8h.js
new file mode 100755
index 000..e22a603
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/condition_8h.js
@@ -0,0 +1,16 @@
+var condition_8h =
+[
+[ "pn_condition_t", 
"condition_8h.html#ga11eb7db7d2c205169fe3d47c996a95a5", null ],
+[ "pn_condition_clear", 
"condition_8h.html#ga038f092914fc0fd8ae3713a537e34a05", null ],
+[ "pn_condition_format", 
"condition_8h.html#ga1fcf90bc3cbf8463351a50d8aaf6f8b3", null ],
+[ "pn_condition_get_description", 
"condition_8h.html#ga4cb8ef00e5050a0dfa022a89e44724e1", null ],
+[ "pn_condition_get_name", 
"condition_8h.html#ga8bb1e8261bb4c49b20e09d4015d3f8f1", null ],
+[ "pn_condition_info", 
"condition_8h.html#ga6ce699cd410d7cef3de1ee97e975720a", null ],
+[ "pn_condition_is_redirect", 
"condition_8h.html#gaaab127d4d71648f675858e9a250f73b3", null ],
+[ "pn_condition_is_set", 
"condition_8h.html#ga42e27e6830b6e29c1a3c769516cd706e", null ],
+[ "pn_condition_redirect_host", 
"condition_8h.html#ga6a226262df61311f33a6d5075b15ce41", null ],
+[ "pn_condition_redirect_port", 
"condition_8h.html#ga09cf10e3bb03d63a12b8d7bb91bc810f", null ],
+[ "pn_condition_set_description", 
"condition_8h.html#gac20f81e06aa0efb5f5a23b141b36be7b", null ],
+[ "pn_condition_set_name", 
"condition_8h.html#ga2ae7b345d3dc1417766e23bf8435cf29", null ],
+[ "pn_condition_vformat", 
"condition_8h.html#ga7512764aec8ea62dec4749aae44478a4", null ]
+];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/condition_8h_source.html
--
diff --git 
a/content/releases/qpid-proton-0.15.0/proton/c/api/condition_8h_source.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/condition_8h_source.html
new file mode 100755
index 000..7799067
--- /dev/null
+++ 

[14/51] [partial] qpid-site git commit: add files for Proton 0.15.0 release

2016-10-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/de3c3488/content/releases/qpid-proton-0.15.0/proton/c/api/io_8h_source.html
--
diff --git a/content/releases/qpid-proton-0.15.0/proton/c/api/io_8h_source.html 
b/content/releases/qpid-proton-0.15.0/proton/c/api/io_8h_source.html
new file mode 100755
index 000..328f1cf
--- /dev/null
+++ b/content/releases/qpid-proton-0.15.0/proton/c/api/io_8h_source.html
@@ -0,0 +1,175 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+
+
+
+Qpid Proton C API: proton/io.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid Proton C API
+   0.15.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('io_8h_source.html','');});
+
+
+
+
+AllClassesFilesFunctionsVariablesTypedefsEnumerationsEnumeratorGroupsPages
+
+
+
+
+
+
+
+
+  
+io.h  
+
+
+1#ifndef 
PROTON_IO_H
+
2#define PROTON_IO_H 1
+
3
+
4/*
+
5 *
+
6 * Licensed to the Apache Software 
Foundation (ASF) under one
+
7 * or more contributor license agreements.  
See the NOTICE file
+
8 * distributed with this work for 
additional information
+
9 * regarding copyright ownership.  The ASF 
licenses this file
+   
10 * to you under the Apache License, 
Version 2.0 (the
+   
11 * License); you may not use 
this file except in compliance
+   
12 * with the License.  You may obtain a 
copy of the License at
+   
13 *
+   
14 *   
http://www.apache.org/licenses/LICENSE-2.0
+   
15 *
+   
16 * Unless required by applicable law or 
agreed to in writing,
+   
17 * software distributed under the License 
is distributed on an
+   
18 * AS IS BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
19 * KIND, either express or implied.  See 
the License for the
+   
20 * specific language governing permissions 
and limitations
+   
21 * under the License.
+   
22 *
+   
23 */
+   
24
+   
25#include 
proton/import_export.h
+   
26#include 
proton/error.h
+   
27#include 
proton/type_compat.h
+   
28#include stddef.h
+   
29
+   
30#ifdef __cplusplus
+   
31extern C 
{
+   
32#endif
+   
33
+   
50#if defined(_WIN32)  ! 
defined(__CYGWIN__)
+   
51#ifdef _WIN64
+   
52typedef unsigned 
__int64 pn_socket_t;
+   
53#else
+   
54typedef unsigned int pn_socket_t;
+   
55#endif
+   
56#define PN_INVALID_SOCKET (pn_socket_t)(~0)
+   
57#else
+   
58typedef int 
pn_socket_t;
+   
59#define PN_INVALID_SOCKET 
(-1)
+   
60#endif
+   
61
+   
82typedef struct pn_io_t pn_io_t;
+   
83
+   
93typedef struct pn_selector_t pn_selector_t;
+   
94
+   
95PN_EXTERN pn_io_t *pn_io(void);
+   
96PN_EXTERN void 
pn_io_free(pn_io_t *io);
+   
97PN_EXTERN pn_error_t *pn_io_error(pn_io_t *io);
+   
98PN_EXTERN pn_socket_t pn_connect(pn_io_t *io, const char *host, const char *port);
+   
99PN_EXTERN pn_socket_t pn_listen(pn_io_t *io, const char *host, const char *port);
+  
100PN_EXTERN pn_socket_t pn_accept(pn_io_t *io, pn_socket_t 
socket, char *name, size_t size);
+  
101PN_EXTERN void 
pn_close(pn_io_t *io, pn_socket_t socket);
+  
102PN_EXTERN ssize_t pn_send(pn_io_t *io, pn_socket_t socket, 
const void *buf, 
size_t size);
+  
103PN_EXTERN ssize_t pn_recv(pn_io_t *io, pn_socket_t socket, 
void *buf, size_t size);
+  
104PN_EXTERN int pn_pipe(pn_io_t 
*io, pn_socket_t *dest);
+  
105PN_EXTERN ssize_t pn_read(pn_io_t *io, pn_socket_t socket, 
void *buf, size_t size);
+  
106PN_EXTERN ssize_t pn_write(pn_io_t *io, pn_socket_t socket, 
const void *buf, 
size_t size);
+  
107PN_EXTERN bool 
pn_wouldblock(pn_io_t *io);
+  
108PN_EXTERN pn_selector_t *pn_io_selector(pn_io_t *io);
+  
109
+  
110#ifdef __cplusplus
+  
111}
+  
112#endif
+  
113
+  
114#endif /* io.h */
+
+
+
+
+  
+protonio.h
+Generated by
+http://www.doxygen.org/index.html;>
+ 1.8.3.1 
+  
+
+
+


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



  1   2   >