Good day!
I want to install spice-html5 to proxmox. I read instruction and I didn't
understand.
Can you help me pls?
SPICE protocol is important for openstack project now i use openstack Queens release on centos 7, with configuration of nova spice, everything is ok, i can use vm with nova-spicehtml5proxy with Chrome. then when i configure vm with spice password, i can never connect vm from chrome, and it print
Hi Cédric,
On 2/14/19 3:44 AM, Cédric Bosdonnat wrote:
Hi Jeremy,
I fixed the missing SpiceHtml5: that was a mistake in the code rework.
Thanks for spotting it.
As for the whitespaces, I had more troubles with them. A big lot of them
was coming from dos line endings. I added a commit to conver
Hey Cédric,
I'm afraid you haven't got your line endings issue worked out yet:
git am /tmp/cedric/\[spice-html5\]\[PATCH\ v2\ 02_13\]\ dos2unix\
sha1.js\ -\ Cédric\ Bosdonnat\ \\ -\ 2019-02-14\
0344.eml
Applying: dos2unix sha1.js
error: patch failed: thirdparty/sha1.js:1
error: thirdparty/sha
The resize_handler need to check for the existence of the message box
before computing it's size.
---
src/resize.js | 21 -
1 file changed, 12 insertions(+), 9 deletions(-)
diff --git a/src/resize.js b/src/resize.js
index 32282fd..c8d87d9 100644
--- a/src/resize.js
+++ b/src/r
Depending on the structure of the page, the computed mouse position was
not correct. Typically the case happend when there is no offset between
the canvas and the view area, but an offset on the view area.
The MouseEvent.offsetX and offsetY functions are now widely enough spread
to use them and av
We don't want the users to rely on anything else than main.js. All the
helper functions from the other files are thus imported in main and
exported there too.
This way all the user needs to import is:
import * as SpiceHtml5 from './main.js';
---
main.js | 9 -
spice.html
---
thirdparty/sha1.js | 692 ++---
1 file changed, 346 insertions(+), 346 deletions(-)
diff --git a/thirdparty/sha1.js b/thirdparty/sha1.js
index 8118cb4..363c83d 100644
--- a/thirdparty/sha1.js
+++ b/thirdparty/sha1.js
@@ -1,346 +1,346 @@
-/*
- * A JavaSc
If we round up, we may end up with a display slightly bigger than what
the window can have, thus adding scroll bars. When rounding down we
avoid this problems.
---
src/resize.js | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/resize.js b/src/resize.js
index c8d87d9.
When forcing the background of the input fields, this makes them
unreadable for dark themed browsers.
---
spice.css | 1 -
1 file changed, 1 deletion(-)
diff --git a/spice.css b/spice.css
index ee1b2f3..4c61cb3 100644
--- a/spice.css
+++ b/spice.css
@@ -36,7 +36,6 @@ body
#login input
{
pa
Add package.json needed to publish on npmjs.
---
package.json | 21 +
1 file changed, 21 insertions(+)
create mode 100644 package.json
diff --git a/package.json b/package.json
new file mode 100644
index 000..21a8b63
--- /dev/null
+++ b/package.json
@@ -0,0 +1,21 @@
+{
+
To add some more order to the folder, move the JS files into their own
src folder.
---
package.json| 2 +-
spice.html | 2 +-
spice_auto.html | 2
In case the user didn't provide any password, we want to prompt him for
it. Try once and if we get an permission denied error, then ask the
password and retry to connect.
---
spice_auto.html | 12 +---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/spice_auto.html b/spice_au
---
src/main.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/main.js b/src/main.js
index be73828..4a37b55 100644
--- a/src/main.js
+++ b/src/main.js
@@ -56,6 +56,8 @@ import { resize_helper, handle_resize } from './resize.js';
** onagent (optional) If given, a function
---
enums.js | 7 ---
1 file changed, 7 deletions(-)
diff --git a/enums.js b/enums.js
index 9d31148..db13584 100644
--- a/enums.js
+++ b/enums.js
@@ -320,13 +320,6 @@ export var Constants = {
LZ_IMAGE_TYPE_XXXA: 10,
- QUIC_IMAGE_TYPE_INVALID : 0,
- QUIC_IMAGE_TYPE_GRAY: 1,
-
The disconnect() function were not checking the existence of the file
transfer area element, leading to stop the disconnect() before its end.
---
spice.html | 4 +++-
spice_auto.html | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/spice.html b/spice.html
index 9387076
Hi Jeremy,
I fixed the missing SpiceHtml5: that was a mistake in the code rework.
Thanks for spotting it.
As for the whitespaces, I had more troubles with them. A big lot of them
was coming from dos line endings. I added a commit to convert sha1.js to
unix line endings, but for some reason, git a
Hi Cédric,
Thank you for this! This is very useful work, and I appreciate you
taking the time to work on it.
I've been through all of the patches, and I think everything looks great.
However, your 02 patch in this sequence has a lot of trailing white
space; could you eliminate that?
Also,
The resize_handler need to check for the existence of the message box
before computing it's size.
---
src/resize.js | 21 -
1 file changed, 12 insertions(+), 9 deletions(-)
diff --git a/src/resize.js b/src/resize.js
index 32282fd..c8d87d9 100644
--- a/src/resize.js
+++ b/src/r
If we round up, we may end up with a display slightly bigger than what
the window can have, thus adding scroll bars. When rounding down we
avoid this problems.
---
src/resize.js | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/resize.js b/src/resize.js
index c8d87d9.
Depending on the structure of the page, the computed mouse position was
not correct. Typically the case happend when there is no offset between
the canvas and the view area, but an offset on the view area.
The MouseEvent.offsetX and offsetY functions are now widely enough spread
to use them and av
---
src/main.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/main.js b/src/main.js
index be73828..4a37b55 100644
--- a/src/main.js
+++ b/src/main.js
@@ -56,6 +56,8 @@ import { resize_helper, handle_resize } from './resize.js';
** onagent (optional) If given, a function
Add package.json needed to publish on npmjs.
---
package.json | 21 +
1 file changed, 21 insertions(+)
create mode 100644 package.json
diff --git a/package.json b/package.json
new file mode 100644
index 000..21a8b63
--- /dev/null
+++ b/package.json
@@ -0,0 +1,21 @@
+{
+
In case the user didn't provide any password, we want to prompt him for
it. Try once and if we get an permission denied error, then ask the
password and retry to connect.
---
spice_auto.html | 12 +---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/spice_auto.html b/spice_au
To add some more order to the folder, move the JS files into their own
src folder.
---
package.json| 2 +-
spice.html | 1 -
spice_auto.html | 2
The disconnect() function were not checking the existence of the file
transfer area element, leading to stop the disconnect() before its end.
---
spice.html | 4 +++-
spice_auto.html | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/spice.html b/spice.html
index b789398
---
enums.js | 7 ---
1 file changed, 7 deletions(-)
diff --git a/enums.js b/enums.js
index 9d31148..db13584 100644
--- a/enums.js
+++ b/enums.js
@@ -320,13 +320,6 @@ export var Constants = {
LZ_IMAGE_TYPE_XXXA: 10,
- QUIC_IMAGE_TYPE_INVALID : 0,
- QUIC_IMAGE_TYPE_GRAY: 1,
-
We don't want the users to rely on anything else than main.js. All the
helper functions from the other files are thus imported in main and
exported there too.
This way all the user needs to import is:
import * as SpiceHtml5 from './main.js';
---
main.js | 9 -
spice.html
Hi Jeremy, all,
Here is the series that moves everything into a module and avoid
cluttering the global namespace. This also includes some fixes for
bugs I found while integrating in a third party website.
Cédric Bosdonnat (12):
CSS: don't force the background color or inputs
Introduce ES6 mod
When forcing the background of the input fields, this makes them
unreadable for dark themed browsers.
---
spice.css | 1 -
1 file changed, 1 deletion(-)
diff --git a/spice.css b/spice.css
index ee1b2f3..4c61cb3 100644
--- a/spice.css
+++ b/spice.css
@@ -36,7 +36,6 @@ body
#login input
{
pa
On Mon, 2019-02-04 at 08:30 -0600, Jeremy White wrote:
> > > I'd be delighted if spice-html5 had a proper name space!
> >
> > How should we proceed? I could implement this using ES6 exports,
> > but
> > that rules out really old browsers. Not sure if CommonJS exports
> > would
> > cover a broader
I'd be delighted if spice-html5 had a proper name space!
How should we proceed? I could implement this using ES6 exports, but
that rules out really old browsers. Not sure if CommonJS exports would
cover a broader audience thought.
To some extent, spice-html5 does not support truly old browser
On Fri, 2019-02-01 at 13:07 -0600, Jeremy White wrote:
> On 2/1/19 11:55 AM, Cedric Bosdonnat wrote:
> > I'm pondering converting spice-html5 before submitting it to
> > npmjs.org.
> > In the move I'ld move everythin into a SpiceHtml5 namespace.
> >
> > How does that sound? I'm ready to invest som
Hi Cedric,
On 2/1/19 11:55 AM, Cedric Bosdonnat wrote:
Hi Jeremy,
I'm pondering converting spice-html5 before submitting it to npmjs.org.
In the move I'ld move everythin into a SpiceHtml5 namespace.
How does that sound? I'm ready to invest some effort into it, but I'ld
rather to have your ACK
Hi Jeremy,
I'm pondering converting spice-html5 before submitting it to npmjs.org.
In the move I'ld move everythin into a SpiceHtml5 namespace.
How does that sound? I'm ready to invest some effort into it, but I'ld
rather to have your ACK before ;)
Regards
--
Cedric
___
Also worked for me.
Acked-by: Jeremy White
On 07/17/2018 10:04 AM, Christophe Fergeau wrote:
spice-html5 does not support multiple display channels, and will only
use the first one offered by spice-server, and ignore the others. This
can cause issues when using a VM with a configured but unus
>
> spice-html5 does not support multiple display channels, and will only
> use the first one offered by spice-server, and ignore the others. This
> can cause issues when using a VM with a configured but unused
> org.spice-space.stream.0 spice port as this will create a 'fake' display
> channel wh
Acked-by: Jeremy White
On 07/17/2018 10:18 AM, Christophe Fergeau wrote:
log_draw() is used to debug drawing commands by dumping drawing
information to the JS console. This commit adds dumping of missing data
for uncompressed bitmaps. The 'stride' parameter is important, as
spice-html5 currentl
log_draw() is used to debug drawing commands by dumping drawing
information to the JS console. This commit adds dumping of missing data
for uncompressed bitmaps. The 'stride' parameter is important, as
spice-html5 currently does not deal properly with such bitmaps.
Signed-off-by: Christophe Fergea
On Tue, Jul 17, 2018 at 09:51:28AM -0400, Frediano Ziglio wrote:
> >
> > spice-html5 does not support multiple display channels, and will only
> > use the first one offered by spice-server, and ignore the others. This
> > can cause issues when using a VM with a configured but unused
> > org.spice-
spice-html5 does not support multiple display channels, and will only
use the first one offered by spice-server, and ignore the others. This
can cause issues when using a VM with a configured but unused
org.spice-space.stream.0 spice port as this will create a 'fake' display
channel which is offere
On Tue, Jul 17, 2018 at 09:00:33AM -0500, Jeremy White wrote:
> > > > diff --git a/display.js b/display.js
> > > > index 7719b23..c55b686 100644
> > > > --- a/display.js
> > > > +++ b/display.js
> > > > @@ -769,6 +769,12 @@ SpiceDisplayConn.prototype.log_draw =
> > > > function(prefix, draw)
> > >
diff --git a/display.js b/display.js
index 7719b23..c55b686 100644
--- a/display.js
+++ b/display.js
@@ -769,6 +769,12 @@ SpiceDisplayConn.prototype.log_draw = function(prefix,
draw)
str += "; src_bitmap type " + draw.data.src_bitmap.descriptor.type +
", flags " + draw.data.src_bi
>
> spice-html5 does not support multiple display channels, and will only
> use the first one offered by spice-server, and ignore the others. This
> can cause issues when using a VM with a configured but unused
> org.spice-space.stream.0 spice port as this will create a 'fake' display
> channel wh
On Mon, Jul 16, 2018 at 10:03:23AM -0500, Jeremy White wrote:
> Hey Christophe,
>
> On 07/12/2018 11:07 AM, Christophe Fergeau wrote:
> > log_draw() is used to debug drawing commands by dumping drawing
> > information to the JS console. This commit adds dumping of missing data
> > for uncompressed
spice-html5 does not support multiple display channels, and will only
use the first one offered by spice-server, and ignore the others. This
can cause issues when using a VM with a configured but unused
org.spice-space.stream.0 spice port as this will create a 'fake' display
channel which is offere
Hey Christophe,
On 07/12/2018 11:07 AM, Christophe Fergeau wrote:
log_draw() is used to debug drawing commands by dumping drawing
information to the JS console. This commit adds dumping of missing data
for uncompressed bitmaps. The 'stride' parameter is important, as
spice-html5 currently does n
log_draw() is used to debug drawing commands by dumping drawing
information to the JS console. This commit adds dumping of missing data
for uncompressed bitmaps. The 'stride' parameter is important, as
spice-html5 currently does not deal properly with such bitmaps.
Signed-off-by: Christophe Fergea
On 05/16/2018 05:17 AM, Christophe Fergeau wrote:
From: Joel Purra
- It seems `SpiceDisplayConn` does not always have the array
`this.o.sc.streams` set.
- It also seems (stream?) images can be loaded before `streams` is set.
- Without `streams`, or the specific stream matching `this.o.id`,
`t
From: Joel Purra
- It seems `SpiceDisplayConn` does not always have the array
`this.o.sc.streams` set.
- It also seems (stream?) images can be loaded before `streams` is set.
- Without `streams`, or the specific stream matching `this.o.id`,
`this.o.sc.streams[this.o.id].frames_loading` cannot b
Any news about integration to spice-html5 improvements from
https://github.com/eyeos/spice-web-client.git ?
Or what is the feature of this two projects?
--
Vasiliy Tolstov,
e-mail: v.tols...@selfip.ru
___
Spice-devel mailing list
Spice-devel@lists.free
On 12/14/2016 08:05 PM, Shirley Arava wrote:
Hi,
I was looking for some sort of guidance as to where I was going wrong
with the spice protocol requirements. We are currently trying to use
SPICE-html5 client to provide remote access to Virtual Machines hosted
on a Xen hypervisor. It would be real
Hi,
I was looking for some sort of guidance as to where I was going wrong with
the spice protocol requirements. We are currently trying to use SPICE-html5
client to provide remote access to Virtual Machines hosted on a Xen
hypervisor. It would be really helpful if you could provide us some inputs
Hi,
maybe:
"Use empty image instead of null to avoid warnings"
On Wed, 2016-09-28 at 15:32 -0500, Jeremy White wrote:
> Instead, let's set it to an empty gif. Should have the
> same benefit.
>
> Signed-off-by: Jeremy White
Acked-by: Pavel Grunt
> ---
> display.js | 2 +-
> utils.js | 5 +++
I've tested both this patch series and the video ones.
In Firefox works without any problems. In Chrome I have no audio at all,
but I do not have it also with master.
Cheers
On Mon, Oct 3, 2016 at 10:21 AM, Pavel Grunt wrote:
> Hi,
>
> looks good to me, ACK
>
> Pavel
>
> On Wed, 2016-09-28 at
On Wed, 2016-09-28 at 15:32 -0500, Jeremy White wrote:
> Otherwise, we end up discarding stream data messages, and our decode
> can become corrupted, notably on Chrome.
>
> This way, we should not lose any messages while we are waiting for
> source buffer creation.
>
> Signed-off-by: Jeremy White
On Wed, 2016-09-28 at 15:32 -0500, Jeremy White wrote:
> Signed-off-by: Jeremy White
Acked-by: Pavel Grunt
> ---
> display.js | 9 ++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/display.js b/display.js
> index 9fc13c0..6c6b962 100644
> --- a/display.js
> +++ b/disp
On Wed, 2016-09-28 at 15:32 -0500, Jeremy White wrote:
> Signed-off-by: Jeremy White
Acked-by: Pavel Grunt
> ---
> spiceconn.js | 27 +--
> 1 file changed, 17 insertions(+), 10 deletions(-)
>
> diff --git a/spiceconn.js b/spiceconn.js
> index 9651b47..33e7388 100644
> --
On Wed, 2016-09-28 at 15:32 -0500, Jeremy White wrote:
> Signed-off-by: Jeremy White
Acked-by: Pavel Grunt
> ---
> display.js | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/display.js b/display.js
> index d9bdd9f..e26bff8 100644
> --- a/display.js
> +++ b/display.j
Hi,
looks good to me, ACK
Pavel
On Wed, 2016-09-28 at 15:25 -0500, Jeremy White wrote:
> Firefox and Chrome have both drifted somewhat over the past
> few years, and audio playback is no longer as robust in spice-html5
> as it once was.
>
> Further, the MediaSource specification is a bit more s
In testing audio in conjunction with video playback, I made a number
of fairly modest improvements to the spice-html5 streaming support.
This patch set provides those; with this set, and the prior audio set,
you can arguably play videos using spice-html5 and the result is usable.
Jeremy White (5)
Otherwise, we end up discarding stream data messages, and our decode
can become corrupted, notably on Chrome.
This way, we should not lose any messages while we are waiting for
source buffer creation.
Signed-off-by: Jeremy White
---
display.js | 23 ++-
1 file changed, 10 in
Signed-off-by: Jeremy White
---
display.js | 9 ++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/display.js b/display.js
index 9fc13c0..6c6b962 100644
--- a/display.js
+++ b/display.js
@@ -535,7 +535,10 @@ SpiceDisplayConn.prototype.process_channel_message =
function(msg)
Signed-off-by: Jeremy White
---
display.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/display.js b/display.js
index d9bdd9f..e26bff8 100644
--- a/display.js
+++ b/display.js
@@ -963,8 +963,8 @@ function handle_draw_jpeg_onload()
this.o.sc.surfaces[this.o.base
Signed-off-by: Jeremy White
---
spiceconn.js | 27 +--
1 file changed, 17 insertions(+), 10 deletions(-)
diff --git a/spiceconn.js b/spiceconn.js
index 9651b47..33e7388 100644
--- a/spiceconn.js
+++ b/spiceconn.js
@@ -127,21 +127,28 @@ SpiceConn.prototype =
)
Instead, let's set it to an empty gif. Should have the
same benefit.
Signed-off-by: Jeremy White
---
display.js | 2 +-
utils.js | 5 +
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/display.js b/display.js
index 6c6b962..d9bdd9f 100644
--- a/display.js
+++ b/display.js
@@
Around version 45, Firefox started being very particular about the
time stamps put into the Opus stream. The time stamps from the Spice server are
somewhat irregular. They mostly arrive every 10 ms, but sometimes it is 11, or
sometimes
with two time stamps the same in a row. The previous logic
Firefox and Chrome have both drifted somewhat over the past
few years, and audio playback is no longer as robust in spice-html5
as it once was.
Further, the MediaSource specification is a bit more stable than
it was when the initial implementation was written.
This patch set tunes the spice-html5
This allows audio processing to be more robust in Firefox.
Signed-off-by: Jeremy White
---
playback.js | 17 -
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/playback.js b/playback.js
index 55dc0e8..48d4cdd 100644
--- a/playback.js
+++ b/playback.js
@@ -158,7 +158,
We previously had a fairly crude 'gap detection', but browsers
are largely supporting the modern buffer semantics, and we can
now rely on them to detect under runs for us.
This improves audio in Chrome while playing large videos.
Signed-off-by: Jeremy White
---
playback.js | 30
Browsers now reliably autoplay, and issuing play prematurely
can generate an error in both Firefox and Chrome.
Hence we can simply remove this call and audio seems to work fine.
Signed-off-by: Jeremy White
---
playback.js | 3 ---
1 file changed, 3 deletions(-)
diff --git a/playback.js b/playb
Hi,
ack the series.
Thanks,
Pavel
On Fri, 2016-07-01 at 15:03 -0500, Jeremy White wrote:
> This patch series introduces support for VP8 codecs to the
> spice-html5 client.
>
> The first few patches simply introduce debug tools; the money
> patches are the 4th, 5th and 6th patches.
>
> This wor
Signed-off-by: Jeremy White
---
playback.js | 63 -
utils.js| 53 +++
2 files changed, 115 insertions(+), 1 deletion(-)
diff --git a/playback.js b/playback.js
index 36e6611..96efb08 10
This patch series introduces support for VP8 codecs to the
spice-html5 client.
The first few patches simply introduce debug tools; the money
patches are the 4th, 5th and 6th patches.
This works in Firefox 45. It works in Chrome for small browser
window sizes; for larger sizes, Chrome appears to
Signed-off-by: Jeremy White
---
playback.js | 5 -
webm.js | 11 +++
2 files changed, 7 insertions(+), 9 deletions(-)
diff --git a/playback.js b/playback.js
index 96efb08..ea5017f 100644
--- a/playback.js
+++ b/playback.js
@@ -186,10 +186,13 @@ SpicePlaybackConn.prototype.start_
Previously, we sent them strictly upon receipt. However, receiving
is fast; by adding in some of the processing time (i.e. queueing and
so on), we encourage the adaptive rate control to slow down.
Signed-off-by: Jeremy White
---
display.js | 81 +++---
Signed-off-by: Jeremy White
---
display.js | 230 ++-
enums.js | 6 ++
spiceconn.js | 5 +-
utils.js | 1 +
webm.js | 98 +
5 files changed, 337 insertions(+), 3 deletions(-)
diff --git a/displa
Signed-off-by: Jeremy White
---
playback.js | 6 +++---
utils.js| 1 +
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/playback.js b/playback.js
index 9659381..36e6611 100644
--- a/playback.js
+++ b/playback.js
@@ -46,7 +46,7 @@ SpicePlaybackConn.prototype.process_channel_messa
Signed-off-by: Jeremy White
---
spiceconn.js | 4
1 file changed, 4 insertions(+)
diff --git a/spiceconn.js b/spiceconn.js
index 903f3b0..f20424f 100644
--- a/spiceconn.js
+++ b/spiceconn.js
@@ -334,6 +334,7 @@ SpiceConn.prototype =
process_message: function(msg)
{
var rc
Hi Lorenzo,
On 05/25/2016 07:35 AM, Lorenzo Garcia wrote:
> Hello,
>
> First of all, thanks for your help. The biggest change was that we
> changed the physical server, but i have used the same debs for the
> installation and used the same ubuntu. The spice-html5 client was
> upgraded, but with t
Hello,
First of all, thanks for your help. The biggest change was that we
changed the physical server, but i have used the same debs for the
installation and used the same ubuntu. The spice-html5 client was
upgraded, but with the old version it behaves the same.
For now I can't use the old ser
On Tue, May 03, 2016 at 11:33:30AM +0200, Lorenzo Garcia wrote:
> Hello,
>
> I've been using the spice-html5 client for few months in a project, but we
> found that audio seems to have stopped working properly.
> When we open the client it works well, but then it stops randomly; sometimes
> in a f
Hello,
I've been using the spice-html5 client for few months in a project, but
we found that audio seems to have stopped working properly.
When we open the client it works well, but then it stops randomly;
sometimes in a few seconds, sometimes it lasts more than a minute or two.
Trying to figur
On Thu, Mar 17, 2016 at 01:37:13PM -0500, Jeremy White wrote:
> Hi Eric,
>
> This is great; thanks for taking the time to put this together.
Yes, thanks for that ;)
>
> Could I ask a few favors, though? This version did not apply to the git
> tip for me. I think a few corrections Christophe m
Hi Eric,
This is great; thanks for taking the time to put this together.
Could I ask a few favors, though? This version did not apply to the git
tip for me. I think a few corrections Christophe made recently keep
your utils.js change from applying.
Additionally, if you could keep the spice.htm
Gentle(wo)men,
I have spent time to fix the keyboard layout in spice-html5. I went to the
conclusion the keyboard layout cannot be configured on client (html5) side as
Xorg receives key code it interpretes. What ever the key face the user has
typed (A or Q) Xorg will map to the character depend
On Tue, Mar 08, 2016 at 11:44:43AM +0100, Pavel Grunt wrote:
> Acked-by: Pavel Grunt
Thanks, pushed.
Christophe
signature.asc
Description: PGP signature
___
Spice-devel mailing list
Spice-devel@lists.freedesktop.org
https://lists.freedesktop.org/mail
Acked-by: Pavel Grunt
On Tue, 2016-03-08 at 11:39 +0100, Christophe Fergeau wrote:
> ---
> utils.js | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/utils.js b/utils.js
> index 9eb42ff..f1a5748 100644
> --- a/utils.js
> +++ b/utils.js
> @@ -100,7 +100,7 @@ function h
---
utils.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/utils.js b/utils.js
index 9eb42ff..f1a5748 100644
--- a/utils.js
+++ b/utils.js
@@ -100,7 +100,7 @@ function hexdump_buffer(a)
/*
** Co
Hi Pavel:
Thanks for your help, anyway the upside down problem has been solved, it's
a big step :-). I will try to fix other problems.
Best regards,
Melo
At 2016-01-29 17:01:09, "Pavel Grunt" wrote:
Hi Melo,
unfortunately I don't know about any other patches to solve the problem.
Hi Melo,
unfortunately I don't know about any other patches to solve the
problem.
Regards,
Pavel
On Fri, 2016-01-29 at 16:54 +0800, 苏成才 wrote:
> Hi Pavel:
> Just now I tried the branch "topdown", and the problem of upside
> down solved. But the mouse shape doesn't display properly and some
> wi
Hi Pavel:
Thanks for your reply, and you provide topdown branch.
在 2016-01-29 14:48:54,"Pavel Grunt" 写道:
>Hi Melo,
>
>On Fri, 2016-01-29 at 11:10 +0800, 苏成才 wrote:
>> Hi Grunt:
>> Thanks for your reply, and I would like to support both spice-gtk
>> and spice-html5, if I stop the
Il 29/01/2016 07:48, Pavel Grunt ha scritto:
> Hi Melo,
>
> On Fri, 2016-01-29 at 11:10 +0800, 苏成才 wrote:
>> Hi Grunt:
>> Thanks for your reply, and I would like to support both spice-gtk
>> and spice-html5, if I stop the server-side image compression, does it
>> increase the network bandwidth
Hi Melo,
On Fri, 2016-01-29 at 11:10 +0800, 苏成才 wrote:
> Hi Grunt:
> Thanks for your reply, and I would like to support both spice-gtk
> and spice-html5, if I stop the server-side image compression, does it
> increase the network bandwidth?
It will increase the network bandwidth usage. The
Hi Grunt:
Thanks for your reply, and I would like tosupport
bothspice-gtkandspice-html5,if Istop the server-side image compression, does it
increasethe network bandwidth? Another solution is uninstall the QXLdriver,will
it affect themouse events and screendisplay(for example very slow)?
Hi,
On Thu, 2016-01-28 at 16:10 +0800, 苏成才 wrote:
> Hi guys:
> I encountered a problem: the windows screen cannot display properly
> when use spice-html5, also the VM installed spice-guest-tools.exe.
> But if i don't install the spice-guest-tools, then everything is ok.
> My env is:
> 1) spice-htm
Hi guys:
I encountered a problem: the windows screen cannot display properly when use
spice-html5, also the VM installed spice-guest-tools.exe. But if i don't
install the spice-guest-tools, then everything is ok. My env is:
1) spice-html5 version is spice-html5-0.1.6
2) websockify is 0.7.0
3) cen
Hi guys,
I has a problem:
OS: ubuntu15.04
KVM: QEMU emulator version 2.2.0 (Debian 1:2.2+dfsg-5expubuntu9.4), Copyright
(c) 2003-2008 Fabrice Bellard
virt-manager: 1.0.1
spice-html5: spice-html5-0.1.6
websockify: 0.7.0
httpd: Apache/2.4.10
--
Sorry, i got the answer, because I didn't choose the VM's spice server keymap
in virt-manager, if the keymap choose the en-us, then everything I typed will
be no problem.
Thanks,
Kris
At 2015-09-18 14:47:26, "Kris" <13520814...@126.com> wrote:
Hi guys,
I has a problem:
--
Dear Spice developers
We are playing around with sasl auth+libvirt/spice in our cloud cluster
(http://www.freeipa.org/page/Libvirt_with_VNC_Consoles), we are able to
use sasl auth with the remote-viewer client and our spice server, but if
we use the html5 client + websockify we get this error:
>
1 - 100 of 188 matches
Mail list logo