summaryrefslogtreecommitdiffstats
path: root/cmdline.py
Commit message (Collapse)AuthorAgeFilesLines
* Warn when ignoring BIOS RAID members (#560932)Hans de Goede2010-02-161-1/+3
| | | | | | | | | | | | | This patch adds a warning when ignoring BIOS RAID members because no complete set using them could be found. This patch also introduces a much needed InstallInterfaceBase class, as I didn't feel like adding the exact same code to all of cmdline.py, gui.py and text.py . Note that the ignoring of BIOS RAID members is checked in 2 places, as the filter UI can be skipped under certain circumstances (kickstart). The interface code checks for disks it has already warned about.
* Move instProgress to be an attribute on the InstallInterface.Chris Lumens2010-02-041-2/+6
|
* Ask about LVM inconsistencies only in storageinit step.Radek Vykydal2010-01-071-0/+10
| | | | | | | | | | | The patch does essentially the same thing as commit 31d5b8f4fec513e4f8e246e47e9fee75c701d07b for disk initialization question. The difference is that when user chooses LVM reinitialization, it is done immediately (not as planned action as with disk initialization) so the user wouldn't be asked again anyway without the patch (he would be asked if he chose to ignore). I also made one function more readable in the patch.
* Ask about disk initialization only in storageinit step.Radek Vykydal2010-01-071-0/+10
| | | | | | | | Don't ask again and again e.g. when going back and forth in custom partitioning UI. Related to bug #527711 which is itself fixed by another patch. (*) Answers are cached in InstallInterface classes. (*) Dialog callback is moved from storage code to InstallInterface classes.
* Allow InstallInterfaces to modify the installation steps.Chris Lumens2009-12-111-1/+3
| | | | | This will be handy for the filtering interface that does not at all exist in text mode.
* For cmdline mode, add the long text to what messageWindow will print (#528006).Chris Lumens2009-10-151-0/+3
|
* Add a stub enableNetwork method for cmdline mode (#525779).Chris Lumens2009-09-251-0/+7
|
* Lots of small grammar and wording changes.Peter Jones2009-07-131-3/+3
| | | | Just auditing the world for clarity, don't mind me.
* Edit user-visible dialogs for style.Peter Jones2009-07-131-1/+1
| | | | | We have lots of strings that we display to users which are unclear or contain poor usage and grammar. That's bad.
* Add detailedMessageWindow to the cmdline class (#499700).Chris Lumens2009-05-071-1/+7
|
* The device passed to the luks passphrase dialogs is a string. (#492123)David Lehman2009-04-241-1/+1
|
* Handle passphrase prompts without a traceback in cmdline mode. (#492123)David Lehman2009-04-211-0/+14
|
* Fix traceback in cmdline mode after exception handling cleanup (#496644)Jeremy Katz2009-04-201-1/+1
|
* Revert "Don't do format-specific processing on devices targeted by ↵Joel Granados Moreno2009-03-271-14/+0
| | | | | | | clearpart. (#492123)" This reverts commit 420a2afd509f532eb34adbb1c842f0445d184fee. I messed up here with a dirty branch.
* Don't do format-specific processing on devices targeted by clearpart. (#492123)David Lehman2009-03-261-0/+14
|
* Update UI code to use new storage module.David Lehman2009-02-231-4/+0
|
* Don't provide a special partedExceptionWindow anymore.Chris Lumens2009-02-121-15/+0
| | | | | | Since pyparted has a lot more execption classes now, it makes sense to just let anaconda's regular exception handling framework deal with them. This means a lot of changes throughout are on the way.
* Remove markup from text before printing it in cmdline mode (#470253).Chris Lumens2008-12-051-2/+4
|
* cmdline.py: Fix a small typo in a message (rh 467338)Hans de Goede2008-10-171-1/+1
| | | | cmdline.py: Fix a small typo in a message (rh 467338)
* Use print() as a function.Peter Jones2008-09-081-16/+16
|
* Suspend the curses interface before calling scripts and resume afterwards ↵Martin Sivak2008-07-241-0/+6
| | | | (#435314)
* 2008-06-04 Ján ONDREJ <ondrejj@salstar.sk> (via ondrejj@fedoraproject.org)Ján ONDREJ2008-06-041-1/+2
| | | | * po/sk.po: Typo fix.
* Clean up typos and other things for GPLv2+ changes.David Cantrell2007-12-171-1/+1
| | | | | | | Shorten 'Red Hat Author(s)' to just 'Author(s)'. Perhaps eventually we'll get an AUTHORS file and will just remove author names from the individual files. Also fixed a type in scripts/dumphdrlist.py where Author was listed twice.
* Common GPLv2+ boilerplate on toplevel python source files.David Cantrell2007-12-171-6/+13
| | | | | | Updated all *.py files to have a uniform GPL boilerplate. Expanded copyright year ranges and listed authors (if they were in the comment section) under the Red Hat Author(s) section.
* add pulsing progress bars for gui. noop (no progress bar) for textJeremy Katz2007-11-291-3/+6
|
* Remove unused imports. Yes I know this is stupid nitpicky crap, but I likeChris Lumens2007-09-191-2/+0
| | | | it.
* 2007-03-28 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-03-281-1/+2
| | | | | | | | | | * livecd.py (LiveCDCopyBackend._doFilesystemMangling): Call refresh method so that we don't end up with a hung looking UI during filesystem resizing, etc (#224213) * gui.py (WaitWindow.refresh): Add refresh method * cmdline.py (WaitWindow.refresh): Likewise. * text.py (WaitWindow.refresh): Likewise.
* 2007-03-07 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-03-071-0/+2
| | | | | | | | | | | | * iw/progress_gui.py (InstallProgressWindow.setShowPercentage): Add method to say that we should just show the percentage in the progress bar like newt does. If this is set, ignore any calls to set_text(). * textw/progress_text.py (InstallProgressWindow.setShowPercentage): Placeholder method, doesn't actually do anything for text mode given the way newt works. * cmdline.py (progressDisplay.setShowPercentage): Add placeholder here too.
* 2007-02-28 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-02-281-28/+14
| | | | | | | | | | * yuminstall.py: Use new progress API * livecd.py: Likewise. * iw/progress_gui.py: New progress screen interface that's more suited to different backends * textw/progress_text.py: Likewise. * cmdline.py (progressDisplay): Likewise.
* 2006-08-23 Jeremy Katz <katzj@redhat.com>Jeremy Katz2006-08-231-0/+8
| | | | | * cmdline.py (InstallInterface.kickstartErrorWindow): Handle kickstart errors in cmdline mode (#203768)
* * anaconda (__main__): Pass reference to anaconda rather than id andDavid Cantrell2006-05-251-8/+8
| | | | | | | | | | | | | dispatch references when calling anaconda.intf.run(). * cmdline.py (InstallInterface.run): Changes to account for receiving a reference to the anaconda object rather than an id and dispatch object. * gui.py (InstallInterface.run): Likewise. * text.py (InstallInterface.run): Likewise. * gui.py (InstallControlWindow.releaseNotesButtonClicked): Pass reference to anaconda object to the ReleaseNotesViewerThread object.
* Use anaconda object.Chris Lumens2006-05-081-6/+3
|
* Use anaconda object.Chris Lumens2006-05-051-4/+4
|
* 2005-12-13 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-12-131-3/+6
| | | | * cmdline.py (ProgressWindow.__init__): Adjust for new API
* Use glade for the exception dialog and display the full traceback on theChris Lumens2005-09-201-2/+2
| | | | bottom.
* Converted a lot more messages to the new logging system, but there's stillChris Lumens2005-08-111-2/+4
| | | | | | 41 files to go. If your favorite log message needs to be on a different priority level, feel free to change it. Maybe we can have little commit wars over them.
* 2005-04-27 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-04-271-1/+2
| | | | | * cmdline.py (progressDisplay.setPackageStatus): Don't spam about package downloads in cmdline mode (#155250)
* 2005-04-26 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-04-261-0/+3
| | | | | | | | | | | | | | * text.py (InstallInterface.beep): Add no-op beep method. Could actually do something if newtBell() were bound in snack. * cmdline.py (InstallInterface.beep): Add (no-op) beep method. * gui.py (InstallInterface.beep): Add beep method. * scripts/mk-images.x86_64 (COMMONMODULES): Add pcspkr module. * scripts/mk-images.i386 (COMMONMODULES): Likewise. * loader2/loader.c (main): Load pcspkr module.
* 2005-03-29 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-03-291-3/+1
| | | | | | | | | | | | | | | | | | * anaconda: Remove essentially unused config file data code, product.img basically supplanted this. * Makefile: Likewise. * cmdline.py: Likewise. * gui.py: Likewise. * text.py: Likewise. * dispatch.py: Likewise. * instdata.py: Likewise. * splashscreen.py: Likewise. * iw/welcome_gui.py: Likewise. * textw/welcome_text.py: Likewise. * anaconda.conf: Remove file. * configFileData.py: Likewise. * readConfigFile.py: Likewise.
* log parted exceptionsmikem2004-08-241-0/+1
|
* this at least gets cmdline installs working again (though not completelyJeremy Katz2004-02-251-1/+4
| | | | pretty)
* another taroon merge. tagged before as before-taroon-merge, after asJeremy Katz2003-04-241-0/+160
after-taroon-merge this one adds s390 fixes, basic i/p series platform support, support for multiple kernels and one second stage, cmdline kickstart mode (nice for s390), some warning cleanups.