Fix github urls

This commit is contained in:
Grahame Grieve 2024-09-30 08:31:28 +10:00
parent e8a0bba072
commit d29926b4a5
2 changed files with 4 additions and 4 deletions

View File

@ -200,7 +200,7 @@ public class PackageVisitor {
} }
if (step == 0 || step == 3) { if (step == 0 || step == 3) {
JsonObject json = JsonParser.parseObjectFromUrl("https://raw.githubusercontent.com/FHIR/ig-registry/master/fhir-ig-list.json"); JsonObject json = JsonParser.parseObjectFromUrl("https://fhir.github.io/ig-registry/fhir-ig-list.json");
i = 0; i = 0;
List<JsonObject> objects = json.getJsonObjects("guides"); List<JsonObject> objects = json.getJsonObjects("guides");
for (JsonObject o : objects) { for (JsonObject o : objects) {
@ -315,11 +315,11 @@ public class PackageVisitor {
for (PackageInfo i : pc.search(null, null, null, false)) { for (PackageInfo i : pc.search(null, null, null, false)) {
list.add(i.getId()); list.add(i.getId());
} }
JsonObject json = JsonParser.parseObjectFromUrl("https://raw.githubusercontent.com/FHIR/ig-registry/master/fhir-ig-list.json"); JsonObject json = JsonParser.parseObjectFromUrl("https://fhir.github.io/ig-registry/fhir-ig-list.json");
for (JsonObject ig : json.getJsonObjects("guides")) { for (JsonObject ig : json.getJsonObjects("guides")) {
list.add(ig.asString("npm-name")); list.add(ig.asString("npm-name"));
} }
json = JsonParser.parseObjectFromUrl("https://raw.githubusercontent.com/FHIR/ig-registry/master/package-feeds.json"); json = JsonParser.parseObjectFromUrl("https://fhir.github.io/ig-registry/package-feeds.json");
for (JsonObject feed : json.getJsonObjects("feeds")) { for (JsonObject feed : json.getJsonObjects("feeds")) {
processFeed(list, feed.asString("url")); processFeed(list, feed.asString("url"));
} }

View File

@ -273,7 +273,7 @@ public class PackageClient {
public List<PackageInfo> listFromRegistry(String name, String canonical, String fhirVersion) throws IOException { public List<PackageInfo> listFromRegistry(String name, String canonical, String fhirVersion) throws IOException {
List<PackageInfo> result = new ArrayList<>(); List<PackageInfo> result = new ArrayList<>();
JsonObject packages = JsonParser.parseObjectFromUrl("https://raw.githubusercontent.com/FHIR/ig-registry/master/fhir-ig-list.json?nocache=" + System.currentTimeMillis()); JsonObject packages = JsonParser.parseObjectFromUrl("https://fhir.github.io/ig-registry/fhir-ig-list.json?nocache=" + System.currentTimeMillis());
for (JsonObject o : packages.getJsonObjects("guides")) { for (JsonObject o : packages.getJsonObjects("guides")) {
if (o.has("canonical")) { if (o.has("canonical")) {
final PackageInfo packageInfo = getPackageInfoFromJSON(o, name, canonical, fhirVersion); final PackageInfo packageInfo = getPackageInfoFromJSON(o, name, canonical, fhirVersion);