def project()

in asfyaml/dataobjects.py [0:0]


    def project(self):
        """Returns the LDAP name of the project owning this repository, for instance httpd or openoffice"""
        match = mappings.REPO_RE.match(self.name)
        if match:
            return match.group(1)
        return "infrastructure"  # Weird repo name, default to infra owning it.