Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: filters/subscription_sort.py

Issue 5636796054503424: Issue 1170 - [adblockplus.org Anwiki to CMS migration] Migrate content (Closed)
Patch Set: Brought in changes to website made over last few months. Created Jan. 19, 2015, 12:18 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: filters/subscription_sort.py
diff --git a/filters/subscription_sort.py b/filters/subscription_sort.py
new file mode 100644
index 0000000000000000000000000000000000000000..62084603ceb928db2f4317a7abbba01992939a10
--- /dev/null
+++ b/filters/subscription_sort.py
@@ -0,0 +1,17 @@
+def subscription_sort(value, prioritizeRecommended=True):
Sebastian Noack 2015/02/13 17:51:49 Nit: Please use underscores instead camelcase in P
kzar 2015/02/20 14:55:18 Done.
+ value = value[:] # create a copy of the list
+ if prioritizeRecommended:
+ value.sort(lambda a, b: (
+ cmp(a.get("type"), b.get("type")) or
+ cmp(a.get("deprecated"), b.get("deprecated")) or
+ cmp(b.get("catchall"), a.get("catchall")) or
+ cmp(b.get("recommendation") != None, a.get("recommendation") != None) or
Sebastian Noack 2015/02/13 17:51:49 None is a singleton. So please always use the "is
kzar 2015/02/20 14:55:18 Done.
+ cmp(a.get("name").lower(), b.get("name").lower())
Sebastian Noack 2015/02/13 17:51:49 This code will raise an exception anyway if "name"
kzar 2015/02/20 14:55:18 Done.
+ ))
+ else:
+ value.sort(lambda a, b: (
+ cmp(a.get("type"), b.get("type")) or
+ cmp(a.get("deprecated"), b.get("deprecated")) or
+ cmp(a.get("name").lower(), b.get("name").lower())
+ ))
+ return value

Powered by Google App Engine
This is Rietveld