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

Unified Diff: filters/find.py

Issue 5994668214976512: Issue 662 - Job links shouldn't use anchors (Closed)
Patch Set: Updated patch by Wladimir #2 Created March 20, 2015, 4:47 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 | « no previous file | includes/jobs/generic-footer.tmpl » ('j') | includes/jobs/generic-header.tmpl » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: filters/find.py
===================================================================
new file mode 100644
--- /dev/null
+++ b/filters/find.py
@@ -0,0 +1,6 @@
+def find(sequence, value, attribute=None):
+ for item in sequence:
+ if ((attribute is None and item == value) or
+ (attribute is not None and item[attribute] == value)):
Sebastian Noack 2015/03/20 17:50:28 If you insist on keeping this weird filter, can we
Wladimir Palant 2015/03/20 18:22:40 Not that much simpler but fine with me.
Sebastian Noack 2015/03/21 12:34:44 Moreover, you should use environment.getitem(). Ot
saroyanm 2015/03/21 17:27:10 Done.
Wladimir Palant 2015/03/22 22:06:42 I doubt that this is a good idea. Environment.geti
saroyanm 2015/03/22 23:40:51 Done.
+ return item
+ return None
« no previous file with comments | « no previous file | includes/jobs/generic-footer.tmpl » ('j') | includes/jobs/generic-header.tmpl » ('J')

Powered by Google App Engine
This is Rietveld