summaryrefslogtreecommitdiffstats
path: root/ui/autopart.glade
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* 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 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.
* 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.
* 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
* 2007-10-09 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-10-091-4/+4
| | | | | | * iw/autopart_type.py (PartitionTypeWindow.getScreen): Make labels bold programatically rather than in the XML * ui/autopart.glade: Don't include markup in XML (#322681)
* * ui/autopart.glade: Bold heading text to be more consistent withDavid Cantrell2007-07-261-3/+3
| | | | other screens.
* * ui/autopart.glade: Rearrange some of the autopart UI for betterDavid Cantrell2007-04-181-211/+175
| | | | widget alignment.
* 2007-03-23 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-03-231-2/+4
| | | | * ui/autopart.glade: Make things not go off the screen at lower res
* 2007-03-05 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-03-061-53/+158
| | | | | | | * iw/autopart_type.py (PartitionTypeWindow.getScreen): Add a combo to select where to install the bootloader. This is extra needed with the combination of installing to USB and EDD. * ui/autopart.glade: Add the UI bits.
* 2006-07-19 Jeremy Katz <katzj@redhat.com>Jeremy Katz2006-07-191-1/+1
| | | | | * ui/adddrive.glade: Clean up text a little bit * ui/autopart.glade: Likewise.
* * iw/autopart_type.py: Support add drive button, add basicJeremy Katz2006-07-131-0/+79
| | | | | | | | | | | infrastructure for adding disks, specifically for iSCSI. * ui/iscsi-config.glade: Change around to use a dialog for configuring iSCSI targets. * ui/adddrive.glade: Glade file for adding disks. * ui/autopart.glade: Add add disk button.
* 2005-10-04 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-10-041-0/+2
| | | | | | | | | | | * iw/autopart_type.py (PartitionTypeWindow.getNext): Don't skip manual partitioning if we're doing custom partitions (#169001) (PartitionTypeWindow.comboChanged): Also make it obvious what's going on with custom partitioning + review checkbox * ui/autopart.glade: Add callback. * textw/partition_text.py (PartitionTypeWindow.__call__): Properly shut down UI if custom partitioning selected.
* 2005-08-26 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-08-261-0/+170
* dispatch.py (installSteps): Add new autopart type step, remove some obsolete stuff (fdisk, fdasd) * gui.py (stepToClass): Add new step. (getGladeWidget): Add helper function for glade screens. * text.py (stepToClasses): Add new step. * installclass.py (BaseInstallClass.setSteps): Add new step. * iw/autopart_type.py: Add first pass at new autopartitioning screen. Still want to make the shown options more dynamic based on what your system initially looks like. * textw/partition_text.py: Add new autopartitioning screen. * ui/autopart.glade: Add glade file for new autopartitioning screen.