[Spice-commits] spice_auto.html

Christophe Fergau teuf at kemper.freedesktop.org
Thu May 12 15:17:34 UTC 2016


 spice_auto.html |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 522a9eb99151e0826fca73fa2c2e6ab9bd0244f6
Author: Martin Hradil <mhradil at redhat.com>
Date:   Fri May 6 08:25:13 2016 +0000

    spice-html5: spice_auto.html - actually use ?path when given
    
    Right now, `spice_auto.html` reads the path from query string .. and
    never actually does anything with it. This should make
    `spice_auth.html` respect a path parametr when given.

diff --git a/spice_auto.html b/spice_auto.html
index 5714804..9aae118 100644
--- a/spice_auto.html
+++ b/spice_auto.html
@@ -128,6 +128,10 @@
 
                 uri = scheme + host + ":" + port;
 
+                if (path) {
+                  uri += path[0] == '/' ? path : ('/' + path);
+                }
+
                 try
                 {
                     sc = new SpiceMainConn({uri: uri, screen_id: "spice-screen", dump_id: "debug-div",


More information about the Spice-commits mailing list