move pykickstart -> imgcreate.pykickstart
[pykickstart/EL-5.git] / pykickstart / commands / monitor.py
blob7dd77c879dc975593f7e0aa89972360e5b18a5d4
2 # Chris Lumens <clumens@redhat.com>
4 # Copyright 2005, 2006, 2007, 2008 Red Hat, Inc.
6 # This copyrighted material is made available to anyone wishing to use, modify,
7 # copy, or redistribute it subject to the terms and conditions of the GNU
8 # General Public License v.2. This program is distributed in the hope that it
9 # will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the
10 # implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 # See the GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License along with
14 # this program; if not, write to the Free Software Foundation, Inc., 51
15 # Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Any Red Hat
16 # trademarks that are incorporated in the source code or documentation are not
17 # subject to the GNU General Public License and may only be used or replicated
18 # with the express permission of Red Hat, Inc.
20 from imgcreate.pykickstart.base import *
21 from imgcreate.pykickstart.errors import *
22 from imgcreate.pykickstart.options import *
24 import gettext
25 _ = lambda x: gettext.ldgettext("pykickstart", x)
27 class FC3_Monitor(KickstartCommand):
28 def __init__(self, writePriority=0, hsync="", monitor="", vsync=""):
29 KickstartCommand.__init__(self, writePriority)
30 self.op = self._getParser()
32 self.hsync = hsync
33 self.monitor = monitor
34 self.vsync = vsync
36 def __str__(self):
37 retval = "monitor"
39 if self.hsync != "":
40 retval += " --hsync=%s" % self.hsync
41 if self.monitor != "":
42 retval += " --monitor=\"%s\"" % self.monitor
43 if self.vsync != "":
44 retval += " --vsync=%s" % self.vsync
46 if retval != "monitor":
47 return retval + "\n"
48 else:
49 return ""
51 def _getParser(self):
52 op = KSOptionParser(lineno=self.lineno)
53 op.add_option("--hsync")
54 op.add_option("--monitor")
55 op.add_option("--vsync")
56 return op
58 def parse(self, args):
59 (opts, extra) = self.op.parse_args(args=args)
61 if extra:
62 mapping = {"cmd": "monitor", "options": extra}
63 raise KickstartValueError, formatErrorMsg(self.lineno, msg=_("Unexpected arguments to %(cmd)s command: %(options)s") % mapping)
65 self._setToSelf(self.op, opts)
67 class FC6_Monitor(FC3_Monitor):
68 def __init__(self, writePriority=0, hsync="", monitor="", probe=True,
69 vsync=""):
70 FC3_Monitor.__init__(self, writePriority, hsync=hsync,
71 monitor=monitor, vsync=vsync)
72 self.probe = probe
74 def __str__(self):
75 retval = "monitor"
77 if self.hsync != "":
78 retval += " --hsync=%s" % self.hsync
79 if self.monitor != "":
80 retval += " --monitor=\"%s\"" % self.monitor
81 if not self.probe:
82 retval += " --noprobe"
83 if self.vsync != "":
84 retval += " --vsync=%s" % self.vsync
86 if retval != "monitor":
87 return retval + "\n"
88 else:
89 return ""
91 def _getParser(self):
92 op = FC3_Monitor._getParser(self)
93 op.add_option("--noprobe", dest="probe", action="store_false",
94 default=True)
95 return op
97 class F10_Monitor(DeprecatedCommand):
98 def __init__(self):
99 DeprecatedCommand.__init__(self)