def get(self, path, head=False): resource = RelatedPagesResource(self.request, self.response, path) resource.get(head)
def related(request, path): head = False resource = RelatedPagesResource(request, path) return resource.get(head)