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 935804 Details for
Bug 1099222
liveimg payload in text mode does not work
[?]
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 hide some spokes
0001-tui-Hide-source-and-software-spoke-with-liveimg.patch (text/plain), 1.72 KB, created by
Fabian Deutsch
on 2014-09-09 15:51:07 UTC
(
hide
)
Description:
patch to hide some spokes
Filename:
MIME Type:
Creator:
Fabian Deutsch
Created:
2014-09-09 15:51:07 UTC
Size:
1.72 KB
patch
obsolete
>From f4cb0db41cafe56df6bcbbf12ffb94c54921e22c Mon Sep 17 00:00:00 2001 >From: Fabian Deutsch <fabiand@fedoraproject.org> >Date: Tue, 9 Sep 2014 17:32:12 +0200 >Subject: [PATCH] tui: Hide source and software spoke with liveimg > >Previously anaconda tried to bring up the spokes source and software in >TUI mode even when a liveimg payload is used. >But those two spokes ain't necessary if liveimg is used. >Now the two spokes are hidden in the TUI if a liveimg payload is used. > >Signed-off-by: Fabian Deutsch <fabiand@fedoraproject.org> >--- > pyanaconda/ui/tui/spokes/software.py | 4 ++++ > pyanaconda/ui/tui/spokes/source.py | 4 ++++ > 2 files changed, 8 insertions(+) > >diff --git a/pyanaconda/ui/tui/spokes/software.py b/pyanaconda/ui/tui/spokes/software.py >index 2b414d6..6735215 100644 >--- a/pyanaconda/ui/tui/spokes/software.py >+++ b/pyanaconda/ui/tui/spokes/software.py >@@ -74,6 +74,10 @@ class SoftwareSpoke(NormalTUISpoke): > self._ready = True > > @property >+ def showable(self): >+ return not flags.livecdInstall and not self.data.method.method == "liveimg" >+ >+ @property > def status(self): > """ Where we are in the process """ > if self.errors: >diff --git a/pyanaconda/ui/tui/spokes/source.py b/pyanaconda/ui/tui/spokes/source.py >index 45381df..aff79bb 100644 >--- a/pyanaconda/ui/tui/spokes/source.py >+++ b/pyanaconda/ui/tui/spokes/source.py >@@ -104,6 +104,10 @@ class SourceSpoke(EditTUISpoke, SourceSwitchHandler): > return _("Nothing selected") > > @property >+ def showable(self): >+ return not flags.livecdInstall and not self.data.method.method == "liveimg" >+ >+ @property > def status(self): > if self.errors: > return _("Error setting up software source") >-- >1.8.3.1 >
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 1099222
: 935804 |
935805