def rss_all(limit=200): """ Simple route that returns all projects name, description, link to selected project as rss feed """ coprs = CoprsLogic.get_all().order_by(models.Copr.id.desc()).limit(limit) answer = render_template("rss/rss.xml", coprs=coprs) return Response(answer, mimetype="text/xml")
def all_coprs(): """ Return all coprs without those which are deleted. """ return CoprsLogic.get_all()
def all_coprs(): return CoprsLogic.get_all()