Skip to content

Commit

Permalink
JSesh dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
dwerning committed Mar 14, 2024
1 parent 85c8755 commit 0099ad9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/main/java/tla/web/model/Lemma.java
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ private static List<String> extractBibliography(Lemma lemma) {
)
);
} catch (Exception e) {
log.debug("could not extract bibliography from lemma {}", lemma.getId());
// log.debug("INFO: could not extract bibliography from lemma {}", lemma.getId());
}
return bibliography;
}
Expand Down Expand Up @@ -194,7 +194,7 @@ private static List<String> extractDescription(Lemma lemma) {
)
);
} catch (Exception e) {
System.out.println("INFO: Could not extract description from lemma "+lemma.getId());
// System.out.println("INFO: Could not extract description from lemma "+lemma.getId());
}
return description;
}
Expand Down Expand Up @@ -230,7 +230,7 @@ private static List<String> extractFileComment(Lemma lemma) {
)
);
} catch (Exception e) {
System.out.println("INFO: Could not extract file comment from lemma "+lemma.getId());
// System.out.println("INFO: Could not extract file comment from lemma "+lemma.getId());
}
return fileComment;
}
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/tla/web/model/mappings/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ public class Util {

public static void prepareFonts() {
DefaultHieroglyphicFontManager manager = DefaultHieroglyphicFontManager.getInstance();
manager.addHieroglyphicFontManager(new DirectoryHieroglyphicFontManager(new File("src/main/resources/static/jsesh")));
manager.addHieroglyphicFontManager(new DirectoryHieroglyphicFontManager(new File("../app/libs/jsesh")));
manager.addHieroglyphicFontManager(new DirectoryHieroglyphicFontManager(new File("src/main/resources/static/jsesh/")));
}


Expand Down

0 comments on commit 0099ad9

Please sign in to comment.