|
@@ -55,40 +55,57 @@ public class PlJavaJSword {
|
|
|
return null;
|
|
|
}
|
|
|
}
|
|
|
+ private static String parseText(String text){
|
|
|
+ String t = text.trim();
|
|
|
+ if (t.isEmpty() || PUNCTUATION.contains(t.charAt(0))){
|
|
|
+ return t;
|
|
|
+ } else {
|
|
|
+ return " " + t;
|
|
|
+ }
|
|
|
+ }
|
|
|
private static String parseVerse(Iterator<Content> content){
|
|
|
String verse = "";
|
|
|
while (content.hasNext()){
|
|
|
Content c = content.next();
|
|
|
- if (c.getCType() == CType.Element){
|
|
|
- Element e = (Element)c;
|
|
|
- if (e.getName() != "note"){
|
|
|
- verse += " " + e.getValue().trim();
|
|
|
- }
|
|
|
- } else if (c.getCType() == CType.Text){
|
|
|
- String t = ((Text)c).getValue().trim();
|
|
|
- if (t.isEmpty() || PUNCTUATION.contains(t.charAt(0))){
|
|
|
- verse += t;
|
|
|
- } else {
|
|
|
- verse += " " + t;
|
|
|
- }
|
|
|
+ switch (c.getCType()){
|
|
|
+ case Element:
|
|
|
+ Element e = (Element)c;
|
|
|
+ switch (e.getName()){
|
|
|
+ case "note":
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ logger.info(e.getName() + " " + e.getValue());
|
|
|
+ verse += " " + parseContent(e.getContent().listIterator());
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case Text:
|
|
|
+ verse += parseText(c.getValue());
|
|
|
+ break;
|
|
|
}
|
|
|
}
|
|
|
return verse.trim();
|
|
|
}
|
|
|
- private static String parseContent(Iterator<Content> content)
|
|
|
- {
|
|
|
- List<String> ret = new ArrayList<String>();
|
|
|
- while (content.hasNext()){
|
|
|
- Content c = content.next();
|
|
|
- if (c.getCType() == CType.Element){
|
|
|
- Element e = (Element)c;
|
|
|
- if (e.getName() == "verse"){
|
|
|
- String part = parseVerse(e.getContent().listIterator());
|
|
|
- ret.add(part);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- return String.join(" ", ret);
|
|
|
+ private static String parseContent(Iterator<Content> content){
|
|
|
+ List<String> ret = new ArrayList<String>();
|
|
|
+ while (content.hasNext()){
|
|
|
+ Content c = content.next();
|
|
|
+ switch(c.getCType()){
|
|
|
+ case Element:
|
|
|
+ Element e = (Element)c;
|
|
|
+ switch (e.getName()){
|
|
|
+ case "verse":
|
|
|
+ case "q":
|
|
|
+ String part = parseVerse(e.getContent().listIterator());
|
|
|
+ ret.add(part);
|
|
|
+ default:
|
|
|
+ logger.warn(e.getName() + " " + e.getValue());
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case Text:
|
|
|
+ ret.add(parseText(c.getValue()).trim());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return String.join(" ", ret);
|
|
|
}
|
|
|
@Function(onNullInput=RETURNS_NULL, effects=IMMUTABLE, trust=SANDBOXED)
|
|
|
public static String getText(String translation, String reference) throws BookException {
|