Ejemplo n.º 1
0
 def get_content(self):
     if not self.title:
         raise NotFound("No backlinks to non-existant page.")
     page = model.WikiContent.get_by_title(self.title)
     if page:
         return view.get_backlinks(page, page.get_backlinks())
     else:
         raise NotFound("No backlinks to non-existant page.")
Ejemplo n.º 2
0
 def get_content(self):
     page = model.WikiContent.get_by_title(self.title)
     return view.get_backlinks(page, page.get_backlinks())
Ejemplo n.º 3
0
 def get_content(self):
     page = model.WikiContent.get_by_title(self.title)
     return view.get_backlinks(page, page.get_backlinks())