| 123456789101112131415161718192021222324252627282930313233 | #!/usr/bin/python# You can pass several parameters on the command line# (more info by running this with option --help)# or you can modify the default values here# (more info in WebKit.Launch):import osworkDir = NonewebwareDir = os.path.dirname(os.path.normpath(os.getcwd()))libraryDirs = ['Lib']runProfile = FalselogFile = NonepidFile = Noneuser = Nonegroup = Noneimport syssys.path.insert(0, webwareDir)from WebKit import LaunchLaunch.workDir = workDirLaunch.webwareDir = webwareDirLaunch.libraryDirs = libraryDirsLaunch.runProfile = runProfileLaunch.logFile = logFileLaunch.pidFile = pidFileLaunch.user = userLaunch.group = groupif __name__ == '__main__':    Launch.main()
 |