Exemplo n.º 1
0
 def GET(self):
     self._config = TesseraConfig(path.join(Tessera._tesserae, "config"))
     gt = GitTessera(self._config)
     tesserae = gt.ls()
     return render.index(tesserae)
Exemplo n.º 2
0
 def GET(self):
     gt = GitTessera()
     tesserae = gt.ls()
     return render.index(tesserae)
Exemplo n.º 3
0
 def cmd_ls(self, args):
     gt = GitTessera(self._config)
     tesserae = gt.ls(args)
     for t in tesserae:
         print t.summary()
     return True
Exemplo n.º 4
0
 def cmd_ls(self, args):
     gt = GitTessera(self._config)
     tesserae = gt.ls(args)
     for t in tesserae:
         print t.summary()
     return True
Exemplo n.º 5
0
 def GET(self):
     self._config = TesseraConfig(path.join(Tessera._tesserae, "config"))
     gt = GitTessera(self._config)
     tesserae = gt.ls()
     return render.index(tesserae)