X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fplugins%2Fcodelite.py;h=cff2c60791cb7c68c8f4cbcb1e71c90c8726dd7e;hb=aaa7697cfcd622a8d6ea4e5a30b5f2bc25cd77e9;hp=7f4daac885cb8d067ece5c27c01bbf879663ebf2;hpb=cf36efa296379eb024dd593fc2806a42093e6c97;p=bertos.git diff --git a/wizard/plugins/codelite.py b/wizard/plugins/codelite.py index 7f4daac8..cff2c607 100644 --- a/wizard/plugins/codelite.py +++ b/wizard/plugins/codelite.py @@ -28,7 +28,6 @@ # # Copyright 2008 Develer S.r.l. (http://www.develer.com/) # -# $Id$ # # Author: Lorenzo Berni # @@ -103,15 +102,11 @@ def codeliteProjectGenerator(project_info): filelist = "\n".join(clFiles(findSources(project_info.info("PROJECT_PATH")), "")) debugger_path = project_info.info("TOOLCHAIN")["path"].replace("gcc", "gdb") init_script = project_info.info("CPU_INFOS")["GDB_INIT_SCRIPT"] - while template.find("$filelist") != -1: - template = template.replace("$filelist", filelist) + template = template.replace("$filelist", filelist) project_name = os.path.basename(project_info.info("PROJECT_PATH")) - while template.find("$project") != -1: - template = template.replace("$project", project_name) - while template.find("$debuggerpath") != -1: - template = template.replace("$debuggerpath", debugger_path) - while template.find("$initscript") != -1: - template = template.replace("$initscript", init_script) + template = template.replace("$project", project_name) + template = template.replace("$debuggerpath", debugger_path) + template = template.replace("$initscript", init_script) return template def codeliteWorkspaceGenerator(project_info): @@ -120,6 +115,5 @@ def codeliteWorkspaceGenerator(project_info): """ template = open(os.path.join(const.DATA_DIR, "cltemplates/bertos.workspace"), "r").read() project_name = os.path.basename(project_info.info("PROJECT_PATH")) - while template.find("$project") != -1: - template = template.replace("$project", project_name) + template = template.replace("$project", project_name) return template