コード例 #1
0
 def __init__(self, compilerVersion="vc6"):
     Datum.__init__(
         self,
         "msvcInstallDir",
         desc="the installation directory of Microsoft Visual %s" %
         (compilerVersion),
         serializeAs=[])
     self._compilerVersion = compilerVersion.lower()
コード例 #2
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self, name=None, desc=None,
              # The id of the configuration item describing the perl
              # installation in which to check for these modules.
              perlBinDirItemName="perlBinDir"):
     self.perlBinDirItemName = perlBinDirItemName
     if name is None:
         name = "activePerlBuild"
     if desc is None:
         desc="the ActivePerl build number"
     Datum.__init__(self, name, desc)
コード例 #3
0
 def __init__(
     self,
     name=None,
     desc=None,
     # The id of the configuration item describing the perl
     # installation in which to check for these modules.
     perlBinDirItemName="perlBinDir"):
     self.perlBinDirItemName = perlBinDirItemName
     if name is None:
         name = "activePerlBuild"
     if desc is None:
         desc = "the ActivePerl build number"
     Datum.__init__(self, name, desc)
コード例 #4
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self, name=None, desc=None,
              # The id of the configuration item describing the perl
              # installation in which to check for these modules.
              perlBinDirItemName="perlBinDir",
              modules=[],    # the list of Perl module name to check for
              fatal=1):      # true iff the modules *must* be installed
     self.perlBinDirItemName = perlBinDirItemName
     self.modules = modules
     self.fatal = fatal
     if name is None:
         name = "perlModulesInstalled"
     if desc is None:
         desc="the following Perl modules are installed: %s" % self.modules
     Datum.__init__(self, name, desc)
コード例 #5
0
 def __init__(
     self,
     name=None,
     desc=None,
     # The id of the configuration item describing the perl
     # installation in which to check for these modules.
     perlBinDirItemName="perlBinDir",
     modules=[],  # the list of Perl module name to check for
     fatal=1):  # true iff the modules *must* be installed
     self.perlBinDirItemName = perlBinDirItemName
     self.modules = modules
     self.fatal = fatal
     if name is None:
         name = "perlModulesInstalled"
     if desc is None:
         desc = "the following Perl modules are installed: %s" % self.modules
     Datum.__init__(self, name, desc)
コード例 #6
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "msvcrtDebugDllsInstalled",
         desc="the Microsoft Runtime debugging DLLs installed")
コード例 #7
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "pythonExeName",
         desc="the name of the Python executable")
コード例 #8
0
 def __init__(self):
     Datum.__init__(self,
                    "pythonExeName",
                    desc="the name of the Python executable")
コード例 #9
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self, compilerVersion="vc6"):
     Datum.__init__(self, "msvcInstallDir",
         desc="the installation directory of Microsoft Visual %s" % (compilerVersion),
         serializeAs=[])
     self._compilerVersion = compilerVersion.lower()
コード例 #10
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "pythonInstallDir",
         desc="the Python installation directory")
コード例 #11
0
ファイル: mozilla.py プロジェクト: zhuyue1314/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "createMozconfig",\
         desc="create the Mozilla Unix build configuration file "\
              "(~/.mozconfig)",
         serializeAs=[]
     )
コード例 #12
0
 def __init__(self):
     Datum.__init__(self,
                    "perlInstallDir",
                    desc="Perl installation directory")
コード例 #13
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "phpBinDir", desc="the PHP bin directory")
コード例 #14
0
 def __init__(self):
     Datum.__init__(self, "pythonBinDir", "the Python bin directory")
コード例 #15
0
 def __init__(self):
     Datum.__init__(self,
                    "pythonInstallDir",
                    desc="the Python installation directory")
コード例 #16
0
 def __init__(self):
     Datum.__init__(self, "phpBinDir", desc="the PHP bin directory")
コード例 #17
0
 def __init__(self):
     Datum.__init__(self, "perlBinDir", desc="the Perl bin directory")
コード例 #18
0
 def __init__(self):
     Datum.__init__(self, "pythonVersion", desc="the python version")
コード例 #19
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "pythonVersion", desc="the python version")
コード例 #20
0
ファイル: mozilla.py プロジェクト: zhuyue1314/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "mozBin", "the Mozilla bin directory")
コード例 #21
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "perlBinDir", desc="the Perl bin directory")
コード例 #22
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "systemDirs", desc="the system directories")
コード例 #23
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "pythonBinDir", "the Python bin directory")
コード例 #24
0
ファイル: mozilla.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "mozBin", "the Mozilla bin directory")
コード例 #25
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "perlInstallDir",
         desc="Perl installation directory")
コード例 #26
0
 def __init__(self):
     Datum.__init__(self, "path", desc="the configured PATH setting")
コード例 #27
0
 def __init__(self):
     Datum.__init__(self, "systemDirs", desc="the system directories")
コード例 #28
0
 def __init__(self):
     Datum.__init__(self,
                    "msvcrtDebugDllsInstalled",
                    desc="the Microsoft Runtime debugging DLLs installed")
コード例 #29
0
ファイル: std.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "path", desc="the configured PATH setting")
コード例 #30
0
ファイル: mozilla.py プロジェクト: Acidburn0zzz/KomodoEdit
 def __init__(self):
     Datum.__init__(self, "createMozconfig",\
         desc="create the Mozilla Unix build configuration file "\
              "(~/.mozconfig)",
         serializeAs=[]
     )