summaryrefslogtreecommitdiffstats
path: root/pyanaconda/ui
Commit message (Collapse)AuthorAgeFilesLines
* Compare Sizes to Sizes in the reclaim dialog (#913484).Chris Lumens2013-02-211-1/+2
|
* The disk cart summary does not need a mnemonic.Chris Lumens2013-02-212-3/+2
| | | | What would it do?
* Fix RAID level testBrian C. Lane2013-02-201-5/+7
| | | | | The string needs to be converted to a raid level before passing it to blivet.
* If you attempt to search on the network device pane, don't crash.Chris Lumens2013-02-201-0/+3
|
* Don't treat the _ in x86_64 as a mnemonic.Chris Lumens2013-02-201-0/+2
|
* If you set_markup, the label forgets set_use_underline from glade.Chris Lumens2013-02-201-0/+1
|
* Don't try to update spokes that are indirect.Chris Lumens2013-02-201-2/+2
| | | | | | This was just minor confusion. It's not the spoke being processed that we need to be concerned about. It's all the ones that might get their incompleteness checked.
* If you cannot reclaim more space, don't show the reclaim radio (#911791).Chris Lumens2013-02-201-7/+15
| | | | | | The primary case for this is if you've got initially all blank disks, though you'd also hit it if you first went through reclaim and deleted everything, then went back to the install options dialogs.
* Swap the order of the part scheme combo and encryption checkbox.Chris Lumens2013-02-201-36/+36
| | | | | Currently, the encryption checkbox kind of looks like it belongs with the radio button group. A little extra padding might also help.
* Refactor pieces of the Datetime spoke and move some parts to kickstart.pyVratislav Podzimek2013-02-191-42/+18
| | | | | | | | | | The apply method should only set self.data, the execute method should do all necessary runtime changes. The code for starting chronyd service and adding/removing it to/from the list of installed packages and enabled services should be placed somewhere where it can be used by text mode as well. Also use NTP_* constants instead of "chrony" and "chronyd" magic strings.
* Update all spokes on a Hub when spoke is exitedMartin Sivak2013-02-151-1/+2
|
* Wait for continueButton in KS mode if the user changed anythingMartin Sivak2013-02-151-15/+21
| | | | | | | | | This behaviour tries to minimize the "surprise factor" we have in the installer. When the user entered spoke, changed any data and then left the spoke, the installer gave him no chance for review or correcting the entered values. With this patch applied the Hub waits for a click on the continueButton if any user interaction happened before all the spokes were ready+completed.
* Fix up word wrap on the DetailedErrorDialog.Chris Lumens2013-02-152-1/+3
|
* Display storage warnings, similar to how errors are displayed (#909410).Chris Lumens2013-02-151-20/+33
|
* Fix reprompting and screen redrawing on invalid inputVratislav Podzimek2013-02-151-2/+6
| | | | | This fixes the behaviour if an invalid input was provided. 5 times it just reprompts for the input then it redraws the screen a resets the counter.
* Move the encryption checkbox to the dialogBrian C. Lane2013-02-132-38/+58
| | | | | This moves the 'Encrypt my data' checkbox from the main storage spoke into the dialog above the partition type combobox.
* re-fetch metadata when proxy settings changeBrian C. Lane2013-02-131-4/+6
| | | | | If you entered a bad proxy the only way to get it to continue was to change the source to something different.
* install -> installation in a couple user-visible strings.Chris Lumens2013-02-132-4/+4
|
* Restore support for partial kickstart files (#887254).Chris Lumens2013-02-137-30/+61
|
* Get rid of packagesSeen.Chris Lumens2013-02-131-4/+3
| | | | pykickstart now provides this information for all commands.
* Remove debugging print (DatetimeSpoke)Vratislav Podzimek2013-02-131-1/+0
|
* Honor modules' __all__ when doing collectMartin Sivak2013-02-131-1/+9
|
* Replace hasActiveNetDev() using new nm moduleRadek Vykydal2013-02-121-2/+3
|
* Replace getActiveNetDevs() using new nm moduleRadek Vykydal2013-02-121-2/+3
|
* Network spoke: remove unused NM path and interface constantsRadek Vykydal2013-02-121-6/+0
|
* Bring back the askmethod parameter (#889887).Chris Lumens2013-02-111-0/+5
| | | | | | | | We've got this shiny new method selection UI but if you want to use it, you've first got to sit through the delay of fetching metadata for the closest mirror which might be completely wrong for you. Thus, this parameter will skip the default action. Entering and leaving the source spoke will unset this parameter.
* Add a new selectorFromDevice method to the accordion.Chris Lumens2013-02-112-70/+74
| | | | | | This allows creating a new MountpointSelector using a Device as a template, or modifying an existing MountpointSelector. It also consolidates a lot of the specifics of doing that creation.
* The storage logger is now the blivet logger.David Lehman2013-02-111-1/+1
|
* DeviceFactory has moved from blivet to blivet.devicefactory.David Lehman2013-02-111-38/+41
|
* Add --dirinstall commandBrian C. Lane2013-02-082-0/+8
| | | | | | | | | | This disables the storage spoke and installs to /mnt/sysimage without mounting any filesystems. If something is already mounted on /mnt/sysimage it leaves it untouched. This can be useful for utilities like livemedia-creator which will mount a filesystem image on the directory and then run anaconda to install to it.
* Convert the mount point entry to one containing a drop down.Chris Lumens2013-02-072-18/+28
| | | | | | The idea here is that it makes things like "swap" more discoverable because the user can pick them, plus it gets rid of the tooltip that is not at all accessible.
* Move the Modify SW button into a link in the text.Chris Lumens2013-02-072-27/+21
| | | | This helps out a bit with the sea of buttons at the bottom of the dialog.
* Rework all the dialogs after you click Done on the storage spoke (#903501).Chris Lumens2013-02-072-218/+166
| | | | | | | | | | | | (1) Change a lot of wording and button text to make it clear what happens next. (2) Allow going to the reclaim dialog even if you have enough space to begin with. (3) Get rid of the custom partitioning checkbox, and make it a button instead. (4) Get rid of the modify software selection button from one dialog, since there's now too many buttons.
* Overrides for the Gdk have _2BUTTON_PRESS definedVratislav Podzimek2013-02-071-2/+1
| | | | | | Gdk.EventType.2BUTTON_PRESS results in syntax error in Python. However it is not necessary to use getattr() because there is Gtk.EventType._2BUTTON_PRESS defined in Gdk's overrides.
* Add entries with completions to the comboboxes (DatetimeSpoke)Vratislav Podzimek2013-02-062-84/+155
| | | | | | | | | | | | | | Some regions have so many timezones (cities), that the combobox doesn't fit in the screen and is hard to search through. This patch modifies the city and region comboboxes to have text entry, that can be used to choose timezone. There are five ways of choosing timezone: 1) click on the map 2) popup comboboxes and choose region and city 3) type to the region and city comboboxes and choose from the completions 4) type a whole region or city name to the combobox and hit ENTER 5) type a whole region or city name to the combobox and click somewhere else or hit TAB
* Make the custom partitioning bullet points take up less horizontal space.Chris Lumens2013-02-051-3/+13
|
* Don't say you can reuse existing mountpoints unless there are some.Chris Lumens2013-02-052-7/+8
|
* Don't crash on wireless connections created in Live CD desktop (#895736)Radek Vykydal2013-02-011-1/+5
|
* Fix up spacing on installation options dialog buttons a little bit.Chris Lumens2013-01-311-14/+6
|
* When the user creates a new mountpoint, display it by default (#886039).Chris Lumens2013-01-311-9/+20
|
* Add device node name information to the storage spoke and disk cart (#902617).Chris Lumens2013-01-314-15/+15
|
* Do not include disks that have 0 size (#903131, #904977).Chris Lumens2013-01-312-0/+2
|
* Preserve the state of the Customize... expanders on custom storage (#883134).Chris Lumens2013-01-313-3/+17
| | | | | Also, reword the label on that expander and change a keyboard accelerator to match.
* Make it a little more clear what's happening on the disk selection spoke ↵Chris Lumens2013-01-311-5/+48
| | | | (#903498).
* Move Xorg to vt7Brian C. Lane2013-01-301-1/+1
| | | | | logind now starts a getty on tty6. We could just let it pick a free vt, but there's a small chance that could interfere with our logging to ttyX
* Document FileSystemSpaceChecker.Chris Lumens2013-01-291-0/+28
|
* Move pyanaconda.packaging.get_mount_* into blivet.util.David Lehman2013-01-281-1/+3
|
* Remove the storage module and replace it with blivet.David Lehman2013-01-288-35/+35
|
* Move tsort, platform, and baseudev into storage.David Lehman2013-01-283-7/+4
| | | | Merge baseudev into storage.udev.
* Use threadMgr.wait to check threadsBrian C. Lane2013-01-286-32/+12
| | | | This will raise an exception if the thread quit because of an error.