Rework the stats pane to be modular, add a short sample on how it works too

This commit is contained in:
cncfanatics
2010-09-09 17:22:27 +02:00
parent bc56fe976f
commit c0bc0c6fe7
5 changed files with 136 additions and 1633 deletions

View File

@@ -0,0 +1,8 @@
__all__ = ["exampleView"]
columns = {}
def registerView(column):
columns[column.name] = column
def getView(name):
return columns[name]