From ce4602239cf03b36faafe6abc3920cc43d138a28 Mon Sep 17 00:00:00 2001 From: Martin Donnelly Date: Thu, 18 Aug 2016 10:06:25 +0100 Subject: [PATCH] fixed plugins --- .idea/workspace.xml | 96 ++++++++++++++++++---------------------- plugins/filter_reject.js | 6 +-- 2 files changed, 46 insertions(+), 56 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index e099f01..7433f94 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -28,7 +28,7 @@ - + @@ -45,16 +45,6 @@ - - - - - - - - - - @@ -65,16 +55,6 @@ - - - - - - - - - - @@ -95,11 +75,11 @@ - + - - + + @@ -125,6 +105,16 @@ + + + + + + + + + + @@ -504,14 +494,7 @@ - - - - 1438343582415 - 1438344607380 @@ -849,11 +832,18 @@ - - @@ -863,7 +853,7 @@ - + @@ -1230,7 +1220,7 @@ - + @@ -1252,14 +1242,6 @@ - - - - - - - - @@ -1284,6 +1266,22 @@ + + + + + + + + + + + + + + + + @@ -1295,15 +1293,7 @@ - - - - - - - - - + diff --git a/plugins/filter_reject.js b/plugins/filter_reject.js index a42424b..ab62420 100644 --- a/plugins/filter_reject.js +++ b/plugins/filter_reject.js @@ -1,8 +1,8 @@ module.exports = function (item, itemOptions, source) { - var patt = /(drupal|SHAREPOINT|per annum|ServiceNow|Test Lead|User Researcher|Service Management|\(PERM\)|£\d.K|Remedy|ITSM|Symfony|Zend|Full Time|Technical Business Analyst)/ig; + var patt = /(drupal|SHAREPOINT|per annum|ServiceNow|Test Lead|User Researcher|Service Management|\(PERM\)|£\d.K|Remedy|ITSM|Symfony|Zend|Full Time|Technical Business Analyst|BUSINESS ANALYST|AUTOMATION TESTER|FIELD TECHNICIAN)/ig; - var engineers = /(Support|Devops)\s(Engineer)/ig; - var developers = /(Java|PHP|Graduate|Access)\s(Developer)/ig; + var engineers = /(Support|Devops|Planning)\s(Engineer)/ig; + var developers = /(Java|PHP|Graduate|Access|Oracle ADF|SHAREPOINT)\s(Developer)/ig; var architects = /(Java|PHP|Microsoft)\s(Architect)/ig; var result = patt.test(itemOptions.description) || engineers.test(itemOptions.description) || developers.test(itemOptions.description) || architects.test(itemOptions.description);