# HG changeset patch # User QuintillusCFC # Date 1552250798 14400 # Sun Mar 10 16:46:38 2019 -0400 # Node ID 847eb825d89768f128802a503d02a64e8c009f48 # Parent 79e9698e1b94776399e1af06bc9c6622e99ee298 Add another Gopher recipe vault. diff --git a/src/main/java/com/ajtjp/gopherarchiver/Gopher.java b/src/main/java/com/ajtjp/gopherarchiver/Gopher.java --- a/src/main/java/com/ajtjp/gopherarchiver/Gopher.java +++ b/src/main/java/com/ajtjp/gopherarchiver/Gopher.java @@ -30,8 +30,8 @@ } public Gopher() throws IOException, InterruptedException { - String outputDir = "C:\\GopherTest"; - burrow(ReferenceURLs.indianRecipes, outputDir); + String outputDir = "C:\\GopherRecipesII"; + burrow(ReferenceURLs.recipesII, outputDir); } public void burrow(GopherURL gopherHole, String outputDir) throws IOException, InterruptedException { diff --git a/src/main/java/com/ajtjp/gopherarchiver/ReferenceURLs.java b/src/main/java/com/ajtjp/gopherarchiver/ReferenceURLs.java --- a/src/main/java/com/ajtjp/gopherarchiver/ReferenceURLs.java +++ b/src/main/java/com/ajtjp/gopherarchiver/ReferenceURLs.java @@ -10,4 +10,5 @@ static GopherURL floodgap = new GopherURL("66.166.122.165", 70, ""); static GopherURL sdf = new GopherURL("sdf.org", 70, ""); static GopherURL indianRecipes = new GopherURL("sdf.org", 70, "/users/sanjuro/indian-food"); + static GopherURL recipesII = new GopherURL("gopher.black", 70, "/recipebox"); }