Move the bayeux to a separate module
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 11 Nov 2008 15:58:23 +0000 (15:58 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 11 Nov 2008 15:58:23 +0000 (15:58 +0000)
commit954ad72fda138721f3a62fd6e39d01f65669f266
treed8040575a011e235eff05a8d5af488538437a201
parent814e6db47a0a16ebad5d481588709cc9a02a799b
Move the bayeux to a separate module

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@713070 13f79535-47bb-0310-9956-ffa450edef68
63 files changed:
.classpath
extras.xml
java/org/apache/cometd/bayeux/Bayeux.java [deleted file]
java/org/apache/cometd/bayeux/Channel.java [deleted file]
java/org/apache/cometd/bayeux/Client.java [deleted file]
java/org/apache/cometd/bayeux/DataFilter.java [deleted file]
java/org/apache/cometd/bayeux/Listener.java [deleted file]
java/org/apache/cometd/bayeux/Message.java [deleted file]
java/org/apache/cometd/bayeux/SecurityPolicy.java [deleted file]
java/org/apache/tomcat/bayeux/BayeuxException.java [deleted file]
java/org/apache/tomcat/bayeux/BayeuxRequest.java [deleted file]
java/org/apache/tomcat/bayeux/BayeuxServlet.java [deleted file]
java/org/apache/tomcat/bayeux/ChannelImpl.java [deleted file]
java/org/apache/tomcat/bayeux/ClientImpl.java [deleted file]
java/org/apache/tomcat/bayeux/HttpError.java [deleted file]
java/org/apache/tomcat/bayeux/MessageImpl.java [deleted file]
java/org/apache/tomcat/bayeux/RequestBase.java [deleted file]
java/org/apache/tomcat/bayeux/RequestFactory.java [deleted file]
java/org/apache/tomcat/bayeux/TomcatBayeux.java [deleted file]
java/org/apache/tomcat/bayeux/request/MetaConnectRequest.java [deleted file]
java/org/apache/tomcat/bayeux/request/MetaDisconnectRequest.java [deleted file]
java/org/apache/tomcat/bayeux/request/MetaHandshakeRequest.java [deleted file]
java/org/apache/tomcat/bayeux/request/MetaSubscribeRequest.java [deleted file]
java/org/apache/tomcat/bayeux/request/MetaUnsubscribeRequest.java [deleted file]
java/org/apache/tomcat/bayeux/request/PublishRequest.java [deleted file]
modules/bayeux/.classpath [new file with mode: 0644]
modules/bayeux/.project [new file with mode: 0644]
modules/bayeux/build.xml [new file with mode: 0644]
modules/bayeux/java/org/apache/cometd/bayeux/Bayeux.java [new file with mode: 0644]
modules/bayeux/java/org/apache/cometd/bayeux/Channel.java [new file with mode: 0644]
modules/bayeux/java/org/apache/cometd/bayeux/Client.java [new file with mode: 0644]
modules/bayeux/java/org/apache/cometd/bayeux/DataFilter.java [new file with mode: 0644]
modules/bayeux/java/org/apache/cometd/bayeux/Listener.java [new file with mode: 0644]
modules/bayeux/java/org/apache/cometd/bayeux/Message.java [new file with mode: 0644]
modules/bayeux/java/org/apache/cometd/bayeux/SecurityPolicy.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/BayeuxException.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/BayeuxRequest.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/BayeuxServlet.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/ChannelImpl.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/ClientImpl.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/HttpError.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/MessageImpl.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/RequestBase.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/RequestFactory.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/TomcatBayeux.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/request/MetaConnectRequest.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/request/MetaDisconnectRequest.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/request/MetaHandshakeRequest.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/request/MetaSubscribeRequest.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/request/MetaUnsubscribeRequest.java [new file with mode: 0644]
modules/bayeux/java/org/apache/tomcat/bayeux/request/PublishRequest.java [new file with mode: 0644]
modules/bayeux/test/org/apache/cometd/bayeux/samples/BayeuxStockTicker.java [new file with mode: 0644]
modules/bayeux/test/org/apache/cometd/bayeux/samples/EchoChatClient.java [new file with mode: 0644]
modules/bayeux/webapps/cometd/WEB-INF/web.xml [new file with mode: 0644]
modules/bayeux/webapps/cometd/examples/simplechat/cometdchat.htm [new file with mode: 0644]
modules/bayeux/webapps/cometd/examples/simplechat/ticker.html [new file with mode: 0644]
modules/bayeux/webapps/cometd/index.html [new file with mode: 0644]
test/org/apache/cometd/bayeux/samples/BayeuxStockTicker.java [deleted file]
test/org/apache/cometd/bayeux/samples/EchoChatClient.java [deleted file]
webapps/cometd/WEB-INF/web.xml [deleted file]
webapps/cometd/examples/simplechat/cometdchat.htm [deleted file]
webapps/cometd/examples/simplechat/ticker.html [deleted file]
webapps/cometd/index.html [deleted file]