14075: Tweak ruamel.yaml verision range in setup.py
[arvados.git] / apps / workbench / app / helpers / application_helper.rb
index db6ae38c84371b6074bc7f7a7a9ec4b69172adfc..57b8d8780c6859e9063cabb7c43cfcb30a14d6bf 100644 (file)
@@ -1,3 +1,7 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 module ApplicationHelper
   def current_user
     controller.current_user
@@ -671,9 +675,9 @@ module ApplicationHelper
   end
 
   # Keep locators are expected to be of the form \"...<pdh/file_path>\"
-  KEEP_LOCATOR_REGEXP = /(.*)(([0-9a-f]{32}\+\d+)(.*)\"(.*))/
+  JSON_KEEP_LOCATOR_REGEXP = /(.*)(([0-9a-f]{32}\+\d+)(.*)\"(.*))/
   def keep_locator_in_json str
-    KEEP_LOCATOR_REGEXP.match str
+    JSON_KEEP_LOCATOR_REGEXP.match str
   end
 
 private