Custom Query (230 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (157 - 159 of 230)

Ticket Resolution Summary Owner Reporter
#227 duplicate no encoding declared in winswitch/util/xkbmap_util.py Antoine Martin 235
Description

in a recent package for ubuntu 12.10

[ee] 2012/10/12 11:21:14.363124 Traceback (most recent call last):
[ee] 2012/10/12 11:21:14.363149   File "/usr/lib/python2.7/dist-packages/winswitch/server/controller.py", line 316, in ready
[ee] 2012/10/12 11:21:14.363166     self.assign_virt_utils()
[ee] 2012/10/12 11:21:14.363181   File "/usr/lib/python2.7/dist-packages/winswitch/server/controller.py", line 405, in assign_virt_utils
[ee] 2012/10/12 11:21:14.363209     from winswitch.virt.vnc_server_util import VNCServerUtil
[ee] 2012/10/12 11:21:14.363225   File "/usr/lib/python2.7/dist-packages/winswitch/virt/vnc_server_util.py", line 16, in <module>
[ee] 2012/10/12 11:21:14.363240     from winswitch.virt.server_util_base import ServerUtilBase
[ee] 2012/10/12 11:21:14.363255   File "/usr/lib/python2.7/dist-packages/winswitch/virt/server_util_base.py", line 40, in <module>
[ee] 2012/10/12 11:21:14.363270     from winswitch.util.xkbmap_util import set_keymap
[ee] 2012/10/12 11:21:14.363286   File "/usr/lib/python2.7/dist-packages/winswitch/util/xkbmap_util.py", line 173
[ee] 2012/10/12 11:21:14.363312 SyntaxError: Non-ASCII character '\xc3' in file /usr/lib/python2.7/dist-packages/winswitch/util/xkbmap_util.py on line 173, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
#133 fixed open file remotely without using ssh channel Antoine Martin Antoine Martin
Description

The sftp code was removed with paramiko, what we can do to restore the functionality is to define a new message type for file transfers and send the file through the normal client-server channel.

  • new accept_files option for servers (defaults to off?)
  • keep file pointer + index in server connection
  • send first chunk of data, below the max_line limit and also taking into account the link speed
  • server creates a temporary file in configurable download location (default to ~/Download)
  • server sends an ack after each packet is received (potential small delay here to ensure we prioritize other packets ahead of file transfers)
  • client fire progress_update callbacks registered with the file transfer
  • client sends the next chunk (potential delay here - same reason as above), taking into account how long the first previous took (so we can keep UI updates regular - say 1 second target)
  • if the server (or client) does not ack (or send the next chunk) within a certain amount of time (tbd - dynamic?), we cancel the whole thing and tell the other end. The server can delete the temporary file.
  • When the transfer is complete, we ask the server to open it.
  • Ensure file data is encrypted over the wire
#64 fixed option to start xpra sessions with jpeg compression Antoine Martin Antoine Martin
Description

Must add:

  • UI for when xpra is selected (simple checkbox)
  • pass option to server.

Should also generalize options so that dimensions used for vnc/nx, and now jpeg for xpra, etc.. are passed generically, without needing to bump the protocol version for changes.

Could also be a bit more clever and auto-select jpeg for certain types of applications: media players, browser?, etc.

Note: See TracQuery for help on using queries.