summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | When a filesystem is deleted, give focus to whatever we display next.Chris Lumens2012-07-031-0/+1
| |
* | The presence of new_devices means _ran_autopart is not longer needed.Chris Lumens2012-07-031-7/+2
| | | | | | | | | | It also works better, in that using new_devices means when the last of the autopart-created set is deleted, we know to re-display the CreateNewPage.
* | Don't traceback when deleting the last of the autopart-created set.Chris Lumens2012-07-031-1/+1
| |
* | When a filesystem is deleted in custom.py, keep its page expanded.Chris Lumens2012-07-031-1/+1
| | | | | | | | | | This also has the effect of making sure the RHS has something relevant displayed in it after the filesystem is deleted.
* | Fix free space accounting in disk shopping cart to use getFreeSpace.David Lehman2012-07-033-7/+10
| |
* | Make software spoke ready regardless of depsolve outcome.David Lehman2012-07-031-1/+2
| |
* | Don't skip disklabel reinit on boot disk if initlabel is set.David Lehman2012-07-031-1/+2
| | | | | | | | | | Even if the boot disk has the correct disklabel type, we were asked to reinitialize the disk(s), so do it.
* | Fix some bugs in custom.py.David Lehman2012-07-031-3/+5
| | | | | | | | | | | | - Fix a typo - Enable remove button for devices - Fix a tb on removal of unused devices
* | Move disk initialization code into a reinitializeDisk method.David Lehman2012-07-031-13/+29
| |
* | Move clearPartitions into Storage.David Lehman2012-07-033-124/+119
| |
* | Move shouldClear into Storage.David Lehman2012-07-035-81/+75
| |
* | Remove some unused code related to clearpart/zerombr from devicetree.David Lehman2012-07-031-39/+0
| |
* | Move zerombr handling so doesn't depend on the clearpart setting.David Lehman2012-07-032-23/+16
| |
* | Cleanups to restore things after the merge of master onto newui.David Lehman2012-07-034-34/+16
| |
* | Allow multiple visits to the storage spoke.David Lehman2012-07-031-5/+13
| | | | | | | | | | If autopart is selected, we re-run clearpart and autopart on apply. If not, we do neither.
* | Put newly created devices in a page of their own.David Lehman2012-07-031-31/+29
| | | | | | | | | | | | | | | | | | Unset autopart flag after running ksdata.autopart.execute since we are still techically doing custom partitioning. Don't show devices queued for removal in the custom spoke. Don't include Roots whose root device has been queued for removal.
* | Don't include newly created devices in Storage.unusedDevices.David Lehman2012-07-031-0/+4
| |
* | Update bootloader disk list after running clearpart.David Lehman2012-07-032-3/+9
| |
* | Collect free space info for unpartitioned disks, too.David Lehman2012-07-031-1/+1
| |
* | Attempt dependency solving if packages were provided by a kickstart file.Chris Lumens2012-07-031-0/+4
| |
* | Move keyboard layout setting to after the interface is set up.Chris Lumens2012-07-031-24/+19
| | | | | | | | | | | | Otherwise, we end up hung waiting for XklWrapper.get_interface to return which it appears to never do. This only happens on kickstart installs in my testing.
* | Add a confirmation dialog for the quit button.Chris Lumens2012-07-023-4/+124
| |
* | Make all created threads daemonic so anaconda can quit.Chris Lumens2012-07-021-0/+7
| | | | | | | | | | Otherwise, pressing the quit button on the beta nag dialog results in you staring at a stuck screen while the payload thread continues to work.
* | Don't put all .ui files into a subdirectory of an updates.img.Chris Lumens2012-07-021-3/+6
| | | | | | | | | | | | I'd like to be able to make more top-level .ui files, for stuff that is used throughout anaconda. These shouldn't end up in a gui/ directory, because nothing will be looking for them there.
* | Remove the intermediate viewport on the Add Ons side.Chris Lumens2012-06-291-41/+32
| | | | | | | | | | | | With the viewport there, the UI does not scroll automatically with keyboard navigation. The result is that if you keep pressing the down arrow, you eventually run off the bottom of the visible UI.
* | Add a spinner next to the installation progress message.Chris Lumens2012-06-292-3/+30
| | | | | | | | | | This is a hint that we're still doing something, even if an individual step takes a long time.
* | Default all source boxes to insensitive.Chris Lumens2012-06-291-0/+4
| | | | | | | | | | Otherwise, the protocol drop down will start out sensitive no matter what source we are using.
* | Add newlines to every line in /etc/default/grub.Chris Lumens2012-06-261-3/+3
| | | | | | | | | | | | Also, even testing for /usr/sbin/rhcrashkernel-param is enough to trip the "set -e" test and bring the entire process silently crashing down. So provide a way for that to return 0 too.
* | In execWithRedirect, make sure env exists before trying to change it.Chris Lumens2012-06-261-1/+3
| |
* | BootLoader doesn't have a self.storage attribute.Chris Lumens2012-06-261-1/+1
| |
* | Fix the bootloader import of error handling stuff one more time.Chris Lumens2012-06-261-1/+1
| |
* | Fix a merge commit problem.Chris Lumens2012-06-261-1/+1
| |
* | Bring live device detection in line with elsewhere.Chris Lumens2012-06-261-3/+3
| | | | | | | | | | /dev/live does not appear to be a symlink anymore. Luckily, we can read out of /run/initramfs instead.
* | Don't unmount the DVD source at this point.Chris Lumens2012-06-261-2/+0
| | | | | | | | | | turnOnFilesystems will want to unmount it later, and doing an unmount here will result in a traceback later when there's a double unmount.
* | Update the AutoPart handler to the correct version.Chris Lumens2012-06-261-1/+1
| |
* | Can't import * inside a function.Chris Lumens2012-06-251-1/+1
| |
* | TODO list updates.Chris Lumens2012-06-222-10/+2
| |
* | makeupdates: add rpm contents to updates.imgBrian C. Lane2012-06-221-2/+15
| | | | | | | | | | | | This adds the -a option to makeupdates, it will expand the contents of an rpm into the root of the updates image. This overlays the installer's root filesystem, allowing any file to be updated.
* | When everything in a Page is removed, remove the Page as well.Chris Lumens2012-06-211-4/+14
| |
* | Allow quick deletion of an entire installation by clicking on a header.Chris Lumens2012-06-211-17/+41
| | | | | | | | | | | | | | | | | | | | | | This requires a little reorganization of the deletion code to make it reusable. It also still goes through the confirmation dialog so the user has a choice to think about what they're doing. Note that it still doesn't cause a now-empty page to be removed (you can get into that situation by removing everything yourself anyway), nor does it cause anything useful to be displayed on the RHS, nor does it put back the CreateNewPage if you delete the autopart-created installation.
* | Support a callback when page headers are clicked.Chris Lumens2012-06-212-15/+27
| |
* | d.name -> disk.name in getFreeSpace.Chris Lumens2012-06-211-1/+1
| |
* | Indirect spokes do not have a selector, so guard the focus grab.Chris Lumens2012-06-211-1/+3
| |
* | Merge branch 'newui-merge-3' into newuiBrian C. Lane2012-06-21188-18186/+5920
|\ \
| * | add release call to fix SQLite thread errorBrian C. Lane2012-06-211-0/+1
| | |
| * | use F18_Bootloader classBrian C. Lane2012-06-211-1/+1
| | |
| * | call setupPythonPathBrian C. Lane2012-06-211-0/+2
| | |
| * | makeupdates: update for newui path and update overlayBrian C. Lane2012-06-211-3/+3
| | |
| * | convert shouldClear args to empty lists when NoneBrian C. Lane2012-06-211-2/+6
| | |
| * | Add flags.automatedInstallBrian C. Lane2012-06-201-0/+1
| | |