[jsword-svn] r1003 - trunk/jsword/src/main/java/org/crosswire/jsword/book

dmsmith at crosswire.org dmsmith at crosswire.org
Tue Feb 14 14:25:00 MST 2006


Author: dmsmith
Date: 2006-02-14 14:24:58 -0700 (Tue, 14 Feb 2006)
New Revision: 1003

Modified:
   trunk/jsword/src/main/java/org/crosswire/jsword/book/OSISUtil.java
Log:
Bug fix in ThML Code.
Whitespace improvements.

Modified: trunk/jsword/src/main/java/org/crosswire/jsword/book/OSISUtil.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/OSISUtil.java	2006-02-14 21:23:09 UTC (rev 1002)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/OSISUtil.java	2006-02-14 21:24:58 UTC (rev 1003)
@@ -113,6 +113,27 @@
      */
     public static final String MORPH_STRONGS = "x-StrongsMorph:T"; //$NON-NLS-1$
 
+    /**
+     * Constant to help narrow down what we use "q" for. In this case: blockquote
+     */
+    public static final String Q_BLOCK = "blockquote"; //$NON-NLS-1$
+
+    /**
+     * Constant to help narrow down what we use "q" for. In this case: citation
+     */
+    public static final String Q_CITATION = "citation"; //$NON-NLS-1$
+
+    /**
+     * Constant to help narrow down what we use "q" for. In this case: embedded
+     */
+    public static final String Q_EMBEDDED = "embedded"; //$NON-NLS-1$
+
+    /**
+     * Constant to help narrow down what we use "list" for.
+     */
+    public static final String LIST_ORDERED = "x-ordered"; //$NON-NLS-1$
+    public static final String LIST_UNORDERED = "x-unordered"; //$NON-NLS-1$
+
     public static final String OSIS_ELEMENT_TITLE = "title"; //$NON-NLS-1$
     public static final String OSIS_ELEMENT_TABLE = "table"; //$NON-NLS-1$
     public static final String OSIS_ELEMENT_SPEECH = "speech"; //$NON-NLS-1$
@@ -148,6 +169,8 @@
     public static final String OSIS_ATTR_EID = "eID"; //$NON-NLS-1$
     public static final String ATTRIBUTE_W_LEMMA = "lemma"; //$NON-NLS-1$
     public static final String ATTRIBUTE_HI_TYPE = "type"; //$NON-NLS-1$
+    public static final String ATTRIBUTE_Q_TYPE = "type"; //$NON-NLS-1$
+    public static final String ATTRIBUTE_LIST_TYPE = "type"; //$NON-NLS-1$
     public static final String ATTRIBUTE_SEG_TYPE = "type"; //$NON-NLS-1$
     public static final String ATTRIBUTE_SEG_SUBTYPE = "subType"; //$NON-NLS-1$
     public static final String ATTRIBUTE_REFERENCE_OSISREF = "osisRef"; //$NON-NLS-1$



More information about the jsword-svn mailing list