summaryrefslogtreecommitdiffstats
path: root/iw
Commit message (Collapse)AuthorAgeFilesLines
...
* 2006-01-08 Jeremy Katz <katzj@redhat.com>Jeremy Katz2006-01-081-6/+17
| | | | | | | | | | | | | * iw/GroupSelector.py (OptionalPackageSelector.__init__): Tweak default size a little. (OptionalPackageSelector._pkgToggled): Handle installed package cases here as well (GroupSelector._categorySelected): Add handling of selected vs installed semantics for groups (GroupSelector.__setGroupDescription): Likewise. * yuminstall.py (AnacondaYum.isGroupInstalled): Add the simple version here that we need for GroupSelector in anaconda
* * iw/progress_gui.py (InstallProgressWindow_NEW.getScreen): Use aDavid Cantrell2006-01-051-9/+4
| | | | | 3x2 table to align the current package info and remaining time. Keeps the remaining time label from moving around.
* iw/progress_gui.py (InstallProgressWindow_NEW.getScreen): RealignDavid Cantrell2006-01-051-12/+13
| | | | | the remaining time indicator and current package description so text isn't displaying under buttons and other widgets.
* Don't try to make the timezone widget bigger than the screen (#176025).Chris Lumens2006-01-051-2/+6
|
* * iw/GroupSelector.py (GroupSelector.populateCategories): DisplayDavid Cantrell2006-01-041-1/+1
| | | | the sorted category list.
* * iw/GroupSelector.py (OptionalPackageSelector.__init__): PositionDavid Cantrell2006-01-041-0/+4
| | | | | | | | dialog centered over parent. Increase window size to display more than a few packages. * iw/GroupSelector.py (GroupSelector.__init__): Disable the optional packages button on initial window load.
* iw/autopart_type.py (comboChanged): If you select the custom layout option,David Cantrell2006-01-041-2/+11
| | | | | | | | the review checkbox is forced on. When you leave the custom layout selection, the previous state of the checkbox is restored. gui.py (runReleaseNotesViewer): Run at 800x445 instead of 800x420 when the installpackages step is running.
* Preserve partition review checkbox between combo box selections (#176212).David Cantrell2006-01-041-1/+2
|
* 2005-12-20 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-12-201-10/+8
| | | | * iw/network_gui.py (NetworkWindow.getScreen): Spacing fixes.
* 2005-12-19 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-12-191-1/+1
| | | | | * iw/progress_gui.py (InstallProgressWindow_NEW.getScreen): Better filename for lowres version
* 2005-12-19 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-12-191-1/+1
| | | | | | | * gui.py (InstallControlWindow.createWidgets): Don't dither the header, clean up the code to set the GtkImage * iw/welcome_gui.py (WelcomeWindow.getScreen): Don't dither.
* Pass self to parent class callsPaul Nasrat2005-12-151-4/+2
|
* fix typoPaul Nasrat2005-12-151-1/+1
|
* Removed as we're using system-config-date now.Chris Lumens2005-12-141-303/+0
|
* Change to use system-config-date. Subclass TimezoneMap from that packageChris Lumens2005-12-141-43/+171
| | | | to get the behavior we want.
* 2005-12-10 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-12-111-4/+20
| | | | | | | | * iw/GroupSelector.py (GroupSelector._categorySelected): Update for new group code and sort based on display_order. (GroupSelector.populateCategories): Likewise. (_ui_comps_sort): Add sorter. * ui/GroupSelector.glade: Minor tweak
* 2005-12-08 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-12-081-12/+4
| | | | | | | * iw/welcome_gui.py (WelcomeWindow.getScreen): Dither the image, look for it in the right path. * ui/anaconda.glade: Minor padding fixes.
* queryUpgradeContinue has moved.Chris Lumens2005-12-083-3/+3
|
* Fix some typos.Chris Lumens2005-12-081-2/+2
|
* 2005-12-08 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-12-081-9/+6
| | | | | | * iw/GroupSelector.py (GroupSelector.__setGroupDescription): Don't allow detail twiddling for groups that aren't selected. Only show count of optional/default packages (and only if the group is selected)
* 2005-12-08 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-12-082-1136/+364
| | | | | | | | | | | | | | | | | | | | | | | | | * installclasses/fedora.py (InstallClass.setGroupSelection): Get default groups from the backend * backend.py (AnacondaBackend.getDefaultGroups): Support for getting default groups * iw/GroupSelector.py: Guts of new group/package selection code. Eventually will live in son of s-c-packages. * ui/GroupSelector.glade: glade file for new group selection code * iw/package_gui.py: Basic shell for GroupSelector use in anaconda * yuminstall.py: Update for yum 2.5 API changes. Note that we now *require* yum-2.5.0-0.20051207 or newer (isPackageInstalled): Add method to see if package is installed for group selection. (_catchallCategory): Add method to take uncategorized groups and stick them somewhere (getDefaultGroups): Backend method for finding the default selected groups based on what comps says * gui.py (stepToClass): Move to new group selection code.
* Didn't mean to commit that, either.Chris Lumens2005-12-051-61/+48
|
* Add some additional SELinux-related programs and an /etc/shells to getChris Lumens2005-12-051-48/+61
| | | | semodule working again.
* Some more changes for the release notes viewer. The size is determined inDavid Cantrell2005-11-301-7/+33
| | | | | | gui.py and passed to the release notes viewer on the command line. In the release notes viewer, we figure out where we need to anchor ourself and then move there. Among other things.
* That concludes my goofing off. Unless the release notes are given in HTML,David Cantrell2005-11-291-47/+4
| | | | | | there's not a lot you can do to make it display nicely. <pre> works fine and I see no problems leaving it that way. I did make the window bigger, but that's it.
* Half of this commit is me getting comfortable with Python syntax, the otherDavid Cantrell2005-11-281-3/+44
| | | | | | | half is maybe a reasonable filter for the release notes file viewer. Maybe. Having written a compiler before, this isn't the best way to handle it, but then again it is HTML and that breaks all the rules. I should also point out that this filter isn't complete, but a work in progress.
* Set the release notes viewer window dialog thing to be the entire size ofDavid Cantrell2005-11-281-2/+12
| | | | the root window. It didn't make sense to me to have it smaller.
* 2005-10-11 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-10-111-1/+1
| | | | | * iw/partition_gui.py (PartitionWindow.makeraidCB): Fix traceback (#170189)
* Fix constants imports so we get everything that was moved intoChris Lumens2005-10-063-4/+2
| | | | pykickstart.
* 2005-10-04 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-10-041-1/+5
| | | | | | * iw/autopart_type.py (PartitionTypeWindow.getNext): Skip bootloader screen if we're not reviewing/modifying partitioning (#169817)
* 2005-10-04 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-10-041-2/+18
| | | | | | | | | | | * 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-09-20 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-09-201-0/+74
| | | | | | | | | | | | | * iw/simple_pkgselect.py: Simple group selection UI... * textw/simple_pkgselect_text.py: And the same for text mode * yuminstall.py (YumBackend): Some hacks for simple group selection UI. * dispatch.py (installSteps): Add simple group selection step. * gui.py (stepToClass): Likewise. * text.py (stepToClasses): Likewise. * installclass.py (BaseInstallClass.setSteps): Likewise.
* 2005-09-13 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-09-131-7/+0
| | | | | | | | * iw/network_gui.py (NetworkWindow.getNext): Don't enforce selinux/firewall here. Use the object defaults. * textw/network_text.py (NetworkGlobalWindow.__call__): Likewise. * firewall.py (Firewall.__init__): Default firewall to allow ssh.
* 2005-09-12 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-09-131-17/+23
| | | | | | | * iw/release_notes_viewer_gui.py (exposeCB): Switch to using gtkhtml2 instead of htmlbuffer for more complete HTML support. * scripts/upd-instroot: Add gnome-python2-gtkhtml2 stuff
* 2005-09-12 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-09-122-269/+0
| | | | | | | * iw/fdisk_gui.py: Remove dead code. * iw/fdasd_gui.py: Likewise. * textw/fdisk_text.py: Likewise. * textw/fdasd_text.py: Likewise.
* * iw/xconfig_gui.py: Remove dead code.Jeremy Katz2005-09-122-1220/+0
| | | | | | * textw/xconfig_text.py: Likewise. * iw/bootdisk_gui.py: Likewise. * iw/bootdisk_text.py: Likewise.
* Removed.Chris Lumens2005-08-291-268/+0
|
* 2005-08-29 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-08-291-1/+1
| | | | | * iw/autopart_type.py (PartitionTypeWindow.getScreen): Fix a traceback from clumens
* 2005-08-26 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-08-261-0/+112
| | | | | | | | | | | | | | * 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.
* remove importPaul Nasrat2005-08-241-1/+0
|
* 2005-08-16 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-08-161-12/+4
| | | | * iw/installpath_gui.py: Remove unused vars (msw@rpath.com)
* Use new logging system.Chris Lumens2005-08-127-17/+24
|
* Remove firewall configuration screen. This will be coming back inChris Lumens2005-07-212-183/+7
| | | | firstboot using system-config-securitylevel.
* Work around pygtk progress table bug.Chris Lumens2005-07-071-1/+1
|
* Deprecate the langsupport kickstart keyword in favor of adding languageChris Lumens2005-06-281-1/+0
| | | | support package groups to the %packages section of the kickstart file.
* Fixed grammar and wording problems (#156048, #159044), update-po.Chris Lumens2005-06-011-4/+3
|
* Use sizes of PV requests instead of preexisting PVs on volume group editorChris Lumens2005-05-251-2/+11
| | | | screen.
* 2005-05-23 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-05-231-6/+6
| | | | | | * iw/progress_gui.py (InstallProgressWindow_NEW.setPackage): Limit the length of the package installing string to try to avoid jumping (#157583)
* 2005-05-18 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-05-181-1/+1
| | | | * iw/network_gui.py (NetworkWindow.getNext): Don't depend on class.
* 2005-05-02 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-05-031-1/+1
| | | | | | | | | | | * iw/progress_gui.py (InstallProgressWindow_NEW.setPackage): Slightly shorter strings. * anaconda: If the monitor doesn't support 800x600, try 1024x768; helps with G3 iMac. Use the same xconfig for post-install as during install. Allow booting with "usefbx" to go back to old fbdev X behavior on ppc. (#149188) * loader2/loader.c (parseCmdLineFlags): Add usefbx