X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e49882e535f1464673d547ba37c636ec1eb8d0ab..fbe39c0c33a9c9c3451ad6bf8ec4b336e7e3b24f:/apps/workbench/app/helpers/application_helper.rb diff --git a/apps/workbench/app/helpers/application_helper.rb b/apps/workbench/app/helpers/application_helper.rb index 58ad619203..57b8d8780c 100644 --- a/apps/workbench/app/helpers/application_helper.rb +++ b/apps/workbench/app/helpers/application_helper.rb @@ -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 @@ -670,15 +674,10 @@ module ApplicationHelper render_runtime duration, use_words, round_to_min end - # Keep locators in input mounts are of the form \"keep:\" - MOUNT_INPUT_KEEP_LOCATOR_REGEXP = /(.*)(([0-9a-f]{32}\+\d+)(.*)\"(.*))/ - def mount_input_keep_locator str - MOUNT_INPUT_KEEP_LOCATOR_REGEXP.match str - end - - KEEP_LOCATOR_REGEXP = /(.*)([0-9a-f]{32}\+\d+)(.*)/ - def keep_locator str - KEEP_LOCATOR_REGEXP.match str + # Keep locators are expected to be of the form \"...\" + JSON_KEEP_LOCATOR_REGEXP = /(.*)(([0-9a-f]{32}\+\d+)(.*)\"(.*))/ + def keep_locator_in_json str + JSON_KEEP_LOCATOR_REGEXP.match str end private