|
@@ -5,6 +5,8 @@ import java.lang.Boolean;
|
|
|
import java.util.Iterator;
|
|
|
import java.util.List;
|
|
|
import java.util.ArrayList;
|
|
|
+import java.util.HashSet;
|
|
|
+import java.util.Arrays;
|
|
|
import org.crosswire.jsword.passage.VerseRangeFactory;
|
|
|
import org.crosswire.jsword.versification.system.SystemDefault;
|
|
|
import org.crosswire.jsword.versification.BibleBook;
|
|
@@ -29,10 +31,11 @@ import static org.postgresql.pljava.annotation.Function.OnNullInput.RETURNS_NULL
|
|
|
import static org.postgresql.pljava.annotation.Function.Trust.SANDBOXED;
|
|
|
|
|
|
public class PlJavaJSword {
|
|
|
- private static final String DEFAULT_BOOK = "KJV";
|
|
|
+ private static final String DEFAULT_BOOK = "MKJV";
|
|
|
private static final String DEFAULT_VERSIFICATION = "KJV";
|
|
|
private static final Versification kjv = Versifications.instance().getVersification(DEFAULT_VERSIFICATION);
|
|
|
private static final Books BOOKS = Books.installed();
|
|
|
+ private static final HashSet<Character> PUNCTUATION = new HashSet<Character>(Arrays.asList('.', ',', ';', ':', '?'));
|
|
|
private static final Logger logger = LoggerFactory.getLogger(PlJavaJSword.class);
|
|
|
|
|
|
@Function(onNullInput=RETURNS_NULL, effects=IMMUTABLE, trust=SANDBOXED)
|
|
@@ -60,12 +63,14 @@ public class PlJavaJSword {
|
|
|
Element e = (Element)c;
|
|
|
if (e.getName() != "note"){
|
|
|
verse += " " + e.getValue().trim();
|
|
|
- } else {
|
|
|
- verse += " ";
|
|
|
}
|
|
|
} else if (c.getCType() == CType.Text){
|
|
|
- Text t = (Text)c;
|
|
|
- verse += t.getValue().trim();
|
|
|
+ String t = ((Text)c).getValue().trim();
|
|
|
+ if (t.isEmpty() || PUNCTUATION.contains(t.charAt(0))){
|
|
|
+ verse += t;
|
|
|
+ } else {
|
|
|
+ verse += " " + t;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
return verse.trim();
|