configurationengine/source/plugins/symbian/ConeThemePlugin/themeplugin/theme_container.py
changeset 5 d2c80f5cab53
parent 3 e7e0ae78773e
equal deleted inserted replaced
4:0951727b8815 5:d2c80f5cab53
   139         
   139         
   140         name_tdf = theme_function.get_tdf_file(zip_output)
   140         name_tdf = theme_function.get_tdf_file(zip_output)
   141         name_tdf = os.path.join(name_tdf,name_tdf+".tdf")
   141         name_tdf = os.path.join(name_tdf,name_tdf+".tdf")
   142         input_tdf = os.path.join(zip_output,name_tdf)
   142         input_tdf = os.path.join(zip_output,name_tdf)
   143        
   143        
   144         command_line = "makepackage -input " + input_tdf + " -output " + output_path
   144         command_line = "makepackage -input \"%s\" -output \"%s\"" % (input_tdf, output_path)
   145         
   145         
   146         if len(theme_version) != 0:
   146         if len(theme_version) != 0:
   147             command_line = command_line + " -ver "+ theme_version
   147             command_line = "%s -ver %s" % (command_line, theme_version)
   148         
   148         
   149         if theme.get_uid() != None:
   149         if theme.get_uid() != None:
   150             command_line = command_line + " -uid " + theme.get_uid()
   150             command_line = command_line + " -uid " + theme.get_uid()
   151             
   151             
   152         logging.getLogger('cone.thememl').info("Building theme: %s" % command_line)
   152         logging.getLogger('cone.thememl').info("Building theme: %s" % command_line)