jruby-activemq 5.5.1-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (302) hide show
  1. data/History.md +6 -0
  2. data/LICENSE +619 -0
  3. data/README.md +15 -0
  4. data/Rakefile +34 -0
  5. data/apache-activemq-5.5.1/LICENSE +619 -0
  6. data/apache-activemq-5.5.1/NOTICE +85 -0
  7. data/apache-activemq-5.5.1/README.txt +63 -0
  8. data/apache-activemq-5.5.1/WebConsole-README.txt +42 -0
  9. data/apache-activemq-5.5.1/activemq-all-5.5.1.jar +0 -0
  10. data/apache-activemq-5.5.1/bin/activemq +653 -0
  11. data/apache-activemq-5.5.1/bin/activemq-admin +155 -0
  12. data/apache-activemq-5.5.1/bin/linux-x86-32/activemq +543 -0
  13. data/apache-activemq-5.5.1/bin/linux-x86-32/libwrapper.so +0 -0
  14. data/apache-activemq-5.5.1/bin/linux-x86-32/wrapper +0 -0
  15. data/apache-activemq-5.5.1/bin/linux-x86-32/wrapper.conf +139 -0
  16. data/apache-activemq-5.5.1/bin/linux-x86-64/activemq +543 -0
  17. data/apache-activemq-5.5.1/bin/linux-x86-64/libwrapper.so +0 -0
  18. data/apache-activemq-5.5.1/bin/linux-x86-64/wrapper +0 -0
  19. data/apache-activemq-5.5.1/bin/linux-x86-64/wrapper.conf +139 -0
  20. data/apache-activemq-5.5.1/bin/macosx/activemq +537 -0
  21. data/apache-activemq-5.5.1/bin/macosx/libwrapper.jnilib +0 -0
  22. data/apache-activemq-5.5.1/bin/macosx/wrapper +0 -0
  23. data/apache-activemq-5.5.1/bin/macosx/wrapper.conf +139 -0
  24. data/apache-activemq-5.5.1/bin/run.jar +0 -0
  25. data/apache-activemq-5.5.1/bin/wrapper.jar +0 -0
  26. data/apache-activemq-5.5.1/conf/activemq-command.xml +52 -0
  27. data/apache-activemq-5.5.1/conf/activemq-demo.xml +289 -0
  28. data/apache-activemq-5.5.1/conf/activemq-dynamic-network-broker1.xml +108 -0
  29. data/apache-activemq-5.5.1/conf/activemq-dynamic-network-broker2.xml +109 -0
  30. data/apache-activemq-5.5.1/conf/activemq-jdbc.xml +98 -0
  31. data/apache-activemq-5.5.1/conf/activemq-scalability.xml +77 -0
  32. data/apache-activemq-5.5.1/conf/activemq-security.xml +132 -0
  33. data/apache-activemq-5.5.1/conf/activemq-specjms.xml +118 -0
  34. data/apache-activemq-5.5.1/conf/activemq-static-network-broker1.xml +100 -0
  35. data/apache-activemq-5.5.1/conf/activemq-static-network-broker2.xml +100 -0
  36. data/apache-activemq-5.5.1/conf/activemq-stomp.xml +133 -0
  37. data/apache-activemq-5.5.1/conf/activemq-throughput.xml +82 -0
  38. data/apache-activemq-5.5.1/conf/activemq.xml +136 -0
  39. data/apache-activemq-5.5.1/conf/broker-localhost.cert +0 -0
  40. data/apache-activemq-5.5.1/conf/broker.ks +0 -0
  41. data/apache-activemq-5.5.1/conf/broker.ts +0 -0
  42. data/apache-activemq-5.5.1/conf/camel.xml +66 -0
  43. data/apache-activemq-5.5.1/conf/client.ks +0 -0
  44. data/apache-activemq-5.5.1/conf/client.ts +0 -0
  45. data/apache-activemq-5.5.1/conf/credentials-enc.properties +22 -0
  46. data/apache-activemq-5.5.1/conf/credentials.properties +22 -0
  47. data/apache-activemq-5.5.1/conf/jetty-realm.properties +20 -0
  48. data/apache-activemq-5.5.1/conf/jetty.xml +112 -0
  49. data/apache-activemq-5.5.1/conf/jmx.access +18 -0
  50. data/apache-activemq-5.5.1/conf/jmx.password +18 -0
  51. data/apache-activemq-5.5.1/conf/log4j.properties +75 -0
  52. data/apache-activemq-5.5.1/conf/logging.properties +25 -0
  53. data/apache-activemq-5.5.1/data/activemq.log +0 -0
  54. data/apache-activemq-5.5.1/docs/index.html +22 -0
  55. data/apache-activemq-5.5.1/example/build.xml +317 -0
  56. data/apache-activemq-5.5.1/example/conf/activemq.xml +41 -0
  57. data/apache-activemq-5.5.1/example/conf/log4j.properties +39 -0
  58. data/apache-activemq-5.5.1/example/conf/resin-web.xml +35 -0
  59. data/apache-activemq-5.5.1/example/conf/web.xml +40 -0
  60. data/apache-activemq-5.5.1/example/perfharness/perfharness-activemq.sh +49 -0
  61. data/apache-activemq-5.5.1/example/ruby/README.txt +27 -0
  62. data/apache-activemq-5.5.1/example/ruby/catstomp.rb +49 -0
  63. data/apache-activemq-5.5.1/example/ruby/listener.rb +51 -0
  64. data/apache-activemq-5.5.1/example/ruby/publisher.rb +67 -0
  65. data/apache-activemq-5.5.1/example/ruby/stompcat.rb +50 -0
  66. data/apache-activemq-5.5.1/example/src/CommandLineSupport.java +120 -0
  67. data/apache-activemq-5.5.1/example/src/ConsumerTool.java +353 -0
  68. data/apache-activemq-5.5.1/example/src/EmbeddedBroker.java +41 -0
  69. data/apache-activemq-5.5.1/example/src/Log4jJMSAppenderExample.java +70 -0
  70. data/apache-activemq-5.5.1/example/src/ProducerAndConsumerTool.java +51 -0
  71. data/apache-activemq-5.5.1/example/src/ProducerTool.java +247 -0
  72. data/apache-activemq-5.5.1/example/src/RequesterTool.java +257 -0
  73. data/apache-activemq-5.5.1/example/src/StompExample.java +59 -0
  74. data/apache-activemq-5.5.1/example/src/TopicListener.java +118 -0
  75. data/apache-activemq-5.5.1/example/src/TopicPublisher.java +205 -0
  76. data/apache-activemq-5.5.1/example/src/jndi.properties +17 -0
  77. data/apache-activemq-5.5.1/example/src/log4j-jms.properties +31 -0
  78. data/apache-activemq-5.5.1/example/transactions/README.txt +40 -0
  79. data/apache-activemq-5.5.1/example/transactions/build.xml +113 -0
  80. data/apache-activemq-5.5.1/example/transactions/src/Retailer.java +107 -0
  81. data/apache-activemq-5.5.1/example/transactions/src/Supplier.java +135 -0
  82. data/apache-activemq-5.5.1/example/transactions/src/TransactionsDemo.java +47 -0
  83. data/apache-activemq-5.5.1/example/transactions/src/Vendor.java +302 -0
  84. data/apache-activemq-5.5.1/lib/a.sh +3 -0
  85. data/apache-activemq-5.5.1/lib/activation-1.1.jar +0 -0
  86. data/apache-activemq-5.5.1/lib/activemq-camel-5.5.1.jar +0 -0
  87. data/apache-activemq-5.5.1/lib/activemq-console-5.5.1.jar +0 -0
  88. data/apache-activemq-5.5.1/lib/activemq-core-5.5.1.jar +0 -0
  89. data/apache-activemq-5.5.1/lib/activemq-jaas-5.5.1.jar +0 -0
  90. data/apache-activemq-5.5.1/lib/activemq-protobuf-1.1.jar +0 -0
  91. data/apache-activemq-5.5.1/lib/activemq-rar.txt +20 -0
  92. data/apache-activemq-5.5.1/lib/activemq-web-5.5.1.jar +0 -0
  93. data/apache-activemq-5.5.1/lib/camel-core-2.7.0.jar +0 -0
  94. data/apache-activemq-5.5.1/lib/camel-jetty-2.7.0.jar +0 -0
  95. data/apache-activemq-5.5.1/lib/camel-jms-2.7.0.jar +0 -0
  96. data/apache-activemq-5.5.1/lib/camel-spring-2.7.0.jar +0 -0
  97. data/apache-activemq-5.5.1/lib/geronimo-j2ee-management_1.1_spec-1.0.1.jar +0 -0
  98. data/apache-activemq-5.5.1/lib/geronimo-jms_1.1_spec-1.1.1.jar +0 -0
  99. data/apache-activemq-5.5.1/lib/geronimo-jta_1.0.1B_spec-1.0.1.jar +0 -0
  100. data/apache-activemq-5.5.1/lib/jaxb-api-2.1.jar +0 -0
  101. data/apache-activemq-5.5.1/lib/jaxb-impl-2.1.6.jar +0 -0
  102. data/apache-activemq-5.5.1/lib/jcl-over-slf4j-1.5.11.jar +0 -0
  103. data/apache-activemq-5.5.1/lib/kahadb-5.5.1.jar +0 -0
  104. data/apache-activemq-5.5.1/lib/optional/activeio-core-3.1.2.jar +0 -0
  105. data/apache-activemq-5.5.1/lib/optional/activemq-jmdns_1.0-5.5.1.jar +0 -0
  106. data/apache-activemq-5.5.1/lib/optional/activemq-optional-5.5.1.jar +0 -0
  107. data/apache-activemq-5.5.1/lib/optional/activemq-pool-5.5.1.jar +0 -0
  108. data/apache-activemq-5.5.1/lib/optional/activemq-spring-5.5.1.jar +0 -0
  109. data/apache-activemq-5.5.1/lib/optional/activemq-xmpp-5.5.1.jar +0 -0
  110. data/apache-activemq-5.5.1/lib/optional/commons-beanutils-1.6.1.jar +0 -0
  111. data/apache-activemq-5.5.1/lib/optional/commons-codec-1.2.jar +0 -0
  112. data/apache-activemq-5.5.1/lib/optional/commons-collections-3.2.1.jar +0 -0
  113. data/apache-activemq-5.5.1/lib/optional/commons-dbcp-1.2.2.jar +0 -0
  114. data/apache-activemq-5.5.1/lib/optional/commons-httpclient-3.1.jar +0 -0
  115. data/apache-activemq-5.5.1/lib/optional/commons-lang-2.4.jar +0 -0
  116. data/apache-activemq-5.5.1/lib/optional/commons-net-2.0.jar +0 -0
  117. data/apache-activemq-5.5.1/lib/optional/commons-pool-1.5.4.jar +0 -0
  118. data/apache-activemq-5.5.1/lib/optional/geronimo-j2ee-connector_1.5_spec-2.0.0.jar +0 -0
  119. data/apache-activemq-5.5.1/lib/optional/jasypt-1.7.jar +0 -0
  120. data/apache-activemq-5.5.1/lib/optional/jettison-1.2.jar +0 -0
  121. data/apache-activemq-5.5.1/lib/optional/josql-1.5.jar +0 -0
  122. data/apache-activemq-5.5.1/lib/optional/log4j-1.2.14.jar +0 -0
  123. data/apache-activemq-5.5.1/lib/optional/slf4j-log4j12-1.5.11.jar +0 -0
  124. data/apache-activemq-5.5.1/lib/optional/spring-aop-3.0.3.RELEASE.jar +0 -0
  125. data/apache-activemq-5.5.1/lib/optional/spring-asm-3.0.3.RELEASE.jar +0 -0
  126. data/apache-activemq-5.5.1/lib/optional/spring-beans-3.0.3.RELEASE.jar +0 -0
  127. data/apache-activemq-5.5.1/lib/optional/spring-context-3.0.3.RELEASE.jar +0 -0
  128. data/apache-activemq-5.5.1/lib/optional/spring-core-3.0.3.RELEASE.jar +0 -0
  129. data/apache-activemq-5.5.1/lib/optional/spring-expression-3.0.3.RELEASE.jar +0 -0
  130. data/apache-activemq-5.5.1/lib/optional/spring-jms-3.0.3.RELEASE.jar +0 -0
  131. data/apache-activemq-5.5.1/lib/optional/spring-oxm-tiger-1.5.8.jar +0 -0
  132. data/apache-activemq-5.5.1/lib/optional/spring-tx-3.0.3.RELEASE.jar +0 -0
  133. data/apache-activemq-5.5.1/lib/optional/stax2-api-3.0.1.jar +0 -0
  134. data/apache-activemq-5.5.1/lib/optional/velocity-1.6.2.jar +0 -0
  135. data/apache-activemq-5.5.1/lib/optional/woodstox-core-asl-4.0.7.jar +0 -0
  136. data/apache-activemq-5.5.1/lib/optional/xbean-spring-3.7.jar +0 -0
  137. data/apache-activemq-5.5.1/lib/optional/xpp3-1.1.4c.jar +0 -0
  138. data/apache-activemq-5.5.1/lib/optional/xstream-1.3.1.jar +0 -0
  139. data/apache-activemq-5.5.1/lib/slf4j-api-1.5.11.jar +0 -0
  140. data/apache-activemq-5.5.1/lib/stax-1.2.0.jar +0 -0
  141. data/apache-activemq-5.5.1/lib/stax-api-1.0.1.jar +0 -0
  142. data/apache-activemq-5.5.1/lib/web/commons-management-1.0.jar +0 -0
  143. data/apache-activemq-5.5.1/lib/web/core-3.1.1.jar +0 -0
  144. data/apache-activemq-5.5.1/lib/web/geronimo-servlet_2.5_spec-1.2.jar +0 -0
  145. data/apache-activemq-5.5.1/lib/web/jdom-1.0.jar +0 -0
  146. data/apache-activemq-5.5.1/lib/web/jetty-all-server-7.1.6.v20100715.jar +0 -0
  147. data/apache-activemq-5.5.1/lib/web/jetty-websocket-7.1.6.v20100715.jar +0 -0
  148. data/apache-activemq-5.5.1/lib/web/jsp-2.1-glassfish-2.1.v20100127.jar +0 -0
  149. data/apache-activemq-5.5.1/lib/web/jsp-api-2.1-glassfish-2.1.v20100127.jar +0 -0
  150. data/apache-activemq-5.5.1/lib/web/rome-0.8.jar +0 -0
  151. data/apache-activemq-5.5.1/lib/web/sitemesh-2.2.1.jar +0 -0
  152. data/apache-activemq-5.5.1/lib/web/spring-web-3.0.3.RELEASE.jar +0 -0
  153. data/apache-activemq-5.5.1/lib/web/spring-webmvc-3.0.3.RELEASE.jar +0 -0
  154. data/apache-activemq-5.5.1/user-guide.html +119 -0
  155. data/apache-activemq-5.5.1/webapps/admin/404.html +137 -0
  156. data/apache-activemq-5.5.1/webapps/admin/500.html +138 -0
  157. data/apache-activemq-5.5.1/webapps/admin/META-INF/LICENSE +1026 -0
  158. data/apache-activemq-5.5.1/webapps/admin/META-INF/NOTICE +107 -0
  159. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/WebConsoleStarter.class +0 -0
  160. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CopyMessage.class +0 -0
  161. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CreateDestination.class +0 -0
  162. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CreateSubscriber.class +0 -0
  163. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteDestination.class +0 -0
  164. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteJob.class +0 -0
  165. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteMessage.class +0 -0
  166. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteSubscriber.class +0 -0
  167. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/MoveMessage.class +0 -0
  168. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/PurgeDestination.class +0 -0
  169. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/SendMessage.class +0 -0
  170. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter$1.class +0 -0
  171. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter$2.class +0 -0
  172. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter.class +0 -0
  173. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/classes/org/apache/activemq/web/handler/BindingBeanNameUrlHandlerMapping.class +0 -0
  174. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/decorators.xml +30 -0
  175. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/dispatcher-servlet.xml +62 -0
  176. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/jspf/headertags.jspf +21 -0
  177. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/jspf/old.jspf +21 -0
  178. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/tags/form/checkbox.tag +18 -0
  179. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/tags/form/forEachMapEntry.tag +29 -0
  180. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/tags/form/option.tag +20 -0
  181. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/tags/form/short.tag +29 -0
  182. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/tags/form/text.tag +30 -0
  183. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/tags/form/tooltip.tag +29 -0
  184. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/tags/form/uri.tag +18 -0
  185. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/tags/jms/forEachConnection.tag +35 -0
  186. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/tags/jms/forEachMessage.tag +34 -0
  187. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/tags/jms/formatTimestamp.tag +29 -0
  188. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/tags/jms/persistent.tag +27 -0
  189. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/web.xml +187 -0
  190. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/webconsole-default.xml +26 -0
  191. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/webconsole-embedded.xml +45 -0
  192. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/webconsole-invm.xml +41 -0
  193. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/webconsole-jndi.xml +39 -0
  194. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/webconsole-properties.xml +39 -0
  195. data/apache-activemq-5.5.1/webapps/admin/WEB-INF/webconsole-query.xml +25 -0
  196. data/apache-activemq-5.5.1/webapps/admin/browse.jsp +64 -0
  197. data/apache-activemq-5.5.1/webapps/admin/connection.jsp +138 -0
  198. data/apache-activemq-5.5.1/webapps/admin/connections.jsp +85 -0
  199. data/apache-activemq-5.5.1/webapps/admin/decorators/main.jsp +165 -0
  200. data/apache-activemq-5.5.1/webapps/admin/decorators/panel.jsp +31 -0
  201. data/apache-activemq-5.5.1/webapps/admin/decorators/printable.jsp +31 -0
  202. data/apache-activemq-5.5.1/webapps/admin/graph.jsp +67 -0
  203. data/apache-activemq-5.5.1/webapps/admin/images/activemq-logo.png +0 -0
  204. data/apache-activemq-5.5.1/webapps/admin/images/asf-logo.png +0 -0
  205. data/apache-activemq-5.5.1/webapps/admin/images/big-bullet.png +0 -0
  206. data/apache-activemq-5.5.1/webapps/admin/images/black-footer-bottom.png +0 -0
  207. data/apache-activemq-5.5.1/webapps/admin/images/black-footer-left.png +0 -0
  208. data/apache-activemq-5.5.1/webapps/admin/images/black-footer-right.png +0 -0
  209. data/apache-activemq-5.5.1/webapps/admin/images/bottom-red-bar.png +0 -0
  210. data/apache-activemq-5.5.1/webapps/admin/images/checker-bg.png +0 -0
  211. data/apache-activemq-5.5.1/webapps/admin/images/content-left.png +0 -0
  212. data/apache-activemq-5.5.1/webapps/admin/images/content-right.png +0 -0
  213. data/apache-activemq-5.5.1/webapps/admin/images/feed_atom.png +0 -0
  214. data/apache-activemq-5.5.1/webapps/admin/images/feed_rss.png +0 -0
  215. data/apache-activemq-5.5.1/webapps/admin/images/left-box-bottom.png +0 -0
  216. data/apache-activemq-5.5.1/webapps/admin/images/left-box-right.png +0 -0
  217. data/apache-activemq-5.5.1/webapps/admin/images/left-box-top.png +0 -0
  218. data/apache-activemq-5.5.1/webapps/admin/images/oval-arrow.png +0 -0
  219. data/apache-activemq-5.5.1/webapps/admin/images/right-box-bottom.png +0 -0
  220. data/apache-activemq-5.5.1/webapps/admin/images/right-box-left.png +0 -0
  221. data/apache-activemq-5.5.1/webapps/admin/images/right-box-top.png +0 -0
  222. data/apache-activemq-5.5.1/webapps/admin/images/small-bullet-gray.png +0 -0
  223. data/apache-activemq-5.5.1/webapps/admin/images/small-bullet-red.png +0 -0
  224. data/apache-activemq-5.5.1/webapps/admin/images/spacer.gif +0 -0
  225. data/apache-activemq-5.5.1/webapps/admin/images/top-red-bar.png +0 -0
  226. data/apache-activemq-5.5.1/webapps/admin/images/white-header-left.png +0 -0
  227. data/apache-activemq-5.5.1/webapps/admin/images/white-header-right.png +0 -0
  228. data/apache-activemq-5.5.1/webapps/admin/images/white-header-top.png +0 -0
  229. data/apache-activemq-5.5.1/webapps/admin/index.jsp +65 -0
  230. data/apache-activemq-5.5.1/webapps/admin/js/common.js +121 -0
  231. data/apache-activemq-5.5.1/webapps/admin/js/css.js +145 -0
  232. data/apache-activemq-5.5.1/webapps/admin/js/mochi/MochiKit.js +4804 -0
  233. data/apache-activemq-5.5.1/webapps/admin/js/mochi/__package__.js +14 -0
  234. data/apache-activemq-5.5.1/webapps/admin/js/plotkit/Base.js +332 -0
  235. data/apache-activemq-5.5.1/webapps/admin/js/plotkit/Canvas.js +707 -0
  236. data/apache-activemq-5.5.1/webapps/admin/js/plotkit/Layout.js +588 -0
  237. data/apache-activemq-5.5.1/webapps/admin/js/plotkit/SVG.js +677 -0
  238. data/apache-activemq-5.5.1/webapps/admin/js/plotkit/SweetCanvas.js +281 -0
  239. data/apache-activemq-5.5.1/webapps/admin/js/plotkit/SweetSVG.js +196 -0
  240. data/apache-activemq-5.5.1/webapps/admin/js/plotkit/dummy.svg +15 -0
  241. data/apache-activemq-5.5.1/webapps/admin/js/plotkit/iecanvas.htc +389 -0
  242. data/apache-activemq-5.5.1/webapps/admin/js/prettify.js +1424 -0
  243. data/apache-activemq-5.5.1/webapps/admin/js/standardista-table-sorting.js +434 -0
  244. data/apache-activemq-5.5.1/webapps/admin/message.jsp +185 -0
  245. data/apache-activemq-5.5.1/webapps/admin/network.jsp +52 -0
  246. data/apache-activemq-5.5.1/webapps/admin/queueConsumers.jsp +79 -0
  247. data/apache-activemq-5.5.1/webapps/admin/queueGraph.jsp +68 -0
  248. data/apache-activemq-5.5.1/webapps/admin/queues.jsp +78 -0
  249. data/apache-activemq-5.5.1/webapps/admin/scheduled.jsp +67 -0
  250. data/apache-activemq-5.5.1/webapps/admin/send.jsp +173 -0
  251. data/apache-activemq-5.5.1/webapps/admin/styles/prettify.css +44 -0
  252. data/apache-activemq-5.5.1/webapps/admin/styles/site.css +206 -0
  253. data/apache-activemq-5.5.1/webapps/admin/styles/sorttable.css +70 -0
  254. data/apache-activemq-5.5.1/webapps/admin/styles/type-settings.css +177 -0
  255. data/apache-activemq-5.5.1/webapps/admin/subscribers.jsp +158 -0
  256. data/apache-activemq-5.5.1/webapps/admin/test/dummy.jsp +52 -0
  257. data/apache-activemq-5.5.1/webapps/admin/test/index.jsp +84 -0
  258. data/apache-activemq-5.5.1/webapps/admin/test/systemProperties.jsp +53 -0
  259. data/apache-activemq-5.5.1/webapps/admin/topics.jsp +66 -0
  260. data/apache-activemq-5.5.1/webapps/admin/xml/queues.jsp +34 -0
  261. data/apache-activemq-5.5.1/webapps/admin/xml/topics.jsp +29 -0
  262. data/apache-activemq-5.5.1/webapps/demo/META-INF/LICENSE +494 -0
  263. data/apache-activemq-5.5.1/webapps/demo/META-INF/NOTICE +82 -0
  264. data/apache-activemq-5.5.1/webapps/demo/WEB-INF/web.xml +111 -0
  265. data/apache-activemq-5.5.1/webapps/demo/chat.css +76 -0
  266. data/apache-activemq-5.5.1/webapps/demo/chat.html +219 -0
  267. data/apache-activemq-5.5.1/webapps/demo/index.html +181 -0
  268. data/apache-activemq-5.5.1/webapps/demo/js/amq.js +307 -0
  269. data/apache-activemq-5.5.1/webapps/demo/js/amq_dojo_adapter.js +84 -0
  270. data/apache-activemq-5.5.1/webapps/demo/js/amq_jquery_adapter.js +88 -0
  271. data/apache-activemq-5.5.1/webapps/demo/js/amq_prototype_adapter.js +84 -0
  272. data/apache-activemq-5.5.1/webapps/demo/js/chat.js +209 -0
  273. data/apache-activemq-5.5.1/webapps/demo/js/dojo.js +16 -0
  274. data/apache-activemq-5.5.1/webapps/demo/js/jquery-1.4.2.min.js +154 -0
  275. data/apache-activemq-5.5.1/webapps/demo/js/prototype.js +4874 -0
  276. data/apache-activemq-5.5.1/webapps/demo/portfolio/portfolio.html +87 -0
  277. data/apache-activemq-5.5.1/webapps/demo/portfolio/portfolio.js +91 -0
  278. data/apache-activemq-5.5.1/webapps/demo/sandbox/index.html +31 -0
  279. data/apache-activemq-5.5.1/webapps/demo/sandbox/portfolio.html +93 -0
  280. data/apache-activemq-5.5.1/webapps/demo/sandbox/portfolio.js +49 -0
  281. data/apache-activemq-5.5.1/webapps/demo/sandbox/util.js +52 -0
  282. data/apache-activemq-5.5.1/webapps/demo/sandbox/webmq.js +149 -0
  283. data/apache-activemq-5.5.1/webapps/demo/send.html +51 -0
  284. data/apache-activemq-5.5.1/webapps/demo/style.css +440 -0
  285. data/apache-activemq-5.5.1/webapps/demo/test/amq_test.html +311 -0
  286. data/apache-activemq-5.5.1/webapps/demo/test/assets/README +4 -0
  287. data/apache-activemq-5.5.1/webapps/demo/test/assets/jsunittest.js +1017 -0
  288. data/apache-activemq-5.5.1/webapps/demo/test/assets/unittest.css +54 -0
  289. data/apache-activemq-5.5.1/webapps/favicon.ico +0 -0
  290. data/apache-activemq-5.5.1/webapps/fileserver/META-INF/LICENSE +203 -0
  291. data/apache-activemq-5.5.1/webapps/fileserver/META-INF/NOTICE +5 -0
  292. data/apache-activemq-5.5.1/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/FilenameGuardFilter$GuardedHttpServletRequest.class +0 -0
  293. data/apache-activemq-5.5.1/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/FilenameGuardFilter.class +0 -0
  294. data/apache-activemq-5.5.1/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/IOHelper.class +0 -0
  295. data/apache-activemq-5.5.1/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/RestFilter.class +0 -0
  296. data/apache-activemq-5.5.1/webapps/fileserver/WEB-INF/web.xml +56 -0
  297. data/apache-activemq-5.5.1/webapps/fileserver/index.html +30 -0
  298. data/apache-activemq-5.5.1/webapps/index.html +145 -0
  299. data/apache-activemq-5.5.1/webapps/styles/site.css +206 -0
  300. data/apache-activemq-5.5.1/webapps/styles/type-settings.css +177 -0
  301. data/lib/activemq.rb +11 -0
  302. metadata +382 -0
@@ -0,0 +1,434 @@
1
+ /**
2
+ * Written by Neil Crosby.
3
+ * http://www.workingwith.me.uk/articles/scripting/standardista_table_sorting
4
+ *
5
+ * This module is based on Stuart Langridge's "sorttable" code. Specifically,
6
+ * the determineSortFunction, sortCaseInsensitive, sortDate, sortNumeric, and
7
+ * sortCurrency functions are heavily based on his code. This module would not
8
+ * have been possible without Stuart's earlier outstanding work.
9
+ *
10
+ * Use this wherever you want, but please keep this comment at the top of this file.
11
+ *
12
+ * Copyright (c) 2006 Neil Crosby
13
+ *
14
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
15
+ * of this software and associated documentation files (the "Software"), to deal
16
+ * in the Software without restriction, including without limitation the rights
17
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18
+ * copies of the Software, and to permit persons to whom the Software is
19
+ * furnished to do so, subject to the following conditions:
20
+ *
21
+ * The above copyright notice and this permission notice shall be included in
22
+ * all copies or substantial portions of the Software.
23
+ *
24
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30
+ * SOFTWARE.
31
+ **/
32
+ var standardistaTableSorting = {
33
+
34
+ that: false,
35
+ isOdd: false,
36
+
37
+ sortColumnIndex : -1,
38
+ lastAssignedId : 0,
39
+ newRows: -1,
40
+ lastSortedTable: -1,
41
+
42
+ /**
43
+ * Initialises the Standardista Table Sorting module
44
+ **/
45
+ init : function() {
46
+ // first, check whether this web browser is capable of running this script
47
+ if (!document.getElementsByTagName) {
48
+ return;
49
+ }
50
+
51
+ this.that = this;
52
+
53
+ this.run();
54
+
55
+ },
56
+
57
+ /**
58
+ * Runs over each table in the document, making it sortable if it has a class
59
+ * assigned named "sortable" and an id assigned.
60
+ **/
61
+ run : function() {
62
+ var tables = document.getElementsByTagName("table");
63
+
64
+ for (var i=0; i < tables.length; i++) {
65
+ var thisTable = tables[i];
66
+
67
+ if (css.elementHasClass(thisTable, 'sortable')) {
68
+ this.makeSortable(thisTable);
69
+ }
70
+ }
71
+ },
72
+
73
+ /**
74
+ * Makes the given table sortable.
75
+ **/
76
+ makeSortable : function(table) {
77
+
78
+ // first, check if the table has an id. if it doesn't, give it one
79
+ if (!table.id) {
80
+ table.id = 'sortableTable'+this.lastAssignedId++;
81
+ }
82
+
83
+ // if this table does not have a thead, we don't want to know about it
84
+ if (!table.tHead || !table.tHead.rows || 0 == table.tHead.rows.length) {
85
+ return;
86
+ }
87
+
88
+ // we'll assume that the last row of headings in the thead is the row that
89
+ // wants to become clickable
90
+ var row = table.tHead.rows[table.tHead.rows.length - 1];
91
+
92
+ for (var i=0; i < row.cells.length; i++) {
93
+
94
+ // create a link with an onClick event which will
95
+ // control the sorting of the table
96
+ var linkEl = createElement('a');
97
+ linkEl.href = '#';
98
+ linkEl.onclick = this.headingClicked;
99
+ linkEl.setAttribute('columnId', i);
100
+ linkEl.title = 'Click to sort';
101
+
102
+ // move the current contents of the cell that we're
103
+ // hyperlinking into the hyperlink
104
+ var innerEls = row.cells[i].childNodes;
105
+ for (var j = 0; j < innerEls.length; j++) {
106
+ linkEl.appendChild(innerEls[j]);
107
+ }
108
+
109
+ // and finally add the new link back into the cell
110
+ row.cells[i].appendChild(linkEl);
111
+
112
+ var spanEl = createElement('span');
113
+ spanEl.className = 'tableSortArrow';
114
+ spanEl.appendChild(document.createTextNode('\u00A0\u00A0'));
115
+ row.cells[i].appendChild(spanEl);
116
+
117
+ }
118
+
119
+ if (css.elementHasClass(table, 'autostripe')) {
120
+ this.isOdd = false;
121
+ var rows = table.tBodies[0].rows;
122
+
123
+ // We appendChild rows that already exist to the tbody, so it moves them rather than creating new ones
124
+ for (var i=0;i<rows.length;i++) {
125
+ this.doStripe(rows[i]);
126
+ }
127
+ }
128
+ },
129
+
130
+ headingClicked: function(e) {
131
+
132
+ var that = standardistaTableSorting.that;
133
+
134
+ // linkEl is the hyperlink that was clicked on which caused
135
+ // this method to be called
136
+ var linkEl = getEventTarget(e);
137
+
138
+ // directly outside it is a td, tr, thead and table
139
+ var td = linkEl.parentNode;
140
+ var tr = td.parentNode;
141
+ var thead = tr.parentNode;
142
+ var table = thead.parentNode;
143
+
144
+ // if the table we're looking at doesn't have any rows
145
+ // (or only has one) then there's no point trying to sort it
146
+ if (!table.tBodies || table.tBodies[0].rows.length <= 1) {
147
+ return false;
148
+ }
149
+
150
+ // the column we want is indicated by td.cellIndex
151
+ var column = linkEl.getAttribute('columnId') || td.cellIndex;
152
+ //var column = td.cellIndex;
153
+
154
+ // find out what the current sort order of this column is
155
+ var arrows = css.getElementsByClass(td, 'tableSortArrow', 'span');
156
+ var previousSortOrder = '';
157
+ if (arrows.length > 0) {
158
+ previousSortOrder = arrows[0].getAttribute('sortOrder');
159
+ }
160
+
161
+ // work out how we want to sort this column using the data in the first cell
162
+ // but just getting the first cell is no good if it contains no data
163
+ // so if the first cell just contains white space then we need to track
164
+ // down until we find a cell which does contain some actual data
165
+ var itm = ''
166
+ var rowNum = 0;
167
+ while ('' == itm && rowNum < table.tBodies[0].rows.length) {
168
+ itm = that.getInnerText(table.tBodies[0].rows[rowNum].cells[column]);
169
+ rowNum++;
170
+ }
171
+ var sortfn = that.determineSortFunction(itm);
172
+
173
+ // if the last column that was sorted was this one, then all we need to
174
+ // do is reverse the sorting on this column
175
+ if (table.id == that.lastSortedTable && column == that.sortColumnIndex) {
176
+ newRows = that.newRows;
177
+ newRows.reverse();
178
+ // otherwise, we have to do the full sort
179
+ } else {
180
+ that.sortColumnIndex = column;
181
+ var newRows = new Array();
182
+
183
+ for (var j = 0; j < table.tBodies[0].rows.length; j++) {
184
+ newRows[j] = table.tBodies[0].rows[j];
185
+ }
186
+
187
+ newRows.sort(sortfn);
188
+ }
189
+
190
+ that.moveRows(table, newRows);
191
+ that.newRows = newRows;
192
+ that.lastSortedTable = table.id;
193
+
194
+ // now, give the user some feedback about which way the column is sorted
195
+
196
+ // first, get rid of any arrows in any heading cells
197
+ var arrows = css.getElementsByClass(tr, 'tableSortArrow', 'span');
198
+ for (var j = 0; j < arrows.length; j++) {
199
+ var arrowParent = arrows[j].parentNode;
200
+ arrowParent.removeChild(arrows[j]);
201
+
202
+ if (arrowParent != td) {
203
+ spanEl = createElement('span');
204
+ spanEl.className = 'tableSortArrow';
205
+ spanEl.appendChild(document.createTextNode('\u00A0\u00A0'));
206
+ arrowParent.appendChild(spanEl);
207
+ }
208
+ }
209
+
210
+ // now, add back in some feedback
211
+ var spanEl = createElement('span');
212
+ spanEl.className = 'tableSortArrow';
213
+ if (null == previousSortOrder || '' == previousSortOrder || 'DESC' == previousSortOrder) {
214
+ spanEl.appendChild(document.createTextNode(' \u2191'));
215
+ spanEl.setAttribute('sortOrder', 'ASC');
216
+ } else {
217
+ spanEl.appendChild(document.createTextNode(' \u2193'));
218
+ spanEl.setAttribute('sortOrder', 'DESC');
219
+ }
220
+
221
+ td.appendChild(spanEl);
222
+
223
+ return false;
224
+ },
225
+
226
+ getInnerText : function(el) {
227
+
228
+ if ('string' == typeof el || 'undefined' == typeof el) {
229
+ return el;
230
+ }
231
+
232
+ if (el.innerText) {
233
+ return el.innerText; // Not needed but it is faster
234
+ }
235
+
236
+ var str = el.getAttribute('standardistaTableSortingInnerText');
237
+ if (null != str && '' != str) {
238
+ return str;
239
+ }
240
+ str = '';
241
+
242
+ var cs = el.childNodes;
243
+ var l = cs.length;
244
+ for (var i = 0; i < l; i++) {
245
+ // 'if' is considerably quicker than a 'switch' statement,
246
+ // in Internet Explorer which translates up to a good time
247
+ // reduction since this is a very often called recursive function
248
+ if (1 == cs[i].nodeType) { // ELEMENT NODE
249
+ str += this.getInnerText(cs[i]);
250
+ break;
251
+ } else if (3 == cs[i].nodeType) { //TEXT_NODE
252
+ str += cs[i].nodeValue;
253
+ break;
254
+ }
255
+ }
256
+
257
+ // set the innertext for this element directly on the element
258
+ // so that it can be retrieved early next time the innertext
259
+ // is requested
260
+ el.setAttribute('standardistaTableSortingInnerText', str);
261
+
262
+ return str;
263
+ },
264
+
265
+ determineSortFunction : function(itm) {
266
+
267
+ var sortfn = this.sortCaseInsensitive;
268
+
269
+ if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d\d\d$/)) {
270
+ sortfn = this.sortDate;
271
+ }
272
+ if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d$/)) {
273
+ sortfn = this.sortDate;
274
+ }
275
+ if (itm.match(/^[�$]/)) {
276
+ sortfn = this.sortCurrency;
277
+ }
278
+ if (itm.match(/^\d?\.?\d+$/)) {
279
+ sortfn = this.sortNumeric;
280
+ }
281
+ if (itm.match(/^[+-]?\d*\.?\d+([eE]-?\d+)?$/)) {
282
+ sortfn = this.sortNumeric;
283
+ }
284
+ if (itm.match(/^([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])$/)) {
285
+ sortfn = this.sortIP;
286
+ }
287
+
288
+ return sortfn;
289
+ },
290
+
291
+ sortCaseInsensitive : function(a, b) {
292
+ var that = standardistaTableSorting.that;
293
+
294
+ var aa = that.getInnerText(a.cells[that.sortColumnIndex]).toLowerCase();
295
+ var bb = that.getInnerText(b.cells[that.sortColumnIndex]).toLowerCase();
296
+ if (aa==bb) {
297
+ return 0;
298
+ } else if (aa<bb) {
299
+ return -1;
300
+ } else {
301
+ return 1;
302
+ }
303
+ },
304
+
305
+ sortDate : function(a,b) {
306
+ var that = standardistaTableSorting.that;
307
+
308
+ // y2k notes: two digit years less than 50 are treated as 20XX, greater than 50 are treated as 19XX
309
+ var aa = that.getInnerText(a.cells[that.sortColumnIndex]);
310
+ var bb = that.getInnerText(b.cells[that.sortColumnIndex]);
311
+
312
+ var dt1, dt2, yr = -1;
313
+
314
+ if (aa.length == 10) {
315
+ dt1 = aa.substr(6,4)+aa.substr(3,2)+aa.substr(0,2);
316
+ } else {
317
+ yr = aa.substr(6,2);
318
+ if (parseInt(yr) < 50) {
319
+ yr = '20'+yr;
320
+ } else {
321
+ yr = '19'+yr;
322
+ }
323
+ dt1 = yr+aa.substr(3,2)+aa.substr(0,2);
324
+ }
325
+
326
+ if (bb.length == 10) {
327
+ dt2 = bb.substr(6,4)+bb.substr(3,2)+bb.substr(0,2);
328
+ } else {
329
+ yr = bb.substr(6,2);
330
+ if (parseInt(yr) < 50) {
331
+ yr = '20'+yr;
332
+ } else {
333
+ yr = '19'+yr;
334
+ }
335
+ dt2 = yr+bb.substr(3,2)+bb.substr(0,2);
336
+ }
337
+
338
+ if (dt1==dt2) {
339
+ return 0;
340
+ } else if (dt1<dt2) {
341
+ return -1;
342
+ }
343
+ return 1;
344
+ },
345
+
346
+ sortCurrency : function(a,b) {
347
+ var that = standardistaTableSorting.that;
348
+
349
+ var aa = that.getInnerText(a.cells[that.sortColumnIndex]).replace(/[^0-9.]/g,'');
350
+ var bb = that.getInnerText(b.cells[that.sortColumnIndex]).replace(/[^0-9.]/g,'');
351
+ return parseFloat(aa) - parseFloat(bb);
352
+ },
353
+
354
+ sortNumeric : function(a,b) {
355
+ var that = standardistaTableSorting.that;
356
+
357
+ var aa = parseFloat(that.getInnerText(a.cells[that.sortColumnIndex]));
358
+ if (isNaN(aa)) {
359
+ aa = 0;
360
+ }
361
+ var bb = parseFloat(that.getInnerText(b.cells[that.sortColumnIndex]));
362
+ if (isNaN(bb)) {
363
+ bb = 0;
364
+ }
365
+ return aa-bb;
366
+ },
367
+
368
+ makeStandardIPAddress : function(val) {
369
+ var vals = val.split('.');
370
+
371
+ for (x in vals) {
372
+ val = vals[x];
373
+
374
+ while (3 > val.length) {
375
+ val = '0'+val;
376
+ }
377
+ vals[x] = val;
378
+ }
379
+
380
+ val = vals.join('.');
381
+
382
+ return val;
383
+ },
384
+
385
+ sortIP : function(a,b) {
386
+ var that = standardistaTableSorting.that;
387
+
388
+ var aa = that.makeStandardIPAddress(that.getInnerText(a.cells[that.sortColumnIndex]).toLowerCase());
389
+ var bb = that.makeStandardIPAddress(that.getInnerText(b.cells[that.sortColumnIndex]).toLowerCase());
390
+ if (aa==bb) {
391
+ return 0;
392
+ } else if (aa<bb) {
393
+ return -1;
394
+ } else {
395
+ return 1;
396
+ }
397
+ },
398
+
399
+ moveRows : function(table, newRows) {
400
+ this.isOdd = false;
401
+
402
+ // We appendChild rows that already exist to the tbody, so it moves them rather than creating new ones
403
+ for (var i=0;i<newRows.length;i++) {
404
+ var rowItem = newRows[i];
405
+
406
+ this.doStripe(rowItem);
407
+
408
+ table.tBodies[0].appendChild(rowItem);
409
+ }
410
+ },
411
+
412
+ doStripe : function(rowItem) {
413
+ if (this.isOdd) {
414
+ css.addClassToElement(rowItem, 'odd');
415
+ } else {
416
+ css.removeClassFromElement(rowItem, 'odd');
417
+ }
418
+
419
+ this.isOdd = !this.isOdd;
420
+ }
421
+
422
+ }
423
+
424
+ function standardistaTableSortingInit() {
425
+ standardistaTableSorting.init();
426
+ if (document.getElementsByTagName("TH")[0] != null) {
427
+ var e = {};
428
+ var obj = document.getElementsByTagName("TH")[0].firstChild; // 0 points to the first column, use 3 if you want to sort on the 4th column
429
+ e.target = obj;
430
+ standardistaTableSorting.headingClicked(e); // will sort Ascending
431
+ }
432
+ }
433
+
434
+ addEvent(window, 'load', standardistaTableSortingInit)
@@ -0,0 +1,185 @@
1
+ <%--
2
+ Licensed to the Apache Software Foundation (ASF) under one or more
3
+ contributor license agreements. See the NOTICE file distributed with
4
+ this work for additional information regarding copyright ownership.
5
+ The ASF licenses this file to You under the Apache License, Version 2.0
6
+ (the "License"); you may not use this file except in compliance with
7
+ the License. You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ --%>
17
+ <html>
18
+ <head>
19
+ <c:set var="row" value="${requestContext.messageQuery.message}"/>
20
+ <title>Message <c:out value="${requestContext.messageQuery.id}"/></title>
21
+ </head>
22
+ <body>
23
+
24
+
25
+ <c:choose>
26
+ <c:when test="${empty row}">
27
+
28
+ <div>
29
+ No message could be found for ID <c:out value="${requestContext.messageQuery.id}"/>
30
+ </div>
31
+
32
+ </c:when>
33
+
34
+ <c:otherwise>
35
+
36
+ <table class="layout">
37
+ <tr>
38
+ <td class="layout" valign="top">
39
+ <table id="header" class="sortable autostripe">
40
+ <thead>
41
+ <tr>
42
+ <th colspan="2">
43
+ Headers
44
+ </th>
45
+ </tr>
46
+ </thead>
47
+ <tbody>
48
+ <tr>
49
+ <td class="label" title="Unique Message ID for this message">Message ID</td>
50
+ <td><c:out value="${row.JMSMessageID}"/></td>
51
+ </tr>
52
+ <tr>
53
+ <td class="label">Destination</td>
54
+ <td><form:tooltip text="${row.JMSDestination}" length="50"/></td>
55
+ </tr>
56
+ <tr>
57
+ <td class="label" title="The ID used to correlate messages together in a conversation">Correlation ID</td>
58
+ <td><c:out value="${row.JMSCorrelationID}"/></td>
59
+ </tr>
60
+ <tr>
61
+ <td class="label" title="Message Group Identifier">Group</td>
62
+ <td><c:out value="${row.groupID}"/></td>
63
+ </tr>
64
+ <tr>
65
+ <td class="label" title="Message Group Sequence Number">Sequence</td>
66
+ <td><c:out value="${row.groupSequence}"/></td>
67
+ </tr>
68
+ <tr>
69
+ <td class="label">Expiration</td>
70
+ <td><c:out value="${row.JMSExpiration}"/></td>
71
+ </tr>
72
+ <tr>
73
+ <td class="label">Persistence</td>
74
+ <td><jms:persistent message="${row}"/></td>
75
+ </tr>
76
+ <tr>
77
+ <td class="label">Priority</td>
78
+ <td><c:out value="${row.JMSPriority}"/></td>
79
+ </tr>
80
+ <tr>
81
+ <td class="label">Redelivered</td>
82
+ <td><c:out value="${row.JMSRedelivered}"/></td>
83
+ </tr>
84
+ <tr>
85
+ <td class="label">Reply To</td>
86
+ <td><c:out value="${row.JMSReplyTo}"/></td>
87
+ </tr>
88
+ <tr>
89
+ <td class="label">Timestamp</td>
90
+ <td><jms:formatTimestamp timestamp="${row.JMSTimestamp}"/></td>
91
+ </tr>
92
+ <tr>
93
+ <td class="label">Type</td>
94
+ <td><c:out value="${row.JMSType}"/></td>
95
+ </tr>
96
+ </tbody>
97
+ </table>
98
+ </td>
99
+
100
+ <td class="layout" valign="top">
101
+ <table id="properties" class="sortable autostripe">
102
+ <thead>
103
+ <tr>
104
+ <th colspan="2">
105
+ Properties
106
+ </th>
107
+ </tr>
108
+ </thead>
109
+ <tbody>
110
+ <form:forEachMapEntry items="${requestContext.messageQuery.propertiesMap}" var="prop">
111
+ <tr>
112
+ <td class="label"><c:out value="${prop.key}"/></td>
113
+ <td><c:out value="${prop.value}"/></td>
114
+ </tr>
115
+ <tr>
116
+ </form:forEachMapEntry>
117
+ </tbody>
118
+ </table>
119
+ </td>
120
+ </tr>
121
+ <tr>
122
+ <td class="layout" colspan="2">
123
+ <table id="body" width="100%">
124
+ <thead>
125
+ <tr>
126
+ <th colspan="2">
127
+ Message Actions
128
+ </th>
129
+ </tr>
130
+ </thead>
131
+ <tbody>
132
+ <tr>
133
+ <td colspan="2"><a href="deleteMessage.action?JMSDestination=<c:out value="${row.JMSDestination}" />&messageId=${row.JMSMessageID}&secret=<c:out value='${sessionScope["secret"]}'/>">Delete</a></td>
134
+ </tr>
135
+ <tr class="odd">
136
+ <td><a href="javascript:confirmAction('queue', 'copyMessage.action?destination=%target%&JMSDestination=<c:out value="${row.JMSDestination}" />&messageId=${row.JMSMessageID}&JMSDestinationType=queue&secret=<c:out value='${sessionScope["secret"]}'/>')">Copy</a></td>
137
+ <td rowspan="2">
138
+ <select id="queue">
139
+ <option value=""> -- Please select --</option>
140
+ <c:forEach items="${requestContext.brokerQuery.queues}" var="queues">
141
+ <c:if test="${queues.name != requestContext.messageQuery.JMSDestination}">
142
+ <option value="<c:out value="${queues.name}" />"><form:short text="${queues.name}"/></option>
143
+ </c:if>
144
+ </c:forEach>
145
+ </select>
146
+ </td>
147
+
148
+ </tr>
149
+ <tr class="odd">
150
+ <td><a href="javascript:confirmAction('queue', 'moveMessage.action?destination=%target%&JMSDestination=<c:out value="${row.JMSDestination}" />&messageId=${row.JMSMessageID}&JMSDestinationType=queue&secret=<c:out value='${sessionScope["secret"]}'/>')">Move</a></td>
151
+ </tr>
152
+ </tbody>
153
+ </table>
154
+ </td>
155
+ </tr>
156
+ <tr>
157
+ <td class="layout" colspan="2">
158
+ <table id="body" width="100%">
159
+ <thead>
160
+ <tr>
161
+ <th>
162
+ Message Details
163
+ </th>
164
+ </tr>
165
+ </thead>
166
+ <tbody>
167
+ <tr>
168
+ <td><div class="message"><pre class="prettyprint"><c:out value="${requestContext.messageQuery.body}"/></pre></div></td>
169
+ </tr>
170
+ </tbody>
171
+ </table>
172
+ </td>
173
+ </tr>
174
+ </table>
175
+
176
+ </c:otherwise>
177
+ </c:choose>
178
+
179
+
180
+
181
+
182
+
183
+ </body>
184
+ </html>
185
+