Wireshark-commits: [Wireshark-commits] master e8e1936: Qt: Option to copy bytes to clipboard as Esc
From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Thu, 15 Sep 2016 04:14:19 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=e8e193694a35779eaf506120ecd2567c98f652ac
Submitter: Anders Broman (a.broman58@xxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

e8e1936 by Gilbert Ramirez (gram@xxxxxxxxxxxxxxx):

    Qt: Option to copy bytes to clipboard as Escaped String
    
    Some users need to copy the bytes to a Python script for
    sending out through a raw socket. While they can modify a
    plain hex dump, having Wireshark copy directly as a Python
    string makes their work easier. This format also works
    with Bash, so it is called "Escaped String". E.g.:
    
    	"\x55\xb5\xd4\x67\x03"
    
    Change-Id: I0b6a5eb2e348f686397afda76095aaa2fb85c18d
    Reviewed-on: https://code.wireshark.org/review/17696
    Petri-Dish: Gilbert Ramirez <gram@xxxxxxxxxxxxxxx>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@xxxxxxxxxxxxx>
    Reviewed-by: Anders Broman <a.broman58@xxxxxxxxx>
    

Actions performed:

    from  c711bc6   Qt: Shorten capture file dialog name filters.
    adds  e8e1936   Qt: Option to copy bytes to clipboard as Escaped String


Summary of changes:
 ui/qt/byte_view_tab.cpp     |   28 ++++++++++++++++++++++++++++
 ui/qt/byte_view_tab.h       |    4 +++-
 ui/qt/main_window.h         |    1 +
 ui/qt/main_window.ui        |   10 +++++++++-
 ui/qt/main_window_slots.cpp |   10 ++++++++++
 ui/qt/packet_list.cpp       |    3 +++
 ui/qt/proto_tree.cpp        |    3 +++
 7 files changed, 57 insertions(+), 2 deletions(-)