summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Remove the old UI's glade files.Chris Lumens2012-07-1922-7571/+1
| | | | | | | | | | | | | | | Without gui.py and iw/, they're not useful anymore except as examples of what not to do on newui.
* | | Add automake files for TUIMartin Sivak2012-08-0611-4/+123
| | |
* | | 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-069-93/+148
| | | | | | | | | | | | 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
| |
* | Actually start anaconda-cleanup-initramfs.serviceWill Woods2012-07-181-0/+1
| | | | | | | | | | | | | | | | Rule #1 of Computing: It Works Better When You Turn It On. Make anaconda.target request anaconda-cleanup-initramfs.service so it actually gets started. (cherry picked from commit d0ca82e99bc817bbe18ed8c06cb5c957c72e0f7a)
* | Update the group, rootpw, and user commands to be called from doInstall.Chris Lumens2012-07-184-43/+43
| |
* | 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
| |
* | Size.convertTo is supposed to return a Decimal instance.David Lehman2012-07-181-1/+1
| |
* | Hook up the kickstart firstboot command so it actually does something.Chris Lumens2012-07-176-22/+21
| | | | | | | | | | | | 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.
* | Convert the services command to using systemctl instead of chkconfig.Chris Lumens2012-07-171-4/+7
| |
* | Don't display betanag for final releases.Chris Lumens2012-07-171-1/+6
| |
* | Remove enough of dispatcher so anaconda works without partIntfHelpers.Chris Lumens2012-07-177-71/+1
| | | | | | | | | | | | | | Our tangled set of imports means that anaconda was still trying to import partIntfHelpers through dispatch and rescue mode. This patch breaks those imports (which likely further breaks rescue and upgrade modes) and makes the gui work again.
* | Add the new UI files to POTFILES.in.Chris Lumens2012-07-171-0/+15
| |
* | Fix a typo in a SpokeWindow comment.Chris Lumens2012-07-171-1/+1
| | | | | | | | | | I discovered this searching for "iw" to make sure I deleted everything related to the old interface.
* | Remove partIntfHelpers too.Chris Lumens2012-07-172-527/+0
| | | | | | | | | | | | It's now only used by the text UI, which you can't even get to right now and won't be able to until we create a whole new text interface. That one will not be using partIntfHelpers either.
* | Remove the old graphical user interface.Chris Lumens2012-07-1738-13127/+1
| | | | | | | | | | We're not using it for anything, and I don't want people looking at it for any reason anyway. If we really need to, it's still in version control.
* | 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.
* | Set a new progress message as soon as the last package is done.Chris Lumens2012-07-161-0/+6
| | | | | | | | | | | | We don't get any notification that the post-trans has started, so this is the best we can do. At least now it doesn't look like the last package is taking forever to install.
* | fix typo in yumpayload error handlingBrian C. Lane2012-07-121-2/+2
| |
* | 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-125-14/+48
| | | | | | | | | | | | | | | | | | 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.
* | Kickstart command handlers no longer need an anaconda instance.Chris Lumens2012-07-122-44/+9
| | | | | | | | | | | | | | | | This removes a lot of the special purpose code that made up the special AnacondaKSHandler subclass. There's also no need for the _dataObjs attribute anymore since we can't just blindly iterate over all kickstart objects any more. Some need to be run at one point, and some at another point.
* | Update partitioning-related kickstart commands.Chris Lumens2012-07-121-56/+30
| | | | | | | | | | This gets their execute methods to be ready to be called from somewhere else, but that does not yet happen.
* | Run the logging kickstart command right after parsing.Chris Lumens2012-07-122-1/+5
| |
* | 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
| |