summaryrefslogtreecommitdiffstats
path: root/ui
Commit message (Collapse)AuthorAgeFilesLines
* Remove exception handling files no longer part of anaconda.Chris Lumens2009-07-291-664/+0
|
* Initial FCoE supportHans de Goede2009-07-022-0/+168
| | | | | | | | | | | | | | | This patch adds support for using FCoE during the installation. This patch merely lays the initial ground work, there is more work todo: - The system will not boot without manual help after the install, as dracut / mkinitrd do not support FCoE yet - If FCoE is not used for / but for example for /srv, then information about the nic used for FCoE needs to be written in a to be defined config file in the system, and rc.sysinit needs to be thought to read this file and bring up FCoE SAN's / Fabrics not used for / - kickstart support for FCoE still needs to be done
* Convert ui/ to Makefile.amDavid Cantrell2009-06-092-32/+23
|
* Center the bootloader configuration dialog (#495802).Chris Lumens2009-04-151-1/+1
|
* Correct bounds checking problems in 'Shrink current system'David Cantrell2009-03-301-10/+10
| | | | | | | | | | | | | | | | The 'Shrink current system' dialog had some bounds checking problems. Users could enter a size that was too small or too large. Renamed the function and related controls to use 'shrink' instead of 'resize' in the name to better reflect what the code does. Use the format's size to set the bounds rather than the partition's. Since we are shrinking here, we only want to let users select a size smaller than the current format size. A size smaller than the minimum will automatically be set to the correct minimum. Likewise, a size larger than the maximum will automatically be set to the correct maximum.
* Improve resizeDialog text.David Cantrell2009-03-151-2/+2
| | | | Change the title and indicate the entry field is expecting megabytes.
* Center resize window on the screen.David Cantrell2009-03-051-1/+1
|
* Replace non UTF-8 char for hiding password chars with UTF-8 (#485218)Hans de Goede2009-02-121-3/+3
| | | | | | For some textfields we specify a non UTF-8 "asterisk" char as hidden char, which no longer works with the latest (py)gtk. This patch switches to using a proper UTF-8 char for this.
* repo.proxy is now a property, so check before setting it (#481342).Chris Lumens2009-01-231-1/+1
| | | | | Also, change the wording in the UI slightly to indicate you can add a port to the proxy string.
* Various packaging fixed from review (#225246)Hans de Goede2009-01-051-1/+1
| | | | Various packaging fixed from review (#225246)
* Make text for autopartitioning types clearer (#441350)Jeremy Katz2008-12-011-1/+1
| | | | | We used "default" a lot in the text. Change based on notting's suggestion and make the intro text a little clearer to match
* Don't have the key icon take up so much space on the LUKS dialog (#470338).Chris Lumens2008-11-061-2/+2
|
* Left justify text in ui/netconfig.glade interface.David Cantrell2008-09-291-1/+1
|
* Use fullscreen for small screens (#444943)Jeremy Katz2008-09-291-1/+0
| | | | | Switch to fullscreen on lowres screens as that avoids some problems with live installs on such machines
* Properly center the passphrase entry dialog.Chris Lumens2008-09-291-1/+2
|
* Make the boot loader device dialog less ugly (#463489).Chris Lumens2008-09-291-2/+1
|
* New device passphrase is now always global w/ option to retrofit.David Lehman2008-09-151-1/+1
| | | | | | Retrofit in this context means to add the new passphrase to all preexisting LUKS devices that we have keys to. This is an effort to simplify management of systems containing encrypted devices.
* Add full CHAP support to iSCSI. (rhbz#432819)Hans de Goede2008-09-151-13/+122
| | | | | Forwart port of rhel-5 patch by pjones, commit-id: e9556f9e39629534b4b44ba64c7fef6b981b4f0e
* Fix various problems with the exn saving UI (#461129).Chris Lumens2008-09-051-109/+2
|
* Pad the icon more in network.gladeDavid Cantrell2008-08-281-2/+2
|
* New network configuration screen for GTK+ UI.David Cantrell2008-08-282-943/+197
| | | | | | Removed the old netpostconfig.glade file. Moved the network configuration screen over to glade entirely. Prompt for just the hostname.
* Support establishing a global passphrase when creating encrypted devices.David Lehman2008-08-191-0/+19
|
* Remove an extra "Local disk" option (#459128).Chris Lumens2008-08-141-1/+0
|
* Make passphrase dialogs appear in the center of the screen. (#458114)David Lehman2008-08-131-2/+2
|
* Rework the exn save UI to be a notebook instead of one large table.Chris Lumens2008-07-221-291/+361
| | | | | This decreases the widget load we were seeing from having so much crammed into one single page.
* Add support for saving via scp back in.Chris Lumens2008-07-221-9/+259
|
* Add support for filing tracebacks directly into bugzilla.Chris Lumens2008-07-221-4/+48
| | | | | | | | | | | | | | 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-91/+2
|
* Add an updated repo editor.Chris Lumens2008-07-091-196/+761
| | | | | | | This editor is capable of modifying all types of installation repositories, though it currently only contains code for doing the real work on URLs. Eventually, this will allow for improved error handling and replacement of all the method selection stuff in loader.
* Specify which protocol is used for remote saving (#440214).Chris Lumens2008-04-301-1/+1
|
* Minor UI tweaks to passphrase dialogsJeremy Katz2008-04-171-32/+94
| | | | | | | * Ensure that if you press enter in the passphrase dialog, it activates the enter button (#442431) * Let the dialogs know about their parent window so they can be centered * Add an image to denote the fact that it's a password
* Use a real GtkDialog instead of some crazy hacked up dialogJeremy Katz2008-04-171-277/+534
| | | | | | Doing our own gtk.main() causes things to get "odd" from some callers, so just make this a normal GtkDialog. Also, make sure that when we pop up the dialog, the busy cursor isn't showing
* Don't enable encryption by defaultJeremy Katz2008-04-031-1/+1
| | | | | | While we definitely want encryption to be readily available, turning it on by default raises too many chances for a user to forget passwords, etc and so we want them to opt-in to it.
* Partitioning UI for handling of preexisting encrypted devices.David Lehman2008-03-281-2/+2
| | | | | | | | | | | | | Basic rules are the same for partitions, LVs, RAID devices: - Existing LUKS headers can only be removed if the device is being formatted. - You can create a new filesystem on the device and retain the preexisting LUKS header. - You can add a LUKS header to a non-encrypted preexisting device only if creating a new filesystem on the device. - We prompt for passphrase only for non-preexisting LUKS headers, meaning those that existed when we read the disk layout initially. We do not support adding or changing passphrases for preexisting encrypted devices.
* Try to make the size flow a little more for weird resolution screens (#439297)Jeremy Katz2008-03-271-1/+0
|
* Add support for saving the exception to a local directory for live installsJeremy Katz2008-03-271-229/+318
| | | | | | | 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
* Focus root password entry box (#436885).David Cantrell2008-03-181-1/+4
| | | | | | | Make sure the root password entry box has focus when we get to the password screen. Pressing Enter will take you down to the confirm box. Pressing Enter in confirm is the same as clicking Next on the screen.
* Focus root password entry box (#436885).David Cantrell2008-03-111-1/+0
| | | | | | | | | Make sure the root password entry box has the focus when we get to the root password screen. Remove the reference to root-password.png in the glade file to avoid libglade warnings on the console. Try to see if we can get Enter keypresses from the confirm password entry box to trigger the Next button. It's not working for me, but my keyboard is acting up with the latest kernel.
* Pull in the bits of pirut that we use so that we don't depend on pirutJeremy Katz2008-03-021-0/+395
| | | | | | We're going to try to switch to PackageKit for the installed system and having both pirut and PackageKit installed just makes the user experience odd
* Allow recovery from some missing repodata conditions.Chris Lumens2008-02-281-1/+1
| | | | | | 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 support for actually changing where the boot loader gets installed as wellJeremy Katz2008-02-221-0/+379
| | | | as the BIOS drive order.
* Clean up root password user interfaces.David Cantrell2008-02-201-0/+276
| | | | | | | Clean up the code for the iw and textw root password entry interfaces. Move functions outside of the classes to inside the class, clean up formatting, turn gtk interface in to a glade file, remove unused code and variables.
* Remove old glade file, make passwordEntry appear on the screen.Chris Lumens2008-02-062-197/+1
|
* Add resizing support in autopartitioningJeremy Katz2008-02-051-0/+238
| | | | | Add a new choice when autopartitioning to resize an existing partition to make room for your install.
* Fix a few bugs in the new passphrase prompting code.David Lehman2008-02-051-3/+3
|
* Add dialogs to prompt for passphrases of existing encrypted partitions.David Lehman2008-02-051-0/+141
| | | | 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.
* Add a repository editor and rework the adding code to make use of it.Chris Lumens2008-01-222-76/+326
|
* Add license boilerplates to Makefiles.David Cantrell2007-12-171-0/+19
| | | | | | | | All Makefiles have a standard RH license boilerplate. Existing copyright ranges have been expanded out to list each year, since you are supposed to do that for license boilerplates (ranges aren't valid). Any existing authors mentioned are listed under the Red Hat Author(s) part.
* Add support for encryption via autopart.Jeremy Katz2007-12-141-0/+19
| | | | | | | | This allows autopart (of LVM) to set up encrypted PVs to be used and adds the UI for enabling that in graphical mode. It's a little bit hacky as we rely on the fact request.encryption is set and has a passphrase for this to work
* Remove the release notes code entirely.Chris Lumens2007-12-051-85/+1
|