Exemplo n.º 1
0
 def package_releases(self, package_name, show_hidden=False):
     """
     Retrieve a list of the releases registered for the given package_name.
     Returns a list with all version strings if show_hidden is True or
     only the non-hidden ones otherwise."""
     session = DBSession()
     releases = Release.by_package_name(session, package_name, show_hidden)
     session.rollback()
     return releases
Exemplo n.º 2
0
 def package_releases(self, package_name, show_hidden=False):
     """
     Retrieve a list of the releases registered for the given package_name.
     Returns a list with all version strings if show_hidden is True or
     only the non-hidden ones otherwise."""
     session = DBSession()
     releases = Release.by_package_name(session, package_name, show_hidden)
     session.rollback()
     return releases