summaryrefslogtreecommitdiffstats
path: root/text.py
Commit message (Collapse)AuthorAgeFilesLines
* Use print() as a function.Peter Jones2008-09-081-2/+2
|
* Support establishing a global passphrase when creating encrypted devices.David Lehman2008-08-191-8/+20
|
* Add encrypted device passphrase dialog for text mode.David Lehman2008-08-131-0/+79
|
* console: kill the /proc/xen hackMark McLoughlin2008-08-081-2/+0
| | | | | | | | We don't have /proc/xen anymore. virtpconsole should cover this now anyway. Signed-off-by: Mark McLoughlin <markmc@redhat.com>
* Suspend the curses interface before calling scripts and resume afterwards ↵Martin Sivak2008-07-241-0/+6
| | | | (#435314)
* Add support for saving via scp back in.Chris Lumens2008-07-221-22/+67
|
* Add support for filing tracebacks directly into bugzilla.Chris Lumens2008-07-221-7/+14
| | | | | | | | | | | | | | This patch adds support for save to bugzilla, using the python-bugzilla module. We get the bugzilla URL from product.bugUrl and require the user to already have a valid account with that bugzilla instance. That should cut down on potential abuse. To cut down on the number of possible duplicates, we hash the file name, function name, and line of each frame in the traceback and store that hash in the bug itself. Before filing a new bug, we query for any bugs containing that hash value. If found, we simply add the traceback as a new attachment and put the user on the CC list. If not found, we create a new bug. Either way, the user is encouraged to visit their bug and make a more meaningful comment.
* Remove the code to save exceptions over scp.Chris Lumens2008-07-221-14/+2
|
* Add a text-mode network configurator dialog so default installs can work.Chris Lumens2008-07-151-4/+5
|
* Add functions for creating repos as well.Chris Lumens2008-07-091-0/+4
|
* Spell pseudo correctly.Peter Jones2008-06-261-1/+1
|
* Move enableNetwork into the interface. Bring network up for scp.Chris Lumens2008-06-191-0/+5
|
* 2008-06-04 Ján ONDREJ <ondrejj@salstar.sk> (via ondrejj@fedoraproject.org)Ján ONDREJ2008-06-041-103/+5
| | | | * po/sk.po: Typo fix.
* Make the LUKS passphrase prompt fit on an 80x25 screen. (#442100)David Lehman2008-04-251-1/+1
|
* Stop refreshing like mad in text-mode on WaitWindow.refresh()Jeremy Katz2008-04-041-1/+1
|
* Add support for saving the exception to a local directory for live installsJeremy Katz2008-03-271-0/+2
| | | | | | | If you're doing a live install, you often won't have removable media inserted but you _can_ just save the exception somewhere and then report it. So let's take advantage of that. Not implemented for text mode as text-mode live installs aren't that relevant
* Remove mouse screens that haven't been used in 4 yearsJeremy Katz2008-03-261-1/+0
|
* Allow recovery from some missing repodata conditions.Chris Lumens2008-02-281-0/+4
| | | | | | If we try to read the repodata during doRepoSetup and find that it's not there, allow editing the repository right away and attempt to reconfigure. These changes will be reflected in task selection later on.
* Add back some bits for text modeJeremy Katz2008-02-221-1/+3
|
* Remove advanced bootloader bitsJeremy Katz2008-02-221-2/+0
|
* Refer correctly to various encrypted block devs as "devices", not "partitions".David Lehman2008-02-051-2/+2
|
* Add dialogs to prompt for passphrases of existing encrypted partitions.David Lehman2008-02-051-0/+45
| | | | As a convenience, a checkbox allows the user to indicate that the passphrase they are entering should also be used to access all subsequently discovered encrypted devices.
* Remove rogue references to kudzu.Chris Lumens2008-01-231-1/+0
|
* Fix a bunch of pychecker errors.Chris Lumens2008-01-121-2/+2
|
* Clean up typos and other things for GPLv2+ changes.David Cantrell2007-12-171-2/+2
| | | | | | | 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-7/+14
| | | | | | 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.
* Remove confirmation screenJeremy Katz2007-12-051-2/+0
|
* remove dead codeBill Nottingham2007-11-301-13/+0
|
* add pulsing progress bars for gui. noop (no progress bar) for textJeremy Katz2007-11-291-4/+8
|
* Pass the screen instance to the exn dialogs to avoid a traceback (#403381).Chris Lumens2007-11-281-2/+2
|
* Stub out the detailedMessageWindow method.Chris Lumens2007-11-061-0/+6
|
* Oh, here's the rest of the text mode exception handling dialog.Chris Lumens2007-10-261-14/+47
|
* Rework the exception handling dialog to make it easier to add destinationsChris Lumens2007-10-261-59/+68
| | | | | other than floppy and remote via scp in the future. USB support is almost there.
* Fix a couple problems pychecker found. There's probably a lot more commitsChris Lumens2007-09-191-3/+3
| | | | like this.
* #244531 - Show the architecture during installmsivak2007-08-231-1/+4
| | | | | | | | | | * loader2/loader.h: Add getProductArch method. * loader2/loader.c: Populate productArch and define getProductArch. Show the architecture in stage1. * constants.py: add productArch * product.py: populate productArch * text.py: Show the architecture during text mode stage2.
* Remove the debug button on livecd installs.Chris Lumens2007-08-021-1/+2
|
* It's anaconda, not self.anaconda.Chris Lumens2007-05-141-5/+5
|
* 2007-05-10 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-05-101-1/+1
| | | | * text.py (WaitWindow.refresh): Fix traceback reported on livecd-list
* 2007-03-28 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-03-281-0/+3
| | | | | | | | | | * 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-05 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-03-051-2/+2
| | | | * text.py (ProgressWindow): Pass ints to snack Scale (#230951)
* exec must die!Chris Lumens2007-02-281-4/+20
|
* * yuminstall.py (selectBestKernel): actually select kernel-xen-develdlehman2007-02-231-0/+45
| | | | | | | | | | | | | | | when we say we're going to (#226784) * iw/autopart_type.py (PartitionTypeWindow.getScreen): desensitize review checkbox if we're headed backwards and the current selection is custom (#220951) * gui.py: add class InstallKeyWindow and InstallInterface method getInstallKey * text.py: add getInstallKey method * ui/instkey.glade: instkey dialog (new file)
* Don't display the unsupported language message box in non-interactive kickstartChris Lumens2007-01-151-5/+9
| | | | installs (#222096).
* Don't use len so we clear the root window text even if it contains wideChris Lumens2007-01-041-6/+3
| | | | characters (#220905).
* Forgot to commit this on Friday.Chris Lumens2006-10-231-4/+1
|
* Don't specify a stdout or stderr for shells on s390 (#210481).Chris Lumens2006-10-191-1/+4
|
* Fix shell input/output (#201479).Chris Lumens2006-08-151-1/+1
|
* 2006-07-24 Jeremy Katz <katzj@redhat.com>Jeremy Katz2006-07-241-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | * yuminstall.py (AnacondaYum.doConfigSetup): Allow having more than one default repo for the installclass (YumBackend._catchallCategory): Fix catchall category * packages.py (regKeyScreen): Add reg key screen. * installclass.py (BaseInstallClass.getPackagePaths): Add method to handle mapping with a URI to the repo paths we want to have (BaseInstallClass.handleRegKey): Method for handling the reg key and validating it * installclasses/rhel.py: Add Red Hat Enterprise Linux installclass. Have it enable the regkey step * installclasses/rhel_as.py: Remove old RHEL class * installclasses/rhel_desktop.py: Likewise. * installclasses/rhel_es.py: Likewise. * installclasses/rhel_ws.py: Likewise. * gui.py (EntryWindow.__init__): Add intf.entryWindow taking advantage of messageWindow stuff. * text.py (InstallInterface.entryWindow): Likewise. * dispatch.py (installSteps): Add regkey step.
* * iw/iscsi_gui.py: Remove in favor of more integrated way ofJeremy Katz2006-07-131-1/+0
| | | | | | | | | configuring * textw/iscsi_text.py: Likewise. * dispatch.py (installSteps): Remove iscsi step. * installclass.py: Likewise. * gui.py: Likewise. * text.py: Likewise.
* Use subprocess instead of our own code. Fix all calls to execWith* soChris Lumens2006-07-121-1/+1
| | | | | the command is no longer the first argument, since subprocess doesn't work that way. Remove unneeded /proc/e820info cruft. Remove iutil.rmrf.