summaryrefslogtreecommitdiffstats
path: root/pyanaconda/ui
Commit message (Collapse)AuthorAgeFilesLines
...
| * Move all .ui files to a .glade extension.Chris Lumens2012-07-2530-29/+29
| | | | | | | | | | | | xgettext is dumb and only looks at file extensions. It has no way to let you tell it what extension maps to what language on the command line. Thus, out glade files must be .glade if they are to get translated.
| * Add a detailed error dialog to be used by dep solving errors, and others.Chris Lumens2012-07-244-8/+226
| | | | | | | | | | | | It's not quite perfect looking yet, and not all the buttons work, and the buttons need to be generalized to work elsewhere. However it's a pretty good start.
| * Provide a way to run apply methods even if a spoke wants us to skip elsewhere.Chris Lumens2012-07-234-2/+15
| | | | | | | | | | | | | | | | | | | | | | This first fixes a bug where a spoke's apply and execute methods were being run even when skipTo was set. In this case, we don't usually want apply to be run because the user needs to do something else first. In particular, skipping from the dep solving error dialog (still in progress) to the software selection screen was resulting in problems. Having fixed that, some spokes do actually need to have apply run even when skipping. Storage is a prime example of that.
| * set ignoredisk.onlyuse only if not set by kickstartBrian C. Lane2012-07-201-2/+2
| | | | | | | | | | | | When using a kickstart only set ignoredisk.onlyuse if it was not set in the kickstart. If setting it, filter out disks from the ignoredisk list.
| * setup bootloader and partitioning for kickstartBrian C. Lane2012-07-191-0/+7
| | | | | | | | | | | | after executing the kickstart commands setup the bootloader and partitions before continuing. Also add logging of any errors found by storage.sanityCheck
| * refactor doKickstartStorage slightlyBrian C. Lane2012-07-191-2/+3
| |
* | Add automake files for TUIMartin Sivak2012-08-069-2/+116
| |
* | add couple of tests and fix write method of widget (newline added unwanted ↵Martin Sivak2012-08-062-11/+41
| | | | | | | | space)
* | add couple of tests and support for themMartin Sivak2012-08-062-1/+93
| |
* | add documentation and comments to TUI classesMartin Sivak2012-08-064-36/+136
| |
* | Add documentation to the simpleline library for TUIMartin Sivak2012-08-062-58/+323
| |
* | Add the new Summary hub and Password TUI spokes + tools to test TUI stuffMartin Sivak2012-08-064-0/+158
| |
* | Fix bits and pieces to make TUI hub and spoke model work + example Hub and ↵Martin Sivak2012-08-068-93/+133
| | | | | | | | Password spoke
* | Create common abstract classes usable for all types of UIMartin Sivak2012-08-0618-375/+467
| |
* | Create the base classes for TUI Hub and Spoke modelMartin Sivak2012-08-064-0/+225
| |
* | Make collect and part of UserInterface setup more genericMartin Sivak2012-08-062-5/+44
| |
* | Text based UI framework coreMartin Sivak2012-08-063-0/+546
|/
* Do not let Lang. spoke override the selection from Welcome SpokeMartin Sivak2012-07-191-4/+10
|
* Add a tooltip explaining size entry for new mountpoints.David Lehman2012-07-181-0/+1
|
* Add some new TODO items for custom partitioning.David Lehman2012-07-181-0/+6
|
* Add support for creating partitions.David Lehman2012-07-181-5/+62
|
* Set StorageCheck class attrs instead of adding instance attrs.David Lehman2012-07-181-1/+2
|
* Hook up the kickstart firstboot command so it actually does something.Chris Lumens2012-07-171-0/+2
| | | | | | Note that this does not yet handle the fact that we want to skip firstboot on most kickstart installs (unless the user specifies otherwise). We need a place to load those defaults, which will be a separate patch.
* Hide the spinner on the progress hub when we are done.Chris Lumens2012-07-171-0/+1
| | | | It looks a little silly to have it sitting there and stopped.
* Don't display betanag for final releases.Chris Lumens2012-07-171-1/+6
|
* More TODO list updating.Chris Lumens2012-07-161-3/+11
|
* Remove the Spoke check method.Chris Lumens2012-07-161-25/+0
| | | | | | | The only places where we might want to run a check method are already being handled by other means, and I never figured out how to handle killing a check thread in the generic case anyway. This is clearly code we can live without.
* A radio button cannot be in its own group.Chris Lumens2012-07-161-1/+0
| | | | Doing so will print a GTK assertion on tty1.
* Get rid of debugging prints to stdout.Chris Lumens2012-07-163-26/+0
| | | | They're making it more difficult for me to see real error messages.
* make the proxy url entry widerBrian C. Lane2012-07-121-0/+1
|
* Fix auto-continuing for kickstart installs.Chris Lumens2012-07-121-2/+8
| | | | | | | | | If you're on a spoke when all other spokes become ready and complete, the install will continue automatically when you hit back. If you're on the hub, the install will continue automatically when all spokes are ready and complete. It's a little jarring, but that's just how it's gotta be.
* Make hub continue button sensitivity more complicated.Chris Lumens2012-07-121-2/+19
| | | | | | | It can only be sensitive both if there's no incomplete spokes and no not ready spokes. By not tracking not ready spokes, it's possible to hit continue while things are still downloading. This can lead to very bad situations, and it's only by accident that we've not hit this yet.
* Run ksdata execute methods for real kickstart installs as well as from the UI.Chris Lumens2012-07-124-14/+42
| | | | | | | | | This first requires splitting out the chunk that calls execute methods into its own function, then adding an execute method to spokes, then making sure it gets called from everywhere. I have also added a way to make sure the execute methods do not get run when spokes are ready, since at least the storage check function will set the spoke not ready and then ready again which will lead to an infinite loop.
* Fix software spoke completion and status for certain kickstart installs.Chris Lumens2012-07-121-4/+20
| | | | | | | If you're doing an install with just Core, or with some special set of groups that somehow doesn't include one of our desktop environments (even though Base is currently a DE), make sure to set the spoke to complete and give a useful status message.
* Show more info about source failure in the spokeBrian C. Lane2012-07-111-0/+6
| | | | | When package metadata fails to download suggest that the user check the repo url and, if enabled, the proxy settings.
* Use Gtk.SortType.ASCENDING constant instead of 0 in the DatetimeSpokeVratislav Podzimek2012-07-111-1/+1
|
* Sort available layouts alphabeticallyVratislav Podzimek2012-07-112-10/+37
| | | | | It's easier to search through the available layouts manually if they are sorted.
* Update the TODO list.David Lehman2012-07-101-2/+2
|
* Be honest about free space on disks.David Lehman2012-07-101-4/+3
| | | | | | | | | We still do the final check against the software's disk space requirement with the assumption that the user is doing autopart. Even when we have the tug of war, we're still checking free space before the user has had a chance to choose between autopart and custom. That will need to be addressed at some point.
* Define SoftwareSpoke._tx_id early on.David Lehman2012-07-101-0/+1
|
* Run a storage sanity check when leaving the storage spoke.David Lehman2012-07-102-8/+36
|
* Disk selection determines both ignoredisk.onlyuse and clearpart.drives.David Lehman2012-07-101-7/+24
| | | | | | | | | | | This adds a way to hide devices from the devicetree without removing them. The devicetree is initially populated without filtering because we need to collect information about disks in the system as well as free space in disks and filesystems. Disk selection in the storage spoke establishes the set of disks to be used during install. We don't want to re-populate the tree every time a disk is selected or deselected. Instead, we just hide/unhide the disk and all devices it contains.
* Clean up disk (re)initialization code.David Lehman2012-07-101-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CLEARPART_TYPE_ALL means clear existing partitions and create a new disklabel. CLEARPART_TYPE_LINUX means clear linux-native partitions (or linux- native whole-disk formatting) and create a new disklabel if the removals result in an empty disk. CLEARPART_TYPE_LIST means clear the specified devices (and devices built on top of them) and create a new disklabel if the removals result in an empty disk. Zerombr becomes an alias for 'clearpart --initlabel'. To initialize all disks: clearpart --all To initialize uninitalized disks but otherwise clear no partitions: clearpart --none --initlabel This adds a flag to the storage discovery config class that determines whether or not clearPartitions will remove not-yet-created devices and disklabels. The default is to not clear non-existent devices/formats. After the first trip to the storage spoke, we should not remove any layout the user set up in previous visits unless they choose autopart again, in which case we start from scratch each time, or de-select disks. Since the disk set can change each time through we have to be able to initialize uninitialized disks even on the way to the custom ui.
* Add an alignment around both the language list and search box.Chris Lumens2012-07-092-65/+84
| | | | | | This is all because I want the search box to only ever be as wide as the language list view itself. Sure does take a lot of glade to accomplish that.
* update proxy supportBrian C. Lane2012-07-091-29/+32
| | | | | | | | | | | | | | cmdline proxy strings use the standard form: [protocol://][username[:password]@]host[:port] proxy url strings are stored in the ksdata, either in method.proxy for the global proxy or per repo in repo.proxy ProxyString handles parsing the proxy url and returning it in various forms useful for urlgrabber, yum and the UI. --proxyAuth has been removed. It has no meaning with noloader. Also fix a typo with sslverify in the repo configuration file.
* Add the entry box back under the language list.Chris Lumens2012-07-053-14/+46
| | | | | | This basically reverts a commit of mine from January. Keeping the entry and the list in sync is really not a big deal, and we need to provide a more full-featured search capability than the default GTK model one anyway.
* Add a keyboard shortcut to the custom add-on dialog.Chris Lumens2012-07-051-1/+2
|
* Don't put a title bar on the "Add custom add-on" dialog.Chris Lumens2012-07-051-0/+1
|
* When the user clicks autopart, show the first filesystem on the RHS.Chris Lumens2012-07-051-10/+12
|
* Fix deletion of an entire installation at once.Chris Lumens2012-07-031-5/+4
| | | | | Not having a root in self.storage.roots for the newly created set means deletion was broken in this case.