From f9d534939dd68712acac08a033854651c1e2f384 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 26 May 2014 23:25:33 -0400 Subject: [PATCH] Parser - When a filter contains "uuid:" this is matched using the partial match operator, which will allow use of abbreviated UUIDs. --- src/Parser.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Parser.cpp b/src/Parser.cpp index ab647459a..80262b6e0 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -821,7 +821,8 @@ void Parser::findAttribute () branch->tag ("OP"); // All 'project' attributes are partial matches. - if (canonical == "project") + if (canonical == "project" || + canonical == "uuid") branch->attribute ("raw", "="); else branch->attribute ("raw", "==");