summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Add text letting people know they can use existing filesystems (#883150).Chris Lumens2013-01-231-7/+21
| | | | Yes, I know it's already described in the help text.
* Default to mirrored RAID instead of striped (#888867).Chris Lumens2013-01-231-2/+2
|
* Replace the RAID level checkboxes with a single combo box.Chris Lumens2013-01-232-621/+143
| | | | This seems to be what more people want, and it's certainly far more simple.
* Don't allow mountpoints to start with /proc or /sys either.Chris Lumens2013-01-221-1/+2
|
* Add 'nmcli dev list' output to data gathered after crashVratislav Podzimek2013-01-221-0/+7
|
* Add lsblk output to data gathered after crash (#879940)Vratislav Podzimek2013-01-221-1/+10
| | | | | python-meh now allows us to register callbacks providing some additional info.
* Cleanup some trailing whitespace on otherwise empty linesVratislav Podzimek2013-01-222-9/+9
| | | | | Since this patch affects just the lines having (trailing) whitespace only, it doesn't ruin git history in any significant way.
* Refactor and cleanup exception handling piecesVratislav Podzimek2013-01-224-52/+98
| | | | | | | | | | | | Before this patch our UserInterface classes somehow "implicitly" inherited python-meh's *Intf classes by providing two methods with right names. This patch adds a meh_interface property to our UserInterface classes that returns an instance of a class that really is inherited from the python-meh's *Intf class or actually is an instance of the python-meh's *Intf class in case of gui and tui respectively. It also adds a tty_num property to our *UserInterface classes that can be used in runDebug to get user to the right console before and after the pdb session automatically.
* Exception handling for text mode (#865325)Vratislav Podzimek2013-01-223-4/+12
| | | | python-meh now has a text UI we could use.
* python-meh's saveExceptionWindow no longer uses the accountManagerVratislav Podzimek2013-01-221-2/+2
|
* Enable line wrapping in a couple more places (#901551).Chris Lumens2013-01-203-6/+7
|
* Support /boot on RAID metadata version 1.2 (#896163).Chris Lumens2013-01-201-0/+1
|
* Don't check memory for rescue mode (#895948).Chris Lumens2013-01-201-0/+3
|
* Split __init__ and setup in TUI screens so we can set the environment and ↵Martin Sivak2013-01-183-6/+19
| | | | search paths
* Add a requirement on device-mapper-multipath (#895973)Martin Sivak2013-01-171-0/+1
|
* Update default fs type code (#855401).Chris Lumens2013-01-162-3/+23
|
* Display the background gradient image from a map signal handler.Chris Lumens2013-01-161-23/+30
| | | | | | | | | | Doing it from the init method means we need to call gtk_widget_realize so all the gdk and cairo stuff has something to operate on. However, that realize call screws up glade so that the window gets displayed separately and widgets cannot be clicked upon. This reorganization moves the gradient setup to after the widget has been realized.
* Remove the old cmdline and script interfaces.Chris Lumens2013-01-164-479/+0
| | | | These have all been merged with the new text interface.
* anaconda-cleanup doesn't use an interface at all.Chris Lumens2013-01-161-2/+0
|
* Remove the old text mode UI.Chris Lumens2013-01-1623-2513/+4
| | | | | I've had to leave pieces of text.py around, though, because it's used by rescue mode and we're not changing it quite yet.
* Move constants_text out of the textw directory.Chris Lumens2013-01-162-39/+1
| | | | It's needed for rescue mode, and the textw directory is about to go away.
* Remove more references to system-config-*.Chris Lumens2013-01-162-5/+1
|
* Add device NM_DEVICE_TYPE_ETHERNET to isys (#893892)Radek Vykydal2013-01-161-0/+1
| | | | Fix of previous patch.
* Dump missing ifcfg ifles only for ethernet devices (#893892)Radek Vykydal2013-01-161-1/+1
| | | | | Don't crash on wwan devices, other types we might want to handle here (bond, vlan) will be added when we support them.
* Take over dhcp connection by NM for network root (eg nfs) (#883451, #893656)Radek Vykydal2013-01-161-1/+13
| | | | | | | We need to pass dhcp lease file to NM's dhclient also in case of kickstart installs. For non-kickstart case, this is done in dracut, modules.d/45ifcfg/write-ifcfg.sh. See dracut's commit 66666c670a462548df4ea4c8069d54b8c309ecf4
* Use DEFAULT_LANG instead of magic value "en_US.UTF-8"Vratislav Podzimek2013-01-152-3/+4
| | | | Also fix the comment above the DEFAULT_LANG constant.
* fixup spec with 19.1 commitsBrian C. Lane2013-01-141-1/+2
|
* New version.Brian C. Lane2013-01-143-19/+26
|
* Rework the reclaim dialog to have a resize slider.Chris Lumens2013-01-142-59/+99
| | | | | | | | | | This required changing the toolbar of buttons into a regular hbox. I've also removed the percent bar since that's duplicate information and gets rid of a couple numbers (this dialog has way too many), and changed the wording in the reclaimable space column for unshrinkable devices to say so. That gets rid of some more numbers. Related: #875944
* g_type_init call is no longer neededBrian C. Lane2013-01-141-8/+0
|
* New version.Brian C. Lane2013-01-113-777/+782
|
* Prepare structures to save spoke completenes for firstboot and GIEMartin Sivak2013-01-112-1/+30
|
* Do not call exit at the end of GUI interface, just quit the main loopMartin Sivak2013-01-111-2/+3
|
* Improve handling of .py and .pyc equivalence while collecting classesMartin Sivak2013-01-111-4/+30
|
* Set default language to en_US.UTF-8 (#891379)Martin Sivak2013-01-111-0/+5
|
* Set the local hostname during installationVratislav Podzimek2013-01-111-9/+10
| | | | | | | This allows post install commands to use the hostname of the installed system. Thanks to Stef Walter <stefw@redhat.com> for the original patch.
* Refactor and cleanup our localization moduleVratislav Podzimek2013-01-111-36/+60
| | | | | | expand_langs may use parse_langcode which should be a global function not a static method of the Language class. Also some pieces deserve better documentation and some other pieces were potentially dangerous.
* Network spoke: use correct state value to display device status.Radek Vykydal2013-01-111-3/+2
| | | | | | Use state returned by signal, not current state. Prevents "Status unknown (missing)" in NM_DEVICE_STATE_SECONDARIES state.
* drop fcoe-utils dependency for s390x (rhbz#894025)Samantha N. Bueno2013-01-101-0/+2
| | | | | | | fcoe-utils is not supported by s390x, which causes lorax builds to fail; drop the requirement for now. Resolves: rhbz#894025
* More TODO list wrangling.Chris Lumens2013-01-101-0/+2
|
* On storage, remove the "Continue" button and make "Done" do it all (#882737).Chris Lumens2013-01-102-28/+14
| | | | | | | | This is another attempt to fix some of the confusion of having both a Continue and a Done button on the same screen. To clear it up, I've completely removed the Continue button and made the Done button do everything that Continue used to do. This makes the storage spoke a little more standalone instead of the first screen in a series.
* getLUKSPassphrase is no longer used, so kill it.Chris Lumens2013-01-103-92/+0
|
* "Hub" shouldn't be in the title for any text mode hub.Chris Lumens2013-01-103-4/+3
| | | | We need to try to avoid technical terms in the interface, if possible.
* Do not lightbox any dialogs on the custom storage spoke (#875291).Chris Lumens2013-01-101-1/+11
| | | | See the commit message for f17bc055b5661230b995b8ea82e68af2de5e9a6e.
* Revert "Do not lightbox the Add Mountpoint dialog (#875291)."Chris Lumens2013-01-102-6/+8
| | | | | This reverts commit f17bc055b5661230b995b8ea82e68af2de5e9a6e. I have a more thorough fix for this screen coming.
* Don't allow changing a VG name to empty in the VG editor (#892395).Chris Lumens2013-01-101-1/+7
|
* Check country_layouts is not None when using it (#893026)Vratislav Podzimek2013-01-101-1/+9
| | | | | | | | In get_default_lang_country_layout we may have some layouts specified for the given language and none for the given country. In such case we should just return the first matching the given language. And vice versa if there is no layout for the given language but there is some for the given country.
* Don't redownload payload from closest mirror only if we actually have some ↵Radek Vykydal2013-01-091-1/+1
| | | | | | (#892665) Follow-up of commit fc0ed882a0507794685d4eaad28ddbe78dad9e6c
* Remove some modules obsoleted by the packaging module.David Lehman2013-01-088-2349/+0
|
* Prefer country over language when returning default layout (#867110)Vratislav Podzimek2013-01-081-2/+5
| | | | | | | If there is no layout matching both language and country, prefer country over language. E.g. the 'ch' (Swiss) layout is not listed for the German language, but it is, of course, listed for the 'CH' as a country.