Skip to content

Commit

Permalink
Use new auxiliary domain
Browse files Browse the repository at this point in the history
  • Loading branch information
dersmon committed Jul 19, 2024
1 parent d024636 commit f0d8f2c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ public SimpleExternalLinkResolver teiViewerBook() {
result.setLabel("TEI-Viewer");
final Map<String, String> criteria = ImmutableMap.of("Dataset.TableName", "buch");
result.setCriteria(criteria);
result.setLinkPattern("https://arachne.uni-koeln.de/Tei-Viewer/cgi-bin/teiviewer.php?manifest=%s");
result.setValidationPattern("https://arachne.uni-koeln.de/TeiDocuments/%s/structure.xml");
result.setLinkPattern("https://objects.auxiliary.idai.world/Tei-Viewer/cgi-bin/teiviewer.php?manifest=%s");
result.setValidationPattern("https://objects.auxiliary.idai.world/TeiDocuments/%s/structure.xml");
result.setPatternFields(Arrays.asList("buch.Verzeichnis"));
return result;
}
Expand All @@ -116,7 +116,7 @@ public SimpleExternalLinkResolver dfgViewer() {
final Map<String, String> criteria = ImmutableMap.of("Dataset.TableName", "buch");
result.setCriteria(criteria);
result.setLinkPattern("http://dfg-viewer.de/show/"
+ "?set[mets]=http%%3A%%2F%%2Farachne.uni-koeln.de%%2FMetsDocuments%%2F"
+ "?set[mets]=http%%3A%%2F%%2Fobjects.auxiliary.idai.world%%2FMetsDocuments%%2F"
+ "oai_arachne.uni-koeln.de_buch-%s.xml");
result.setPatternFields(Arrays.asList("Dataset.internalId"));
return result;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class BuchseiteocrtextContextualizer extends AbstractContextualizer {

private static final Logger LOGGER = LoggerFactory.getLogger(BuchseiteocrtextContextualizer.class);

private final static String XELETOR_ADRESS = "http://arachne.uni-koeln.de:6688";
private final static String XELETOR_ADRESS = "http://objects.auxiliary.idai.world:6688";

private final static String CONTEXT_TYPE = "Buchseiteocrtext";

Expand Down
4 changes: 2 additions & 2 deletions backend/src/main/resources/config/application.properties.dev
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ [email protected]
testUserName=e2e_test_user

# specialnavigation stuff
teiViewerLink=http://arachne.uni-koeln.de/Tei-Viewer/cgi-bin/teiviewer.php
dfgViewerLink=http://dfg-viewer.de/v1/?set[mets]=http%3A%2F%2Farachne.uni-koeln.de%2FMetsDocuments%2Foai_arachne.uni-koeln.de_buch-
teiViewerLink=http://objects.auxiliary.idai.world/Tei-Viewer/cgi-bin/teiviewer.php
dfgViewerLink=http://dfg-viewer.de/v1/?set[mets]=http%3A%2F%2Fobjects.auxiliary.idai.world%2FMetsDocuments%2Foai_arachne.uni-koeln.de_buch-
modelViewerLink=/3d?id=

# book browser module
Expand Down

0 comments on commit f0d8f2c

Please sign in to comment.