Change the name of the module
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 22 Apr 2009 10:11:47 +0000 (10:11 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 22 Apr 2009 10:11:47 +0000 (10:11 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2617 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/bertos_utils.py
wizard/plugins/codelite.py [new file with mode: 0644]
wizard/plugins/codelite_project.py [deleted file]

index 2bb749ff2ec7baa6494a094edcaa0ecb81b47498..191aad32f3643ef722ca67c4e044d49c0511bf0f 100644 (file)
@@ -19,7 +19,7 @@ import copytree
 import pickle
 
 import const
-from plugins import codelite_project
+from plugins import codelite
 import DefineException
 
 def isBertosDir(directory):
@@ -96,7 +96,7 @@ def createBertosProject(project_info):
     open(prjdir + "/main.c", "w").write(main)
     # Codelite project files
     if "codelite" in project_info.info("OUTPUT"):
-        codelite_project.createProject(project_info)
+        codelite.createProject(project_info)
 
 def mkGenerator(project_info, makefile):
     """
diff --git a/wizard/plugins/codelite.py b/wizard/plugins/codelite.py
new file mode 100644 (file)
index 0000000..7672459
--- /dev/null
@@ -0,0 +1,81 @@
+#!/usr/bin/env python
+# encoding: utf-8
+#
+# Copyright 2009 Develer S.r.l. (http://www.develer.com/)
+# All rights reserved.
+#
+# $Id$
+#
+# Author: Lorenzo Berni <duplo@develer.com>
+#
+
+import os
+
+import const
+
+def clFiles(file_dict, directory):
+    """
+    Creates the list of the lines for the files founded in file_dict, using
+    directory as the base folder.
+    """
+    filelist = []
+    filelist.append("<VirtualDirectory Name=\"%s\">" %os.path.basename(directory))
+    for f in file_dict[directory]["files"]:
+        filelist.append("<File Name=\"%s\"/>" %os.path.join(directory, f))
+    for d in file_dict[directory]["dirs"]:
+        filelist += clFiles(file_dict, os.path.join(directory, d))
+    filelist.append("</VirtualDirectory>")
+    return filelist
+
+def findSources(path):
+    """
+    Analyzes the directory tree from path and return a dict with filename and
+    path.
+    """
+    if not path.endswith(os.sep):
+        path += os.sep
+    file_dict = {}
+    for root, dirs, files in os.walk(path):
+        if root.find("svn") == -1:
+            file_dict[root.replace(path, "")] = {"dirs": [], "files": []}
+            for dir in dirs:
+                if dir.find("svn") == -1:
+                    file_dict[root.replace(path, "")]["dirs"].append(dir)
+            for file in files:
+                if file.endswith(const.EXTENSION_FILTER):
+                    file_dict[root.replace(path, "")]["files"].append(file)
+    return file_dict
+
+def codeliteProjectGenerator(project_info):
+    """
+    Returns the string rapresenting the codelite project.
+    """
+    template = open("cltemplates/bertos.project", "r").read()
+    filelist = "\n".join(clFiles(findSources(project_info.info("PROJECT_PATH")), ""))
+    while template.find("$filelist") != -1:
+        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)
+    return template
+
+def codeliteWorkspaceGenerator(project_info):
+    """
+    Returns the string rapresentig the codelite workspace.
+    """
+    template = open("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)
+    return template
+
+def createProject(project_info):
+    """
+    Function that creates codelite projects.
+    """
+    directory = project_info.info("PROJECT_PATH")
+    prjdir = directory + "/" + os.path.basename(directory)
+    workspace = codeliteWorkspaceGenerator(project_info)
+    open(directory + "/" + os.path.basename(prjdir) + ".workspace", "w").write(workspace)
+    project = codeliteProjectGenerator(project_info)
+    open(directory + "/" + os.path.basename(prjdir) + ".project", "w").write(project)
diff --git a/wizard/plugins/codelite_project.py b/wizard/plugins/codelite_project.py
deleted file mode 100644 (file)
index ba03b2a..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/usr/bin/env python
-# encoding: utf-8
-#
-# Copyright 2009 Develer S.r.l. (http://www.develer.com/)
-# All rights reserved.
-#
-# $Id:$
-#
-# Author: Lorenzo Berni <duplo@develer.com>
-#
-
-import os
-
-import const
-
-def clFiles(file_dict, directory):
-    """
-    Creates the list of the lines for the files founded in file_dict, using
-    directory as the base folder.
-    """
-    filelist = []
-    filelist.append("<VirtualDirectory Name=\"%s\">" %os.path.basename(directory))
-    for f in file_dict[directory]["files"]:
-        filelist.append("<File Name=\"%s\"/>" %os.path.join(directory, f))
-    for d in file_dict[directory]["dirs"]:
-        filelist += clFiles(file_dict, os.path.join(directory, d))
-    filelist.append("</VirtualDirectory>")
-    return filelist
-
-def findSources(path):
-    """
-    Analyzes the directory tree from path and return a dict with filename and
-    path.
-    """
-    if not path.endswith(os.sep):
-        path += os.sep
-    file_dict = {}
-    for root, dirs, files in os.walk(path):
-        if root.find("svn") == -1:
-            file_dict[root.replace(path, "")] = {"dirs": [], "files": []}
-            for dir in dirs:
-                if dir.find("svn") == -1:
-                    file_dict[root.replace(path, "")]["dirs"].append(dir)
-            for file in files:
-                if file.endswith(const.EXTENSION_FILTER):
-                    file_dict[root.replace(path, "")]["files"].append(file)
-    return file_dict
-
-def codeliteProjectGenerator(project_info):
-    """
-    Returns the string rapresenting the codelite project.
-    """
-    template = open("cltemplates/bertos.project", "r").read()
-    filelist = "\n".join(clFiles(findSources(project_info.info("PROJECT_PATH")), ""))
-    while template.find("$filelist") != -1:
-        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)
-    return template
-
-def codeliteWorkspaceGenerator(project_info):
-    """
-    Returns the string rapresentig the codelite workspace.
-    """
-    template = open("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)
-    return template
-
-def createProject(project_info):
-    """
-    Function that creates codelite projects.
-    """
-    directory = project_info.info("PROJECT_PATH")
-    prjdir = directory + "/" + os.path.basename(directory)
-    workspace = codeliteWorkspaceGenerator(project_info)
-    open(directory + "/" + os.path.basename(prjdir) + ".workspace", "w").write(workspace)
-    project = codeliteProjectGenerator(project_info)
-    open(directory + "/" + os.path.basename(prjdir) + ".project", "w").write(project)