Exemplo n.º 1
0
 def get(self, path, head=False):
     resource = RelatedPagesResource(self.request, self.response, path)
     resource.get(head)
Exemplo n.º 2
0
def related(request, path):
    head = False
    resource = RelatedPagesResource(request, path)
    return resource.get(head)