def __init__(self, project, env): Command.__init__(self) self.name = "NotifyAuthorAboutRestore" self.project = project self.notifier = NotificationSystem(env) from_email = env.config['notification'].get('smtp_from') replyto_email = env.config['notification'].get('smtp_replyto') self.from_email = from_email or replyto_email
def __init__(self, project, env): Command.__init__(self) self.name = "NotifyAuthorAboutRestore" self.project = project self.notifier = NotificationSystem(env) from_email = env.config["notification"].get("smtp_from") replyto_email = env.config["notification"].get("smtp_replyto") self.from_email = from_email or replyto_email
def __init__(self, project): Command.__init__(self) self.name = "CleanUpArchiveFolder" self.project = project
def __init__(self, project): Command.__init__(self) self.name = "RemoveProjectArchiveDbRecord" self.project = project
def __init__(self, project): Command.__init__(self) self.name = "RestoreProjectDatabase" self.project = project
def __init__(self, project): Command.__init__(self) self.name = "ArchiveProjectTeam" self.project = project self.groups = CQDEUserGroupStore(project.trac_environment_key)
def __init__(self, project): Command.__init__(self) self.name = "ArchiveProjectDb" self.project = project
def __init__(self, project): Command.__init__(self) self.name = "CreateProjectArchiveDbRecord" self.project = project self.archive_id = None
def __init__(self): Command.__init__(self) self.source = None self.destination = None