-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #973 from openpreserve/feat/error-wiki-links
FEAT: Wiki info links for messages
- Loading branch information
Showing
11 changed files
with
8,338 additions
and
4,015 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
jhove-core/src/main/java/edu/harvard/hul/ois/jhove/handler/Handlers.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package edu.harvard.hul.ois.jhove.handler; | ||
|
||
public class Handlers { | ||
private Handlers() { | ||
throw new AssertionError("Instantiating utility class..."); | ||
} | ||
|
||
public static final String makeInfoLink(final String reportingModule, final String jhoveId) { | ||
return String.format("https://github.com/openpreserve/jhove/wiki/%s-Messages#%s", | ||
reportingModule, jhoveId.toLowerCase()); | ||
} | ||
} |
Oops, something went wrong.