Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Unified Diff: tools/gardening/lib/src/util.dart

Issue 3005723002: Added ability to find builder-groups (Closed)
Patch Set: Landing with changes from johnniwinther Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/gardening/lib/src/luci_services.dart ('k') | tools/gardening/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gardening/lib/src/util.dart
diff --git a/tools/gardening/lib/src/util.dart b/tools/gardening/lib/src/util.dart
index ba80e6e6372bec8609051e3cf99dc7977762461b..2e48792829e170eda60e0be46ad68182c7c6362a 100644
--- a/tools/gardening/lib/src/util.dart
+++ b/tools/gardening/lib/src/util.dart
@@ -105,3 +105,12 @@ void processArgResults(ArgResults argResults) {
cache.base = null;
}
}
+
+/// Strips un-wanted characters from string [category] from CBE json.
+String sanitizeCategory(String category) {
+ // Category name starts with either two or three numbers and
+ // end with |all. Instead of doing any fancy regular-expr,
+ // we just test if third char is a number.
+ return category.substring(
+ category.codeUnitAt(2) <= 64 ? 3 : 2, category.length - 4);
+}
« no previous file with comments | « tools/gardening/lib/src/luci_services.dart ('k') | tools/gardening/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698