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