summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2013-02-27 14:33:04 +0200
committerVaadin Code Review <review@vaadin.com>2013-04-04 12:46:42 +0000
commit69def694d5d98f518ad08c039195fd2ac8781d2f (patch)
tree8ec221cf013607180bf08b65ea189d44cd9dda49 /uitest
parent008d51dba378c2feb57bd5d30550561567f3f91a (diff)
downloadvaadin-framework-69def694d5d98f518ad08c039195fd2ac8781d2f.tar.gz
vaadin-framework-69def694d5d98f518ad08c039195fd2ac8781d2f.zip
Server push (#111)
* Asynchronous bidirectional communication * Use Atmosphere as a backend * Use websockets if available, fallback to HTTP streaming * Push mode (disabled, manual, automatic) * Configurable via servlet parameter pushMode * Disabled: The default; regular AJAX communication * Manual: Need explicit UI.push() call * Automatic: push all UIs in session when lock released * UI.push() * Push pending state and RPC to client asynchronously * Must hold session lock when invoking Change-Id: Idb5978ac81f7ff1e66665df4e3f96e29e4c419d4
Diffstat (limited to 'uitest')
-rw-r--r--uitest/ivy.xml10
1 files changed, 6 insertions, 4 deletions
diff --git a/uitest/ivy.xml b/uitest/ivy.xml
index 4196cca4da..55f682e14e 100644
--- a/uitest/ivy.xml
+++ b/uitest/ivy.xml
@@ -48,16 +48,18 @@
<!-- Newest Jetty does not work with Ivy currently (orbit -> jar
mapping problem) -->
<dependency org="org.eclipse.jetty" name="jetty-server"
- rev="7.4.5.v20110725" conf="build, ide, jetty-run->default" />
+ rev="7.5.0.v20110901" conf="build, ide, jetty-run->default" />
<!-- jetty-servlets needed in .war by ProxyTest, but not by jetty-runner -->
<dependency org="org.eclipse.jetty" name="jetty-servlets"
- rev="7.4.5.v20110725" conf="build, ide->default" />
+ rev="7.5.0.v20110901" conf="build, ide->default" />
+ <dependency org="org.eclipse.jetty" name="jetty-websocket"
+ rev="7.5.0.v20110901" conf="build, ide->default" />
<!-- <dependency org="org.mortbay.jetty" name="jetty-util" -->
<!-- rev="8.1.5.v20120716" conf="build,ide,jetty-run->default" /> -->
<dependency org="org.eclipse.jetty" name="jetty-webapp"
- rev="7.4.5.v20110725" conf="build, ide,jetty-run->default" />
+ rev="7.5.0.v20110901" conf="build, ide,jetty-run->default" />
<dependency org="org.mortbay.jetty" name="jetty-runner"
- rev="7.4.5.v20110725" conf="jetty-run->default" />
+ rev="7.5.0.v20110901" conf="jetty-run->default" />
<dependency org="junit" name="junit" rev="4.5"
conf="build,ide -> default" />