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: Remove includes/common.tmpl which is no longer required. Created March 7, 2015, 7:01 p.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
« no previous file with comments | « filters/parse_interface.py ('k') | includes/index.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: filters/subscription_sort.py
diff --git a/filters/subscription_sort.py b/filters/subscription_sort.py
new file mode 100644
index 0000000000000000000000000000000000000000..eedd95ff0950f6763747eea3aa7d64bc93b6acaf
--- /dev/null
+++ b/filters/subscription_sort.py
@@ -0,0 +1,30 @@
+# This file is part of the Adblock Plus website,
+# Copyright (C) 2006-2015 Eyeo GmbH
+#
+# Adblock Plus is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3 as
+# published by the Free Software Foundation.
+#
+# Adblock Plus is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+
+def subscription_sort(value, prioritize_recommended=True):
+ if prioritize_recommended:
+ return sorted(value, lambda a, b: (
+ cmp(a.type, b.type) or
+ cmp(a.deprecated, b.deprecated) or
+ cmp(b.catchall, a.catchall) or
+ cmp(b.recommendation is not None, a.recommendation is not None) or
+ cmp(a.name.lower(), b.name.lower())
+ ))
+ else:
+ return sorted(value, lambda a, b: (
+ cmp(a.type, b.type) or
+ cmp(a.deprecated, b.deprecated) or
+ cmp(a.name.lower(), b.name.lower())
+ ))
« no previous file with comments | « filters/parse_interface.py ('k') | includes/index.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld