diff options
author | Zachary Sloan | 2013-01-11 23:59:41 +0000 |
---|---|---|
committer | Zachary Sloan | 2013-01-11 23:59:41 +0000 |
commit | 2b2970d167c5b555e0e0ad0b34b72f817c1fac91 (patch) | |
tree | 36fa8c708138fff03593e0f50cc933bcb62b5592 /wqflask/htmlgen.py | |
parent | 1db9237a05fd27c80dc963db9916072594156198 (diff) | |
parent | d39b691994a395c45fa242de6d64d12a5470af10 (diff) | |
download | genenetwork2-2b2970d167c5b555e0e0ad0b34b72f817c1fac91.tar.gz |
Merge branch 'flask' of http://github.com/zsloan/genenetwork
Diffstat (limited to 'wqflask/htmlgen.py')
-rw-r--r-- | wqflask/htmlgen.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/wqflask/htmlgen.py b/wqflask/htmlgen.py new file mode 100644 index 00000000..8406d925 --- /dev/null +++ b/wqflask/htmlgen.py @@ -0,0 +1,14 @@ +from __future__ import absolute_import, division, print_function + +class HTMLgen(object): + """A redefined HT until we manage to completely eliminate it""" + def __getattr__(self, name): + return "" + + def Item(self, *args, **kw): + print("This way of generating html is obsolete!") + return "foo" + + Href = Span = TD = Blockquote = Image = Item + +HTMLgen2 = HTMLgen() |