def __init__(self, path_info, method): AnalyzerFactory.__init__(self, AnalyzerMarkup.description, AnalyzerMarkup.available_methods, AnalyzerMarkup.dependencies, path_info) self.method = method # datastructures self.markup_status = list() # path info self.markup_reports_path = self.report_path + "/markup/"
def __init__(self, path_info, method): AnalyzerFactory.__init__(self, self.description, self.available_methods, self.dependencies, path_info) self.method = method self.language = None self.markup_status = None # datastructures self.spelling_status = list() # path information self.spellcheck_reports_path = self.report_path + "/spellcheck/"
def __init__(self, path_info, method): AnalyzerFactory.__init__(self, AnalyzerMetadata.description, AnalyzerMetadata.available_methods, AnalyzerMetadata.dependencies, path_info) self.method = method # datastructures self.metadata_status = dict() self.metadata = None # path info self.metadata_reports_file = self.report_path + "/metadata.html" self.metadata_file = self.working_path + "Metadata"
def __init__(self, path_info): AnalyzerFactory.__init__( self, AnalyzerArticles.description, AnalyzerArticles.available_methods, AnalyzerArticles.dependencies, path_info ) # datastructures self.articles_status = dict() self.articles = None # path info self.articles_file = self.working_path + "Metadata" self.articles_reports_file = self.report_path + "/articles.html"
def __init__(self, path_info, method): AnalyzerFactory.__init__(self, AnalyzerUnicode.description, AnalyzerUnicode.available_methods, AnalyzerUnicode.dependencies, path_info) self.method = method