Skip to content
Snippets Groups Projects
Commit a2966774 authored by Celine Noirot's avatar Celine Noirot
Browse files

#190 to be tested

parent a3e8ceac
No related branches found
Tags V3.2.8
No related merge requests found
......@@ -752,25 +752,19 @@ class Analysis (Component):
return [retcode, str_cmd]
def get_directory(self):
"""
Returns a analysis's directory
"""
if self.id != None :
t3mysql = t3MySQLdb()
return t3mysql.select_analysis_directory(self.id)
else :
raise UnsavedAnalysisError()
def get_web_filepath(self, file_name, base_filepath='fileadmin' ):
def get_web_filepath(self, file_name, base_filepath='fileadmin' ):
"""
returns the full web filepath from a given filename
@param file_name : the path to the file to link
@param base_filepath : the first directory in the path (depends on the server's directory structure)
@return : the full web filepath
"""
logging.getLogger("Analysis.get_web_filepath").debug("IN analysis.get_web_filepath()")
return base_filepath + os.path.join(self.get_directory(), file_name)
curr_dir=self.directory
if self.id != None :
t3mysql = t3MySQLdb()
curr_dir= t3mysql.select_analysis_directory(self.id)
return base_filepath + os.path.join(self.directory, file_name)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment