|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
24 | 24 | package org.openjdk.skara.bots.censussync;
|
25 | 25 |
|
26 | 26 | import org.openjdk.skara.bot.*;
|
| 27 | +import org.openjdk.skara.bots.common.BotUtils; |
27 | 28 | import org.openjdk.skara.forge.HostedRepository;
|
28 | 29 | import org.openjdk.skara.network.RestRequest;
|
29 | 30 | import org.openjdk.skara.vcs.*;
|
@@ -77,10 +78,6 @@ private static PrintWriter newPrintWriter(Path p) throws IOException {
|
77 | 78 | return new PrintWriter(Files.newBufferedWriter(p));
|
78 | 79 | }
|
79 | 80 |
|
80 |
| - private static String escape(String s) { |
81 |
| - return s.replace("&", "&").replace("<", "<").replace(">", ">"); |
82 |
| - } |
83 |
| - |
84 | 81 | private static List<Path> syncVersion(Element census, Path to) throws IOException {
|
85 | 82 | var date = ZonedDateTime.parse(XML.attribute(census, "time"));
|
86 | 83 | var timestamp = date.toInstant();
|
@@ -133,7 +130,7 @@ private static List<Path> syncGroups(Element census, Path to) throws IOException
|
133 | 130 | var filename = dir.resolve(name + ".xml");
|
134 | 131 | try (var file = newPrintWriter(filename)) {
|
135 | 132 | file.format("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>%n");
|
136 |
| - file.format("<group name=\"%s\" full-name=\"%s\">%n", name, escape(fullName)); |
| 133 | + file.format("<group name=\"%s\" full-name=\"%s\">%n", name, BotUtils.escape(fullName)); |
137 | 134 | file.format(" <lead username=\"%s\" />%n", lead);
|
138 | 135 | for (var member : members) {
|
139 | 136 | file.format(" <member username=\"%s\" />%n", member);
|
@@ -191,7 +188,7 @@ private static List<Path> syncProjects(Element census, Path to) throws IOExcepti
|
191 | 188 | var filename = dir.resolve(name + ".xml");
|
192 | 189 | try (var file = newPrintWriter(filename)) {
|
193 | 190 | file.format("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>%n");
|
194 |
| - file.format("<project name=\"%s\" full-name=\"%s\" sponsor=\"%s\">%n", name, escape(fullName), sponsor); |
| 191 | + file.format("<project name=\"%s\" full-name=\"%s\" sponsor=\"%s\">%n", name, BotUtils.escape(fullName), sponsor); |
195 | 192 | file.format(" <lead username=\"%s\" since=\"0\" />%n", lead);
|
196 | 193 |
|
197 | 194 | for (var reviewer : reviewers) {
|
|
1 commit comments
openjdk-notifier[bot] commentedon Jan 27, 2023
Review
Issues