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 161656 Details for
Bug 125312
add tooltip to network interfaces in network interface config dialog
[?]
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.
patch to give the user more information on the network device
tooltip.diff (text/x-patch), 1.73 KB, created by
Joel Andres Granados
on 2007-08-16 14:48:42 UTC
(
hide
)
Description:
patch to give the user more information on the network device
Filename:
MIME Type:
Creator:
Joel Andres Granados
Created:
2007-08-16 14:48:42 UTC
Size:
1.73 KB
patch
obsolete
>Index: iw/network_gui.py >=================================================================== >RCS file: /usr/local/CVS/anaconda/iw/network_gui.py,v >retrieving revision 1.110 >diff -u -r1.110 network_gui.py >--- iw/network_gui.py 23 Mar 2007 21:40:19 -0000 1.110 >+++ iw/network_gui.py 16 Aug 2007 14:37:07 -0000 >@@ -382,7 +382,8 @@ > > ipv4 = self.createIPV4Repr(self.devices[device]) > ipv6 = self.createIPV6Repr(self.devices[device]) >- self.ethdevices.append_row((device, ipv4, ipv6), active) >+ devdesc = "%s - %s" % (self.devices[device].info["HWADDR"],self.devices[device].info["DESC"]) >+ self.ethdevices.append_row((device, ipv4, ipv6), active, tooltipText=devdesc) > > num += 1 > >Index: iw/checklist.py >=================================================================== >RCS file: /usr/local/CVS/anaconda/iw/checklist.py,v >retrieving revision 1.18 >diff -u -r1.18 checklist.py >--- iw/checklist.py 19 May 2006 17:53:56 -0000 1.18 >+++ iw/checklist.py 16 Aug 2007 14:37:07 -0000 >@@ -67,10 +67,11 @@ > # iterate over them all > self.num_rows = 0 > >- def append_row (self, textList, init_value): >+ def append_row (self, textList, init_value, tooltipText = None): > """Add a row to the list. > text: text to display in the row >- init_value: initial state of the indicator""" >+ init_value: initial state of the indicator >+ tooltipText: the text that will appear when the mouse is over the row.""" > > iter = self.store.append(None) > self.store.set_value(iter, 0, init_value) >@@ -82,6 +83,7 @@ > i = i + 1 > > self.num_rows = self.num_rows + 1 >+ self.props.tooltip_markup = tooltipText > > > def toggled_item(self, data, row):
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 125312
: 161656