Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 612927 Details for
Bug 857471
Spice Vdagent: Copying an Image from Guest to Client is Very Limited
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Clipboard Script Using pygtk
cb.py (text/x-python), 5.00 KB, created by
Vimal Patel
on 2012-09-14 15:50:51 UTC
(
hide
)
Description:
Clipboard Script Using pygtk
Filename:
MIME Type:
Creator:
Vimal Patel
Created:
2012-09-14 15:50:51 UTC
Size:
5.00 KB
patch
obsolete
>import pygtk >pygtk.require('2.0') >import gtk >import sys >import os >from optparse import OptionParser > > >def return_nonrandom_str(length): > """ > A method to return a nonrandom_string of the length determined by the input > > @param length, length of the string to be returned > """ > input_string = "anonrandomstring_" > finalstring = "" > str_len = len(input_string) > > for i in xrange(int(length)): > finalstring += input_string[i%str_len] > > return finalstring > > >def main(argv): > ''' > usage to set image file in clipboard: python clipboard.py --set <path> > usage to get image file in clipboard: python clipboard.py > ''' > > # Command line parser alternative > parser = OptionParser() > parser.add_option("-c", "--clear", dest="clear", > action="store_true", help="clear the clipboard") > parser.add_option("-s", "--set", dest="setcb", > default='', help="Sets the local clip board") > parser.add_option("-p", "--print", dest="setcb", > default='', help="Prints the text that was set") > parser.add_option("-i", "--set_image", dest="setcbimage", > default='', help="Sets an image to local clip board") > parser.add_option("-m", help="Saves an image to the /tmp directory", > dest="setfilename") > parser.add_option("-r", "--file_copy", dest="setcb_file", > default='', help="Creates a file, Reads the text from " + > "a file and puts it onto the clipboard") > parser.add_option("-f", "--file_paste", dest="pastecb_filename", > default='', help="Given a filename, the clipboard " + > "contents will be pasted") > parser.add_option("-n", "--create_file", dest="setcb_lrgstr_file", > default='', help="Given a integer value a file will " + > "be created and put on the clipboard") > > # Read the command line parameters now > (options, _) = parser.parse_args() > > # Get the clipboard > clipboard = gtk.clipboard_get() > > if options.setcb: > > ssetcb = options.setcb > # Set the clipboard text data > clipboard.set_text(ssetcb) > > # Make our data available to other applicatons > clipboard.store() > print 'The text has been placed into the clipboard.' > elif options.setfilename: > # Read the clipboard image data. > > # Is there an image > print "Is there an image: " + str(clipboard.wait_is_image_available()) > > image = clipboard.wait_for_image() > if image == None: > print 'No image stored' > else: > location_to_save = options.setfilename > image.save(location_to_save, 'png') > print 'Cb Image stored and saved to: ' + options.setfilename > elif options.setcbimage: > ssetcb = options.setcbimage > print ssetcb > > # Set the clipboard text data > assert os.path.exists(ssetcb), "file does not exist" > image = gtk.image_new_from_file(ssetcb).get_pixbuf() > clipboard.set_image(image) > > # Make our data available to other applications > clipboard.store() > print 'The image has been placed into the clipboard.' > elif options.clear: > # Get and clear the clipboard > clipboard.set_text("") > clipboard.store() > print 'The clipboard has been cleared.' > elif options.setcb_file: > # Read a file and put the contents into the clipboard > file_contents = open(options.setcb_file, 'r') > clipboard.set_text(file_contents.read()) > file_contents.close() > clipboard.store() > elif options.pastecb_filename: > # Get the text from the clipboard and write to a file > print 'Getting the text from the clipboard' > clipboard_text = clipboard.wait_for_text() > print ('Starting to write the clipboard text to the file' + > options.pastecb_filename) > file_contents = open(options.pastecb_filename, 'w') > file_contents.write(clipboard_text) > print 'Writing of the clipboard text is complete' > file_contents.close() > elif options.setcb_lrgstr_file: > # Create a non-random string of the size specified and write it to > # a file and put it on the clipboard. > finalstring = return_nonrandom_str(int(options.setcb_lrgstr_file)) > file_contents = open("/tmp/StringLengthTest.txt", 'w') > file_contents.write(finalstring) > file_contents.close() > file_contents = open("/tmp/StringLengthTest.txt", 'r') > clipboard.set_text(file_contents.read()) > file_contents.close() > print ("Non random string put into file: /tmp/StringLengthTest. " + > " The string has also been placed in the clipboard. " + > "String of size " + options.setcb_lrgstr_file) > clipboard.store() > else: > # Read the clipboard text data. > text = clipboard.wait_for_text() > print 'clipboard=' + str(text) > >if __name__ == "__main__": > main(sys.argv[1:]) > sys.exit(0)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 857471
: 612927