summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Make language groups work again (#873865)Jesse Keating2012-11-071-3/+11
| | | | | We have to potentially unmangle a lang value from say es_ES.UTF-8 down to just "es" in order to find the group within comps.
* Update payload if slower dhcp succeeds in network pre-hub spoke (#873468)Radek Vykydal2012-11-071-3/+1
| | | | Do not check initially_connected in refresh() but in __init__()
* Fix group access after parsing btrfs subvol list output. (#868468)David Lehman2012-11-061-2/+2
|
* Account for autopart swap size when checking free space.David Lehman2012-11-061-4/+8
| | | | | | | | | | | | Only include the swap request size in the case where we're about to tell them they can run autopart in the existing free space, since that's the main place it can be a surprise to find that you do not actually have space for the selected software. For the bug referenced below we still need to redo the space check each time a new software selection is applied. Related: rhbz#853636
* ignoredisk.onlyuse contains names, not StorageDevice instances. (#873463)David Lehman2012-11-061-1/+2
|
* Correctly handle toggle of encryption state for devices. (#873445)David Lehman2012-11-061-27/+43
| | | | | | | | | | | | Don't even allow toggling of encryption for existing devices that have their encryption applied at some lower level (eg: what our autopart produces). If the encryption is applied to container members (lvm, btrfs), let Storage.setContainerMembers handle the changes. If toggling encryption for an existing device or for any device for which we apply encryption to the leaves (md, partition), handle the change of state directly in _save_right_side.
* Handle changes to encryption state of container members. (#873445)David Lehman2012-11-061-3/+22
| | | | | At some point we'll want the same support for managing encrytion of leaf devices, but for now that's handled by the custom spoke.
* Change custom spoke to apply encryption to PVs, not LVs.David Lehman2012-11-061-0/+2
| | | | Related: rhbz#873445
* Widen the sidebar on custom partitioning (mizmo).Chris Lumens2012-11-061-0/+3
|
* Fix spacing and padding on SpokeSelectors (mizmo).Chris Lumens2012-11-061-3/+9
|
* Set the font globally (mizmo).Chris Lumens2012-11-061-0/+4
|
* Handle if we get something other than a .treeinfo file (#872012).Chris Lumens2012-11-061-1/+9
|
* If repo metadata fetching fails, set an info error message (#873605).Chris Lumens2012-11-061-0/+1
| | | | | | The error message isn't the best one ever, and unfortunately the real error is buried so deep that there's not really much hope of getting it to display. At least this way, the user might think to look at the log file.
* Enable yum langpacks plugin to get conditional packages (#868869)Jesse Keating2012-11-061-1/+5
| | | | | | This will require lorax to actually put the plugin files in the image, but once they are there we get all the benefit of somebody else's code managing conditional package installs.
* Base whether an add-on is selected on the selectedGroups, not ksdata (#873092).Chris Lumens2012-11-061-1/+1
| | | | | ksdata only gets set at the beginning and ending of a spoke, not when things are changed on the spoke without leaving. Thus, ksdata is invalid.
* Add UTC and GMT-X timezones (#863199)Vratislav Podzimek2012-11-062-8/+41
| | | | | | It makes sense to set timezone to UTC or GMT-XX. Please mind that "Etc" category doesn't come from my mind, that's how these timezones are defined in the /usr/share/zoneinfo tree.
* TimezoneMap should handle "" timezoneVratislav Podzimek2012-11-061-9/+26
| | | | | | This is needed for displaying UTC and GMT-X timezones. Setting timezone to "" graphically sets "Europe/London", but doesn't add the pin.
* raise error on rsync failure (#868755)Brian C. Lane2012-11-051-2/+4
|
* exclude bind mounts from rsync (#871637)Brian C. Lane2012-11-051-1/+2
| | | | | rsync tries to remove xattrs even though -x has been specified. They don't need to be copied anyway so exclude /dev/ /proc/ and /sys/
* Fix up the InstallOptions3Dialog.refresh arguments (#873392).Chris Lumens2012-11-051-1/+2
|
* Mark strings at the top of spokes with N_; translate later with _ (#872791).Chris Lumens2012-11-054-60/+60
| | | | | | | | Spokes are imported very early (when the UI is being constructed), which is before a language has been chosen. Thus, any strings at the top of the file will be set up with the original translation, not the translation the user selects. The fix is to simply translate them when they are needed and not before.
* Do not decorate the dialog that appears when you click on storage info bar.Chris Lumens2012-11-051-0/+1
|
* You have to give "raise" an exception if you're outside a handler (#872874).Chris Lumens2012-11-051-1/+1
|
* Prompt for encryption passphrase in reclaim path. (#869391)David Lehman2012-11-051-0/+8
| | | | | | This got broken by commit 33673a5c0. Previously after reclaim we would run through on_continue_clicked again and presumably go through the "continue" path, which is where we'd prompt for the passphrase.
* Prevent user from hitting save without entering a passphrase. (#869391)David Lehman2012-11-051-0/+4
| | | | | We didn't apply the checks/controls of the dialog until some text was entered, which allowed users to click through without entering anything.
* Font and padding updates for the network spoke (mizmo).Chris Lumens2012-11-051-4/+7
|
* Fix alignment on the Add and Configure Mount Point dialogs.Chris Lumens2012-11-051-1/+3
|
* Network spoke: activate wifi connection after setting secrets (#871132)Radek Vykydal2012-11-021-3/+18
| | | | | It used to happen automatically but there was a change in NM so we need to manage it ourselves (until we have secret agent).
* Fix nfsiso as stage2 (#871554)Jesse Keating2012-11-021-3/+8
| | | | | | | This is an ugly hack, but it gets nfsiso working. You can switch from NFSISO to another source, and back to the same NFSISO, just not to a different NFSISO. That's going to have to be a "known issue" for F18 Beta.
* Fix traceback when saving changes to an existing partition. (#872446)David Lehman2012-11-021-4/+9
|
* Some more stuff for the mangleMap (#866730)Vratislav Podzimek2012-11-021-16/+18
| | | | | This is only for F18, we really need a better solution for the future.
* Handle locale's encoding and script in a better wayVratislav Podzimek2012-11-021-11/+57
| | | | | | | Encoding should go between _territory and @script. Neither script nor is not parsed by babel.Locale.parse. Related: rhbz#866730
* Use both language and country to guess layout (#861061)Vratislav Podzimek2012-11-022-5/+34
| | | | Signed-off-by: Vratislav Podzimek <vpodzime@redhat.com>
* Fix remaining issues with md fwraid. (#872739)David Lehman2012-11-022-0/+10
|
* Do not return None from Size.__str__ (#869405)Vratislav Podzimek2012-11-031-18/+19
| | | | If no value is < 1000, return the value in YBs.
* Add a platform weight for ARM imagesd.marlin2012-11-021-0/+9
| | | | | | | Ensure the root partition '/' is the the last partition in the image. This is required to allow resizing the root partition on firstboot. Signed-off-by: Brian C. Lane <bcl@redhat.com>
* Remove a bunch of stuff from the TODO list.Chris Lumens2012-11-021-5/+0
|
* Don't decorate the main exception window.Chris Lumens2012-11-021-0/+1
| | | | | | Note that we'll never be able to mark all the exception reporting windows as undecorated because those all come from libreport instead of us. But this is at least a start.
* Move the custom partitioning's Apply Changes button.Chris Lumens2012-11-021-27/+10
| | | | | | | Right now it gets lost floating around in all the free space in the bottom right side of the screen, or even worse gets confused with the Finish Partitioning button. This moves it to the left and up right under the customize expander where it will hopefully be easier to find.
* Indent partition type options under the expander further.Chris Lumens2012-11-021-2/+2
| | | | | This is to match the same level of indent as is being applied to the customize expander in custom partitioning.
* Left align the Label label, and indent the custom options further.Chris Lumens2012-11-021-1/+4
|
* Lots of custom partitioning UI changes (mizmo).Chris Lumens2012-11-021-119/+102
| | | | | | - Convert the button bar to a GtkToolbar with appropriate styling. - Font changes. - Size and alignment changes to make the accordion larger.
* Update fonts on the welcome language spoke (rlerch).Chris Lumens2012-11-021-2/+4
|
* Lots of storage spoke font and spacing changes (mizmo).Chris Lumens2012-11-021-18/+63
|
* Set the background of the custom partitioning accordion back to white (mizmo).Chris Lumens2012-11-021-1/+0
|
* Set the Local Standard Disks background back to white (mizmo).Chris Lumens2012-11-021-3/+0
|
* Reorder Device Type options in custom part to match the Partition Type combo.Chris Lumens2012-11-021-2/+2
|
* Use the same terminology for partitions as is in use on the custom spoke.Chris Lumens2012-11-021-2/+2
|
* livecd specific code has movedBrian C. Lane2012-11-021-338/+0
| | | | it is now in pyanaconda/packaging/livepayload.py
* Add progress percentage info to liveinstBrian C. Lane2012-11-021-1/+36
| | | | | This adds a thread that uses os.statvfs to monitor the amount data that has been copied to the destination mountpoints.