summaryrefslogtreecommitdiff
path: root/TODO.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-09-07 20:38:20 +0000
committerChris McDonough <chrism@agendaless.com>2010-09-07 20:38:20 +0000
commit0db2acfc4ce715d62f73a8e4d06784149ecd5071 (patch)
tree4511c8dcc368b03baa6dd117bd404821d2b97698 /TODO.txt
parenta58c4a4968053314be39aae62eed3c7a9c863e40 (diff)
downloadpyramid-0db2acfc4ce715d62f73a8e4d06784149ecd5071.tar.gz
pyramid-0db2acfc4ce715d62f73a8e4d06784149ecd5071.tar.bz2
pyramid-0db2acfc4ce715d62f73a8e4d06784149ecd5071.zip
garden
Diffstat (limited to 'TODO.txt')
-rw-r--r--TODO.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/TODO.txt b/TODO.txt
index f3d5a35e4..04a50c5a0 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -72,25 +72,3 @@
view_permission="something_random" inside every <route>, so that
those alc's kick in? or am I doing it completely wrong?
-- Need to allow view configs that contain custom predicates a shot at
- comparing the same
-
- View configs compare equal if their "phash" is the same
-
- We'll have to extend bfg to let it compute a phash from a custom
- predicate right now, it just uses the id of the predicate. Right
- now it does:
-
- for num, predicate in enumerate(custom):
- predicates.append(predicate)
- h.update('custom%s:%r' % (num, id(predicate)))
-
- I'll have to make it do:
-
- for num, predicate in enumerate(custom):
- predicates.append(predicate)
- h.update('custom%s:%r' % (num, get_phash(predicate)))
-
- where get_phash does something sensible but falls back to id
-
-