summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Remove unused AnacondaWidgets import in the KeyboardSpokeVratislav Podzimek2012-06-011-1/+1
| |
* | Fix the error message when removing a layout not added beforeVratislav Podzimek2012-06-011-1/+3
| |
* | Change layouts ordering in X configuration when changed on the spokeVratislav Podzimek2012-06-011-0/+12
| | | | | | | | | | | | Since we have a text entry for testing layouts, people testing their layouts settings will expect to have the ordering of the layouts in X same as in the tree view (store).
* | Network spoke: refresh config also in refresh() and for device selectionRadek Vykydal2012-06-011-1/+1
| |
* | Network spoke: fix endless loop in refresh_ui (bad merge of patches)Radek Vykydal2012-06-011-13/+1
| |
* | Add button and dialog for NTP servers configurationVratislav Podzimek2012-06-012-4/+499
| | | | | | | | | | | | Providing and option to use NTP we also need to allow users to set up NTP servers, because default servers may not be reachable, there could be internal NTP servers etc.
* | Add restart_service to iutilVratislav Podzimek2012-06-011-0/+3
| |
* | Add ntp module to facilitate NTP-related codeVratislav Podzimek2012-06-011-0/+151
| | | | | | | | | | Since we now set up NTP in Anaconda, we need a module providing some supporting NTP-related functions.
* | Enable setting up multiple layouts on the installed systemVratislav Podzimek2012-06-015-28/+106
| | | | | | | | | | We need to write a config file to the /etc/X11/xorg.conf.d/ defining the layouts selected in the installation.
* | Rename pyanaconda/xklavier.py to pyanaconda/keyboard.pyVratislav Podzimek2012-06-014-7/+9
| | | | | | | | | | We need some more keyboard related code that could go to the same file as XklWrapper. keyboard.py is a better name for such file.
* | Initialize X layouts ASAP if given in kickstart or on command lineVratislav Podzimek2012-06-012-7/+58
| | | | | | | | | | People expect to have layouts specified in the kickstart or as command line option set up when UI initializes.
* | Filter out whole disk devices from appearing in the Unknown page.Chris Lumens2012-05-311-1/+3
| | | | | | | | | | Otherwise, you'll get a disk-sized entry for the partition table in there, and that looks pretty weird.
* | Loads of TODO list updates.Chris Lumens2012-05-311-2/+10
| | | | | | | | Feel free to work on any of this stuff.
* | Raise a more appropriate exception if there's no disks to install to.Chris Lumens2012-05-311-1/+1
| |
* | device -> stage1 in sanityCheck.Chris Lumens2012-05-311-1/+1
| |
* | The size spinner needs a related adjustment if it is to be at all usable.Chris Lumens2012-05-302-1/+7
| |
* | Populate the device type and file system type combo boxes.Chris Lumens2012-05-302-3/+34
| | | | | | | | Also, set the combo boxes to default to whatever's on the device already.
* | Revert "Add class methods for type, name, supported, &c."Chris Lumens2012-05-304-53/+38
| | | | | | | | | | | | | | This reverts commit 1980f8678e814a36815eb238abdb1da046028116. Turns out we need to make more and more things a classmethod or the failure just moves up into another function call.
* | Don't call findExistingInstallations. That's already done for us.Chris Lumens2012-05-301-3/+1
| |
* | Add class methods for type, name, supported, &c.David Lehman2012-05-304-38/+53
| | | | | | | | | | The properties now just call the class methods, allowing callers to use the property for instances or the class method without an instance.
* | Network spoke: slightly improve temporary DBG print messagesRadek Vykydal2012-05-301-3/+4
| |
* | Network spoke: implement apply methodRadek Vykydal2012-05-302-73/+114
| |
* | Network spoke: fix races when disabling wireless (on/off switch).Radek Vykydal2012-05-301-4/+9
| |
* | Network spoke: wait for config objects after device activationRadek Vykydal2012-05-301-101/+121
| | | | | | | | | | | | | | | | | | | | | | ACTIVATED state of device doesn't ensure immediate availability of its configuration (NMIP4Config object) so we might need to make more tries. Using separate callbacks for updating just config UI connected to config property change event would be overcomplicated because we are waiting for two properties (ipv4 and ipv6), and modifications of UI of one protocol depends on values of both of them.
* | Network spoke: make also NetworkStandaloneSpoke publicRadek Vykydal2012-05-301-1/+1
| |
* | Fix the width of the Desired Capacity spinner.Chris Lumens2012-05-291-1/+4
| | | | | | | | | | | | Otherwise, we end up in a situation where it can change size with every individual filesystem, which causes everything else on the screen to jump back and forth horizontally. Very distracting.
* | Put some units on the desired capacity label.Chris Lumens2012-05-291-1/+1
| |
* | Explain why certain entries are not sensitive on the custom UI spoke.Chris Lumens2012-05-291-0/+10
| |
* | If no spoke title is set in the UI file, use whatever's set in python.Chris Lumens2012-05-292-0/+9
| | | | | | | | | | | | My intention was that people would set up the title in the UI file when they made a spoke with glade, but that's not always how it works out. Plus having two places to set the title is confusing. So just make sure they both work.
* | Get rid of some of the debugging printing.Chris Lumens2012-05-292-10/+2
| |
* | Change cursor shape when the pointer is over SpokeSelector iconMartin Sivak2012-05-291-0/+18
| |
* | Implementation of normal Language spokeMartin Sivak2012-05-252-20/+153
| | | | | | | | | | | | Shares most of the code with WelcomeLanguageSpoke and transfers the selection ListView and label between the two display variants as needed.
* | Add runglade command to MakefileMartin Sivak2012-05-251-0/+13
| | | | | | | | | | This command sets up the environment for Glade, so it uses all our custom widgets directly from the source tree
* | Start filling in the RHS of custom partitioning with FS details.Chris Lumens2012-05-242-6/+66
| |
* | Allow selecting MountpointSelectors by both mouse and keyboard.Chris Lumens2012-05-241-6/+14
| |
* | Fix the alignment of text in the MountpointSelector.Chris Lumens2012-05-242-5/+7
| | | | | | | | | | | | A side effect of this is that the whole left hand side is now wider, but I think that can be fixed by adjusting the stuff that goes in the right hand side.
* | Make TimezoneMap suitable for testingVratislav Podzimek2012-05-244-13/+38
| | | | | | | | | | When testing we, need to set the location of the bitmaps our TimezoneMap is using, so let it try to get the location from the environment.
* | Improve run-spoke and related files so we can use overrides directly from ↵Martin Sivak2012-05-242-3/+29
| | | | | | | | anaconda sources for testing
* | make run-spoke run also Standalone and Personalization spoke screensMartin Sivak2012-05-241-2/+2
| |
* | Merge run-hub with run-spoke as the code was almost identicalMartin Sivak2012-05-243-78/+30
| | | | | | | | | | | | | | | | | | | | To start hub use the following command: make runhub HUB_MODULE=summary or make runhub HUB_MODULE=summary HUB_CLASS=SummaryHub
* | Improve the runspoke.py tool and make it callable from makeMartin Sivak2012-05-244-13/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | make runspoke SPOKE_MODULE=source or make runspoke SPOKE_MODULE=source SPOKE_CLASS=InstallSource - runspoke now accepts the name of the module containing the spoke the user wants to run on command line and will find the spoke automatically - as an optional second argument, the script accepts the name of the spoke class - install classes and gi introspection files are looked for in anaconda sources first, so there is no need to install the anaconda-widgets package to the system - anaconda should use ANACONDA_DATA, ANACONDA_WIDGETS_DATA and ANACONDA_INSTALL_CLASSES env variables to look for data files if those variables are defined - there was a circular dependency between yuminstall, backend and kickstart modules, which caused import yuminstall to fail, because: yuminstall called backend, which called kickstart, which requested NoSuchGroup from yuminstall. NoSuchGroup was present in the source, but much later, so it hadn't been evaluated yet and the import failed with missing symbol error.
* | Don't allow continuing from the storage spoke if no disks are selected.Chris Lumens2012-05-231-0/+1
| |
* | Show existing filesystems and installations in the left side of the spoke.Chris Lumens2012-05-231-37/+88
| | | | | | | | | | | | | | There are a lot of UI problems with this one right now. Alignment is all over the place, clicking on things doesn't do anything, stuff like that. However it's more important to get this in front of people in a rough state than have it perfect right this second.
* | Calling str() on a Size will give a properly formatted string.Chris Lumens2012-05-231-4/+4
| |
* | Remove places that import upgrade unnecessarily.Chris Lumens2012-05-233-90/+0
| | | | | | | | | | | | | | upgrade is bringing in findExistingRootDevices, which no longer exists. I could instead fix upgrade, but we are going to fix it in a far more comprehensive manner later by moving it out of anaconda. Thus there's no need to deal with it here now.
* | Fix a couple minor problems with the last storage commit.Chris Lumens2012-05-232-5/+16
| |
* | Add an override for MountpointSelector so it works like SpokeSelector.Chris Lumens2012-05-231-0/+16
| |
* | Automatically find layouts for existing linux installations.David Lehman2012-05-231-92/+151
| |
* | Add an 'ancestors' property that returns a device and all ancestors.David Lehman2012-05-231-0/+7
| |
* | Run chronyd.service by defaultVratislav Podzimek2012-05-221-1/+1
| |