<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.crosswire.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bdumont</id>
		<title>CrossWire Bible Society - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.crosswire.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bdumont"/>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/Special:Contributions/Bdumont"/>
		<updated>2026-05-14T14:22:03Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.7</generator>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=OSIS_Genbooks&amp;diff=12463</id>
		<title>OSIS Genbooks</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=OSIS_Genbooks&amp;diff=12463"/>
				<updated>2013-02-26T13:10:45Z</updated>
		
		<summary type="html">&lt;p&gt;Bdumont: /* External Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Introduction=&lt;br /&gt;
Much of what follows applies to any OSIS file, but there are a few features unique to genbooks (mainly in structure). This document aims to provide a complete, though not exhaustive, account of how to encode an OSIS genbook to become a SWORD module. &lt;br /&gt;
&lt;br /&gt;
Keep in mind that, as with any XML document, elements are arranged hierarchically. The root node ends with the &amp;lt;/osis&amp;gt; element, so the rest of the document occurs within that container. Within that is the Work node. Within that is the Header and then the Body of the text, which are parallel to each other. For a complete OSIS XML file, see Example OSIS Genbook below.&lt;br /&gt;
&lt;br /&gt;
=Root Node=&lt;br /&gt;
The root node for a Genbook is the same as any other OSIS document.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;osis xsi:schemaLocation=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace &lt;br /&gt;
      http://www.bibletechnologies.net/osisCore.2.1.1.xsd&amp;quot; &lt;br /&gt;
      xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot; &lt;br /&gt;
      xmlns=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/osis&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Work Container=&lt;br /&gt;
&lt;br /&gt;
The Work container for a Genbook is the same as any other OSIS document except the reference system (osisRefWork) is simply &amp;quot;book&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;osisText osisRefWork=&amp;quot;book&amp;quot; xml:lang=&amp;quot;en&amp;quot; osisIDWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/osisText&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Header=&lt;br /&gt;
The Header should contain work elements for the current work and any other works to which this document links. In this example, the Bible is linked through Scripture references, and the KJV default reference scheme is used. More detailed information can be added, but the following is sufficient for a simple book with one author.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;header&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;OSISGenbook&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;creator role=&amp;quot;aut&amp;quot;&amp;gt;Author's Name&amp;lt;/creator&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;Bible&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;refSystem&amp;gt;Bible&amp;lt;/refSystem&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/header&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Body=&lt;br /&gt;
==Basic Structure==&lt;br /&gt;
A &amp;lt;body&amp;gt; element is not used in OSIS. Instead, the body consists of &amp;lt;nowiki&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/nowiki&amp;gt; elements in a hierarchical structure. If you are encoding a collection of works by the same author, you can use the element &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;bookGroup&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; for the outer container. Otherwise start with &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;book&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;. The following represents several levels of containers.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div type=&amp;quot;book&amp;quot; osisID=&amp;quot;Book&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;div type=&amp;quot;majorSection&amp;quot; osisID=&amp;quot;majorSection 1&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;div type=&amp;quot;chapter&amp;quot; osisID=&amp;quot;Chapter 1&amp;quot;&amp;gt; &lt;br /&gt;
         &amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;div type=&amp;quot;subSection&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
         &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
   &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Of course you decide what is in the osisID (within the bounds of what the schema allows--basically you should stick to letters, numbers, and spaces), and the &amp;lt;title&amp;gt; element can be used to create titles for each chapter, etc. You may define your hierarchy to as much detail as you like. However, remember that readers of SWORD genbooks can only read one container at a time, so if you define lots of subsections it forces the reader to flip through them. If those parts are short, consider just adding section titles and limiting your containers to chapters for ease of reading.&lt;br /&gt;
&lt;br /&gt;
==Basic Formatting==&lt;br /&gt;
===Titles===&lt;br /&gt;
Titles are defined using the &amp;lt;title&amp;gt; element: &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;title&amp;gt;Title Name&amp;lt;/title&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Paragraphs===&lt;br /&gt;
Paragraphs are defined using the &amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;&amp;lt;/nowiki&amp;gt; element.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;p&amp;gt;Your paragraph goes here.&amp;lt;/p&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Italic Text===&lt;br /&gt;
For italics, use the &amp;lt;nowiki&amp;gt;&amp;lt;hi type=&amp;quot;italic&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; element.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;hi type=&amp;quot;italic&amp;quot;&amp;gt;Italic text&amp;lt;/hi&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Bold Text===&lt;br /&gt;
To make text display in bold type, use the &amp;lt;nowiki&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; element.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Bold text&amp;lt;/hi&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Superscript and Subscript===&lt;br /&gt;
To make text superscript and subscript, just use the &amp;lt;nowiki&amp;gt;&amp;lt;hi&amp;gt;&amp;lt;/nowiki&amp;gt; element with the type defined as &amp;quot;super&amp;quot; for superscript text and &amp;quot;sub&amp;quot; for subscript text.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;hi type=&amp;quot;super&amp;quot;&amp;gt;Superscript text&amp;lt;/hi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hi type=&amp;quot;sub&amp;quot;&amp;gt;Subscript text&amp;lt;/hi&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Footnotes and Endnotes==&lt;br /&gt;
Footnotes and endnotes are encoded in the same way except for their type name. Both use the &amp;lt;nowiki&amp;gt;&amp;lt;note&amp;gt;&amp;lt;/nowiki&amp;gt; element. Using the &amp;quot;n&amp;quot; attribute you can define the number, letter, or symbol which you want to appear for the note, but not all front-ends will display that.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;note type=&amp;quot;x-footnote&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;Footnote text&amp;lt;/note&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;note type=&amp;quot;x-endnote&amp;quot; n=&amp;quot;i&amp;quot;&amp;gt;Endnote text&amp;lt;/note&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Scripture References and Other Links==&lt;br /&gt;
===Scripture References===&lt;br /&gt;
Scripture references may be encoded as links which some front-ends will use to open that reference in a Bible window. This is done using the &amp;lt;nowiki&amp;gt;&amp;lt;reference&amp;gt;&amp;lt;/nowiki&amp;gt; element with the attribute &amp;quot;osisRef&amp;quot; defining the target verse or passage. Note the variety of possibilities for these kinds of references below.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Gen.1.1&amp;quot;&amp;gt;Genesis 1:1&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Ps.119&amp;quot;&amp;gt;Psalm 119&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Prov.1-Prov.9&amp;quot;&amp;gt;Proverbs 1-9&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;2Cor.6.14-2Cor.7.1&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Bible book names are those abbreviations found in the OSIS manual (they basically follow the SBL abbreviations), and each portion of the reference is separated by a period. In a range of verses the book and chapter must be repeated and separated by a dash.&lt;br /&gt;
===Internal Links===&lt;br /&gt;
Links from an OSIS module to a non-verse-keyed OSIS module uses an osisRef of the format:&lt;br /&gt;
&lt;br /&gt;
Module:Div1.Div2.Div3&lt;br /&gt;
&lt;br /&gt;
Hence, if the module &amp;quot;EarlyFathers&amp;quot; were OSIS, the introduction page may look like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot; osisID=&amp;quot;Introduction&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;The Early Church Fathers Series&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
This module is a massive 37-volume compendium of writings of the early church&lt;br /&gt;
fathers including &amp;lt;reference osisRef=&amp;quot;EarlyFathers:ANF01.Ignatius&amp;quot;&amp;gt;Ignatius&amp;lt;/reference&amp;gt;, &amp;lt;reference osisRef=&amp;quot;EarlyFathers:ANF01.Justin_Martyr&amp;quot;&amp;gt;Justin Martyr&amp;lt;/reference&amp;gt;, &amp;lt;reference osisRef=&amp;quot;EarlyFathers:ANF01.Irenæus&amp;quot;&amp;gt;Irenaeus&amp;lt;/reference&amp;gt;, and &amp;lt;reference osisRef=&amp;quot;EarlyFathers:TOC&amp;quot;&amp;gt;many others&amp;lt;/reference&amp;gt;.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===External Links===&lt;br /&gt;
Links from one OSIS genbook to another OSIS genbook uses the same syntax as the internal links, above.&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
You can easily place images in your books using the &amp;lt;figure/&amp;gt; element. This element is &amp;quot;milestoned,&amp;quot; meaning it isn't a container. The forward slash near the end signals that fact. Use the &amp;quot;src&amp;quot; attribute to define the location of the image relative to the compiled module. In the example below, the image &amp;quot;crosswire.jpg&amp;quot; resides in a folder &amp;quot;images&amp;quot; in the same folder as the compiled module.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;figure src=&amp;quot;images/crosswire.jpg&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tables==&lt;br /&gt;
Tables require a bit of work to get set up but can be useful for some purposes. The entire table is contained in a &amp;lt;table&amp;gt; element, and each row is then contained in a &amp;lt;row&amp;gt; element. For each column in each row a &amp;lt;cell&amp;gt; element contains the text of that cell. The following table creates column labels in bold type and includes two columns and two rows below the label row.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;table&amp;gt;&lt;br /&gt;
   &amp;lt;row&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 1 Label&amp;lt;/hi&amp;gt;&amp;lt;/cell&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 2 Label&amp;lt;/hi&amp;gt;&amp;lt;/cell&amp;gt;&lt;br /&gt;
   &amp;lt;/row&amp;gt;&lt;br /&gt;
   &amp;lt;row&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 1, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 2, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
   &amp;lt;/row&amp;gt;&lt;br /&gt;
   &amp;lt;row&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 1, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 2, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
   &amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
==Foreign Languages==&lt;br /&gt;
Sometimes you may have multiple languages in a work, and in that case you should use the &amp;lt;nowiki&amp;gt;&amp;lt;foreign&amp;gt;&amp;lt;/nowiki&amp;gt; element. That way if you have different fonts defined for different languages you are able to make the display more appropriate for the reader. A Hebrew example looks like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;foreign xml:lang=&amp;quot;he&amp;quot;&amp;gt;עִבְרִי&amp;lt;/foreign&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You have to define the language of the language that is foreign to the module's language using the &amp;quot;xml:lang&amp;quot; attribute.&lt;br /&gt;
=Example OSIS Genbook=&lt;br /&gt;
The following is the text of a valid OSIS XML file which serves as a template for an OSIS Genbook for SWORD. Not all possible features are demonstrated here, but the file serves as an example of how to encode a Genbook. You should be able to copy the contents to a text editor, save it to a file as *.xml, and validate it against the OSIS schema.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;osis xsi:schemaLocation=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace &lt;br /&gt;
      http://www.bibletechnologies.net/osisCore.2.1.1.xsd&amp;quot; &lt;br /&gt;
      xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot; &lt;br /&gt;
      xmlns=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;osisText osisRefWork=&amp;quot;book&amp;quot; xml:lang=&amp;quot;en&amp;quot; osisIDWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;header&amp;gt;&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;OSISGenbook&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;creator role=&amp;quot;aut&amp;quot;&amp;gt;Author's Name&amp;lt;/creator&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;Bible&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;refSystem&amp;gt;Bible&amp;lt;/refSystem&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&amp;lt;/header&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;book&amp;quot; osisID=&amp;quot;Book Title&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Book Title&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;title type=&amp;quot;x-author&amp;quot;&amp;gt;Author's Name&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Copyright&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&amp;lt;figure src=&amp;quot;images/crosswire.jpg&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;chapter&amp;quot; osisID=&amp;quot;Chapter 1&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is Chapter 1, the introduction. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Gen.1.1&amp;quot;&amp;gt;Genesis 1:1&amp;lt;/reference&amp;gt; is the first verse in the Bible. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Rev.22.21&amp;quot;&amp;gt;Rev 22:21&amp;lt;/reference&amp;gt; is the last verse in the Bible. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Ps.119&amp;quot;&amp;gt;Psalm 119&amp;lt;/reference&amp;gt; is the longest chapter in the Bible. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Prov.1-Prov.9&amp;quot;&amp;gt;Proverbs 1-9&amp;lt;/reference&amp;gt; introduce the book of Proverbs. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;John.1-John.1.18&amp;quot;&amp;gt;John 1:1-18&amp;lt;/reference&amp;gt; introduces the book of John. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;2Cor.6.14-2Cor.7.1&amp;quot;&amp;gt;2 Corinthians 6:14-7:1&amp;lt;/reference&amp;gt; teaches about holiness.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 1&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 1, section 1.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
&amp;lt;row&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;&lt;br /&gt;
&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 1 Label&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;&lt;br /&gt;
&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 2 Label&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;row&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 1, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 2, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;row&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 1, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 2, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 2&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 1, section 2.&amp;lt;note type=&amp;quot;x-footnote&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;Footnote&amp;lt;/note&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;chapter&amp;quot; osisID=&amp;quot;Chapter 2&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is Chapter 2, the introduction.&amp;lt;note type=&amp;quot;x-endnote&amp;quot; n=&amp;quot;i&amp;quot;&amp;gt;Endnote&amp;lt;/note&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 1&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 2, section 1.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 2&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 2, section 2.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default &amp;lt;hi type=&amp;quot;italic&amp;quot;&amp;gt;Italics&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default &amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Bold&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default&amp;lt;hi type=&amp;quot;super&amp;quot;&amp;gt;SuperScript&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default&amp;lt;hi type=&amp;quot;sub&amp;quot;&amp;gt;Subscript&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is Hebrew: &amp;lt;foreign xml:lang=&amp;quot;he&amp;quot;&amp;gt;עִבְרִי&amp;lt;/foreign&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/osisText&amp;gt;&lt;br /&gt;
&amp;lt;/osis&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Guides|OSIS Genbooks]]&lt;br /&gt;
[[Category:OSIS]]&lt;br /&gt;
[[Category:Genbook]]&lt;/div&gt;</summary>
		<author><name>Bdumont</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=OSIS_Genbooks&amp;diff=12462</id>
		<title>OSIS Genbooks</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=OSIS_Genbooks&amp;diff=12462"/>
				<updated>2013-02-26T13:07:16Z</updated>
		
		<summary type="html">&lt;p&gt;Bdumont: /* Internal Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Introduction=&lt;br /&gt;
Much of what follows applies to any OSIS file, but there are a few features unique to genbooks (mainly in structure). This document aims to provide a complete, though not exhaustive, account of how to encode an OSIS genbook to become a SWORD module. &lt;br /&gt;
&lt;br /&gt;
Keep in mind that, as with any XML document, elements are arranged hierarchically. The root node ends with the &amp;lt;/osis&amp;gt; element, so the rest of the document occurs within that container. Within that is the Work node. Within that is the Header and then the Body of the text, which are parallel to each other. For a complete OSIS XML file, see Example OSIS Genbook below.&lt;br /&gt;
&lt;br /&gt;
=Root Node=&lt;br /&gt;
The root node for a Genbook is the same as any other OSIS document.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;osis xsi:schemaLocation=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace &lt;br /&gt;
      http://www.bibletechnologies.net/osisCore.2.1.1.xsd&amp;quot; &lt;br /&gt;
      xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot; &lt;br /&gt;
      xmlns=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/osis&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Work Container=&lt;br /&gt;
&lt;br /&gt;
The Work container for a Genbook is the same as any other OSIS document except the reference system (osisRefWork) is simply &amp;quot;book&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;osisText osisRefWork=&amp;quot;book&amp;quot; xml:lang=&amp;quot;en&amp;quot; osisIDWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/osisText&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Header=&lt;br /&gt;
The Header should contain work elements for the current work and any other works to which this document links. In this example, the Bible is linked through Scripture references, and the KJV default reference scheme is used. More detailed information can be added, but the following is sufficient for a simple book with one author.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;header&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;OSISGenbook&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;creator role=&amp;quot;aut&amp;quot;&amp;gt;Author's Name&amp;lt;/creator&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;Bible&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;refSystem&amp;gt;Bible&amp;lt;/refSystem&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/header&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Body=&lt;br /&gt;
==Basic Structure==&lt;br /&gt;
A &amp;lt;body&amp;gt; element is not used in OSIS. Instead, the body consists of &amp;lt;nowiki&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/nowiki&amp;gt; elements in a hierarchical structure. If you are encoding a collection of works by the same author, you can use the element &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;bookGroup&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; for the outer container. Otherwise start with &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;book&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;. The following represents several levels of containers.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div type=&amp;quot;book&amp;quot; osisID=&amp;quot;Book&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;div type=&amp;quot;majorSection&amp;quot; osisID=&amp;quot;majorSection 1&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;div type=&amp;quot;chapter&amp;quot; osisID=&amp;quot;Chapter 1&amp;quot;&amp;gt; &lt;br /&gt;
         &amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;div type=&amp;quot;subSection&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
         &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
   &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Of course you decide what is in the osisID (within the bounds of what the schema allows--basically you should stick to letters, numbers, and spaces), and the &amp;lt;title&amp;gt; element can be used to create titles for each chapter, etc. You may define your hierarchy to as much detail as you like. However, remember that readers of SWORD genbooks can only read one container at a time, so if you define lots of subsections it forces the reader to flip through them. If those parts are short, consider just adding section titles and limiting your containers to chapters for ease of reading.&lt;br /&gt;
&lt;br /&gt;
==Basic Formatting==&lt;br /&gt;
===Titles===&lt;br /&gt;
Titles are defined using the &amp;lt;title&amp;gt; element: &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;title&amp;gt;Title Name&amp;lt;/title&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Paragraphs===&lt;br /&gt;
Paragraphs are defined using the &amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;&amp;lt;/nowiki&amp;gt; element.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;p&amp;gt;Your paragraph goes here.&amp;lt;/p&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Italic Text===&lt;br /&gt;
For italics, use the &amp;lt;nowiki&amp;gt;&amp;lt;hi type=&amp;quot;italic&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; element.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;hi type=&amp;quot;italic&amp;quot;&amp;gt;Italic text&amp;lt;/hi&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Bold Text===&lt;br /&gt;
To make text display in bold type, use the &amp;lt;nowiki&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; element.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Bold text&amp;lt;/hi&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Superscript and Subscript===&lt;br /&gt;
To make text superscript and subscript, just use the &amp;lt;nowiki&amp;gt;&amp;lt;hi&amp;gt;&amp;lt;/nowiki&amp;gt; element with the type defined as &amp;quot;super&amp;quot; for superscript text and &amp;quot;sub&amp;quot; for subscript text.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;hi type=&amp;quot;super&amp;quot;&amp;gt;Superscript text&amp;lt;/hi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hi type=&amp;quot;sub&amp;quot;&amp;gt;Subscript text&amp;lt;/hi&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Footnotes and Endnotes==&lt;br /&gt;
Footnotes and endnotes are encoded in the same way except for their type name. Both use the &amp;lt;nowiki&amp;gt;&amp;lt;note&amp;gt;&amp;lt;/nowiki&amp;gt; element. Using the &amp;quot;n&amp;quot; attribute you can define the number, letter, or symbol which you want to appear for the note, but not all front-ends will display that.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;note type=&amp;quot;x-footnote&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;Footnote text&amp;lt;/note&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;note type=&amp;quot;x-endnote&amp;quot; n=&amp;quot;i&amp;quot;&amp;gt;Endnote text&amp;lt;/note&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Scripture References and Other Links==&lt;br /&gt;
===Scripture References===&lt;br /&gt;
Scripture references may be encoded as links which some front-ends will use to open that reference in a Bible window. This is done using the &amp;lt;nowiki&amp;gt;&amp;lt;reference&amp;gt;&amp;lt;/nowiki&amp;gt; element with the attribute &amp;quot;osisRef&amp;quot; defining the target verse or passage. Note the variety of possibilities for these kinds of references below.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Gen.1.1&amp;quot;&amp;gt;Genesis 1:1&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Ps.119&amp;quot;&amp;gt;Psalm 119&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Prov.1-Prov.9&amp;quot;&amp;gt;Proverbs 1-9&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;2Cor.6.14-2Cor.7.1&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Bible book names are those abbreviations found in the OSIS manual (they basically follow the SBL abbreviations), and each portion of the reference is separated by a period. In a range of verses the book and chapter must be repeated and separated by a dash.&lt;br /&gt;
===Internal Links===&lt;br /&gt;
Links from an OSIS module to a non-verse-keyed OSIS module uses an osisRef of the format:&lt;br /&gt;
&lt;br /&gt;
Module:Div1.Div2.Div3&lt;br /&gt;
&lt;br /&gt;
Hence, if the module &amp;quot;EarlyFathers&amp;quot; were OSIS, the introduction page may look like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot; osisID=&amp;quot;Introduction&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;The Early Church Fathers Series&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
This module is a massive 37-volume compendium of writings of the early church&lt;br /&gt;
fathers including &amp;lt;reference osisRef=&amp;quot;EarlyFathers:ANF01.Ignatius&amp;quot;&amp;gt;Ignatius&amp;lt;/reference&amp;gt;, &amp;lt;reference osisRef=&amp;quot;EarlyFathers:ANF01.Justin_Martyr&amp;quot;&amp;gt;Justin Martyr&amp;lt;/reference&amp;gt;, &amp;lt;reference osisRef=&amp;quot;EarlyFathers:ANF01.Irenæus&amp;quot;&amp;gt;Irenaeus&amp;lt;/reference&amp;gt;, and &amp;lt;reference osisRef=&amp;quot;EarlyFathers:TOC&amp;quot;&amp;gt;many others&amp;lt;/reference&amp;gt;.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===External Links===&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
You can easily place images in your books using the &amp;lt;figure/&amp;gt; element. This element is &amp;quot;milestoned,&amp;quot; meaning it isn't a container. The forward slash near the end signals that fact. Use the &amp;quot;src&amp;quot; attribute to define the location of the image relative to the compiled module. In the example below, the image &amp;quot;crosswire.jpg&amp;quot; resides in a folder &amp;quot;images&amp;quot; in the same folder as the compiled module.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;figure src=&amp;quot;images/crosswire.jpg&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tables==&lt;br /&gt;
Tables require a bit of work to get set up but can be useful for some purposes. The entire table is contained in a &amp;lt;table&amp;gt; element, and each row is then contained in a &amp;lt;row&amp;gt; element. For each column in each row a &amp;lt;cell&amp;gt; element contains the text of that cell. The following table creates column labels in bold type and includes two columns and two rows below the label row.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;table&amp;gt;&lt;br /&gt;
   &amp;lt;row&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 1 Label&amp;lt;/hi&amp;gt;&amp;lt;/cell&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 2 Label&amp;lt;/hi&amp;gt;&amp;lt;/cell&amp;gt;&lt;br /&gt;
   &amp;lt;/row&amp;gt;&lt;br /&gt;
   &amp;lt;row&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 1, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 2, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
   &amp;lt;/row&amp;gt;&lt;br /&gt;
   &amp;lt;row&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 1, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 2, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
   &amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
==Foreign Languages==&lt;br /&gt;
Sometimes you may have multiple languages in a work, and in that case you should use the &amp;lt;nowiki&amp;gt;&amp;lt;foreign&amp;gt;&amp;lt;/nowiki&amp;gt; element. That way if you have different fonts defined for different languages you are able to make the display more appropriate for the reader. A Hebrew example looks like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;foreign xml:lang=&amp;quot;he&amp;quot;&amp;gt;עִבְרִי&amp;lt;/foreign&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You have to define the language of the language that is foreign to the module's language using the &amp;quot;xml:lang&amp;quot; attribute.&lt;br /&gt;
=Example OSIS Genbook=&lt;br /&gt;
The following is the text of a valid OSIS XML file which serves as a template for an OSIS Genbook for SWORD. Not all possible features are demonstrated here, but the file serves as an example of how to encode a Genbook. You should be able to copy the contents to a text editor, save it to a file as *.xml, and validate it against the OSIS schema.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;osis xsi:schemaLocation=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace &lt;br /&gt;
      http://www.bibletechnologies.net/osisCore.2.1.1.xsd&amp;quot; &lt;br /&gt;
      xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot; &lt;br /&gt;
      xmlns=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;osisText osisRefWork=&amp;quot;book&amp;quot; xml:lang=&amp;quot;en&amp;quot; osisIDWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;header&amp;gt;&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;OSISGenbook&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;creator role=&amp;quot;aut&amp;quot;&amp;gt;Author's Name&amp;lt;/creator&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;Bible&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;refSystem&amp;gt;Bible&amp;lt;/refSystem&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&amp;lt;/header&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;book&amp;quot; osisID=&amp;quot;Book Title&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Book Title&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;title type=&amp;quot;x-author&amp;quot;&amp;gt;Author's Name&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Copyright&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&amp;lt;figure src=&amp;quot;images/crosswire.jpg&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;chapter&amp;quot; osisID=&amp;quot;Chapter 1&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is Chapter 1, the introduction. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Gen.1.1&amp;quot;&amp;gt;Genesis 1:1&amp;lt;/reference&amp;gt; is the first verse in the Bible. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Rev.22.21&amp;quot;&amp;gt;Rev 22:21&amp;lt;/reference&amp;gt; is the last verse in the Bible. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Ps.119&amp;quot;&amp;gt;Psalm 119&amp;lt;/reference&amp;gt; is the longest chapter in the Bible. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Prov.1-Prov.9&amp;quot;&amp;gt;Proverbs 1-9&amp;lt;/reference&amp;gt; introduce the book of Proverbs. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;John.1-John.1.18&amp;quot;&amp;gt;John 1:1-18&amp;lt;/reference&amp;gt; introduces the book of John. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;2Cor.6.14-2Cor.7.1&amp;quot;&amp;gt;2 Corinthians 6:14-7:1&amp;lt;/reference&amp;gt; teaches about holiness.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 1&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 1, section 1.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
&amp;lt;row&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;&lt;br /&gt;
&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 1 Label&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;&lt;br /&gt;
&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 2 Label&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;row&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 1, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 2, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;row&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 1, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 2, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 2&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 1, section 2.&amp;lt;note type=&amp;quot;x-footnote&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;Footnote&amp;lt;/note&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;chapter&amp;quot; osisID=&amp;quot;Chapter 2&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is Chapter 2, the introduction.&amp;lt;note type=&amp;quot;x-endnote&amp;quot; n=&amp;quot;i&amp;quot;&amp;gt;Endnote&amp;lt;/note&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 1&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 2, section 1.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 2&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 2, section 2.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default &amp;lt;hi type=&amp;quot;italic&amp;quot;&amp;gt;Italics&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default &amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Bold&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default&amp;lt;hi type=&amp;quot;super&amp;quot;&amp;gt;SuperScript&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default&amp;lt;hi type=&amp;quot;sub&amp;quot;&amp;gt;Subscript&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is Hebrew: &amp;lt;foreign xml:lang=&amp;quot;he&amp;quot;&amp;gt;עִבְרִי&amp;lt;/foreign&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/osisText&amp;gt;&lt;br /&gt;
&amp;lt;/osis&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Guides|OSIS Genbooks]]&lt;br /&gt;
[[Category:OSIS]]&lt;br /&gt;
[[Category:Genbook]]&lt;/div&gt;</summary>
		<author><name>Bdumont</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=OSIS_Genbooks&amp;diff=12461</id>
		<title>OSIS Genbooks</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=OSIS_Genbooks&amp;diff=12461"/>
				<updated>2013-02-26T13:05:47Z</updated>
		
		<summary type="html">&lt;p&gt;Bdumont: /* Internal Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Introduction=&lt;br /&gt;
Much of what follows applies to any OSIS file, but there are a few features unique to genbooks (mainly in structure). This document aims to provide a complete, though not exhaustive, account of how to encode an OSIS genbook to become a SWORD module. &lt;br /&gt;
&lt;br /&gt;
Keep in mind that, as with any XML document, elements are arranged hierarchically. The root node ends with the &amp;lt;/osis&amp;gt; element, so the rest of the document occurs within that container. Within that is the Work node. Within that is the Header and then the Body of the text, which are parallel to each other. For a complete OSIS XML file, see Example OSIS Genbook below.&lt;br /&gt;
&lt;br /&gt;
=Root Node=&lt;br /&gt;
The root node for a Genbook is the same as any other OSIS document.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;osis xsi:schemaLocation=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace &lt;br /&gt;
      http://www.bibletechnologies.net/osisCore.2.1.1.xsd&amp;quot; &lt;br /&gt;
      xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot; &lt;br /&gt;
      xmlns=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/osis&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Work Container=&lt;br /&gt;
&lt;br /&gt;
The Work container for a Genbook is the same as any other OSIS document except the reference system (osisRefWork) is simply &amp;quot;book&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;osisText osisRefWork=&amp;quot;book&amp;quot; xml:lang=&amp;quot;en&amp;quot; osisIDWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/osisText&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Header=&lt;br /&gt;
The Header should contain work elements for the current work and any other works to which this document links. In this example, the Bible is linked through Scripture references, and the KJV default reference scheme is used. More detailed information can be added, but the following is sufficient for a simple book with one author.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;header&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;OSISGenbook&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;creator role=&amp;quot;aut&amp;quot;&amp;gt;Author's Name&amp;lt;/creator&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;Bible&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;refSystem&amp;gt;Bible&amp;lt;/refSystem&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/header&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Body=&lt;br /&gt;
==Basic Structure==&lt;br /&gt;
A &amp;lt;body&amp;gt; element is not used in OSIS. Instead, the body consists of &amp;lt;nowiki&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/nowiki&amp;gt; elements in a hierarchical structure. If you are encoding a collection of works by the same author, you can use the element &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;bookGroup&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; for the outer container. Otherwise start with &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;book&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;. The following represents several levels of containers.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div type=&amp;quot;book&amp;quot; osisID=&amp;quot;Book&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;div type=&amp;quot;majorSection&amp;quot; osisID=&amp;quot;majorSection 1&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;div type=&amp;quot;chapter&amp;quot; osisID=&amp;quot;Chapter 1&amp;quot;&amp;gt; &lt;br /&gt;
         &amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;div type=&amp;quot;subSection&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;/div&amp;gt;&lt;br /&gt;
         &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
   &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Of course you decide what is in the osisID (within the bounds of what the schema allows--basically you should stick to letters, numbers, and spaces), and the &amp;lt;title&amp;gt; element can be used to create titles for each chapter, etc. You may define your hierarchy to as much detail as you like. However, remember that readers of SWORD genbooks can only read one container at a time, so if you define lots of subsections it forces the reader to flip through them. If those parts are short, consider just adding section titles and limiting your containers to chapters for ease of reading.&lt;br /&gt;
&lt;br /&gt;
==Basic Formatting==&lt;br /&gt;
===Titles===&lt;br /&gt;
Titles are defined using the &amp;lt;title&amp;gt; element: &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;title&amp;gt;Title Name&amp;lt;/title&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Paragraphs===&lt;br /&gt;
Paragraphs are defined using the &amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;&amp;lt;/nowiki&amp;gt; element.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;p&amp;gt;Your paragraph goes here.&amp;lt;/p&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Italic Text===&lt;br /&gt;
For italics, use the &amp;lt;nowiki&amp;gt;&amp;lt;hi type=&amp;quot;italic&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; element.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;hi type=&amp;quot;italic&amp;quot;&amp;gt;Italic text&amp;lt;/hi&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Bold Text===&lt;br /&gt;
To make text display in bold type, use the &amp;lt;nowiki&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; element.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Bold text&amp;lt;/hi&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Superscript and Subscript===&lt;br /&gt;
To make text superscript and subscript, just use the &amp;lt;nowiki&amp;gt;&amp;lt;hi&amp;gt;&amp;lt;/nowiki&amp;gt; element with the type defined as &amp;quot;super&amp;quot; for superscript text and &amp;quot;sub&amp;quot; for subscript text.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;hi type=&amp;quot;super&amp;quot;&amp;gt;Superscript text&amp;lt;/hi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hi type=&amp;quot;sub&amp;quot;&amp;gt;Subscript text&amp;lt;/hi&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Footnotes and Endnotes==&lt;br /&gt;
Footnotes and endnotes are encoded in the same way except for their type name. Both use the &amp;lt;nowiki&amp;gt;&amp;lt;note&amp;gt;&amp;lt;/nowiki&amp;gt; element. Using the &amp;quot;n&amp;quot; attribute you can define the number, letter, or symbol which you want to appear for the note, but not all front-ends will display that.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;note type=&amp;quot;x-footnote&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;Footnote text&amp;lt;/note&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;note type=&amp;quot;x-endnote&amp;quot; n=&amp;quot;i&amp;quot;&amp;gt;Endnote text&amp;lt;/note&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Scripture References and Other Links==&lt;br /&gt;
===Scripture References===&lt;br /&gt;
Scripture references may be encoded as links which some front-ends will use to open that reference in a Bible window. This is done using the &amp;lt;nowiki&amp;gt;&amp;lt;reference&amp;gt;&amp;lt;/nowiki&amp;gt; element with the attribute &amp;quot;osisRef&amp;quot; defining the target verse or passage. Note the variety of possibilities for these kinds of references below.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Gen.1.1&amp;quot;&amp;gt;Genesis 1:1&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Ps.119&amp;quot;&amp;gt;Psalm 119&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Prov.1-Prov.9&amp;quot;&amp;gt;Proverbs 1-9&amp;lt;/reference&amp;gt;&lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;2Cor.6.14-2Cor.7.1&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Bible book names are those abbreviations found in the OSIS manual (they basically follow the SBL abbreviations), and each portion of the reference is separated by a period. In a range of verses the book and chapter must be repeated and separated by a dash.&lt;br /&gt;
===Internal Links===&lt;br /&gt;
Links from an OSIS module to a non-verse-keyed OSIS module uses an osisRef of the format:&lt;br /&gt;
&lt;br /&gt;
Module:Div1.Div2.Div3&lt;br /&gt;
&lt;br /&gt;
Hence, if the module &amp;quot;EarlyFathers&amp;quot; were OSIS, the introduction page may look like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot; osisID=&amp;quot;Introduction&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;The Early Church Fathers Series&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
This module is a massive 37-volume compendium of writings of the early church&lt;br /&gt;
fathers including &amp;lt;reference osisRef=&amp;quot;EarlyFathers:ANF01.Ignatius&amp;quot;&amp;gt;Ignatius&amp;lt;/reference&amp;gt;, &amp;lt;reference osisRef=&amp;quot;EarlyFathers:ANF01.Justin_Martyr&amp;quot;&amp;gt;Justin Martyr&amp;lt;/reference&amp;gt;, &amp;lt;reference osisRef=&amp;quot;EarlyFathers:ANF01.Irenæus&amp;quot;&amp;gt;Irenaeus&amp;lt;/reference&amp;gt;, and &amp;lt;reference osisRef=&amp;quot;EarlyFathers:TOC&amp;quot;&amp;gt;many others&amp;lt;/reference&amp;gt;.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===External Links===&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
You can easily place images in your books using the &amp;lt;figure/&amp;gt; element. This element is &amp;quot;milestoned,&amp;quot; meaning it isn't a container. The forward slash near the end signals that fact. Use the &amp;quot;src&amp;quot; attribute to define the location of the image relative to the compiled module. In the example below, the image &amp;quot;crosswire.jpg&amp;quot; resides in a folder &amp;quot;images&amp;quot; in the same folder as the compiled module.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;figure src=&amp;quot;images/crosswire.jpg&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tables==&lt;br /&gt;
Tables require a bit of work to get set up but can be useful for some purposes. The entire table is contained in a &amp;lt;table&amp;gt; element, and each row is then contained in a &amp;lt;row&amp;gt; element. For each column in each row a &amp;lt;cell&amp;gt; element contains the text of that cell. The following table creates column labels in bold type and includes two columns and two rows below the label row.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;table&amp;gt;&lt;br /&gt;
   &amp;lt;row&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 1 Label&amp;lt;/hi&amp;gt;&amp;lt;/cell&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 2 Label&amp;lt;/hi&amp;gt;&amp;lt;/cell&amp;gt;&lt;br /&gt;
   &amp;lt;/row&amp;gt;&lt;br /&gt;
   &amp;lt;row&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 1, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 2, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
   &amp;lt;/row&amp;gt;&lt;br /&gt;
   &amp;lt;row&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 1, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
      &amp;lt;cell&amp;gt;Column 2, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
   &amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
==Foreign Languages==&lt;br /&gt;
Sometimes you may have multiple languages in a work, and in that case you should use the &amp;lt;nowiki&amp;gt;&amp;lt;foreign&amp;gt;&amp;lt;/nowiki&amp;gt; element. That way if you have different fonts defined for different languages you are able to make the display more appropriate for the reader. A Hebrew example looks like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;foreign xml:lang=&amp;quot;he&amp;quot;&amp;gt;עִבְרִי&amp;lt;/foreign&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You have to define the language of the language that is foreign to the module's language using the &amp;quot;xml:lang&amp;quot; attribute.&lt;br /&gt;
=Example OSIS Genbook=&lt;br /&gt;
The following is the text of a valid OSIS XML file which serves as a template for an OSIS Genbook for SWORD. Not all possible features are demonstrated here, but the file serves as an example of how to encode a Genbook. You should be able to copy the contents to a text editor, save it to a file as *.xml, and validate it against the OSIS schema.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;osis xsi:schemaLocation=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace &lt;br /&gt;
      http://www.bibletechnologies.net/osisCore.2.1.1.xsd&amp;quot; &lt;br /&gt;
      xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot; &lt;br /&gt;
      xmlns=&amp;quot;http://www.bibletechnologies.net/2003/OSIS/namespace&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;osisText osisRefWork=&amp;quot;book&amp;quot; xml:lang=&amp;quot;en&amp;quot; osisIDWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;header&amp;gt;&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;WorkID&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;OSISGenbook&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;creator role=&amp;quot;aut&amp;quot;&amp;gt;Author's Name&amp;lt;/creator&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&amp;lt;work osisWork=&amp;quot;Bible&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;refSystem&amp;gt;Bible&amp;lt;/refSystem&amp;gt;&lt;br /&gt;
&amp;lt;/work&amp;gt;&lt;br /&gt;
&amp;lt;/header&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;book&amp;quot; osisID=&amp;quot;Book Title&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Book Title&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;title type=&amp;quot;x-author&amp;quot;&amp;gt;Author's Name&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Copyright&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&amp;lt;figure src=&amp;quot;images/crosswire.jpg&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;chapter&amp;quot; osisID=&amp;quot;Chapter 1&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is Chapter 1, the introduction. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Gen.1.1&amp;quot;&amp;gt;Genesis 1:1&amp;lt;/reference&amp;gt; is the first verse in the Bible. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Rev.22.21&amp;quot;&amp;gt;Rev 22:21&amp;lt;/reference&amp;gt; is the last verse in the Bible. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Ps.119&amp;quot;&amp;gt;Psalm 119&amp;lt;/reference&amp;gt; is the longest chapter in the Bible. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;Prov.1-Prov.9&amp;quot;&amp;gt;Proverbs 1-9&amp;lt;/reference&amp;gt; introduce the book of Proverbs. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;John.1-John.1.18&amp;quot;&amp;gt;John 1:1-18&amp;lt;/reference&amp;gt; introduces the book of John. &lt;br /&gt;
&amp;lt;reference osisRef=&amp;quot;2Cor.6.14-2Cor.7.1&amp;quot;&amp;gt;2 Corinthians 6:14-7:1&amp;lt;/reference&amp;gt; teaches about holiness.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 1&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 1, section 1.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
&amp;lt;row&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;&lt;br /&gt;
&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 1 Label&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;&lt;br /&gt;
&amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Column 2 Label&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;row&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 1, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 2, Row 1&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;row&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 1, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;cell&amp;gt;Column 2, Row 2&amp;lt;/cell&amp;gt;&lt;br /&gt;
&amp;lt;/row&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 2&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 1, section 2.&amp;lt;note type=&amp;quot;x-footnote&amp;quot; n=&amp;quot;1&amp;quot;&amp;gt;Footnote&amp;lt;/note&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;chapter&amp;quot; osisID=&amp;quot;Chapter 2&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is Chapter 2, the introduction.&amp;lt;note type=&amp;quot;x-endnote&amp;quot; n=&amp;quot;i&amp;quot;&amp;gt;Endnote&amp;lt;/note&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 1&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 2, section 1.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Section 2&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is chapter 2, section 2.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default &amp;lt;hi type=&amp;quot;italic&amp;quot;&amp;gt;Italics&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default &amp;lt;hi type=&amp;quot;bold&amp;quot;&amp;gt;Bold&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default&amp;lt;hi type=&amp;quot;super&amp;quot;&amp;gt;SuperScript&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Default&amp;lt;hi type=&amp;quot;sub&amp;quot;&amp;gt;Subscript&amp;lt;/hi&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is Hebrew: &amp;lt;foreign xml:lang=&amp;quot;he&amp;quot;&amp;gt;עִבְרִי&amp;lt;/foreign&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/osisText&amp;gt;&lt;br /&gt;
&amp;lt;/osis&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Guides|OSIS Genbooks]]&lt;br /&gt;
[[Category:OSIS]]&lt;br /&gt;
[[Category:Genbook]]&lt;/div&gt;</summary>
		<author><name>Bdumont</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=EnduserFAQ&amp;diff=8592</id>
		<title>EnduserFAQ</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=EnduserFAQ&amp;diff=8592"/>
				<updated>2010-10-06T11:53:55Z</updated>
		
		<summary type="html">&lt;p&gt;Bdumont: /* How do I do something in MacSword? BibleTime? Xiphos? BibleDesktop? The SWORD Project for Windows? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This FAQ is '''not''' linked from the CrossWire front page. Instead a [http://www.crosswire.org/faq.jsp static copy] is taken from time to time from this page to ensure that the publicly presented FAQ is not easily vandalized, presents in the same style as the main page and does not contain draft text.&lt;br /&gt;
&lt;br /&gt;
==Public Community Forums and other places for help==&lt;br /&gt;
CrossWire has public forums for our users to exchange tips and help each other.  It is likely your question has been asked previously on our forums.  You might even find some unexpected gems or post a few of your own:  http://crosswire.org/forums&lt;br /&gt;
&lt;br /&gt;
http://www.crosswire.org is our main page. Scroll down to see the list of software and links to their home pages. Many applications have their own support systems and FAQs.&lt;br /&gt;
&lt;br /&gt;
We have a support mailing list, sword-support at crosswire.org. Other users can not see your question and answer it and users can not get benefit from previous answers. Therefore the forums are recommended. If you for some reason can not or do not want to use forums you can send private email to our support list. Whatever support tool you use, please read this FAQ and other documentation first.&lt;br /&gt;
&lt;br /&gt;
==End user FAQ==&lt;br /&gt;
Here are some commonly asked questions about the CrossWire Bible Society and The SWORD Project and answers to them.&lt;br /&gt;
&lt;br /&gt;
===Questions about CrossWire===&lt;br /&gt;
&lt;br /&gt;
====What is CrossWire?====&lt;br /&gt;
CrossWire is a non-commercial organization which produces Bible related Free Software. We have several software products. We also have numerous text modules (Bible translations, commentaries, lexicons, ...) which can be used with our software. All products are made by individual volunteers who may or may not know each other's work. Therefore it is important that you first know which product you have questions about. Then you can select the category and question below. If your question is not answered here and you have to ask us directly, please attach as much information about your problem as possible, especially about the product you are using. Considering the volume of mail we receive daily and the few workers we have to answer support emails, vague email and email that asks questions clearly answered on this page are likely to go unanswered.&lt;br /&gt;
&lt;br /&gt;
====When was CrossWire founded?====&lt;br /&gt;
:''Troy, please answer this one, asap''.&lt;br /&gt;
&lt;br /&gt;
====What is SWORD?====&lt;br /&gt;
'''SWORD''' is an [http://en.wikipedia.org/wiki/Application_programming_interface Application Programming Interface] (API) for CrossWire modules. When referring to SWORD it is customary to use all uppercase. It is sometimes referred to as the SWORD engine. It should not be confused with one of our front-end applications called '''The Sword Project for Windows'''.&lt;br /&gt;
&lt;br /&gt;
====Is SWORD the same as e-Sword?====&lt;br /&gt;
&lt;br /&gt;
Short answer: No!&lt;br /&gt;
&lt;br /&gt;
Long answer: CrossWire has no connection with that provider of proprietary Bible Study software for the Windows platform. CrossWire software is open-source and multi-platform.&lt;br /&gt;
&lt;br /&gt;
===Questions about text modules===&lt;br /&gt;
&lt;br /&gt;
====Do you or will you have NIV/NASB/NLT/Message/NKJV/other translation?====&lt;br /&gt;
NASB is under work and will be sold commercially by The Lockman Foundation.&lt;br /&gt;
&lt;br /&gt;
Most other copyright holders, including the publisher of the NIV, have not been interested in publishing their material in our format even when they could get money out of it. ''Strange world, isn't it?''&lt;br /&gt;
&lt;br /&gt;
Some people recommend using a couple of good modern freely available translations instead. The ESV and NET are both high quality translations. &lt;br /&gt;
&lt;br /&gt;
The ESV is a word-for-word &amp;quot;essentially literal&amp;quot; translation which continues the KJV legacy but is based on modern textual criticism. It is freely [http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ESV downloadable from our repositories].&lt;br /&gt;
&lt;br /&gt;
The NET uses a more dynamic equivalence principle and is downloadable from [http://www.bible.org/page.php?page_id=3086 bible.org] in either a free (with registration) version containing limited notes or a premium ($20) version with the full NET translation note set.&lt;br /&gt;
&lt;br /&gt;
====Do you have the original King James/Authorized Version?====&lt;br /&gt;
The original Authorized Version, also known as the King James Version, was published in 1611. This text is nearly unreadable to most modern readers. For an example of it, see [[KJV 1611]]. What we have is the 1769 version, that is the basis of today's printed versions, and that most people wrongly call the original.&lt;br /&gt;
&lt;br /&gt;
====What happened to the Portuguese module?====&lt;br /&gt;
It was removed because it was not what it claimed to be and had errors. Negotiations are underway to provide another translation. You can find more information by using Google with &amp;quot;site:crosswire.org portuguese&amp;quot; or &amp;quot;sword-devel portuguese&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Here is a quote from our forum discussions: &amp;quot;&amp;lt;i&amp;gt;...there is no such thing as the &amp;quot;João Ferreira de Almeida Atualizada&amp;quot;. It's a corrupted copyrighted text, probably renamed to hide its source. There are numerous discussions of this issue to be found around the web, for example: http://pt.wikisource.org/wiki/Discuss%C3%A3o:Ferreira_de_Almeida_Atualizada&lt;br /&gt;
&lt;br /&gt;
I have checked the &amp;quot;João Ferreira de Almeida Atualizada&amp;quot; text against a number of Portuguese translations (both in print and in electronic editions). It is clearly derivative of copyrighted texts but I have not found any text by that title to exist. You don't have to take my word for it, but you will be wasting your time if you don't.&amp;lt;/i&amp;gt;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
''See also the Portuguese Bibles section in [[Module Requests]]''.&lt;br /&gt;
&lt;br /&gt;
====Where are the deuterocanonical books and the apocrypha?====&lt;br /&gt;
Bibles containing the deuterocanonical books and apocrypha are currently in testing and are supported by a growing number of SWORD front-ends.&lt;br /&gt;
&lt;br /&gt;
====May I use Sword Modules on my website?====	 &lt;br /&gt;
While our software can be freely redistributed, many modules have been licensed to Crosswire for distribution. To use those modules, you will need to obtain permission for yourself.	 &lt;br /&gt;
&lt;br /&gt;
====How do I convert Sword modules to text?====	 &lt;br /&gt;
We would like to discourage this. Please work with us in making our software better.	 &lt;br /&gt;
&lt;br /&gt;
But, if you really need the text, each module has a conf file which will tell you about the origin of the text. Please obtain the source the same way we did. You may not convert the modules that have been licensed to CrossWire for distribution. The KJV module is the only one for which we maintain the source, which you can obtain [http://www.crosswire.org/~dmsmith/kjv2006 here].&lt;br /&gt;
&lt;br /&gt;
====How do I convert modules from other Bible software (e.g. e-Sword, BibleWorks, or OLB) into Sword modules?====&lt;br /&gt;
The SWORD Project does not support the conversion of texts from other Bible software vendors. By that, we mean that we encourage neither you nor others to convert material from other software because it may violate licensing or copyright restrictions. Nor can we provide any assistance to those who choose to convert such material.&lt;br /&gt;
&lt;br /&gt;
====I have purchased and lost a key to a locked module. Can you tell me what it is?====&lt;br /&gt;
The SWORD Project does not sell or handle locked module keys. You should contact the module vendor for help in this matter.&lt;br /&gt;
&lt;br /&gt;
====My Personal module shows some strange text, why?====&lt;br /&gt;
For a while, there was a bug in the configuration file (mods.d\personal.conf) of the Personal module. You can download and re-install the latest version but you will lose any personal notes you have made. Alternatively, you can just replace the configuration file with the new one or open it in any text editor to remove the line reading &amp;quot;SourceType=ThML&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
====I've found an error/bug. How do I report it?====&lt;br /&gt;
Please email sword-bugs@crosswire.org with any bug reports. Please try to provide as much information as possible when filing a bug report: Tell us which version of Sword you are using, your operating system, and where you found the error. (Before reporting module errors, please verify that you are using the most recent version of the module using the install manager in your front-end.)&lt;br /&gt;
&lt;br /&gt;
===Questions about what we do for free or for money===&lt;br /&gt;
&lt;br /&gt;
====Would you send me free Bibles or other material?====&lt;br /&gt;
No, we cannot send you free Bibles or other literature. Even though you may have read on other sites that we are able to help you get free material, that is not true. There is no money involved in our work and we handle only electronic material. All our products are freely downloadable on our web site (or their own web sites) and that is all we do.&lt;br /&gt;
&lt;br /&gt;
====Can I donate to your ministry?====&lt;br /&gt;
While we appreciate offers of donations, the SWORD Project does not solicit or accept such offers. We have been blessed already by the donation of those resources which we do use. If you feel the need to donate to ministries outside your local church, you might consider [http://www.compassion.com/ Compassion International], [http://www.habitat.org/ Habitat for Humanity], [http://www.wycliffe.org/ Wycliffe Bible Translators], or [http://www.ccel.org Christian Classics Ethereal Library].&lt;br /&gt;
&lt;br /&gt;
====Would you donate to my ministry?====&lt;br /&gt;
As our project does not solicit or accept donations and does not itself produce any profit, we do not have monetary or other resources to offer to other ministries either (besides downloadable resources).&lt;br /&gt;
&lt;br /&gt;
====Can I sell advertising on your website?====&lt;br /&gt;
No, we do not allow advertising on our website, as you might have noticed.&lt;br /&gt;
&lt;br /&gt;
====Will you allow me to link to your website on my website in exchange for linking mine on yours?====&lt;br /&gt;
You may link to our website, including to our [http://www.crosswire.org/study BibleTool]. However, we do not do link exchanges.&lt;br /&gt;
&lt;br /&gt;
====Where's my CD?====&lt;br /&gt;
*NEEDS ATTENTION*&lt;br /&gt;
&lt;br /&gt;
===Questions about the platforms our software runs upon ===&lt;br /&gt;
&lt;br /&gt;
Our software is designed from ground up to be multiplatform. You will be able to use the same modules on practically all commonly used computers and operating systems. You can run it on many mobile gadgets, you can run it as web applications. &lt;br /&gt;
&lt;br /&gt;
==== Do you have a Sword program for my phone or PDA? ====&lt;br /&gt;
&lt;br /&gt;
* For Android, iPhone, Windows Pocket PC, Maemo, Windows Mobile, Zaurus and iPaq running QPE or Opie please look [http://www.crosswire.org/applications.jsp?section=Handhelds here].&lt;br /&gt;
* Palm users are encouraged to consider the non-Sword Bible program [http://palmbibleplus.sourceforge.net/ Palm Bible+].&lt;br /&gt;
* For phones with Java ME capability, users are encouraged to consider the Bible program [http://go-bible.org/ Go Bible], which is now a [[User:David Haslam|CrossWire project]], but it is not a SWORD/JSword front-end application ''per se''.&lt;br /&gt;
* For phones with Symbian OS (but without Java ME), we do not yet have a suggested solution.&lt;br /&gt;
&lt;br /&gt;
====Do you have a &amp;quot;portable&amp;quot; version of your software that I can run from a USB disk/stick (or some other place)?====&lt;br /&gt;
[http://portableapps.com/apps/education/bpbible_portable BPBible Portable], the portable version of [http://www.bpbible.com/ BPBible], is an official [http://portableapps.com/ PortableApp], which integrates properly with the [http://portableapps.com/suite PortableApps suite].&lt;br /&gt;
&lt;br /&gt;
The SWORD Project for Windows is entirely installed under one folder, including the modules. You can copy it anywhere as it is and run the program from there. You can even move the folder from one computer to another or to a networked drive.&lt;br /&gt;
&lt;br /&gt;
If you routinely use Windows, Linux and/or Mac, you may want to consider [http://www.crosswire.org/~dmsmith/bd Portable BibleDesktop].&lt;br /&gt;
&lt;br /&gt;
====I love your [http://www.crosswire.org/study/| Bible Tool]. May I install it on my church's website?====&lt;br /&gt;
Yes. But while our software can be used in any way you wish, many of our modules may not.&lt;br /&gt;
&lt;br /&gt;
===Questions about the use of our software===&lt;br /&gt;
&lt;br /&gt;
If you don't find an answer to your question here and want to ask directly, PLEASE TELL US WHAT SOFTWARE YOU ARE USING. There are many products related to CrossWire. The most common is The Sword Project for Windows. It's extremely difficult to answer a question such as &amp;quot;I'm trying to open a Bible but it doesn't work&amp;quot; if we don't even know which application you are using. It also helps if you attach as much exact information about your problem as possible, for example, &amp;quot;After I have opened the program I select action A from the menu and click button B, but it does nothing&amp;quot;. NOT something like &amp;quot;I can't do C&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Many problems are due to outdated software or text modules. Please check first which version you are running. Notice also your operating system and version.&lt;br /&gt;
&lt;br /&gt;
====How do I uninstall?====&lt;br /&gt;
The SWORD Project for Windows has an uninstaller which should be in the same place as the program. You can also just delete the folder and possible menu entries.&lt;br /&gt;
&lt;br /&gt;
====When I read the Syriac Peshitta, Hebrew Bible, or (another module), all I see are boxes.====&lt;br /&gt;
You need to install a Unicode font with the full range of characters used in the module you are trying to read.&lt;br /&gt;
&lt;br /&gt;
====I've found a bug. How do I report it?====&lt;br /&gt;
Please email sword-bugs@crosswire.org with any bug reports. Please try to provide as much information as possible when filing a bug report: Tell us which version of Sword you are using, your operating system, what you were trying to do, what you expected to happen, what happened, how to reproduce the bug, etc.&lt;br /&gt;
&lt;br /&gt;
====Why doesn't your program do such and such? I'd like to see this feature added. If it had this feature it would be more competitive with other programs.====&lt;br /&gt;
Yes, it would be nice, but this is a volunteer based project, and we do this in our free time. Help if you can and give feedback. We know that complaining is always a temptation, but instead, please pray for us.  That is the best way to help the project.&lt;br /&gt;
&lt;br /&gt;
====How do I do something in MacSword? BibleTime? Xiphos? BibleDesktop? The SWORD Project for Windows?====&lt;br /&gt;
There are links to each of the projects on [[Main Page]] of this Wiki. Please read their attached documentation and the other supporting material for the project you are using. You may need to go to their website to find this. Many problems will be solved by reading the documentation and following the instructions. After that use the support forum/list/pages of that project. After that you can ask your question in our forum or our support list.&lt;br /&gt;
&lt;br /&gt;
====Somebody sells your software on the Internet.  Is this ok?====&lt;br /&gt;
It's not forbidden to sell [http://www.gnu.org/philosophy/philosophy.html Free Software]. However, according to the licence, the source code must be included. Some people also sell free software without revealing that it is also available for free, and we do not condone such action.&lt;br /&gt;
&lt;br /&gt;
[[Category:Support]]&lt;/div&gt;</summary>
		<author><name>Bdumont</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4776</id>
		<title>Modules in the beta repository</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4776"/>
				<updated>2008-12-12T12:31:49Z</updated>
		
		<summary type="html">&lt;p&gt;Bdumont: /* Beta GenBook Modules */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please use the guide on [[Testing of new modules]] to test below listed modules and note your findings down. &lt;br /&gt;
&lt;br /&gt;
=Beta repository parameters=&lt;br /&gt;
If the beta repository need to be declared, here are the parameters:&lt;br /&gt;
* Site Name:              CrossWire beta&lt;br /&gt;
* Site Machine Name:      www.crosswire.org&lt;br /&gt;
* Repository Directory:   /pub/sword/betaraw&lt;br /&gt;
&lt;br /&gt;
=Application Legend=&lt;br /&gt;
* BibleCS - The SWORD Project for Windows&lt;br /&gt;
* MS - MacSword&lt;br /&gt;
* GS - GnomeSword&lt;br /&gt;
* BD - Bible Desktop&lt;br /&gt;
* BT - BibleTime - the BT developers have advised that BT testing is not necessary at this time.&lt;br /&gt;
* SW - SwordWeb/BibleTool [http://www.crosswire.org/~dmsmith/swordweb/webapp Beta modules] (Only shows About of all modules and content of Bibles, Commentaries and Generic Books, can not show images at present)&lt;br /&gt;
&lt;br /&gt;
=Abbreviations Legend=&lt;br /&gt;
* WoC - Words-of-Christ, aka Red Letter Text&lt;br /&gt;
* FN  - Foot note&lt;br /&gt;
* dt  - due to&lt;br /&gt;
* occ - occassionally&lt;br /&gt;
&lt;br /&gt;
=Beta Bible Modules=&lt;br /&gt;
&lt;br /&gt;
Note: Missing verses are based upon the KJV versification. A list of common versification systems and how they vary from the NRSVA versification can be found [http://www.ccel.org/refsys/refsys.html here].&lt;br /&gt;
&lt;br /&gt;
===Original Language Bibles===&lt;br /&gt;
This section should primarily contain Greek and Hebrew Bibles, but others that serve as ''source'' texts for various denominations may also be placed here (i.e. Latin, OCS, Syriac, &amp;amp; Coptic texts).&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[MorphGNT]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Tisch]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Vulgate_Clem]] (Updated 2008-07-24)&lt;br /&gt;
|Whole Bible&amp;lt;br/&amp;gt; whole of Esther, Daniel is missing&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Elzevir]]&lt;br /&gt;
|NT&lt;br /&gt;
|Actually looks fine in 1.5.11, but morph types can't be toggled independently. The 1.5.12 requirement is based on some code that was in 1.5.11pre but removed, which could handle different lemma types, so it may not be necessary for handling different morph types. Should we change req. to 1.5.11 &amp;amp; release as is?&lt;br /&gt;
----&lt;br /&gt;
Another issue is that the second morph type is TVM codes, which we don't yet have a key to (i.e. we don't have a module that translates TVM codes to plain English yet).&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===English Bibles===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ABU&amp;amp;beta=true ABU]&lt;br /&gt;
|NT only, conf reflects this, appears complete&lt;br /&gt;
|features: WoC&lt;br /&gt;
&lt;br /&gt;
There was a WoC display problem (which needs to be tested).&lt;br /&gt;
&lt;br /&gt;
See [[Talk:Modules_in_the_beta_repository#ABU]] for a discussion.&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|KJC (reissued 2008-06-28)&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|Worsleys&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|WEB&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|HNV&lt;br /&gt;
|whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== French Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[FreJND]]&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|features: FN and Xref work fine&lt;br /&gt;
&lt;br /&gt;
Skc (maintainer)&amp;gt; See [[FreJND]] about markup, it must probably be added in .conf, but where?&lt;br /&gt;
&lt;br /&gt;
DMS: I'd suggest a textual comment in the About.&lt;br /&gt;
|Headings in Psalms are all &amp;quot;canonical&amp;quot; and not subject to &amp;quot;heading&amp;quot; filter. If these are the only headings, should the conf still have Feature=OSISHeading?&lt;br /&gt;
|Displays fine in BD, in GS occ UTF8 problem - Mal 1:9 and Matt1:20 create odd characters (star in front of SEIGNEUR or DIEU (skc&amp;gt; this is intentional)), SW displays junk before DIEU in Mal 1:9 (looks like an engine problem handling &amp;lt;divineName&amp;gt;), MS doesn't display these verses at all, BibleCS  ok&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== German Bibles ===&lt;br /&gt;
'''Note:''' Versification of German Bibles in the old Testament is in stretches extremely different from the KJV. Both chapters and verses are of different length. As a result a lot of KJV verses, particularly at chapter ends are empty and other chapter ends are overloaded. Particular problems exist in the small prophets: Joel has 4 chapters and Malachi only 3 in original versification. As a result following verses appear empty when KJV versification is imposed.&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerElb1871r]]&lt;br /&gt;
(updated 2008-07-08)&lt;br /&gt;
|Various disconnected chapters of various books&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, &lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerFreeBible]]&lt;br /&gt;
| Source: http://www.flagsoft.ch/fb2004/index.html&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission and re-import from publisher copy&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lh]] (updated 2008-07-15)&lt;br /&gt;
|&lt;br /&gt;
|Needs verse linkage in a few cases. Hold for updated osis2mod.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''Hold''' pending update to osis2mod.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1912]] (updated 2008-07-17)&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in BibleCS,GS,BD, SW&lt;br /&gt;
----&lt;br /&gt;
Has an inability to display pre-verse titles, which are very common, resulting in display problems in most frontends. Might need to wait on osis2mod update before release.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerNeUe]] (updated 2008-11-30)&lt;br /&gt;
|Whole Bible, 5.Mose missing&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bible text has been updated to late September (2008) changes of the author.&lt;br /&gt;
|UTF8 problems should have been fixed&lt;br /&gt;
|Conf should be ok.&lt;br /&gt;
|Displays fine in MS, others need to be checked&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Japanese Bibles ===&lt;br /&gt;
Note: these Bibles have a new feature OSISRuby. Requires '''1.5.12'''!!!&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapBungo]]&lt;br /&gt;
|NT only (some missing verses)&lt;br /&gt;
| &lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapKougo]]&lt;br /&gt;
|Whole Bible (some missing verses)&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapMeiji]]&lt;br /&gt;
|Partial OT&lt;br /&gt;
|&lt;br /&gt;
|Note in-progress status of source.&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapRaguet]]&lt;br /&gt;
|NT only&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapDenmo]]&lt;br /&gt;
|NT portions&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Other Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
| [[AraSVD]] (updated 2008-07-21)&lt;br /&gt;
| Whole Bible&lt;br /&gt;
|&lt;br /&gt;
| none&lt;br /&gt;
| Displays nice in GS, BD, SW, BibleCS&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Breton]]&lt;br /&gt;
|Full New Testament&amp;lt;br&amp;gt;http://pagesperso-orange.fr/testamant.nevez/&lt;br /&gt;
If we get permission, re-import, including headings&lt;br /&gt;
|&lt;br /&gt;
|Identify as Version '''Koad 21'''&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CebPanadayag]]&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Dislays well in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''hold''' pending establishment of pedigree; otherwise ready&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUns]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&lt;br /&gt;
|In conf, DistributionLicense is missing&lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS. Has strong's markup problem&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUn]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&amp;lt;br/&amp;gt;&lt;br /&gt;
|conf mis-specifies history entry (History=2.1= should be History_2.1=...)and DistributionLicense is missing &lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Esperanto]]&amp;lt;br/&amp;gt;&lt;br /&gt;
| Bible&lt;br /&gt;
Missing books: Obadja, Philemon, II John, III John, Jude&amp;lt;br/&amp;gt;&lt;br /&gt;
Codepoint U+2019 not decoded in 37 places&amp;lt;br/&amp;gt;&lt;br /&gt;
''New [http://steve-and-pattie.com/esperantujo/biblio/ source] now located''.&lt;br /&gt;
|Claims options Headings and Footnotes - neither are found&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, BibleCS, MS&lt;br /&gt;
|Requires '''fixing'''. See [[Esperanto]]. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Latvian]] (updated 2008-07-23)&lt;br /&gt;
|NT only, conf reflects this&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Cross refs cannot display in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TurNTB]]&lt;br /&gt;
|Whole Bible, many empty verses dt linkage Obadja missing&lt;br /&gt;
|plenty crossreferences in plain text e.g. Lev 1:1, verse ranges poorly encoded - empty verses, e.g Zeph 1:4-6&lt;br /&gt;
|None&lt;br /&gt;
|Displays fine in GS, BD, MS, BibleCS, SW&lt;br /&gt;
|'''Hold'''  reimport after location of missing text and osismod update&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Wycliffe Bibles===&lt;br /&gt;
'''Global Problems''':&amp;lt;br/&amp;gt;&lt;br /&gt;
These Bibles are likely to have the same set of problems. If you find an error that pertains to more than one, please briefly note it below and provide details with references here:&amp;lt;br/&amp;gt;[[WBTI Bible discussion|Wycliffe Bible Discussion]]&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=amu_BL_1999&amp;amp;beta=true amu_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Dislays fine in SW. Not in BD.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cco_BL_2002&amp;amp;beta=true cco_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chd_BL_1991&amp;amp;beta=true chd_BL_1991]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chq_BL_1983&amp;amp;beta=true chq_BL_1983]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chz_BL_2003&amp;amp;beta=true chz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ckw_WBTI_1996&amp;amp;beta=true ckw_WBTI_1996]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnl_BL_1994&amp;amp;beta=true cnl_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnt_BL_1994&amp;amp;beta=true cnt_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cti_BL_1976&amp;amp;beta=true cti_BL_1976]&lt;br /&gt;
|&lt;br /&gt;
|Variation of global header note problem. The reference precedes Matt 5:20 verse number and the heading is indented after as if it were not a heading.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ctp_BL_1992&amp;amp;beta=true ctp_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=dug_WBTI_1999&amp;amp;beta=true dug_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=huv_BL_1996&amp;amp;beta=true huv_BL_1996]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ixl_WBTI_2001&amp;amp;beta=true ixl_WBTI_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jac_WBTI_1997&amp;amp;beta=true jac_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jvn_BL_1999&amp;amp;beta=true jvn_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=kek_WBTI_2000&amp;amp;beta=true kek_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=lac_BL_1978&amp;amp;beta=true lac_BL_1978]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mir_BL_1988&amp;amp;beta=true mir_BL_1988]&lt;br /&gt;
|Incomplete? Using SW, a spot check of three arbitrary chapters shows empty verses. See Matt 5, v15,16,30,35,36 are missing. Jas 1, v8,11 missing. Rom 8, v4,8 missing.&lt;br /&gt;
----&lt;br /&gt;
Those are all linked verses. (Matt.5.14, Matt.5.15, Matt.5.16 are a single block, where the latter two link to the entry of the first.) Nonetheless, emptyvss is reporting numerous genuinely empty (and unlinked) verses that should have some linking, according to the OSIS source. There might be some sort of importer problem here. (But there is no missing text that I can see.)&lt;br /&gt;
----&lt;br /&gt;
There are 2 bugs in osis2mod: linking is not working and appended, interverse material is replacing a link.&lt;br /&gt;
|&lt;br /&gt;
| hold for osis2mod fix&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=miz_BL_2003&amp;amp;beta=true miz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mks_BL_1999&amp;amp;beta=true mks_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvc_WBTI_2002&amp;amp;beta=true mvc_WBTI_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvj_WBTI_2000&amp;amp;beta=true mvj_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxq_BL_2004&amp;amp;beta=true mxq_BL_2004]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ncl_BL_1998&amp;amp;beta=true ncl_BL_1998]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ngu_BL_1987&amp;amp;beta=true ngu_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=nhy_BL_2006&amp;amp;beta=true nhy_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=otq_BL_2003&amp;amp;beta=true otq_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=qut_WBTI_1997&amp;amp;beta=true qut_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cso_BL_1986&amp;amp;beta=true cso_BL_1986] (renamed; was sco_BL_1986)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ttc_WBTI_2003&amp;amp;beta=true ttc_WBTI_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=tzz_BL_1987&amp;amp;beta=true tzz_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=usp_WBTI_1999&amp;amp;beta=true usp_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxt_BL_1983&amp;amp;beta=true mxt_BL_1983] (renamed; was xmt_BL_1983)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=xtd_BL_2001&amp;amp;beta=true xtd_BL_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zab_BL_1995&amp;amp;beta=true zab_BL_1995]&lt;br /&gt;
|&lt;br /&gt;
|Empty note markers stand before verse numbers. (See Matt 5)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zaw_BL_2006&amp;amp;beta=true zaw_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpo_BL_2002&amp;amp;beta=true zpo_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpq_BL_1987&amp;amp;beta=true zpq_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|In SW, Matt 5:32, the note is split oddly, as if part of it is attached to the prior verse.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpu_BL_2000&amp;amp;beta=true zpu_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpv_BL_1990&amp;amp;beta=true zpv_BL_1990]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zsr_BL_1992&amp;amp;beta=true zsr_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ztq_BL_2000&amp;amp;beta=true ztq_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zty_BL_2002&amp;amp;beta=true zty_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Dictionary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!width=&amp;quot;20%&amp;quot;|Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Autenrieth Autenrieth]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=BosworthToller BosworthToller]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=CleasbyVigfusson CleasbyVigfusson]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=FVDPVietAnh FVDPVietAnh]&amp;lt;br&amp;gt;Changed conf 6-30-2008.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisElem LewisElem]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisShort LewisShort]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LiddellScott LiddellScott]&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Zoega Zoega]&amp;lt;br/&amp;gt;Known bad, do not test;&lt;br /&gt;
|&lt;br /&gt;
|conf has 2 About= (should delete the first)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1806 Webster1806]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering? (may not be necessary for 1806)&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1913 Webster1913]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Map Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Daily Devotional Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Daily]]&lt;br /&gt;
|Appears structurally sound (scrolling between dates works)&lt;br /&gt;
Numerous scripture reference parsing errors in the source. (Fix by running through vs2osisref.)&lt;br /&gt;
&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, Links do not work in MS, some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SME]]&lt;br /&gt;
|Scrolling between dates works, appears structurally sound&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, links do not work in MS,  some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Commentary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Barnes]]&lt;br /&gt;
|Gen 1.1 entry is not UTF-8 (quotes, nbsp), perhaps elsewhere&lt;br /&gt;
|In BD and GS the bad encoding makes the module look very bad. in SW some characters do not display (? quotation marks) e.g James 2:1 2nd paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CalvinCommentaries]]&lt;br /&gt;
|Many, not all books from OT and NT, Conf reflects this, features - no FN found&lt;br /&gt;
|Displays fine in GS, BD, MS, SW, cross reference links in BibleCS often displayed as HTML text. e.g. Mark 1:1 second last paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Clarke]]*hold testing, update planned*&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|Displays well in GS, SW. In BD the bad encoding makes the module look very bad.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TSK]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in GS. In SW only vers 1 is shown and links do not work.&lt;br /&gt;
Hebrew letters are not done properly (comparing with e-sword) &lt;br /&gt;
e.g. Judg 12:6, where ת appears as ϊ and ו as ε.&lt;br /&gt;
Another example is Nehemiah 7:61, where again it seems to have greek letters, not hebrew.&lt;br /&gt;
&lt;br /&gt;
Also, it is missing the diagram (and introductory text to it) for Numbers 35:4. Is this type of schematic possible in OSIS (or just include an image)?&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[OTPassage]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in BD, GS. In SW only vers 1 is shown.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta GenBook Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Concord]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Report: This is a favorite of a Lutheran Seminarian, who finds it indispensable. &amp;lt;br&amp;gt; Basic content visible in GS, BT, BibleCS.  Most content visible in BD.  Suffers from &amp;lt;verse&amp;gt; bug (see &amp;quot;LawGospel&amp;quot; below).  Footnotes work well in BT, GS.  Do not work in BD or BibleCS.  When a proper font is selected, Greek and Hebrew text shows up properly in GS, BT, BD, and BibleCS.  Basic navigation works well in GS, BT, BD, and BibleCS.  Scripture references work in all of these programs as well.&lt;br /&gt;
|&lt;br /&gt;
|Presentation in GS, BT is nice.  Presentation in BibleCS is bland.  BibleCS does not handle heading (h1, h2, etc) tags, unordered lists (ul), or ordered lists (ol).  All of these are presented as plain text, making the lists hard to read.  BD is pretty good, but ordered lists are presented as unordered.  The only effect of this in this module is that the 95 Theses and a few other lists (mostly small) are not numbered.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLutherpredigten]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Appears structurally sound&lt;br /&gt;
|Conf offers headings, none found&lt;br /&gt;
|Displays fine in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Imitation]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Structure works fine, would benefit from chapter names instead of numbers&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in GS, MS, BD, BibleCS, SW&amp;lt;br/&amp;gt;&lt;br /&gt;
Pre-existing &amp;quot;feature&amp;quot; in BD - FN are not displayed.&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Law_Gospel]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|BD cannot display div's which include &amp;lt;verse&amp;gt; tags.  Reported to BD as bug on 18Nov2008.  This bug prevents multiple sections from being viewed.  Basic content visible in GS, BT, and BibleCS.  Scripture references work in all of these programs as well.  Other than divs which include &amp;lt;verse&amp;gt; tags, all basic content is visible in BD.&lt;br /&gt;
|&lt;br /&gt;
|Requires use of a unicode font which includes glyphs for accented Greek characters.  These characters show up fine in GS, BT, BD, and BibleCS when a proper font is selected.  Presentation in GS, BT is nice.  Presentation in BibleCS is bland.  For instance, h1 and h2 tags are shown as plain text, without even a CR at the end.  Presentation in BD is generally nice, but text tagged with 'a name=&amp;quot;&amp;quot;' tags (kept for later linking) shows up as a hyperlink, even though there is no href.  Link has no action.  Similar text shows up as a greyed-out link in BT and as plain text in GS and BibleCS.  Table of contents on title page is encoded as ul.  Displays properly in GS, BT, BD.  Shown with no markup (plain text without CR) in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Passion]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|The TOC is undescriptive, needing titles along with numbers.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS,BD, GS, SW, BibleCS&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SummaTheologica]]&amp;lt;br/&amp;gt;[[AquinasSummaTheologica]]&amp;lt;br/&amp;gt;Which should we use?&lt;br /&gt;
|GenBook&lt;br /&gt;
|links like Bible:VUL:Gen.1.1 do not work in BD. This is a BD bug. At the same time though I think that it is inappropriate to prescribe which Bible (Vulgata) is linked to, given that this genBook is in English [[User:Refdoc|Refdoc]]&lt;br /&gt;
:If an author cites a particular work, as Aquinas is likely to have done, this is appropriate. More significantly, since Aquinas is working from Bibles with a different reference system from Bible.NRSVA, it's important to identify that somehow so that we have the potential to do reference system translation.[[User:Osk|Osk]] 21:47, 28 June 2008 (MDT)&lt;br /&gt;
Aquinas will have quoted the Vulgata as it was the authorative translation (i.e. not as a preference, but dt lack of alternative). It is a new situation to have an abundance of translations. I do agree though with the versification being a problem. Only - it will not work right now either as even the Vulgate will be KJV versified. My long term suggestion would be to introduce (once GenBokk bibles are reality) a conf property regarding versification  GenBooks could then refer to VersScheme:Book:Chapter:Verse instead of ModName:Book:Chapter:Verse - which would allow users to use a variety of applicable Bible translations with any given gen book.[[User:Refdoc|Refdoc]] 02:01, 1 July 2008 (MDT)&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS, GS SW, BibleCS. Links in BD do not work&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Jub]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Jub 35:3 is in /Jub/35, not /Jub/35/3&lt;br /&gt;
&lt;br /&gt;
Jub 38:6 is in /Jub/38&lt;br /&gt;
&lt;br /&gt;
Jub 47, 48 links to exodus aren't osisref'ed&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Didache]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Even when a proper font is selected, some text seems problematic.  See /Didache/1/6, which contains:&amp;quot;??? σου&amp;quot;.  If this is unknown text or if there are textual variants, then a footnote should be added to let the reader know that this is not an encoding problem.  Basic contents display properly in BT, GS, BibleCS, and BD after an appropriate font is selected.&lt;br /&gt;
|&lt;br /&gt;
|Navigation can be a bit awkward.  Didache/1 should present the reader with a title heading such as &amp;quot;Chapter 1&amp;quot; (but in Greek which I can't read).  Still better, front ends should have a way to present all verses of the chapter without individual verse-navigation, which is very awkward.  BT does this well, BD and BibleCS make this module painful to navigate.  Navigation in GS is so-so.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Experimental Beta Modules=&lt;br /&gt;
'''Note:''' The following modules are experimental. Many relate to the development of Alternate Versification Bibles, implemented as GenBooks.&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[DRCgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lhgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Hesychius]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|This module would do well to be converted to a Dictionary/Lexicon.&lt;br /&gt;
|The following conf entries are not defined in wiki: LocalStripFilter=PapyriPlain and SearchOption=IncludeKeyInSearch&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[KJVgb]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[LXXM]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[UDHR]]&lt;br /&gt;
|Dict&lt;br /&gt;
|Test module only. See About for details.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Application Bugs Found During Testing=&lt;br /&gt;
During testing pre-existing bugs may be found in an application.&lt;br /&gt;
==MS==&lt;br /&gt;
* In GenBooks: click on a leaf, then click on (About). (About) does not show. Sometimes nothing happens, other times another entry's content shows.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
==BD==&lt;br /&gt;
* Does not handle foot-notes in anything but Bibles.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* links leading to a specific Bible module do not work&lt;br /&gt;
* Inconsistently displays &amp;lt;l&amp;gt; elements.&lt;br /&gt;
* Inconsistently displays pre-verse titles.&lt;br /&gt;
* in ThML Genbooks, BD fails to display any div which includes &amp;lt;verse&amp;gt; tags&lt;br /&gt;
&lt;br /&gt;
==GS==&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* Parallel references in section headings in the Gospels display as *x but do not point to the parallel text. They appear as a cross-reference to the first verse in that chapter. For an example, see Mark 1 or Luke 4 in VietNVB.&lt;br /&gt;
* &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==BT==&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==SW==&lt;br /&gt;
* Does not handle UTF-8 in Description when listing names of modules.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* In About w/ \uxxxxx? RTF codes, e.g. TurNTB, ? is shown.&lt;br /&gt;
** Well, that's the expected behavior if the font lacks the encoded character (and so, not a software or a module bug but a font deficiency if anything).-Osk&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used and transChange is in the WoC:&amp;lt;br/&amp;gt; &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words &amp;lt;transChange type=&amp;quot;added&amp;quot;&amp;gt;of&amp;lt;/transChange&amp;gt; Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&amp;lt;br/&amp;gt;The words following &amp;lt;transChange&amp;gt; are not highlighted.&lt;br /&gt;
* Links to Bible references in Daily devotions do not work&lt;br /&gt;
* Shows in commentaries only Vers 1 rather than whole chapter when asked to show a chapter - e.g. Genesis 1 - only Gen 1:1 will show up&lt;br /&gt;
&lt;br /&gt;
==BibleCS==&lt;/div&gt;</summary>
		<author><name>Bdumont</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4775</id>
		<title>Modules in the beta repository</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4775"/>
				<updated>2008-12-11T15:41:36Z</updated>
		
		<summary type="html">&lt;p&gt;Bdumont: /* Beta GenBook Modules */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please use the guide on [[Testing of new modules]] to test below listed modules and note your findings down. &lt;br /&gt;
&lt;br /&gt;
=Beta repository parameters=&lt;br /&gt;
If the beta repository need to be declared, here are the parameters:&lt;br /&gt;
* Site Name:              CrossWire beta&lt;br /&gt;
* Site Machine Name:      www.crosswire.org&lt;br /&gt;
* Repository Directory:   /pub/sword/betaraw&lt;br /&gt;
&lt;br /&gt;
=Application Legend=&lt;br /&gt;
* BibleCS - The SWORD Project for Windows&lt;br /&gt;
* MS - MacSword&lt;br /&gt;
* GS - GnomeSword&lt;br /&gt;
* BD - Bible Desktop&lt;br /&gt;
* BT - BibleTime - the BT developers have advised that BT testing is not necessary at this time.&lt;br /&gt;
* SW - SwordWeb/BibleTool [http://www.crosswire.org/~dmsmith/swordweb/webapp Beta modules] (Only shows About of all modules and content of Bibles, Commentaries and Generic Books, can not show images at present)&lt;br /&gt;
&lt;br /&gt;
=Abbreviations Legend=&lt;br /&gt;
* WoC - Words-of-Christ, aka Red Letter Text&lt;br /&gt;
* FN  - Foot note&lt;br /&gt;
* dt  - due to&lt;br /&gt;
* occ - occassionally&lt;br /&gt;
&lt;br /&gt;
=Beta Bible Modules=&lt;br /&gt;
&lt;br /&gt;
Note: Missing verses are based upon the KJV versification. A list of common versification systems and how they vary from the NRSVA versification can be found [http://www.ccel.org/refsys/refsys.html here].&lt;br /&gt;
&lt;br /&gt;
===Original Language Bibles===&lt;br /&gt;
This section should primarily contain Greek and Hebrew Bibles, but others that serve as ''source'' texts for various denominations may also be placed here (i.e. Latin, OCS, Syriac, &amp;amp; Coptic texts).&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[MorphGNT]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Tisch]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Vulgate_Clem]] (Updated 2008-07-24)&lt;br /&gt;
|Whole Bible&amp;lt;br/&amp;gt; whole of Esther, Daniel is missing&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Elzevir]]&lt;br /&gt;
|NT&lt;br /&gt;
|Actually looks fine in 1.5.11, but morph types can't be toggled independently. The 1.5.12 requirement is based on some code that was in 1.5.11pre but removed, which could handle different lemma types, so it may not be necessary for handling different morph types. Should we change req. to 1.5.11 &amp;amp; release as is?&lt;br /&gt;
----&lt;br /&gt;
Another issue is that the second morph type is TVM codes, which we don't yet have a key to (i.e. we don't have a module that translates TVM codes to plain English yet).&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===English Bibles===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ABU&amp;amp;beta=true ABU]&lt;br /&gt;
|NT only, conf reflects this, appears complete&lt;br /&gt;
|features: WoC&lt;br /&gt;
&lt;br /&gt;
There was a WoC display problem (which needs to be tested).&lt;br /&gt;
&lt;br /&gt;
See [[Talk:Modules_in_the_beta_repository#ABU]] for a discussion.&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|KJC (reissued 2008-06-28)&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|Worsleys&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|WEB&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|HNV&lt;br /&gt;
|whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== French Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[FreJND]]&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|features: FN and Xref work fine&lt;br /&gt;
&lt;br /&gt;
Skc (maintainer)&amp;gt; See [[FreJND]] about markup, it must probably be added in .conf, but where?&lt;br /&gt;
&lt;br /&gt;
DMS: I'd suggest a textual comment in the About.&lt;br /&gt;
|Headings in Psalms are all &amp;quot;canonical&amp;quot; and not subject to &amp;quot;heading&amp;quot; filter. If these are the only headings, should the conf still have Feature=OSISHeading?&lt;br /&gt;
|Displays fine in BD, in GS occ UTF8 problem - Mal 1:9 and Matt1:20 create odd characters (star in front of SEIGNEUR or DIEU (skc&amp;gt; this is intentional)), SW displays junk before DIEU in Mal 1:9 (looks like an engine problem handling &amp;lt;divineName&amp;gt;), MS doesn't display these verses at all, BibleCS  ok&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== German Bibles ===&lt;br /&gt;
'''Note:''' Versification of German Bibles in the old Testament is in stretches extremely different from the KJV. Both chapters and verses are of different length. As a result a lot of KJV verses, particularly at chapter ends are empty and other chapter ends are overloaded. Particular problems exist in the small prophets: Joel has 4 chapters and Malachi only 3 in original versification. As a result following verses appear empty when KJV versification is imposed.&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerElb1871r]]&lt;br /&gt;
(updated 2008-07-08)&lt;br /&gt;
|Various disconnected chapters of various books&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, &lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerFreeBible]]&lt;br /&gt;
| Source: http://www.flagsoft.ch/fb2004/index.html&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission and re-import from publisher copy&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lh]] (updated 2008-07-15)&lt;br /&gt;
|&lt;br /&gt;
|Needs verse linkage in a few cases. Hold for updated osis2mod.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''Hold''' pending update to osis2mod.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1912]] (updated 2008-07-17)&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in BibleCS,GS,BD, SW&lt;br /&gt;
----&lt;br /&gt;
Has an inability to display pre-verse titles, which are very common, resulting in display problems in most frontends. Might need to wait on osis2mod update before release.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerNeUe]] (updated 2008-11-30)&lt;br /&gt;
|Whole Bible, 5.Mose missing&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bible text has been updated to late September (2008) changes of the author.&lt;br /&gt;
|UTF8 problems should have been fixed&lt;br /&gt;
|Conf should be ok.&lt;br /&gt;
|Displays fine in MS, others need to be checked&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Japanese Bibles ===&lt;br /&gt;
Note: these Bibles have a new feature OSISRuby. Requires '''1.5.12'''!!!&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapBungo]]&lt;br /&gt;
|NT only (some missing verses)&lt;br /&gt;
| &lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapKougo]]&lt;br /&gt;
|Whole Bible (some missing verses)&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapMeiji]]&lt;br /&gt;
|Partial OT&lt;br /&gt;
|&lt;br /&gt;
|Note in-progress status of source.&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapRaguet]]&lt;br /&gt;
|NT only&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapDenmo]]&lt;br /&gt;
|NT portions&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Other Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
| [[AraSVD]] (updated 2008-07-21)&lt;br /&gt;
| Whole Bible&lt;br /&gt;
|&lt;br /&gt;
| none&lt;br /&gt;
| Displays nice in GS, BD, SW, BibleCS&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Breton]]&lt;br /&gt;
|Full New Testament&amp;lt;br&amp;gt;http://pagesperso-orange.fr/testamant.nevez/&lt;br /&gt;
If we get permission, re-import, including headings&lt;br /&gt;
|&lt;br /&gt;
|Identify as Version '''Koad 21'''&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CebPanadayag]]&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Dislays well in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''hold''' pending establishment of pedigree; otherwise ready&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUns]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&lt;br /&gt;
|In conf, DistributionLicense is missing&lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS. Has strong's markup problem&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUn]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&amp;lt;br/&amp;gt;&lt;br /&gt;
|conf mis-specifies history entry (History=2.1= should be History_2.1=...)and DistributionLicense is missing &lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Esperanto]]&amp;lt;br/&amp;gt;&lt;br /&gt;
| Bible&lt;br /&gt;
Missing books: Obadja, Philemon, II John, III John, Jude&amp;lt;br/&amp;gt;&lt;br /&gt;
Codepoint U+2019 not decoded in 37 places&amp;lt;br/&amp;gt;&lt;br /&gt;
''New [http://steve-and-pattie.com/esperantujo/biblio/ source] now located''.&lt;br /&gt;
|Claims options Headings and Footnotes - neither are found&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, BibleCS, MS&lt;br /&gt;
|Requires '''fixing'''. See [[Esperanto]]. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Latvian]] (updated 2008-07-23)&lt;br /&gt;
|NT only, conf reflects this&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Cross refs cannot display in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TurNTB]]&lt;br /&gt;
|Whole Bible, many empty verses dt linkage Obadja missing&lt;br /&gt;
|plenty crossreferences in plain text e.g. Lev 1:1, verse ranges poorly encoded - empty verses, e.g Zeph 1:4-6&lt;br /&gt;
|None&lt;br /&gt;
|Displays fine in GS, BD, MS, BibleCS, SW&lt;br /&gt;
|'''Hold'''  reimport after location of missing text and osismod update&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Wycliffe Bibles===&lt;br /&gt;
'''Global Problems''':&amp;lt;br/&amp;gt;&lt;br /&gt;
These Bibles are likely to have the same set of problems. If you find an error that pertains to more than one, please briefly note it below and provide details with references here:&amp;lt;br/&amp;gt;[[WBTI Bible discussion|Wycliffe Bible Discussion]]&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=amu_BL_1999&amp;amp;beta=true amu_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Dislays fine in SW. Not in BD.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cco_BL_2002&amp;amp;beta=true cco_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chd_BL_1991&amp;amp;beta=true chd_BL_1991]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chq_BL_1983&amp;amp;beta=true chq_BL_1983]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chz_BL_2003&amp;amp;beta=true chz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ckw_WBTI_1996&amp;amp;beta=true ckw_WBTI_1996]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnl_BL_1994&amp;amp;beta=true cnl_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnt_BL_1994&amp;amp;beta=true cnt_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cti_BL_1976&amp;amp;beta=true cti_BL_1976]&lt;br /&gt;
|&lt;br /&gt;
|Variation of global header note problem. The reference precedes Matt 5:20 verse number and the heading is indented after as if it were not a heading.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ctp_BL_1992&amp;amp;beta=true ctp_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=dug_WBTI_1999&amp;amp;beta=true dug_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=huv_BL_1996&amp;amp;beta=true huv_BL_1996]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ixl_WBTI_2001&amp;amp;beta=true ixl_WBTI_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jac_WBTI_1997&amp;amp;beta=true jac_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jvn_BL_1999&amp;amp;beta=true jvn_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=kek_WBTI_2000&amp;amp;beta=true kek_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=lac_BL_1978&amp;amp;beta=true lac_BL_1978]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mir_BL_1988&amp;amp;beta=true mir_BL_1988]&lt;br /&gt;
|Incomplete? Using SW, a spot check of three arbitrary chapters shows empty verses. See Matt 5, v15,16,30,35,36 are missing. Jas 1, v8,11 missing. Rom 8, v4,8 missing.&lt;br /&gt;
----&lt;br /&gt;
Those are all linked verses. (Matt.5.14, Matt.5.15, Matt.5.16 are a single block, where the latter two link to the entry of the first.) Nonetheless, emptyvss is reporting numerous genuinely empty (and unlinked) verses that should have some linking, according to the OSIS source. There might be some sort of importer problem here. (But there is no missing text that I can see.)&lt;br /&gt;
----&lt;br /&gt;
There are 2 bugs in osis2mod: linking is not working and appended, interverse material is replacing a link.&lt;br /&gt;
|&lt;br /&gt;
| hold for osis2mod fix&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=miz_BL_2003&amp;amp;beta=true miz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mks_BL_1999&amp;amp;beta=true mks_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvc_WBTI_2002&amp;amp;beta=true mvc_WBTI_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvj_WBTI_2000&amp;amp;beta=true mvj_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxq_BL_2004&amp;amp;beta=true mxq_BL_2004]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ncl_BL_1998&amp;amp;beta=true ncl_BL_1998]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ngu_BL_1987&amp;amp;beta=true ngu_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=nhy_BL_2006&amp;amp;beta=true nhy_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=otq_BL_2003&amp;amp;beta=true otq_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=qut_WBTI_1997&amp;amp;beta=true qut_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cso_BL_1986&amp;amp;beta=true cso_BL_1986] (renamed; was sco_BL_1986)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ttc_WBTI_2003&amp;amp;beta=true ttc_WBTI_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=tzz_BL_1987&amp;amp;beta=true tzz_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=usp_WBTI_1999&amp;amp;beta=true usp_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxt_BL_1983&amp;amp;beta=true mxt_BL_1983] (renamed; was xmt_BL_1983)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=xtd_BL_2001&amp;amp;beta=true xtd_BL_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zab_BL_1995&amp;amp;beta=true zab_BL_1995]&lt;br /&gt;
|&lt;br /&gt;
|Empty note markers stand before verse numbers. (See Matt 5)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zaw_BL_2006&amp;amp;beta=true zaw_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpo_BL_2002&amp;amp;beta=true zpo_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpq_BL_1987&amp;amp;beta=true zpq_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|In SW, Matt 5:32, the note is split oddly, as if part of it is attached to the prior verse.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpu_BL_2000&amp;amp;beta=true zpu_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpv_BL_1990&amp;amp;beta=true zpv_BL_1990]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zsr_BL_1992&amp;amp;beta=true zsr_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ztq_BL_2000&amp;amp;beta=true ztq_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zty_BL_2002&amp;amp;beta=true zty_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Dictionary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!width=&amp;quot;20%&amp;quot;|Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Autenrieth Autenrieth]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=BosworthToller BosworthToller]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=CleasbyVigfusson CleasbyVigfusson]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=FVDPVietAnh FVDPVietAnh]&amp;lt;br&amp;gt;Changed conf 6-30-2008.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisElem LewisElem]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisShort LewisShort]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LiddellScott LiddellScott]&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Zoega Zoega]&amp;lt;br/&amp;gt;Known bad, do not test;&lt;br /&gt;
|&lt;br /&gt;
|conf has 2 About= (should delete the first)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1806 Webster1806]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering? (may not be necessary for 1806)&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1913 Webster1913]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Map Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Daily Devotional Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Daily]]&lt;br /&gt;
|Appears structurally sound (scrolling between dates works)&lt;br /&gt;
Numerous scripture reference parsing errors in the source. (Fix by running through vs2osisref.)&lt;br /&gt;
&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, Links do not work in MS, some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SME]]&lt;br /&gt;
|Scrolling between dates works, appears structurally sound&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, links do not work in MS,  some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Commentary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Barnes]]&lt;br /&gt;
|Gen 1.1 entry is not UTF-8 (quotes, nbsp), perhaps elsewhere&lt;br /&gt;
|In BD and GS the bad encoding makes the module look very bad. in SW some characters do not display (? quotation marks) e.g James 2:1 2nd paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CalvinCommentaries]]&lt;br /&gt;
|Many, not all books from OT and NT, Conf reflects this, features - no FN found&lt;br /&gt;
|Displays fine in GS, BD, MS, SW, cross reference links in BibleCS often displayed as HTML text. e.g. Mark 1:1 second last paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Clarke]]*hold testing, update planned*&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|Displays well in GS, SW. In BD the bad encoding makes the module look very bad.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TSK]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in GS. In SW only vers 1 is shown and links do not work.&lt;br /&gt;
Hebrew letters are not done properly (comparing with e-sword) &lt;br /&gt;
e.g. Judg 12:6, where ת appears as ϊ and ו as ε.&lt;br /&gt;
Another example is Nehemiah 7:61, where again it seems to have greek letters, not hebrew.&lt;br /&gt;
&lt;br /&gt;
Also, it is missing the diagram (and introductory text to it) for Numbers 35:4. Is this type of schematic possible in OSIS (or just include an image)?&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[OTPassage]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in BD, GS. In SW only vers 1 is shown.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta GenBook Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Concord]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Report: This is a favorite of a Lutheran Seminarian, who finds it indispensable.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLutherpredigten]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Appears structurally sound&lt;br /&gt;
|Conf offers headings, none found&lt;br /&gt;
|Displays fine in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Imitation]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Structure works fine, would benefit from chapter names instead of numbers&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in GS, MS, BD, BibleCS, SW&amp;lt;br/&amp;gt;&lt;br /&gt;
Pre-existing &amp;quot;feature&amp;quot; in BD - FN are not displayed.&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Law_Gospel]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|BD cannot display div's which include &amp;lt;verse&amp;gt; tags.  Reported to BD as bug on 18Nov2008.  This bug prevents multiple sections from being viewed.  Basic content visible in GS, BT, and BibleCS.  Scripture references work in all of these programs as well.  Other than divs which include &amp;lt;verse&amp;gt; tags, all basic content is visible in BD.&lt;br /&gt;
|&lt;br /&gt;
|Requires use of a unicode font which includes glyphs for accented Greek characters.  These characters show up fine in GS, BT, BD, and BibleCS when a proper font is selected.  Presentation in GS, BT is nice.  Presentation in BibleCS is bland.  For instance, h1 and h2 tags are shown as plain text, without even a CR at the end.  Presentation in BD is generally nice, but text tagged with 'a name=&amp;quot;&amp;quot;' tags (kept for later linking) shows up as a hyperlink, even though there is no href.  Link has no action.  Similar text shows up as a greyed-out link in BT and as plain text in GS and BibleCS.  Table of contents on title page is encoded as ul.  Displays properly in GS, BT, BD.  Shown with no markup (plain text without CR) in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Passion]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|The TOC is undescriptive, needing titles along with numbers.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS,BD, GS, SW, BibleCS&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SummaTheologica]]&amp;lt;br/&amp;gt;[[AquinasSummaTheologica]]&amp;lt;br/&amp;gt;Which should we use?&lt;br /&gt;
|GenBook&lt;br /&gt;
|links like Bible:VUL:Gen.1.1 do not work in BD. This is a BD bug. At the same time though I think that it is inappropriate to prescribe which Bible (Vulgata) is linked to, given that this genBook is in English [[User:Refdoc|Refdoc]]&lt;br /&gt;
:If an author cites a particular work, as Aquinas is likely to have done, this is appropriate. More significantly, since Aquinas is working from Bibles with a different reference system from Bible.NRSVA, it's important to identify that somehow so that we have the potential to do reference system translation.[[User:Osk|Osk]] 21:47, 28 June 2008 (MDT)&lt;br /&gt;
Aquinas will have quoted the Vulgata as it was the authorative translation (i.e. not as a preference, but dt lack of alternative). It is a new situation to have an abundance of translations. I do agree though with the versification being a problem. Only - it will not work right now either as even the Vulgate will be KJV versified. My long term suggestion would be to introduce (once GenBokk bibles are reality) a conf property regarding versification  GenBooks could then refer to VersScheme:Book:Chapter:Verse instead of ModName:Book:Chapter:Verse - which would allow users to use a variety of applicable Bible translations with any given gen book.[[User:Refdoc|Refdoc]] 02:01, 1 July 2008 (MDT)&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS, GS SW, BibleCS. Links in BD do not work&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Jub]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Jub 35:3 is in /Jub/35, not /Jub/35/3&lt;br /&gt;
&lt;br /&gt;
Jub 38:6 is in /Jub/38&lt;br /&gt;
&lt;br /&gt;
Jub 47, 48 links to exodus aren't osisref'ed&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Didache]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Even when a proper font is selected, some text seems problematic.  See /Didache/1/6, which contains:&amp;quot;??? σου&amp;quot;.  If this is unknown text or if there are textual variants, then a footnote should be added to let the reader know that this is not an encoding problem.  Basic contents display properly in BT, GS, BibleCS, and BD after an appropriate font is selected.&lt;br /&gt;
|&lt;br /&gt;
|Navigation can be a bit awkward.  Didache/1 should present the reader with a title heading such as &amp;quot;Chapter 1&amp;quot; (but in Greek which I can't read).  Still better, front ends should have a way to present all verses of the chapter without individual verse-navigation, which is very awkward.  BT does this well, BD and BibleCS make this module painful to navigate.  Navigation in GS is so-so.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Experimental Beta Modules=&lt;br /&gt;
'''Note:''' The following modules are experimental. Many relate to the development of Alternate Versification Bibles, implemented as GenBooks.&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[DRCgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lhgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Hesychius]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|This module would do well to be converted to a Dictionary/Lexicon.&lt;br /&gt;
|The following conf entries are not defined in wiki: LocalStripFilter=PapyriPlain and SearchOption=IncludeKeyInSearch&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[KJVgb]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[LXXM]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[UDHR]]&lt;br /&gt;
|Dict&lt;br /&gt;
|Test module only. See About for details.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Application Bugs Found During Testing=&lt;br /&gt;
During testing pre-existing bugs may be found in an application.&lt;br /&gt;
==MS==&lt;br /&gt;
* In GenBooks: click on a leaf, then click on (About). (About) does not show. Sometimes nothing happens, other times another entry's content shows.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
==BD==&lt;br /&gt;
* Does not handle foot-notes in anything but Bibles.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* links leading to a specific Bible module do not work&lt;br /&gt;
* Inconsistently displays &amp;lt;l&amp;gt; elements.&lt;br /&gt;
* Inconsistently displays pre-verse titles.&lt;br /&gt;
* in ThML Genbooks, BD fails to display any div which includes &amp;lt;verse&amp;gt; tags&lt;br /&gt;
&lt;br /&gt;
==GS==&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* Parallel references in section headings in the Gospels display as *x but do not point to the parallel text. They appear as a cross-reference to the first verse in that chapter. For an example, see Mark 1 or Luke 4 in VietNVB.&lt;br /&gt;
* &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==BT==&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==SW==&lt;br /&gt;
* Does not handle UTF-8 in Description when listing names of modules.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* In About w/ \uxxxxx? RTF codes, e.g. TurNTB, ? is shown.&lt;br /&gt;
** Well, that's the expected behavior if the font lacks the encoded character (and so, not a software or a module bug but a font deficiency if anything).-Osk&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used and transChange is in the WoC:&amp;lt;br/&amp;gt; &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words &amp;lt;transChange type=&amp;quot;added&amp;quot;&amp;gt;of&amp;lt;/transChange&amp;gt; Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&amp;lt;br/&amp;gt;The words following &amp;lt;transChange&amp;gt; are not highlighted.&lt;br /&gt;
* Links to Bible references in Daily devotions do not work&lt;br /&gt;
* Shows in commentaries only Vers 1 rather than whole chapter when asked to show a chapter - e.g. Genesis 1 - only Gen 1:1 will show up&lt;br /&gt;
&lt;br /&gt;
==BibleCS==&lt;/div&gt;</summary>
		<author><name>Bdumont</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4774</id>
		<title>Modules in the beta repository</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4774"/>
				<updated>2008-12-11T11:19:34Z</updated>
		
		<summary type="html">&lt;p&gt;Bdumont: /* Beta GenBook Modules */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please use the guide on [[Testing of new modules]] to test below listed modules and note your findings down. &lt;br /&gt;
&lt;br /&gt;
=Beta repository parameters=&lt;br /&gt;
If the beta repository need to be declared, here are the parameters:&lt;br /&gt;
* Site Name:              CrossWire beta&lt;br /&gt;
* Site Machine Name:      www.crosswire.org&lt;br /&gt;
* Repository Directory:   /pub/sword/betaraw&lt;br /&gt;
&lt;br /&gt;
=Application Legend=&lt;br /&gt;
* BibleCS - The SWORD Project for Windows&lt;br /&gt;
* MS - MacSword&lt;br /&gt;
* GS - GnomeSword&lt;br /&gt;
* BD - Bible Desktop&lt;br /&gt;
* BT - BibleTime - the BT developers have advised that BT testing is not necessary at this time.&lt;br /&gt;
* SW - SwordWeb/BibleTool [http://www.crosswire.org/~dmsmith/swordweb/webapp Beta modules] (Only shows About of all modules and content of Bibles, Commentaries and Generic Books, can not show images at present)&lt;br /&gt;
&lt;br /&gt;
=Abbreviations Legend=&lt;br /&gt;
* WoC - Words-of-Christ, aka Red Letter Text&lt;br /&gt;
* FN  - Foot note&lt;br /&gt;
* dt  - due to&lt;br /&gt;
* occ - occassionally&lt;br /&gt;
&lt;br /&gt;
=Beta Bible Modules=&lt;br /&gt;
&lt;br /&gt;
Note: Missing verses are based upon the KJV versification. A list of common versification systems and how they vary from the NRSVA versification can be found [http://www.ccel.org/refsys/refsys.html here].&lt;br /&gt;
&lt;br /&gt;
===Original Language Bibles===&lt;br /&gt;
This section should primarily contain Greek and Hebrew Bibles, but others that serve as ''source'' texts for various denominations may also be placed here (i.e. Latin, OCS, Syriac, &amp;amp; Coptic texts).&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[MorphGNT]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Tisch]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Vulgate_Clem]] (Updated 2008-07-24)&lt;br /&gt;
|Whole Bible&amp;lt;br/&amp;gt; whole of Esther, Daniel is missing&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Elzevir]]&lt;br /&gt;
|NT&lt;br /&gt;
|Actually looks fine in 1.5.11, but morph types can't be toggled independently. The 1.5.12 requirement is based on some code that was in 1.5.11pre but removed, which could handle different lemma types, so it may not be necessary for handling different morph types. Should we change req. to 1.5.11 &amp;amp; release as is?&lt;br /&gt;
----&lt;br /&gt;
Another issue is that the second morph type is TVM codes, which we don't yet have a key to (i.e. we don't have a module that translates TVM codes to plain English yet).&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===English Bibles===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ABU&amp;amp;beta=true ABU]&lt;br /&gt;
|NT only, conf reflects this, appears complete&lt;br /&gt;
|features: WoC&lt;br /&gt;
&lt;br /&gt;
There was a WoC display problem (which needs to be tested).&lt;br /&gt;
&lt;br /&gt;
See [[Talk:Modules_in_the_beta_repository#ABU]] for a discussion.&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|KJC (reissued 2008-06-28)&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|Worsleys&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|WEB&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|HNV&lt;br /&gt;
|whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== French Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[FreJND]]&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|features: FN and Xref work fine&lt;br /&gt;
&lt;br /&gt;
Skc (maintainer)&amp;gt; See [[FreJND]] about markup, it must probably be added in .conf, but where?&lt;br /&gt;
&lt;br /&gt;
DMS: I'd suggest a textual comment in the About.&lt;br /&gt;
|Headings in Psalms are all &amp;quot;canonical&amp;quot; and not subject to &amp;quot;heading&amp;quot; filter. If these are the only headings, should the conf still have Feature=OSISHeading?&lt;br /&gt;
|Displays fine in BD, in GS occ UTF8 problem - Mal 1:9 and Matt1:20 create odd characters (star in front of SEIGNEUR or DIEU (skc&amp;gt; this is intentional)), SW displays junk before DIEU in Mal 1:9 (looks like an engine problem handling &amp;lt;divineName&amp;gt;), MS doesn't display these verses at all, BibleCS  ok&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== German Bibles ===&lt;br /&gt;
'''Note:''' Versification of German Bibles in the old Testament is in stretches extremely different from the KJV. Both chapters and verses are of different length. As a result a lot of KJV verses, particularly at chapter ends are empty and other chapter ends are overloaded. Particular problems exist in the small prophets: Joel has 4 chapters and Malachi only 3 in original versification. As a result following verses appear empty when KJV versification is imposed.&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerElb1871r]]&lt;br /&gt;
(updated 2008-07-08)&lt;br /&gt;
|Various disconnected chapters of various books&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, &lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerFreeBible]]&lt;br /&gt;
| Source: http://www.flagsoft.ch/fb2004/index.html&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission and re-import from publisher copy&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lh]] (updated 2008-07-15)&lt;br /&gt;
|&lt;br /&gt;
|Needs verse linkage in a few cases. Hold for updated osis2mod.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''Hold''' pending update to osis2mod.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1912]] (updated 2008-07-17)&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in BibleCS,GS,BD, SW&lt;br /&gt;
----&lt;br /&gt;
Has an inability to display pre-verse titles, which are very common, resulting in display problems in most frontends. Might need to wait on osis2mod update before release.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerNeUe]] (updated 2008-11-30)&lt;br /&gt;
|Whole Bible, 5.Mose missing&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bible text has been updated to late September (2008) changes of the author.&lt;br /&gt;
|UTF8 problems should have been fixed&lt;br /&gt;
|Conf should be ok.&lt;br /&gt;
|Displays fine in MS, others need to be checked&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Japanese Bibles ===&lt;br /&gt;
Note: these Bibles have a new feature OSISRuby. Requires '''1.5.12'''!!!&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapBungo]]&lt;br /&gt;
|NT only (some missing verses)&lt;br /&gt;
| &lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapKougo]]&lt;br /&gt;
|Whole Bible (some missing verses)&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapMeiji]]&lt;br /&gt;
|Partial OT&lt;br /&gt;
|&lt;br /&gt;
|Note in-progress status of source.&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapRaguet]]&lt;br /&gt;
|NT only&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapDenmo]]&lt;br /&gt;
|NT portions&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Other Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
| [[AraSVD]] (updated 2008-07-21)&lt;br /&gt;
| Whole Bible&lt;br /&gt;
|&lt;br /&gt;
| none&lt;br /&gt;
| Displays nice in GS, BD, SW, BibleCS&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Breton]]&lt;br /&gt;
|Full New Testament&amp;lt;br&amp;gt;http://pagesperso-orange.fr/testamant.nevez/&lt;br /&gt;
If we get permission, re-import, including headings&lt;br /&gt;
|&lt;br /&gt;
|Identify as Version '''Koad 21'''&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CebPanadayag]]&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Dislays well in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''hold''' pending establishment of pedigree; otherwise ready&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUns]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&lt;br /&gt;
|In conf, DistributionLicense is missing&lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS. Has strong's markup problem&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUn]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&amp;lt;br/&amp;gt;&lt;br /&gt;
|conf mis-specifies history entry (History=2.1= should be History_2.1=...)and DistributionLicense is missing &lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Esperanto]]&amp;lt;br/&amp;gt;&lt;br /&gt;
| Bible&lt;br /&gt;
Missing books: Obadja, Philemon, II John, III John, Jude&amp;lt;br/&amp;gt;&lt;br /&gt;
Codepoint U+2019 not decoded in 37 places&amp;lt;br/&amp;gt;&lt;br /&gt;
''New [http://steve-and-pattie.com/esperantujo/biblio/ source] now located''.&lt;br /&gt;
|Claims options Headings and Footnotes - neither are found&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, BibleCS, MS&lt;br /&gt;
|Requires '''fixing'''. See [[Esperanto]]. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Latvian]] (updated 2008-07-23)&lt;br /&gt;
|NT only, conf reflects this&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Cross refs cannot display in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TurNTB]]&lt;br /&gt;
|Whole Bible, many empty verses dt linkage Obadja missing&lt;br /&gt;
|plenty crossreferences in plain text e.g. Lev 1:1, verse ranges poorly encoded - empty verses, e.g Zeph 1:4-6&lt;br /&gt;
|None&lt;br /&gt;
|Displays fine in GS, BD, MS, BibleCS, SW&lt;br /&gt;
|'''Hold'''  reimport after location of missing text and osismod update&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Wycliffe Bibles===&lt;br /&gt;
'''Global Problems''':&amp;lt;br/&amp;gt;&lt;br /&gt;
These Bibles are likely to have the same set of problems. If you find an error that pertains to more than one, please briefly note it below and provide details with references here:&amp;lt;br/&amp;gt;[[WBTI Bible discussion|Wycliffe Bible Discussion]]&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=amu_BL_1999&amp;amp;beta=true amu_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Dislays fine in SW. Not in BD.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cco_BL_2002&amp;amp;beta=true cco_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chd_BL_1991&amp;amp;beta=true chd_BL_1991]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chq_BL_1983&amp;amp;beta=true chq_BL_1983]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chz_BL_2003&amp;amp;beta=true chz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ckw_WBTI_1996&amp;amp;beta=true ckw_WBTI_1996]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnl_BL_1994&amp;amp;beta=true cnl_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnt_BL_1994&amp;amp;beta=true cnt_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cti_BL_1976&amp;amp;beta=true cti_BL_1976]&lt;br /&gt;
|&lt;br /&gt;
|Variation of global header note problem. The reference precedes Matt 5:20 verse number and the heading is indented after as if it were not a heading.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ctp_BL_1992&amp;amp;beta=true ctp_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=dug_WBTI_1999&amp;amp;beta=true dug_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=huv_BL_1996&amp;amp;beta=true huv_BL_1996]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ixl_WBTI_2001&amp;amp;beta=true ixl_WBTI_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jac_WBTI_1997&amp;amp;beta=true jac_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jvn_BL_1999&amp;amp;beta=true jvn_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=kek_WBTI_2000&amp;amp;beta=true kek_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=lac_BL_1978&amp;amp;beta=true lac_BL_1978]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mir_BL_1988&amp;amp;beta=true mir_BL_1988]&lt;br /&gt;
|Incomplete? Using SW, a spot check of three arbitrary chapters shows empty verses. See Matt 5, v15,16,30,35,36 are missing. Jas 1, v8,11 missing. Rom 8, v4,8 missing.&lt;br /&gt;
----&lt;br /&gt;
Those are all linked verses. (Matt.5.14, Matt.5.15, Matt.5.16 are a single block, where the latter two link to the entry of the first.) Nonetheless, emptyvss is reporting numerous genuinely empty (and unlinked) verses that should have some linking, according to the OSIS source. There might be some sort of importer problem here. (But there is no missing text that I can see.)&lt;br /&gt;
----&lt;br /&gt;
There are 2 bugs in osis2mod: linking is not working and appended, interverse material is replacing a link.&lt;br /&gt;
|&lt;br /&gt;
| hold for osis2mod fix&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=miz_BL_2003&amp;amp;beta=true miz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mks_BL_1999&amp;amp;beta=true mks_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvc_WBTI_2002&amp;amp;beta=true mvc_WBTI_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvj_WBTI_2000&amp;amp;beta=true mvj_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxq_BL_2004&amp;amp;beta=true mxq_BL_2004]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ncl_BL_1998&amp;amp;beta=true ncl_BL_1998]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ngu_BL_1987&amp;amp;beta=true ngu_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=nhy_BL_2006&amp;amp;beta=true nhy_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=otq_BL_2003&amp;amp;beta=true otq_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=qut_WBTI_1997&amp;amp;beta=true qut_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cso_BL_1986&amp;amp;beta=true cso_BL_1986] (renamed; was sco_BL_1986)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ttc_WBTI_2003&amp;amp;beta=true ttc_WBTI_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=tzz_BL_1987&amp;amp;beta=true tzz_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=usp_WBTI_1999&amp;amp;beta=true usp_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxt_BL_1983&amp;amp;beta=true mxt_BL_1983] (renamed; was xmt_BL_1983)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=xtd_BL_2001&amp;amp;beta=true xtd_BL_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zab_BL_1995&amp;amp;beta=true zab_BL_1995]&lt;br /&gt;
|&lt;br /&gt;
|Empty note markers stand before verse numbers. (See Matt 5)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zaw_BL_2006&amp;amp;beta=true zaw_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpo_BL_2002&amp;amp;beta=true zpo_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpq_BL_1987&amp;amp;beta=true zpq_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|In SW, Matt 5:32, the note is split oddly, as if part of it is attached to the prior verse.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpu_BL_2000&amp;amp;beta=true zpu_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpv_BL_1990&amp;amp;beta=true zpv_BL_1990]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zsr_BL_1992&amp;amp;beta=true zsr_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ztq_BL_2000&amp;amp;beta=true ztq_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zty_BL_2002&amp;amp;beta=true zty_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Dictionary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!width=&amp;quot;20%&amp;quot;|Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Autenrieth Autenrieth]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=BosworthToller BosworthToller]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=CleasbyVigfusson CleasbyVigfusson]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=FVDPVietAnh FVDPVietAnh]&amp;lt;br&amp;gt;Changed conf 6-30-2008.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisElem LewisElem]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisShort LewisShort]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LiddellScott LiddellScott]&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Zoega Zoega]&amp;lt;br/&amp;gt;Known bad, do not test;&lt;br /&gt;
|&lt;br /&gt;
|conf has 2 About= (should delete the first)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1806 Webster1806]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering? (may not be necessary for 1806)&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1913 Webster1913]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Map Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Daily Devotional Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Daily]]&lt;br /&gt;
|Appears structurally sound (scrolling between dates works)&lt;br /&gt;
Numerous scripture reference parsing errors in the source. (Fix by running through vs2osisref.)&lt;br /&gt;
&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, Links do not work in MS, some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SME]]&lt;br /&gt;
|Scrolling between dates works, appears structurally sound&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, links do not work in MS,  some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Commentary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Barnes]]&lt;br /&gt;
|Gen 1.1 entry is not UTF-8 (quotes, nbsp), perhaps elsewhere&lt;br /&gt;
|In BD and GS the bad encoding makes the module look very bad. in SW some characters do not display (? quotation marks) e.g James 2:1 2nd paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CalvinCommentaries]]&lt;br /&gt;
|Many, not all books from OT and NT, Conf reflects this, features - no FN found&lt;br /&gt;
|Displays fine in GS, BD, MS, SW, cross reference links in BibleCS often displayed as HTML text. e.g. Mark 1:1 second last paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Clarke]]*hold testing, update planned*&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|Displays well in GS, SW. In BD the bad encoding makes the module look very bad.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TSK]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in GS. In SW only vers 1 is shown and links do not work.&lt;br /&gt;
Hebrew letters are not done properly (comparing with e-sword) &lt;br /&gt;
e.g. Judg 12:6, where ת appears as ϊ and ו as ε.&lt;br /&gt;
Another example is Nehemiah 7:61, where again it seems to have greek letters, not hebrew.&lt;br /&gt;
&lt;br /&gt;
Also, it is missing the diagram (and introductory text to it) for Numbers 35:4. Is this type of schematic possible in OSIS (or just include an image)?&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[OTPassage]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in BD, GS. In SW only vers 1 is shown.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta GenBook Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Concord]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Report: This is a favorite of a Lutheran Seminarian, who finds it indispensable.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLutherpredigten]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Appears structurally sound&lt;br /&gt;
|Conf offers headings, none found&lt;br /&gt;
|Displays fine in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Imitation]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Structure works fine, would benefit from chapter names instead of numbers&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in GS, MS, BD, BibleCS, SW&amp;lt;br/&amp;gt;&lt;br /&gt;
Pre-existing &amp;quot;feature&amp;quot; in BD - FN are not displayed.&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Law_Gospel]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|BD cannot display div's which include &amp;lt;verse&amp;gt; tags.  Reported to BD as bug on 18Nov2008.  This bug prevents multiple sections from being viewed.  Basic content visible in GS, BT, and BibleCS.  Scripture references work in all of these programs as well.  Other than divs which include &amp;lt;verse&amp;gt; tags, all basic content is visible in BD.&lt;br /&gt;
|&lt;br /&gt;
|Requires use of a unicode font which includes glyphs for accented Greek characters.  These characters show up fine in GS, BT, BD, and BibleCS when a proper font is selected.  Presentation in GS, BT is nice.  Presentation in BibleCS is bland.  For instance, h1 and h2 tags are shown as plain text, without even a CR at the end.  Presentation in BD is generally nice, but text tagged with 'a name=&amp;quot;&amp;quot;' tags (kept for later linking) shows up as a hyperlink, even though there is no href.  Link has no action.  Similar text shows up as a greyed-out link in BT and as plain text in GS and BibleCS.  Table of contents on title page is encoded as ul.  Displays properly in GS, BT, BD.  Shown with no markup (plain text without CR) in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Passion]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|The TOC is undescriptive, needing titles along with numbers.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS,BD, GS, SW, BibleCS&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SummaTheologica]]&amp;lt;br/&amp;gt;[[AquinasSummaTheologica]]&amp;lt;br/&amp;gt;Which should we use?&lt;br /&gt;
|GenBook&lt;br /&gt;
|links like Bible:VUL:Gen.1.1 do not work in BD. This is a BD bug. At the same time though I think that it is inappropriate to prescribe which Bible (Vulgata) is linked to, given that this genBook is in English [[User:Refdoc|Refdoc]]&lt;br /&gt;
:If an author cites a particular work, as Aquinas is likely to have done, this is appropriate. More significantly, since Aquinas is working from Bibles with a different reference system from Bible.NRSVA, it's important to identify that somehow so that we have the potential to do reference system translation.[[User:Osk|Osk]] 21:47, 28 June 2008 (MDT)&lt;br /&gt;
Aquinas will have quoted the Vulgata as it was the authorative translation (i.e. not as a preference, but dt lack of alternative). It is a new situation to have an abundance of translations. I do agree though with the versification being a problem. Only - it will not work right now either as even the Vulgate will be KJV versified. My long term suggestion would be to introduce (once GenBokk bibles are reality) a conf property regarding versification  GenBooks could then refer to VersScheme:Book:Chapter:Verse instead of ModName:Book:Chapter:Verse - which would allow users to use a variety of applicable Bible translations with any given gen book.[[User:Refdoc|Refdoc]] 02:01, 1 July 2008 (MDT)&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS, GS SW, BibleCS. Links in BD do not work&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Jub]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Jub 35:3 is in /Jub/35, not /Jub/35/3&lt;br /&gt;
&lt;br /&gt;
Jub 38:6 is in /Jub/38&lt;br /&gt;
&lt;br /&gt;
Jub 47, 48 links to exodus aren't osisref'ed&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Didache]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Even when a proper font is selected, some text seems problematic.  See /Didache/1/6, which contains:&amp;quot;??? σου&amp;quot;.  If this is unknown text or if there are textual variants, then a footnote should be added to let the reader know that this is not an encoding problem.  Chapters don't have title text, so navigation can be a bit awkward.  For Example, Didache/1 should present the reader with a title heading such as &amp;quot;Chapter 1&amp;quot; (but in Greek which I can't read).  Still better, front ends should have a way to present all verses of the chapter without individual verse-navigation, which is very awkward.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Experimental Beta Modules=&lt;br /&gt;
'''Note:''' The following modules are experimental. Many relate to the development of Alternate Versification Bibles, implemented as GenBooks.&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[DRCgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lhgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Hesychius]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|This module would do well to be converted to a Dictionary/Lexicon.&lt;br /&gt;
|The following conf entries are not defined in wiki: LocalStripFilter=PapyriPlain and SearchOption=IncludeKeyInSearch&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[KJVgb]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[LXXM]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[UDHR]]&lt;br /&gt;
|Dict&lt;br /&gt;
|Test module only. See About for details.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Application Bugs Found During Testing=&lt;br /&gt;
During testing pre-existing bugs may be found in an application.&lt;br /&gt;
==MS==&lt;br /&gt;
* In GenBooks: click on a leaf, then click on (About). (About) does not show. Sometimes nothing happens, other times another entry's content shows.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
==BD==&lt;br /&gt;
* Does not handle foot-notes in anything but Bibles.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* links leading to a specific Bible module do not work&lt;br /&gt;
* Inconsistently displays &amp;lt;l&amp;gt; elements.&lt;br /&gt;
* Inconsistently displays pre-verse titles.&lt;br /&gt;
* in ThML Genbooks, BD fails to display any div which includes &amp;lt;verse&amp;gt; tags&lt;br /&gt;
&lt;br /&gt;
==GS==&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* Parallel references in section headings in the Gospels display as *x but do not point to the parallel text. They appear as a cross-reference to the first verse in that chapter. For an example, see Mark 1 or Luke 4 in VietNVB.&lt;br /&gt;
* &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==BT==&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==SW==&lt;br /&gt;
* Does not handle UTF-8 in Description when listing names of modules.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* In About w/ \uxxxxx? RTF codes, e.g. TurNTB, ? is shown.&lt;br /&gt;
** Well, that's the expected behavior if the font lacks the encoded character (and so, not a software or a module bug but a font deficiency if anything).-Osk&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used and transChange is in the WoC:&amp;lt;br/&amp;gt; &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words &amp;lt;transChange type=&amp;quot;added&amp;quot;&amp;gt;of&amp;lt;/transChange&amp;gt; Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&amp;lt;br/&amp;gt;The words following &amp;lt;transChange&amp;gt; are not highlighted.&lt;br /&gt;
* Links to Bible references in Daily devotions do not work&lt;br /&gt;
* Shows in commentaries only Vers 1 rather than whole chapter when asked to show a chapter - e.g. Genesis 1 - only Gen 1:1 will show up&lt;br /&gt;
&lt;br /&gt;
==BibleCS==&lt;/div&gt;</summary>
		<author><name>Bdumont</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4773</id>
		<title>Modules in the beta repository</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4773"/>
				<updated>2008-12-11T10:48:30Z</updated>
		
		<summary type="html">&lt;p&gt;Bdumont: /* Beta GenBook Modules */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please use the guide on [[Testing of new modules]] to test below listed modules and note your findings down. &lt;br /&gt;
&lt;br /&gt;
=Beta repository parameters=&lt;br /&gt;
If the beta repository need to be declared, here are the parameters:&lt;br /&gt;
* Site Name:              CrossWire beta&lt;br /&gt;
* Site Machine Name:      www.crosswire.org&lt;br /&gt;
* Repository Directory:   /pub/sword/betaraw&lt;br /&gt;
&lt;br /&gt;
=Application Legend=&lt;br /&gt;
* BibleCS - The SWORD Project for Windows&lt;br /&gt;
* MS - MacSword&lt;br /&gt;
* GS - GnomeSword&lt;br /&gt;
* BD - Bible Desktop&lt;br /&gt;
* BT - BibleTime - the BT developers have advised that BT testing is not necessary at this time.&lt;br /&gt;
* SW - SwordWeb/BibleTool [http://www.crosswire.org/~dmsmith/swordweb/webapp Beta modules] (Only shows About of all modules and content of Bibles, Commentaries and Generic Books, can not show images at present)&lt;br /&gt;
&lt;br /&gt;
=Abbreviations Legend=&lt;br /&gt;
* WoC - Words-of-Christ, aka Red Letter Text&lt;br /&gt;
* FN  - Foot note&lt;br /&gt;
* dt  - due to&lt;br /&gt;
* occ - occassionally&lt;br /&gt;
&lt;br /&gt;
=Beta Bible Modules=&lt;br /&gt;
&lt;br /&gt;
Note: Missing verses are based upon the KJV versification. A list of common versification systems and how they vary from the NRSVA versification can be found [http://www.ccel.org/refsys/refsys.html here].&lt;br /&gt;
&lt;br /&gt;
===Original Language Bibles===&lt;br /&gt;
This section should primarily contain Greek and Hebrew Bibles, but others that serve as ''source'' texts for various denominations may also be placed here (i.e. Latin, OCS, Syriac, &amp;amp; Coptic texts).&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[MorphGNT]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Tisch]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Vulgate_Clem]] (Updated 2008-07-24)&lt;br /&gt;
|Whole Bible&amp;lt;br/&amp;gt; whole of Esther, Daniel is missing&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Elzevir]]&lt;br /&gt;
|NT&lt;br /&gt;
|Actually looks fine in 1.5.11, but morph types can't be toggled independently. The 1.5.12 requirement is based on some code that was in 1.5.11pre but removed, which could handle different lemma types, so it may not be necessary for handling different morph types. Should we change req. to 1.5.11 &amp;amp; release as is?&lt;br /&gt;
----&lt;br /&gt;
Another issue is that the second morph type is TVM codes, which we don't yet have a key to (i.e. we don't have a module that translates TVM codes to plain English yet).&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===English Bibles===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ABU&amp;amp;beta=true ABU]&lt;br /&gt;
|NT only, conf reflects this, appears complete&lt;br /&gt;
|features: WoC&lt;br /&gt;
&lt;br /&gt;
There was a WoC display problem (which needs to be tested).&lt;br /&gt;
&lt;br /&gt;
See [[Talk:Modules_in_the_beta_repository#ABU]] for a discussion.&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|KJC (reissued 2008-06-28)&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|Worsleys&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|WEB&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|HNV&lt;br /&gt;
|whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== French Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[FreJND]]&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|features: FN and Xref work fine&lt;br /&gt;
&lt;br /&gt;
Skc (maintainer)&amp;gt; See [[FreJND]] about markup, it must probably be added in .conf, but where?&lt;br /&gt;
&lt;br /&gt;
DMS: I'd suggest a textual comment in the About.&lt;br /&gt;
|Headings in Psalms are all &amp;quot;canonical&amp;quot; and not subject to &amp;quot;heading&amp;quot; filter. If these are the only headings, should the conf still have Feature=OSISHeading?&lt;br /&gt;
|Displays fine in BD, in GS occ UTF8 problem - Mal 1:9 and Matt1:20 create odd characters (star in front of SEIGNEUR or DIEU (skc&amp;gt; this is intentional)), SW displays junk before DIEU in Mal 1:9 (looks like an engine problem handling &amp;lt;divineName&amp;gt;), MS doesn't display these verses at all, BibleCS  ok&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== German Bibles ===&lt;br /&gt;
'''Note:''' Versification of German Bibles in the old Testament is in stretches extremely different from the KJV. Both chapters and verses are of different length. As a result a lot of KJV verses, particularly at chapter ends are empty and other chapter ends are overloaded. Particular problems exist in the small prophets: Joel has 4 chapters and Malachi only 3 in original versification. As a result following verses appear empty when KJV versification is imposed.&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerElb1871r]]&lt;br /&gt;
(updated 2008-07-08)&lt;br /&gt;
|Various disconnected chapters of various books&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, &lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerFreeBible]]&lt;br /&gt;
| Source: http://www.flagsoft.ch/fb2004/index.html&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission and re-import from publisher copy&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lh]] (updated 2008-07-15)&lt;br /&gt;
|&lt;br /&gt;
|Needs verse linkage in a few cases. Hold for updated osis2mod.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''Hold''' pending update to osis2mod.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1912]] (updated 2008-07-17)&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in BibleCS,GS,BD, SW&lt;br /&gt;
----&lt;br /&gt;
Has an inability to display pre-verse titles, which are very common, resulting in display problems in most frontends. Might need to wait on osis2mod update before release.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerNeUe]] (updated 2008-11-30)&lt;br /&gt;
|Whole Bible, 5.Mose missing&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bible text has been updated to late September (2008) changes of the author.&lt;br /&gt;
|UTF8 problems should have been fixed&lt;br /&gt;
|Conf should be ok.&lt;br /&gt;
|Displays fine in MS, others need to be checked&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Japanese Bibles ===&lt;br /&gt;
Note: these Bibles have a new feature OSISRuby. Requires '''1.5.12'''!!!&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapBungo]]&lt;br /&gt;
|NT only (some missing verses)&lt;br /&gt;
| &lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapKougo]]&lt;br /&gt;
|Whole Bible (some missing verses)&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapMeiji]]&lt;br /&gt;
|Partial OT&lt;br /&gt;
|&lt;br /&gt;
|Note in-progress status of source.&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapRaguet]]&lt;br /&gt;
|NT only&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapDenmo]]&lt;br /&gt;
|NT portions&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Other Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
| [[AraSVD]] (updated 2008-07-21)&lt;br /&gt;
| Whole Bible&lt;br /&gt;
|&lt;br /&gt;
| none&lt;br /&gt;
| Displays nice in GS, BD, SW, BibleCS&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Breton]]&lt;br /&gt;
|Full New Testament&amp;lt;br&amp;gt;http://pagesperso-orange.fr/testamant.nevez/&lt;br /&gt;
If we get permission, re-import, including headings&lt;br /&gt;
|&lt;br /&gt;
|Identify as Version '''Koad 21'''&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CebPanadayag]]&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Dislays well in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''hold''' pending establishment of pedigree; otherwise ready&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUns]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&lt;br /&gt;
|In conf, DistributionLicense is missing&lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS. Has strong's markup problem&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUn]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&amp;lt;br/&amp;gt;&lt;br /&gt;
|conf mis-specifies history entry (History=2.1= should be History_2.1=...)and DistributionLicense is missing &lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Esperanto]]&amp;lt;br/&amp;gt;&lt;br /&gt;
| Bible&lt;br /&gt;
Missing books: Obadja, Philemon, II John, III John, Jude&amp;lt;br/&amp;gt;&lt;br /&gt;
Codepoint U+2019 not decoded in 37 places&amp;lt;br/&amp;gt;&lt;br /&gt;
''New [http://steve-and-pattie.com/esperantujo/biblio/ source] now located''.&lt;br /&gt;
|Claims options Headings and Footnotes - neither are found&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, BibleCS, MS&lt;br /&gt;
|Requires '''fixing'''. See [[Esperanto]]. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Latvian]] (updated 2008-07-23)&lt;br /&gt;
|NT only, conf reflects this&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Cross refs cannot display in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TurNTB]]&lt;br /&gt;
|Whole Bible, many empty verses dt linkage Obadja missing&lt;br /&gt;
|plenty crossreferences in plain text e.g. Lev 1:1, verse ranges poorly encoded - empty verses, e.g Zeph 1:4-6&lt;br /&gt;
|None&lt;br /&gt;
|Displays fine in GS, BD, MS, BibleCS, SW&lt;br /&gt;
|'''Hold'''  reimport after location of missing text and osismod update&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Wycliffe Bibles===&lt;br /&gt;
'''Global Problems''':&amp;lt;br/&amp;gt;&lt;br /&gt;
These Bibles are likely to have the same set of problems. If you find an error that pertains to more than one, please briefly note it below and provide details with references here:&amp;lt;br/&amp;gt;[[WBTI Bible discussion|Wycliffe Bible Discussion]]&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=amu_BL_1999&amp;amp;beta=true amu_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Dislays fine in SW. Not in BD.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cco_BL_2002&amp;amp;beta=true cco_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chd_BL_1991&amp;amp;beta=true chd_BL_1991]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chq_BL_1983&amp;amp;beta=true chq_BL_1983]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chz_BL_2003&amp;amp;beta=true chz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ckw_WBTI_1996&amp;amp;beta=true ckw_WBTI_1996]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnl_BL_1994&amp;amp;beta=true cnl_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnt_BL_1994&amp;amp;beta=true cnt_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cti_BL_1976&amp;amp;beta=true cti_BL_1976]&lt;br /&gt;
|&lt;br /&gt;
|Variation of global header note problem. The reference precedes Matt 5:20 verse number and the heading is indented after as if it were not a heading.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ctp_BL_1992&amp;amp;beta=true ctp_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=dug_WBTI_1999&amp;amp;beta=true dug_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=huv_BL_1996&amp;amp;beta=true huv_BL_1996]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ixl_WBTI_2001&amp;amp;beta=true ixl_WBTI_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jac_WBTI_1997&amp;amp;beta=true jac_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jvn_BL_1999&amp;amp;beta=true jvn_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=kek_WBTI_2000&amp;amp;beta=true kek_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=lac_BL_1978&amp;amp;beta=true lac_BL_1978]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mir_BL_1988&amp;amp;beta=true mir_BL_1988]&lt;br /&gt;
|Incomplete? Using SW, a spot check of three arbitrary chapters shows empty verses. See Matt 5, v15,16,30,35,36 are missing. Jas 1, v8,11 missing. Rom 8, v4,8 missing.&lt;br /&gt;
----&lt;br /&gt;
Those are all linked verses. (Matt.5.14, Matt.5.15, Matt.5.16 are a single block, where the latter two link to the entry of the first.) Nonetheless, emptyvss is reporting numerous genuinely empty (and unlinked) verses that should have some linking, according to the OSIS source. There might be some sort of importer problem here. (But there is no missing text that I can see.)&lt;br /&gt;
----&lt;br /&gt;
There are 2 bugs in osis2mod: linking is not working and appended, interverse material is replacing a link.&lt;br /&gt;
|&lt;br /&gt;
| hold for osis2mod fix&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=miz_BL_2003&amp;amp;beta=true miz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mks_BL_1999&amp;amp;beta=true mks_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvc_WBTI_2002&amp;amp;beta=true mvc_WBTI_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvj_WBTI_2000&amp;amp;beta=true mvj_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxq_BL_2004&amp;amp;beta=true mxq_BL_2004]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ncl_BL_1998&amp;amp;beta=true ncl_BL_1998]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ngu_BL_1987&amp;amp;beta=true ngu_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=nhy_BL_2006&amp;amp;beta=true nhy_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=otq_BL_2003&amp;amp;beta=true otq_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=qut_WBTI_1997&amp;amp;beta=true qut_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cso_BL_1986&amp;amp;beta=true cso_BL_1986] (renamed; was sco_BL_1986)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ttc_WBTI_2003&amp;amp;beta=true ttc_WBTI_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=tzz_BL_1987&amp;amp;beta=true tzz_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=usp_WBTI_1999&amp;amp;beta=true usp_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxt_BL_1983&amp;amp;beta=true mxt_BL_1983] (renamed; was xmt_BL_1983)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=xtd_BL_2001&amp;amp;beta=true xtd_BL_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zab_BL_1995&amp;amp;beta=true zab_BL_1995]&lt;br /&gt;
|&lt;br /&gt;
|Empty note markers stand before verse numbers. (See Matt 5)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zaw_BL_2006&amp;amp;beta=true zaw_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpo_BL_2002&amp;amp;beta=true zpo_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpq_BL_1987&amp;amp;beta=true zpq_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|In SW, Matt 5:32, the note is split oddly, as if part of it is attached to the prior verse.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpu_BL_2000&amp;amp;beta=true zpu_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpv_BL_1990&amp;amp;beta=true zpv_BL_1990]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zsr_BL_1992&amp;amp;beta=true zsr_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ztq_BL_2000&amp;amp;beta=true ztq_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zty_BL_2002&amp;amp;beta=true zty_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Dictionary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!width=&amp;quot;20%&amp;quot;|Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Autenrieth Autenrieth]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=BosworthToller BosworthToller]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=CleasbyVigfusson CleasbyVigfusson]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=FVDPVietAnh FVDPVietAnh]&amp;lt;br&amp;gt;Changed conf 6-30-2008.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisElem LewisElem]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisShort LewisShort]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LiddellScott LiddellScott]&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Zoega Zoega]&amp;lt;br/&amp;gt;Known bad, do not test;&lt;br /&gt;
|&lt;br /&gt;
|conf has 2 About= (should delete the first)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1806 Webster1806]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering? (may not be necessary for 1806)&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1913 Webster1913]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Map Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Daily Devotional Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Daily]]&lt;br /&gt;
|Appears structurally sound (scrolling between dates works)&lt;br /&gt;
Numerous scripture reference parsing errors in the source. (Fix by running through vs2osisref.)&lt;br /&gt;
&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, Links do not work in MS, some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SME]]&lt;br /&gt;
|Scrolling between dates works, appears structurally sound&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, links do not work in MS,  some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Commentary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Barnes]]&lt;br /&gt;
|Gen 1.1 entry is not UTF-8 (quotes, nbsp), perhaps elsewhere&lt;br /&gt;
|In BD and GS the bad encoding makes the module look very bad. in SW some characters do not display (? quotation marks) e.g James 2:1 2nd paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CalvinCommentaries]]&lt;br /&gt;
|Many, not all books from OT and NT, Conf reflects this, features - no FN found&lt;br /&gt;
|Displays fine in GS, BD, MS, SW, cross reference links in BibleCS often displayed as HTML text. e.g. Mark 1:1 second last paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Clarke]]*hold testing, update planned*&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|Displays well in GS, SW. In BD the bad encoding makes the module look very bad.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TSK]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in GS. In SW only vers 1 is shown and links do not work.&lt;br /&gt;
Hebrew letters are not done properly (comparing with e-sword) &lt;br /&gt;
e.g. Judg 12:6, where ת appears as ϊ and ו as ε.&lt;br /&gt;
Another example is Nehemiah 7:61, where again it seems to have greek letters, not hebrew.&lt;br /&gt;
&lt;br /&gt;
Also, it is missing the diagram (and introductory text to it) for Numbers 35:4. Is this type of schematic possible in OSIS (or just include an image)?&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[OTPassage]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in BD, GS. In SW only vers 1 is shown.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta GenBook Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Concord]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Report: This is a favorite of a Lutheran Seminarian, who finds it indispensable.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLutherpredigten]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Appears structurally sound&lt;br /&gt;
|Conf offers headings, none found&lt;br /&gt;
|Displays fine in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Imitation]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Structure works fine, would benefit from chapter names instead of numbers&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in GS, MS, BD, BibleCS, SW&amp;lt;br/&amp;gt;&lt;br /&gt;
Pre-existing &amp;quot;feature&amp;quot; in BD - FN are not displayed.&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Law_Gospel]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|BD cannot display div's which include &amp;lt;verse&amp;gt; tags.  Reported to BD as bug on 18Nov2008.  This bug prevents multiple sections from being viewed.  Basic content visible in GS, BT, and BibleCS.  Scripture references work in all of these programs as well.  Other than divs which include &amp;lt;verse&amp;gt; tags, all basic content is visible in BD.&lt;br /&gt;
|&lt;br /&gt;
|Requires use of a unicode font which includes glyphs for accented Greek characters.  These characters show up fine in GS, BT, BD, and BibleCS when a proper font is selected.  Presentation in GS, BT is nice.  Presentation in BibleCS is bland.  For instance, h1 and h2 tags are shown as plain text, without even a CR at the end.  Presentation in BD is generally nice, but text tagged with 'a name=&amp;quot;&amp;quot;' tags (kept for later linking) shows up as a hyperlink, even though there is no href.  Link has no action.  Similar text shows up as a greyed-out link in BT and as plain text in GS and BibleCS.  Table of contents on title page is encoded as ul.  Displays properly in GS, BT, BD.  Shown with no markup (plain text without CR) in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Passion]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|The TOC is undescriptive, needing titles along with numbers.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS,BD, GS, SW, BibleCS&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SummaTheologica]]&amp;lt;br/&amp;gt;[[AquinasSummaTheologica]]&amp;lt;br/&amp;gt;Which should we use?&lt;br /&gt;
|GenBook&lt;br /&gt;
|links like Bible:VUL:Gen.1.1 do not work in BD. This is a BD bug. At the same time though I think that it is inappropriate to prescribe which Bible (Vulgata) is linked to, given that this genBook is in English [[User:Refdoc|Refdoc]]&lt;br /&gt;
:If an author cites a particular work, as Aquinas is likely to have done, this is appropriate. More significantly, since Aquinas is working from Bibles with a different reference system from Bible.NRSVA, it's important to identify that somehow so that we have the potential to do reference system translation.[[User:Osk|Osk]] 21:47, 28 June 2008 (MDT)&lt;br /&gt;
Aquinas will have quoted the Vulgata as it was the authorative translation (i.e. not as a preference, but dt lack of alternative). It is a new situation to have an abundance of translations. I do agree though with the versification being a problem. Only - it will not work right now either as even the Vulgate will be KJV versified. My long term suggestion would be to introduce (once GenBokk bibles are reality) a conf property regarding versification  GenBooks could then refer to VersScheme:Book:Chapter:Verse instead of ModName:Book:Chapter:Verse - which would allow users to use a variety of applicable Bible translations with any given gen book.[[User:Refdoc|Refdoc]] 02:01, 1 July 2008 (MDT)&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS, GS SW, BibleCS. Links in BD do not work&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Jub]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Jub 35:3 is in /Jub/35, not /Jub/35/3&lt;br /&gt;
&lt;br /&gt;
Jub 38:6 is in /Jub/38&lt;br /&gt;
&lt;br /&gt;
Jub 47, 48 links to exodus aren't osisref'ed&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Didache]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Experimental Beta Modules=&lt;br /&gt;
'''Note:''' The following modules are experimental. Many relate to the development of Alternate Versification Bibles, implemented as GenBooks.&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[DRCgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lhgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Hesychius]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|This module would do well to be converted to a Dictionary/Lexicon.&lt;br /&gt;
|The following conf entries are not defined in wiki: LocalStripFilter=PapyriPlain and SearchOption=IncludeKeyInSearch&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[KJVgb]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[LXXM]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[UDHR]]&lt;br /&gt;
|Dict&lt;br /&gt;
|Test module only. See About for details.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Application Bugs Found During Testing=&lt;br /&gt;
During testing pre-existing bugs may be found in an application.&lt;br /&gt;
==MS==&lt;br /&gt;
* In GenBooks: click on a leaf, then click on (About). (About) does not show. Sometimes nothing happens, other times another entry's content shows.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
==BD==&lt;br /&gt;
* Does not handle foot-notes in anything but Bibles.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* links leading to a specific Bible module do not work&lt;br /&gt;
* Inconsistently displays &amp;lt;l&amp;gt; elements.&lt;br /&gt;
* Inconsistently displays pre-verse titles.&lt;br /&gt;
* in ThML Genbooks, BD fails to display any div which includes &amp;lt;verse&amp;gt; tags&lt;br /&gt;
&lt;br /&gt;
==GS==&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* Parallel references in section headings in the Gospels display as *x but do not point to the parallel text. They appear as a cross-reference to the first verse in that chapter. For an example, see Mark 1 or Luke 4 in VietNVB.&lt;br /&gt;
* &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==BT==&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==SW==&lt;br /&gt;
* Does not handle UTF-8 in Description when listing names of modules.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* In About w/ \uxxxxx? RTF codes, e.g. TurNTB, ? is shown.&lt;br /&gt;
** Well, that's the expected behavior if the font lacks the encoded character (and so, not a software or a module bug but a font deficiency if anything).-Osk&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used and transChange is in the WoC:&amp;lt;br/&amp;gt; &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words &amp;lt;transChange type=&amp;quot;added&amp;quot;&amp;gt;of&amp;lt;/transChange&amp;gt; Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&amp;lt;br/&amp;gt;The words following &amp;lt;transChange&amp;gt; are not highlighted.&lt;br /&gt;
* Links to Bible references in Daily devotions do not work&lt;br /&gt;
* Shows in commentaries only Vers 1 rather than whole chapter when asked to show a chapter - e.g. Genesis 1 - only Gen 1:1 will show up&lt;br /&gt;
&lt;br /&gt;
==BibleCS==&lt;/div&gt;</summary>
		<author><name>Bdumont</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4772</id>
		<title>Modules in the beta repository</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4772"/>
				<updated>2008-12-11T10:47:40Z</updated>
		
		<summary type="html">&lt;p&gt;Bdumont: /* Beta GenBook Modules */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please use the guide on [[Testing of new modules]] to test below listed modules and note your findings down. &lt;br /&gt;
&lt;br /&gt;
=Beta repository parameters=&lt;br /&gt;
If the beta repository need to be declared, here are the parameters:&lt;br /&gt;
* Site Name:              CrossWire beta&lt;br /&gt;
* Site Machine Name:      www.crosswire.org&lt;br /&gt;
* Repository Directory:   /pub/sword/betaraw&lt;br /&gt;
&lt;br /&gt;
=Application Legend=&lt;br /&gt;
* BibleCS - The SWORD Project for Windows&lt;br /&gt;
* MS - MacSword&lt;br /&gt;
* GS - GnomeSword&lt;br /&gt;
* BD - Bible Desktop&lt;br /&gt;
* BT - BibleTime - the BT developers have advised that BT testing is not necessary at this time.&lt;br /&gt;
* SW - SwordWeb/BibleTool [http://www.crosswire.org/~dmsmith/swordweb/webapp Beta modules] (Only shows About of all modules and content of Bibles, Commentaries and Generic Books, can not show images at present)&lt;br /&gt;
&lt;br /&gt;
=Abbreviations Legend=&lt;br /&gt;
* WoC - Words-of-Christ, aka Red Letter Text&lt;br /&gt;
* FN  - Foot note&lt;br /&gt;
* dt  - due to&lt;br /&gt;
* occ - occassionally&lt;br /&gt;
&lt;br /&gt;
=Beta Bible Modules=&lt;br /&gt;
&lt;br /&gt;
Note: Missing verses are based upon the KJV versification. A list of common versification systems and how they vary from the NRSVA versification can be found [http://www.ccel.org/refsys/refsys.html here].&lt;br /&gt;
&lt;br /&gt;
===Original Language Bibles===&lt;br /&gt;
This section should primarily contain Greek and Hebrew Bibles, but others that serve as ''source'' texts for various denominations may also be placed here (i.e. Latin, OCS, Syriac, &amp;amp; Coptic texts).&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[MorphGNT]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Tisch]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Vulgate_Clem]] (Updated 2008-07-24)&lt;br /&gt;
|Whole Bible&amp;lt;br/&amp;gt; whole of Esther, Daniel is missing&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Elzevir]]&lt;br /&gt;
|NT&lt;br /&gt;
|Actually looks fine in 1.5.11, but morph types can't be toggled independently. The 1.5.12 requirement is based on some code that was in 1.5.11pre but removed, which could handle different lemma types, so it may not be necessary for handling different morph types. Should we change req. to 1.5.11 &amp;amp; release as is?&lt;br /&gt;
----&lt;br /&gt;
Another issue is that the second morph type is TVM codes, which we don't yet have a key to (i.e. we don't have a module that translates TVM codes to plain English yet).&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===English Bibles===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ABU&amp;amp;beta=true ABU]&lt;br /&gt;
|NT only, conf reflects this, appears complete&lt;br /&gt;
|features: WoC&lt;br /&gt;
&lt;br /&gt;
There was a WoC display problem (which needs to be tested).&lt;br /&gt;
&lt;br /&gt;
See [[Talk:Modules_in_the_beta_repository#ABU]] for a discussion.&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|KJC (reissued 2008-06-28)&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|Worsleys&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|WEB&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|HNV&lt;br /&gt;
|whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== French Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[FreJND]]&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|features: FN and Xref work fine&lt;br /&gt;
&lt;br /&gt;
Skc (maintainer)&amp;gt; See [[FreJND]] about markup, it must probably be added in .conf, but where?&lt;br /&gt;
&lt;br /&gt;
DMS: I'd suggest a textual comment in the About.&lt;br /&gt;
|Headings in Psalms are all &amp;quot;canonical&amp;quot; and not subject to &amp;quot;heading&amp;quot; filter. If these are the only headings, should the conf still have Feature=OSISHeading?&lt;br /&gt;
|Displays fine in BD, in GS occ UTF8 problem - Mal 1:9 and Matt1:20 create odd characters (star in front of SEIGNEUR or DIEU (skc&amp;gt; this is intentional)), SW displays junk before DIEU in Mal 1:9 (looks like an engine problem handling &amp;lt;divineName&amp;gt;), MS doesn't display these verses at all, BibleCS  ok&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== German Bibles ===&lt;br /&gt;
'''Note:''' Versification of German Bibles in the old Testament is in stretches extremely different from the KJV. Both chapters and verses are of different length. As a result a lot of KJV verses, particularly at chapter ends are empty and other chapter ends are overloaded. Particular problems exist in the small prophets: Joel has 4 chapters and Malachi only 3 in original versification. As a result following verses appear empty when KJV versification is imposed.&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerElb1871r]]&lt;br /&gt;
(updated 2008-07-08)&lt;br /&gt;
|Various disconnected chapters of various books&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, &lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerFreeBible]]&lt;br /&gt;
| Source: http://www.flagsoft.ch/fb2004/index.html&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission and re-import from publisher copy&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lh]] (updated 2008-07-15)&lt;br /&gt;
|&lt;br /&gt;
|Needs verse linkage in a few cases. Hold for updated osis2mod.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''Hold''' pending update to osis2mod.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1912]] (updated 2008-07-17)&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in BibleCS,GS,BD, SW&lt;br /&gt;
----&lt;br /&gt;
Has an inability to display pre-verse titles, which are very common, resulting in display problems in most frontends. Might need to wait on osis2mod update before release.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerNeUe]] (updated 2008-11-30)&lt;br /&gt;
|Whole Bible, 5.Mose missing&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bible text has been updated to late September (2008) changes of the author.&lt;br /&gt;
|UTF8 problems should have been fixed&lt;br /&gt;
|Conf should be ok.&lt;br /&gt;
|Displays fine in MS, others need to be checked&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Japanese Bibles ===&lt;br /&gt;
Note: these Bibles have a new feature OSISRuby. Requires '''1.5.12'''!!!&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapBungo]]&lt;br /&gt;
|NT only (some missing verses)&lt;br /&gt;
| &lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapKougo]]&lt;br /&gt;
|Whole Bible (some missing verses)&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapMeiji]]&lt;br /&gt;
|Partial OT&lt;br /&gt;
|&lt;br /&gt;
|Note in-progress status of source.&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapRaguet]]&lt;br /&gt;
|NT only&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapDenmo]]&lt;br /&gt;
|NT portions&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Other Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
| [[AraSVD]] (updated 2008-07-21)&lt;br /&gt;
| Whole Bible&lt;br /&gt;
|&lt;br /&gt;
| none&lt;br /&gt;
| Displays nice in GS, BD, SW, BibleCS&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Breton]]&lt;br /&gt;
|Full New Testament&amp;lt;br&amp;gt;http://pagesperso-orange.fr/testamant.nevez/&lt;br /&gt;
If we get permission, re-import, including headings&lt;br /&gt;
|&lt;br /&gt;
|Identify as Version '''Koad 21'''&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CebPanadayag]]&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Dislays well in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''hold''' pending establishment of pedigree; otherwise ready&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUns]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&lt;br /&gt;
|In conf, DistributionLicense is missing&lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS. Has strong's markup problem&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUn]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&amp;lt;br/&amp;gt;&lt;br /&gt;
|conf mis-specifies history entry (History=2.1= should be History_2.1=...)and DistributionLicense is missing &lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Esperanto]]&amp;lt;br/&amp;gt;&lt;br /&gt;
| Bible&lt;br /&gt;
Missing books: Obadja, Philemon, II John, III John, Jude&amp;lt;br/&amp;gt;&lt;br /&gt;
Codepoint U+2019 not decoded in 37 places&amp;lt;br/&amp;gt;&lt;br /&gt;
''New [http://steve-and-pattie.com/esperantujo/biblio/ source] now located''.&lt;br /&gt;
|Claims options Headings and Footnotes - neither are found&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, BibleCS, MS&lt;br /&gt;
|Requires '''fixing'''. See [[Esperanto]]. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Latvian]] (updated 2008-07-23)&lt;br /&gt;
|NT only, conf reflects this&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Cross refs cannot display in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TurNTB]]&lt;br /&gt;
|Whole Bible, many empty verses dt linkage Obadja missing&lt;br /&gt;
|plenty crossreferences in plain text e.g. Lev 1:1, verse ranges poorly encoded - empty verses, e.g Zeph 1:4-6&lt;br /&gt;
|None&lt;br /&gt;
|Displays fine in GS, BD, MS, BibleCS, SW&lt;br /&gt;
|'''Hold'''  reimport after location of missing text and osismod update&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Wycliffe Bibles===&lt;br /&gt;
'''Global Problems''':&amp;lt;br/&amp;gt;&lt;br /&gt;
These Bibles are likely to have the same set of problems. If you find an error that pertains to more than one, please briefly note it below and provide details with references here:&amp;lt;br/&amp;gt;[[WBTI Bible discussion|Wycliffe Bible Discussion]]&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=amu_BL_1999&amp;amp;beta=true amu_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Dislays fine in SW. Not in BD.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cco_BL_2002&amp;amp;beta=true cco_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chd_BL_1991&amp;amp;beta=true chd_BL_1991]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chq_BL_1983&amp;amp;beta=true chq_BL_1983]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chz_BL_2003&amp;amp;beta=true chz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ckw_WBTI_1996&amp;amp;beta=true ckw_WBTI_1996]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnl_BL_1994&amp;amp;beta=true cnl_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnt_BL_1994&amp;amp;beta=true cnt_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cti_BL_1976&amp;amp;beta=true cti_BL_1976]&lt;br /&gt;
|&lt;br /&gt;
|Variation of global header note problem. The reference precedes Matt 5:20 verse number and the heading is indented after as if it were not a heading.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ctp_BL_1992&amp;amp;beta=true ctp_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=dug_WBTI_1999&amp;amp;beta=true dug_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=huv_BL_1996&amp;amp;beta=true huv_BL_1996]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ixl_WBTI_2001&amp;amp;beta=true ixl_WBTI_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jac_WBTI_1997&amp;amp;beta=true jac_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jvn_BL_1999&amp;amp;beta=true jvn_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=kek_WBTI_2000&amp;amp;beta=true kek_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=lac_BL_1978&amp;amp;beta=true lac_BL_1978]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mir_BL_1988&amp;amp;beta=true mir_BL_1988]&lt;br /&gt;
|Incomplete? Using SW, a spot check of three arbitrary chapters shows empty verses. See Matt 5, v15,16,30,35,36 are missing. Jas 1, v8,11 missing. Rom 8, v4,8 missing.&lt;br /&gt;
----&lt;br /&gt;
Those are all linked verses. (Matt.5.14, Matt.5.15, Matt.5.16 are a single block, where the latter two link to the entry of the first.) Nonetheless, emptyvss is reporting numerous genuinely empty (and unlinked) verses that should have some linking, according to the OSIS source. There might be some sort of importer problem here. (But there is no missing text that I can see.)&lt;br /&gt;
----&lt;br /&gt;
There are 2 bugs in osis2mod: linking is not working and appended, interverse material is replacing a link.&lt;br /&gt;
|&lt;br /&gt;
| hold for osis2mod fix&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=miz_BL_2003&amp;amp;beta=true miz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mks_BL_1999&amp;amp;beta=true mks_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvc_WBTI_2002&amp;amp;beta=true mvc_WBTI_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvj_WBTI_2000&amp;amp;beta=true mvj_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxq_BL_2004&amp;amp;beta=true mxq_BL_2004]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ncl_BL_1998&amp;amp;beta=true ncl_BL_1998]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ngu_BL_1987&amp;amp;beta=true ngu_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=nhy_BL_2006&amp;amp;beta=true nhy_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=otq_BL_2003&amp;amp;beta=true otq_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=qut_WBTI_1997&amp;amp;beta=true qut_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cso_BL_1986&amp;amp;beta=true cso_BL_1986] (renamed; was sco_BL_1986)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ttc_WBTI_2003&amp;amp;beta=true ttc_WBTI_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=tzz_BL_1987&amp;amp;beta=true tzz_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=usp_WBTI_1999&amp;amp;beta=true usp_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxt_BL_1983&amp;amp;beta=true mxt_BL_1983] (renamed; was xmt_BL_1983)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=xtd_BL_2001&amp;amp;beta=true xtd_BL_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zab_BL_1995&amp;amp;beta=true zab_BL_1995]&lt;br /&gt;
|&lt;br /&gt;
|Empty note markers stand before verse numbers. (See Matt 5)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zaw_BL_2006&amp;amp;beta=true zaw_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpo_BL_2002&amp;amp;beta=true zpo_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpq_BL_1987&amp;amp;beta=true zpq_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|In SW, Matt 5:32, the note is split oddly, as if part of it is attached to the prior verse.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpu_BL_2000&amp;amp;beta=true zpu_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpv_BL_1990&amp;amp;beta=true zpv_BL_1990]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zsr_BL_1992&amp;amp;beta=true zsr_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ztq_BL_2000&amp;amp;beta=true ztq_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zty_BL_2002&amp;amp;beta=true zty_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Dictionary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!width=&amp;quot;20%&amp;quot;|Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Autenrieth Autenrieth]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=BosworthToller BosworthToller]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=CleasbyVigfusson CleasbyVigfusson]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=FVDPVietAnh FVDPVietAnh]&amp;lt;br&amp;gt;Changed conf 6-30-2008.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisElem LewisElem]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisShort LewisShort]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LiddellScott LiddellScott]&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Zoega Zoega]&amp;lt;br/&amp;gt;Known bad, do not test;&lt;br /&gt;
|&lt;br /&gt;
|conf has 2 About= (should delete the first)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1806 Webster1806]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering? (may not be necessary for 1806)&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1913 Webster1913]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Map Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Daily Devotional Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Daily]]&lt;br /&gt;
|Appears structurally sound (scrolling between dates works)&lt;br /&gt;
Numerous scripture reference parsing errors in the source. (Fix by running through vs2osisref.)&lt;br /&gt;
&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, Links do not work in MS, some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SME]]&lt;br /&gt;
|Scrolling between dates works, appears structurally sound&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, links do not work in MS,  some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Commentary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Barnes]]&lt;br /&gt;
|Gen 1.1 entry is not UTF-8 (quotes, nbsp), perhaps elsewhere&lt;br /&gt;
|In BD and GS the bad encoding makes the module look very bad. in SW some characters do not display (? quotation marks) e.g James 2:1 2nd paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CalvinCommentaries]]&lt;br /&gt;
|Many, not all books from OT and NT, Conf reflects this, features - no FN found&lt;br /&gt;
|Displays fine in GS, BD, MS, SW, cross reference links in BibleCS often displayed as HTML text. e.g. Mark 1:1 second last paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Clarke]]*hold testing, update planned*&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|Displays well in GS, SW. In BD the bad encoding makes the module look very bad.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TSK]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in GS. In SW only vers 1 is shown and links do not work.&lt;br /&gt;
Hebrew letters are not done properly (comparing with e-sword) &lt;br /&gt;
e.g. Judg 12:6, where ת appears as ϊ and ו as ε.&lt;br /&gt;
Another example is Nehemiah 7:61, where again it seems to have greek letters, not hebrew.&lt;br /&gt;
&lt;br /&gt;
Also, it is missing the diagram (and introductory text to it) for Numbers 35:4. Is this type of schematic possible in OSIS (or just include an image)?&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[OTPassage]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in BD, GS. In SW only vers 1 is shown.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta GenBook Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Concord]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Report: This is a favorite of a Lutheran Seminarian, who finds it indispensable.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLutherpredigten]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Appears structurally sound&lt;br /&gt;
|Conf offers headings, none found&lt;br /&gt;
|Displays fine in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Imitation]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Structure works fine, would benefit from chapter names instead of numbers&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in GS, MS, BD, BibleCS, SW&amp;lt;br/&amp;gt;&lt;br /&gt;
Pre-existing &amp;quot;feature&amp;quot; in BD - FN are not displayed.&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Law_Gospel]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|BD cannot display div's which include &amp;lt;verse&amp;gt; tags.  Reported to BD as bug on 18Nov2008.  This bug prevents multiple sections from being viewed.  Basic content visible in GS, BT, and BibleCS.  Scripture references work in all of these programs as well.  Other than divs which include &amp;lt;verse&amp;gt; tags, all basic content is visible in BD.&lt;br /&gt;
|&lt;br /&gt;
|Requires use of a unicode font which includes glyphs for accented Greek characters.  These characters show up fine in GS, BT, BD, and BibleCS when a proper font is selected.  Presentation in GS, BT is nice.  Presentation in BibleCS is bland.  For instance, &amp;lt;h1&amp;gt; and &amp;lt;h2&amp;gt; tags are shown as plain text, without even a CR at the end.  Presentation in BD is generally nice, but text tagged with &amp;lt;a name=&amp;quot;&amp;quot;&amp;gt; tags (kept for later linking) shows up as a hyperlink, even though there is no href.  Link has no action.  Similar text shows up as a greyed-out link in BT and as plain text in GS and BibleCS.  Table of contents on title page is encoded as &amp;lt;ul&amp;gt;.  Displays properly in GS, BT, BD.  Shown with no markup (plain text without CR) in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Passion]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|The TOC is undescriptive, needing titles along with numbers.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS,BD, GS, SW, BibleCS&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SummaTheologica]]&amp;lt;br/&amp;gt;[[AquinasSummaTheologica]]&amp;lt;br/&amp;gt;Which should we use?&lt;br /&gt;
|GenBook&lt;br /&gt;
|links like Bible:VUL:Gen.1.1 do not work in BD. This is a BD bug. At the same time though I think that it is inappropriate to prescribe which Bible (Vulgata) is linked to, given that this genBook is in English [[User:Refdoc|Refdoc]]&lt;br /&gt;
:If an author cites a particular work, as Aquinas is likely to have done, this is appropriate. More significantly, since Aquinas is working from Bibles with a different reference system from Bible.NRSVA, it's important to identify that somehow so that we have the potential to do reference system translation.[[User:Osk|Osk]] 21:47, 28 June 2008 (MDT)&lt;br /&gt;
Aquinas will have quoted the Vulgata as it was the authorative translation (i.e. not as a preference, but dt lack of alternative). It is a new situation to have an abundance of translations. I do agree though with the versification being a problem. Only - it will not work right now either as even the Vulgate will be KJV versified. My long term suggestion would be to introduce (once GenBokk bibles are reality) a conf property regarding versification  GenBooks could then refer to VersScheme:Book:Chapter:Verse instead of ModName:Book:Chapter:Verse - which would allow users to use a variety of applicable Bible translations with any given gen book.[[User:Refdoc|Refdoc]] 02:01, 1 July 2008 (MDT)&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS, GS SW, BibleCS. Links in BD do not work&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Jub]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Jub 35:3 is in /Jub/35, not /Jub/35/3&lt;br /&gt;
&lt;br /&gt;
Jub 38:6 is in /Jub/38&lt;br /&gt;
&lt;br /&gt;
Jub 47, 48 links to exodus aren't osisref'ed&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Didache]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Experimental Beta Modules=&lt;br /&gt;
'''Note:''' The following modules are experimental. Many relate to the development of Alternate Versification Bibles, implemented as GenBooks.&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[DRCgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lhgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Hesychius]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|This module would do well to be converted to a Dictionary/Lexicon.&lt;br /&gt;
|The following conf entries are not defined in wiki: LocalStripFilter=PapyriPlain and SearchOption=IncludeKeyInSearch&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[KJVgb]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[LXXM]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[UDHR]]&lt;br /&gt;
|Dict&lt;br /&gt;
|Test module only. See About for details.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Application Bugs Found During Testing=&lt;br /&gt;
During testing pre-existing bugs may be found in an application.&lt;br /&gt;
==MS==&lt;br /&gt;
* In GenBooks: click on a leaf, then click on (About). (About) does not show. Sometimes nothing happens, other times another entry's content shows.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
==BD==&lt;br /&gt;
* Does not handle foot-notes in anything but Bibles.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* links leading to a specific Bible module do not work&lt;br /&gt;
* Inconsistently displays &amp;lt;l&amp;gt; elements.&lt;br /&gt;
* Inconsistently displays pre-verse titles.&lt;br /&gt;
* in ThML Genbooks, BD fails to display any div which includes &amp;lt;verse&amp;gt; tags&lt;br /&gt;
&lt;br /&gt;
==GS==&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* Parallel references in section headings in the Gospels display as *x but do not point to the parallel text. They appear as a cross-reference to the first verse in that chapter. For an example, see Mark 1 or Luke 4 in VietNVB.&lt;br /&gt;
* &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==BT==&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==SW==&lt;br /&gt;
* Does not handle UTF-8 in Description when listing names of modules.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* In About w/ \uxxxxx? RTF codes, e.g. TurNTB, ? is shown.&lt;br /&gt;
** Well, that's the expected behavior if the font lacks the encoded character (and so, not a software or a module bug but a font deficiency if anything).-Osk&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used and transChange is in the WoC:&amp;lt;br/&amp;gt; &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words &amp;lt;transChange type=&amp;quot;added&amp;quot;&amp;gt;of&amp;lt;/transChange&amp;gt; Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&amp;lt;br/&amp;gt;The words following &amp;lt;transChange&amp;gt; are not highlighted.&lt;br /&gt;
* Links to Bible references in Daily devotions do not work&lt;br /&gt;
* Shows in commentaries only Vers 1 rather than whole chapter when asked to show a chapter - e.g. Genesis 1 - only Gen 1:1 will show up&lt;br /&gt;
&lt;br /&gt;
==BibleCS==&lt;/div&gt;</summary>
		<author><name>Bdumont</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4771</id>
		<title>Modules in the beta repository</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4771"/>
				<updated>2008-12-11T10:19:18Z</updated>
		
		<summary type="html">&lt;p&gt;Bdumont: /* BD */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please use the guide on [[Testing of new modules]] to test below listed modules and note your findings down. &lt;br /&gt;
&lt;br /&gt;
=Beta repository parameters=&lt;br /&gt;
If the beta repository need to be declared, here are the parameters:&lt;br /&gt;
* Site Name:              CrossWire beta&lt;br /&gt;
* Site Machine Name:      www.crosswire.org&lt;br /&gt;
* Repository Directory:   /pub/sword/betaraw&lt;br /&gt;
&lt;br /&gt;
=Application Legend=&lt;br /&gt;
* BibleCS - The SWORD Project for Windows&lt;br /&gt;
* MS - MacSword&lt;br /&gt;
* GS - GnomeSword&lt;br /&gt;
* BD - Bible Desktop&lt;br /&gt;
* BT - BibleTime - the BT developers have advised that BT testing is not necessary at this time.&lt;br /&gt;
* SW - SwordWeb/BibleTool [http://www.crosswire.org/~dmsmith/swordweb/webapp Beta modules] (Only shows About of all modules and content of Bibles, Commentaries and Generic Books, can not show images at present)&lt;br /&gt;
&lt;br /&gt;
=Abbreviations Legend=&lt;br /&gt;
* WoC - Words-of-Christ, aka Red Letter Text&lt;br /&gt;
* FN  - Foot note&lt;br /&gt;
* dt  - due to&lt;br /&gt;
* occ - occassionally&lt;br /&gt;
&lt;br /&gt;
=Beta Bible Modules=&lt;br /&gt;
&lt;br /&gt;
Note: Missing verses are based upon the KJV versification. A list of common versification systems and how they vary from the NRSVA versification can be found [http://www.ccel.org/refsys/refsys.html here].&lt;br /&gt;
&lt;br /&gt;
===Original Language Bibles===&lt;br /&gt;
This section should primarily contain Greek and Hebrew Bibles, but others that serve as ''source'' texts for various denominations may also be placed here (i.e. Latin, OCS, Syriac, &amp;amp; Coptic texts).&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[MorphGNT]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Tisch]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Vulgate_Clem]] (Updated 2008-07-24)&lt;br /&gt;
|Whole Bible&amp;lt;br/&amp;gt; whole of Esther, Daniel is missing&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Elzevir]]&lt;br /&gt;
|NT&lt;br /&gt;
|Actually looks fine in 1.5.11, but morph types can't be toggled independently. The 1.5.12 requirement is based on some code that was in 1.5.11pre but removed, which could handle different lemma types, so it may not be necessary for handling different morph types. Should we change req. to 1.5.11 &amp;amp; release as is?&lt;br /&gt;
----&lt;br /&gt;
Another issue is that the second morph type is TVM codes, which we don't yet have a key to (i.e. we don't have a module that translates TVM codes to plain English yet).&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===English Bibles===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ABU&amp;amp;beta=true ABU]&lt;br /&gt;
|NT only, conf reflects this, appears complete&lt;br /&gt;
|features: WoC&lt;br /&gt;
&lt;br /&gt;
There was a WoC display problem (which needs to be tested).&lt;br /&gt;
&lt;br /&gt;
See [[Talk:Modules_in_the_beta_repository#ABU]] for a discussion.&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|KJC (reissued 2008-06-28)&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|Worsleys&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|WEB&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|HNV&lt;br /&gt;
|whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== French Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[FreJND]]&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|features: FN and Xref work fine&lt;br /&gt;
&lt;br /&gt;
Skc (maintainer)&amp;gt; See [[FreJND]] about markup, it must probably be added in .conf, but where?&lt;br /&gt;
&lt;br /&gt;
DMS: I'd suggest a textual comment in the About.&lt;br /&gt;
|Headings in Psalms are all &amp;quot;canonical&amp;quot; and not subject to &amp;quot;heading&amp;quot; filter. If these are the only headings, should the conf still have Feature=OSISHeading?&lt;br /&gt;
|Displays fine in BD, in GS occ UTF8 problem - Mal 1:9 and Matt1:20 create odd characters (star in front of SEIGNEUR or DIEU (skc&amp;gt; this is intentional)), SW displays junk before DIEU in Mal 1:9 (looks like an engine problem handling &amp;lt;divineName&amp;gt;), MS doesn't display these verses at all, BibleCS  ok&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== German Bibles ===&lt;br /&gt;
'''Note:''' Versification of German Bibles in the old Testament is in stretches extremely different from the KJV. Both chapters and verses are of different length. As a result a lot of KJV verses, particularly at chapter ends are empty and other chapter ends are overloaded. Particular problems exist in the small prophets: Joel has 4 chapters and Malachi only 3 in original versification. As a result following verses appear empty when KJV versification is imposed.&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerElb1871r]]&lt;br /&gt;
(updated 2008-07-08)&lt;br /&gt;
|Various disconnected chapters of various books&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, &lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerFreeBible]]&lt;br /&gt;
| Source: http://www.flagsoft.ch/fb2004/index.html&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission and re-import from publisher copy&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lh]] (updated 2008-07-15)&lt;br /&gt;
|&lt;br /&gt;
|Needs verse linkage in a few cases. Hold for updated osis2mod.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''Hold''' pending update to osis2mod.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1912]] (updated 2008-07-17)&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in BibleCS,GS,BD, SW&lt;br /&gt;
----&lt;br /&gt;
Has an inability to display pre-verse titles, which are very common, resulting in display problems in most frontends. Might need to wait on osis2mod update before release.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerNeUe]] (updated 2008-11-30)&lt;br /&gt;
|Whole Bible, 5.Mose missing&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bible text has been updated to late September (2008) changes of the author.&lt;br /&gt;
|UTF8 problems should have been fixed&lt;br /&gt;
|Conf should be ok.&lt;br /&gt;
|Displays fine in MS, others need to be checked&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Japanese Bibles ===&lt;br /&gt;
Note: these Bibles have a new feature OSISRuby. Requires '''1.5.12'''!!!&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapBungo]]&lt;br /&gt;
|NT only (some missing verses)&lt;br /&gt;
| &lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapKougo]]&lt;br /&gt;
|Whole Bible (some missing verses)&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapMeiji]]&lt;br /&gt;
|Partial OT&lt;br /&gt;
|&lt;br /&gt;
|Note in-progress status of source.&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapRaguet]]&lt;br /&gt;
|NT only&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapDenmo]]&lt;br /&gt;
|NT portions&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Other Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
| [[AraSVD]] (updated 2008-07-21)&lt;br /&gt;
| Whole Bible&lt;br /&gt;
|&lt;br /&gt;
| none&lt;br /&gt;
| Displays nice in GS, BD, SW, BibleCS&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Breton]]&lt;br /&gt;
|Full New Testament&amp;lt;br&amp;gt;http://pagesperso-orange.fr/testamant.nevez/&lt;br /&gt;
If we get permission, re-import, including headings&lt;br /&gt;
|&lt;br /&gt;
|Identify as Version '''Koad 21'''&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CebPanadayag]]&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Dislays well in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''hold''' pending establishment of pedigree; otherwise ready&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUns]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&lt;br /&gt;
|In conf, DistributionLicense is missing&lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS. Has strong's markup problem&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUn]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&amp;lt;br/&amp;gt;&lt;br /&gt;
|conf mis-specifies history entry (History=2.1= should be History_2.1=...)and DistributionLicense is missing &lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Esperanto]]&amp;lt;br/&amp;gt;&lt;br /&gt;
| Bible&lt;br /&gt;
Missing books: Obadja, Philemon, II John, III John, Jude&amp;lt;br/&amp;gt;&lt;br /&gt;
Codepoint U+2019 not decoded in 37 places&amp;lt;br/&amp;gt;&lt;br /&gt;
''New [http://steve-and-pattie.com/esperantujo/biblio/ source] now located''.&lt;br /&gt;
|Claims options Headings and Footnotes - neither are found&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, BibleCS, MS&lt;br /&gt;
|Requires '''fixing'''. See [[Esperanto]]. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Latvian]] (updated 2008-07-23)&lt;br /&gt;
|NT only, conf reflects this&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Cross refs cannot display in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TurNTB]]&lt;br /&gt;
|Whole Bible, many empty verses dt linkage Obadja missing&lt;br /&gt;
|plenty crossreferences in plain text e.g. Lev 1:1, verse ranges poorly encoded - empty verses, e.g Zeph 1:4-6&lt;br /&gt;
|None&lt;br /&gt;
|Displays fine in GS, BD, MS, BibleCS, SW&lt;br /&gt;
|'''Hold'''  reimport after location of missing text and osismod update&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Wycliffe Bibles===&lt;br /&gt;
'''Global Problems''':&amp;lt;br/&amp;gt;&lt;br /&gt;
These Bibles are likely to have the same set of problems. If you find an error that pertains to more than one, please briefly note it below and provide details with references here:&amp;lt;br/&amp;gt;[[WBTI Bible discussion|Wycliffe Bible Discussion]]&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=amu_BL_1999&amp;amp;beta=true amu_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Dislays fine in SW. Not in BD.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cco_BL_2002&amp;amp;beta=true cco_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chd_BL_1991&amp;amp;beta=true chd_BL_1991]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chq_BL_1983&amp;amp;beta=true chq_BL_1983]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chz_BL_2003&amp;amp;beta=true chz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ckw_WBTI_1996&amp;amp;beta=true ckw_WBTI_1996]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnl_BL_1994&amp;amp;beta=true cnl_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnt_BL_1994&amp;amp;beta=true cnt_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cti_BL_1976&amp;amp;beta=true cti_BL_1976]&lt;br /&gt;
|&lt;br /&gt;
|Variation of global header note problem. The reference precedes Matt 5:20 verse number and the heading is indented after as if it were not a heading.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ctp_BL_1992&amp;amp;beta=true ctp_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=dug_WBTI_1999&amp;amp;beta=true dug_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=huv_BL_1996&amp;amp;beta=true huv_BL_1996]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ixl_WBTI_2001&amp;amp;beta=true ixl_WBTI_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jac_WBTI_1997&amp;amp;beta=true jac_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jvn_BL_1999&amp;amp;beta=true jvn_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=kek_WBTI_2000&amp;amp;beta=true kek_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=lac_BL_1978&amp;amp;beta=true lac_BL_1978]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mir_BL_1988&amp;amp;beta=true mir_BL_1988]&lt;br /&gt;
|Incomplete? Using SW, a spot check of three arbitrary chapters shows empty verses. See Matt 5, v15,16,30,35,36 are missing. Jas 1, v8,11 missing. Rom 8, v4,8 missing.&lt;br /&gt;
----&lt;br /&gt;
Those are all linked verses. (Matt.5.14, Matt.5.15, Matt.5.16 are a single block, where the latter two link to the entry of the first.) Nonetheless, emptyvss is reporting numerous genuinely empty (and unlinked) verses that should have some linking, according to the OSIS source. There might be some sort of importer problem here. (But there is no missing text that I can see.)&lt;br /&gt;
----&lt;br /&gt;
There are 2 bugs in osis2mod: linking is not working and appended, interverse material is replacing a link.&lt;br /&gt;
|&lt;br /&gt;
| hold for osis2mod fix&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=miz_BL_2003&amp;amp;beta=true miz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mks_BL_1999&amp;amp;beta=true mks_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvc_WBTI_2002&amp;amp;beta=true mvc_WBTI_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvj_WBTI_2000&amp;amp;beta=true mvj_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxq_BL_2004&amp;amp;beta=true mxq_BL_2004]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ncl_BL_1998&amp;amp;beta=true ncl_BL_1998]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ngu_BL_1987&amp;amp;beta=true ngu_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=nhy_BL_2006&amp;amp;beta=true nhy_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=otq_BL_2003&amp;amp;beta=true otq_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=qut_WBTI_1997&amp;amp;beta=true qut_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cso_BL_1986&amp;amp;beta=true cso_BL_1986] (renamed; was sco_BL_1986)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ttc_WBTI_2003&amp;amp;beta=true ttc_WBTI_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=tzz_BL_1987&amp;amp;beta=true tzz_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=usp_WBTI_1999&amp;amp;beta=true usp_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxt_BL_1983&amp;amp;beta=true mxt_BL_1983] (renamed; was xmt_BL_1983)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=xtd_BL_2001&amp;amp;beta=true xtd_BL_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zab_BL_1995&amp;amp;beta=true zab_BL_1995]&lt;br /&gt;
|&lt;br /&gt;
|Empty note markers stand before verse numbers. (See Matt 5)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zaw_BL_2006&amp;amp;beta=true zaw_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpo_BL_2002&amp;amp;beta=true zpo_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpq_BL_1987&amp;amp;beta=true zpq_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|In SW, Matt 5:32, the note is split oddly, as if part of it is attached to the prior verse.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpu_BL_2000&amp;amp;beta=true zpu_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpv_BL_1990&amp;amp;beta=true zpv_BL_1990]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zsr_BL_1992&amp;amp;beta=true zsr_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ztq_BL_2000&amp;amp;beta=true ztq_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zty_BL_2002&amp;amp;beta=true zty_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Dictionary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!width=&amp;quot;20%&amp;quot;|Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Autenrieth Autenrieth]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=BosworthToller BosworthToller]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=CleasbyVigfusson CleasbyVigfusson]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=FVDPVietAnh FVDPVietAnh]&amp;lt;br&amp;gt;Changed conf 6-30-2008.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisElem LewisElem]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisShort LewisShort]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LiddellScott LiddellScott]&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Zoega Zoega]&amp;lt;br/&amp;gt;Known bad, do not test;&lt;br /&gt;
|&lt;br /&gt;
|conf has 2 About= (should delete the first)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1806 Webster1806]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering? (may not be necessary for 1806)&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1913 Webster1913]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Map Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Daily Devotional Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Daily]]&lt;br /&gt;
|Appears structurally sound (scrolling between dates works)&lt;br /&gt;
Numerous scripture reference parsing errors in the source. (Fix by running through vs2osisref.)&lt;br /&gt;
&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, Links do not work in MS, some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SME]]&lt;br /&gt;
|Scrolling between dates works, appears structurally sound&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, links do not work in MS,  some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Commentary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Barnes]]&lt;br /&gt;
|Gen 1.1 entry is not UTF-8 (quotes, nbsp), perhaps elsewhere&lt;br /&gt;
|In BD and GS the bad encoding makes the module look very bad. in SW some characters do not display (? quotation marks) e.g James 2:1 2nd paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CalvinCommentaries]]&lt;br /&gt;
|Many, not all books from OT and NT, Conf reflects this, features - no FN found&lt;br /&gt;
|Displays fine in GS, BD, MS, SW, cross reference links in BibleCS often displayed as HTML text. e.g. Mark 1:1 second last paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Clarke]]*hold testing, update planned*&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|Displays well in GS, SW. In BD the bad encoding makes the module look very bad.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TSK]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in GS. In SW only vers 1 is shown and links do not work.&lt;br /&gt;
Hebrew letters are not done properly (comparing with e-sword) &lt;br /&gt;
e.g. Judg 12:6, where ת appears as ϊ and ו as ε.&lt;br /&gt;
Another example is Nehemiah 7:61, where again it seems to have greek letters, not hebrew.&lt;br /&gt;
&lt;br /&gt;
Also, it is missing the diagram (and introductory text to it) for Numbers 35:4. Is this type of schematic possible in OSIS (or just include an image)?&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[OTPassage]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in BD, GS. In SW only vers 1 is shown.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta GenBook Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Concord]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Report: This is a favorite of a Lutheran Seminarian, who finds it indispensable.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLutherpredigten]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Appears structurally sound&lt;br /&gt;
|Conf offers headings, none found&lt;br /&gt;
|Displays fine in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Imitation]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Structure works fine, would benefit from chapter names instead of numbers&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in GS, MS, BD, BibleCS, SW&amp;lt;br/&amp;gt;&lt;br /&gt;
Pre-existing &amp;quot;feature&amp;quot; in BD - FN are not displayed.&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Law_Gospel]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|BD cannot display div's which include &amp;lt;verse&amp;gt; tags.  Reported to BD as bug on 18Nov2008.  This bug prevents multiple sections from being viewed.  Basic content visible in GS, BT&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Passion]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|The TOC is undescriptive, needing titles along with numbers.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS,BD, GS, SW, BibleCS&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SummaTheologica]]&amp;lt;br/&amp;gt;[[AquinasSummaTheologica]]&amp;lt;br/&amp;gt;Which should we use?&lt;br /&gt;
|GenBook&lt;br /&gt;
|links like Bible:VUL:Gen.1.1 do not work in BD. This is a BD bug. At the same time though I think that it is inappropriate to prescribe which Bible (Vulgata) is linked to, given that this genBook is in English [[User:Refdoc|Refdoc]]&lt;br /&gt;
:If an author cites a particular work, as Aquinas is likely to have done, this is appropriate. More significantly, since Aquinas is working from Bibles with a different reference system from Bible.NRSVA, it's important to identify that somehow so that we have the potential to do reference system translation.[[User:Osk|Osk]] 21:47, 28 June 2008 (MDT)&lt;br /&gt;
Aquinas will have quoted the Vulgata as it was the authorative translation (i.e. not as a preference, but dt lack of alternative). It is a new situation to have an abundance of translations. I do agree though with the versification being a problem. Only - it will not work right now either as even the Vulgate will be KJV versified. My long term suggestion would be to introduce (once GenBokk bibles are reality) a conf property regarding versification  GenBooks could then refer to VersScheme:Book:Chapter:Verse instead of ModName:Book:Chapter:Verse - which would allow users to use a variety of applicable Bible translations with any given gen book.[[User:Refdoc|Refdoc]] 02:01, 1 July 2008 (MDT)&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS, GS SW, BibleCS. Links in BD do not work&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Jub]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Jub 35:3 is in /Jub/35, not /Jub/35/3&lt;br /&gt;
&lt;br /&gt;
Jub 38:6 is in /Jub/38&lt;br /&gt;
&lt;br /&gt;
Jub 47, 48 links to exodus aren't osisref'ed&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Didache]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Experimental Beta Modules=&lt;br /&gt;
'''Note:''' The following modules are experimental. Many relate to the development of Alternate Versification Bibles, implemented as GenBooks.&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[DRCgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lhgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Hesychius]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|This module would do well to be converted to a Dictionary/Lexicon.&lt;br /&gt;
|The following conf entries are not defined in wiki: LocalStripFilter=PapyriPlain and SearchOption=IncludeKeyInSearch&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[KJVgb]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[LXXM]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[UDHR]]&lt;br /&gt;
|Dict&lt;br /&gt;
|Test module only. See About for details.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Application Bugs Found During Testing=&lt;br /&gt;
During testing pre-existing bugs may be found in an application.&lt;br /&gt;
==MS==&lt;br /&gt;
* In GenBooks: click on a leaf, then click on (About). (About) does not show. Sometimes nothing happens, other times another entry's content shows.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
==BD==&lt;br /&gt;
* Does not handle foot-notes in anything but Bibles.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* links leading to a specific Bible module do not work&lt;br /&gt;
* Inconsistently displays &amp;lt;l&amp;gt; elements.&lt;br /&gt;
* Inconsistently displays pre-verse titles.&lt;br /&gt;
* in ThML Genbooks, BD fails to display any div which includes &amp;lt;verse&amp;gt; tags&lt;br /&gt;
&lt;br /&gt;
==GS==&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* Parallel references in section headings in the Gospels display as *x but do not point to the parallel text. They appear as a cross-reference to the first verse in that chapter. For an example, see Mark 1 or Luke 4 in VietNVB.&lt;br /&gt;
* &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==BT==&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==SW==&lt;br /&gt;
* Does not handle UTF-8 in Description when listing names of modules.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* In About w/ \uxxxxx? RTF codes, e.g. TurNTB, ? is shown.&lt;br /&gt;
** Well, that's the expected behavior if the font lacks the encoded character (and so, not a software or a module bug but a font deficiency if anything).-Osk&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used and transChange is in the WoC:&amp;lt;br/&amp;gt; &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words &amp;lt;transChange type=&amp;quot;added&amp;quot;&amp;gt;of&amp;lt;/transChange&amp;gt; Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&amp;lt;br/&amp;gt;The words following &amp;lt;transChange&amp;gt; are not highlighted.&lt;br /&gt;
* Links to Bible references in Daily devotions do not work&lt;br /&gt;
* Shows in commentaries only Vers 1 rather than whole chapter when asked to show a chapter - e.g. Genesis 1 - only Gen 1:1 will show up&lt;br /&gt;
&lt;br /&gt;
==BibleCS==&lt;/div&gt;</summary>
		<author><name>Bdumont</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4770</id>
		<title>Modules in the beta repository</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Modules_in_the_beta_repository&amp;diff=4770"/>
				<updated>2008-12-11T10:12:48Z</updated>
		
		<summary type="html">&lt;p&gt;Bdumont: /* Beta GenBook Modules */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please use the guide on [[Testing of new modules]] to test below listed modules and note your findings down. &lt;br /&gt;
&lt;br /&gt;
=Beta repository parameters=&lt;br /&gt;
If the beta repository need to be declared, here are the parameters:&lt;br /&gt;
* Site Name:              CrossWire beta&lt;br /&gt;
* Site Machine Name:      www.crosswire.org&lt;br /&gt;
* Repository Directory:   /pub/sword/betaraw&lt;br /&gt;
&lt;br /&gt;
=Application Legend=&lt;br /&gt;
* BibleCS - The SWORD Project for Windows&lt;br /&gt;
* MS - MacSword&lt;br /&gt;
* GS - GnomeSword&lt;br /&gt;
* BD - Bible Desktop&lt;br /&gt;
* BT - BibleTime - the BT developers have advised that BT testing is not necessary at this time.&lt;br /&gt;
* SW - SwordWeb/BibleTool [http://www.crosswire.org/~dmsmith/swordweb/webapp Beta modules] (Only shows About of all modules and content of Bibles, Commentaries and Generic Books, can not show images at present)&lt;br /&gt;
&lt;br /&gt;
=Abbreviations Legend=&lt;br /&gt;
* WoC - Words-of-Christ, aka Red Letter Text&lt;br /&gt;
* FN  - Foot note&lt;br /&gt;
* dt  - due to&lt;br /&gt;
* occ - occassionally&lt;br /&gt;
&lt;br /&gt;
=Beta Bible Modules=&lt;br /&gt;
&lt;br /&gt;
Note: Missing verses are based upon the KJV versification. A list of common versification systems and how they vary from the NRSVA versification can be found [http://www.ccel.org/refsys/refsys.html here].&lt;br /&gt;
&lt;br /&gt;
===Original Language Bibles===&lt;br /&gt;
This section should primarily contain Greek and Hebrew Bibles, but others that serve as ''source'' texts for various denominations may also be placed here (i.e. Latin, OCS, Syriac, &amp;amp; Coptic texts).&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[MorphGNT]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Tisch]] (updated 2008-11-28)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Vulgate_Clem]] (Updated 2008-07-24)&lt;br /&gt;
|Whole Bible&amp;lt;br/&amp;gt; whole of Esther, Daniel is missing&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Elzevir]]&lt;br /&gt;
|NT&lt;br /&gt;
|Actually looks fine in 1.5.11, but morph types can't be toggled independently. The 1.5.12 requirement is based on some code that was in 1.5.11pre but removed, which could handle different lemma types, so it may not be necessary for handling different morph types. Should we change req. to 1.5.11 &amp;amp; release as is?&lt;br /&gt;
----&lt;br /&gt;
Another issue is that the second morph type is TVM codes, which we don't yet have a key to (i.e. we don't have a module that translates TVM codes to plain English yet).&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in BibleCS, GS, SW, BD&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===English Bibles===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ABU&amp;amp;beta=true ABU]&lt;br /&gt;
|NT only, conf reflects this, appears complete&lt;br /&gt;
|features: WoC&lt;br /&gt;
&lt;br /&gt;
There was a WoC display problem (which needs to be tested).&lt;br /&gt;
&lt;br /&gt;
See [[Talk:Modules_in_the_beta_repository#ABU]] for a discussion.&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|KJC (reissued 2008-06-28)&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|Worsleys&lt;br /&gt;
|NT only, conf reflects this&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|WEB&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|HNV&lt;br /&gt;
|whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== French Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[FreJND]]&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|features: FN and Xref work fine&lt;br /&gt;
&lt;br /&gt;
Skc (maintainer)&amp;gt; See [[FreJND]] about markup, it must probably be added in .conf, but where?&lt;br /&gt;
&lt;br /&gt;
DMS: I'd suggest a textual comment in the About.&lt;br /&gt;
|Headings in Psalms are all &amp;quot;canonical&amp;quot; and not subject to &amp;quot;heading&amp;quot; filter. If these are the only headings, should the conf still have Feature=OSISHeading?&lt;br /&gt;
|Displays fine in BD, in GS occ UTF8 problem - Mal 1:9 and Matt1:20 create odd characters (star in front of SEIGNEUR or DIEU (skc&amp;gt; this is intentional)), SW displays junk before DIEU in Mal 1:9 (looks like an engine problem handling &amp;lt;divineName&amp;gt;), MS doesn't display these verses at all, BibleCS  ok&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== German Bibles ===&lt;br /&gt;
'''Note:''' Versification of German Bibles in the old Testament is in stretches extremely different from the KJV. Both chapters and verses are of different length. As a result a lot of KJV verses, particularly at chapter ends are empty and other chapter ends are overloaded. Particular problems exist in the small prophets: Joel has 4 chapters and Malachi only 3 in original versification. As a result following verses appear empty when KJV versification is imposed.&lt;br /&gt;
&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerElb1871r]]&lt;br /&gt;
(updated 2008-07-08)&lt;br /&gt;
|Various disconnected chapters of various books&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, &lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerFreeBible]]&lt;br /&gt;
| Source: http://www.flagsoft.ch/fb2004/index.html&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission and re-import from publisher copy&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lh]] (updated 2008-07-15)&lt;br /&gt;
|&lt;br /&gt;
|Needs verse linkage in a few cases. Hold for updated osis2mod.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|'''Hold''' pending update to osis2mod.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1912]] (updated 2008-07-17)&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in BibleCS,GS,BD, SW&lt;br /&gt;
----&lt;br /&gt;
Has an inability to display pre-verse titles, which are very common, resulting in display problems in most frontends. Might need to wait on osis2mod update before release.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerNeUe]] (updated 2008-11-30)&lt;br /&gt;
|Whole Bible, 5.Mose missing&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bible text has been updated to late September (2008) changes of the author.&lt;br /&gt;
|UTF8 problems should have been fixed&lt;br /&gt;
|Conf should be ok.&lt;br /&gt;
|Displays fine in MS, others need to be checked&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Japanese Bibles ===&lt;br /&gt;
Note: these Bibles have a new feature OSISRuby. Requires '''1.5.12'''!!!&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapBungo]]&lt;br /&gt;
|NT only (some missing verses)&lt;br /&gt;
| &lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapKougo]]&lt;br /&gt;
|Whole Bible (some missing verses)&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapMeiji]]&lt;br /&gt;
|Partial OT&lt;br /&gt;
|&lt;br /&gt;
|Note in-progress status of source.&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapRaguet]]&lt;br /&gt;
|NT only&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|'''hold''' for 1.5.12 testing&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[JapDenmo]]&lt;br /&gt;
|NT portions&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Other Bibles ===&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
| [[AraSVD]] (updated 2008-07-21)&lt;br /&gt;
| Whole Bible&lt;br /&gt;
|&lt;br /&gt;
| none&lt;br /&gt;
| Displays nice in GS, BD, SW, BibleCS&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Breton]]&lt;br /&gt;
|Full New Testament&amp;lt;br&amp;gt;http://pagesperso-orange.fr/testamant.nevez/&lt;br /&gt;
If we get permission, re-import, including headings&lt;br /&gt;
|&lt;br /&gt;
|Identify as Version '''Koad 21'''&lt;br /&gt;
|&lt;br /&gt;
|'''removed''' pending permission&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CebPanadayag]]&lt;br /&gt;
|Whole Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Dislays well in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''hold''' pending establishment of pedigree; otherwise ready&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUns]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&lt;br /&gt;
|In conf, DistributionLicense is missing&lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS. Has strong's markup problem&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[ChiUn]]&lt;br /&gt;
|Whole Bible (missing  1Chr.22.19 John.7.53)&lt;br /&gt;
|options work&amp;lt;br/&amp;gt;&lt;br /&gt;
|conf mis-specifies history entry (History=2.1= should be History_2.1=...)and DistributionLicense is missing &lt;br /&gt;
|Displays fine in BD, SW, problem in GS. MS doesn't display many verses in OT. NT ok in MS.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Esperanto]]&amp;lt;br/&amp;gt;&lt;br /&gt;
| Bible&lt;br /&gt;
Missing books: Obadja, Philemon, II John, III John, Jude&amp;lt;br/&amp;gt;&lt;br /&gt;
Codepoint U+2019 not decoded in 37 places&amp;lt;br/&amp;gt;&lt;br /&gt;
''New [http://steve-and-pattie.com/esperantujo/biblio/ source] now located''.&lt;br /&gt;
|Claims options Headings and Footnotes - neither are found&lt;br /&gt;
|None&lt;br /&gt;
|Displays well in GS, BD, SW, BibleCS, MS&lt;br /&gt;
|Requires '''fixing'''. See [[Esperanto]]. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Latvian]] (updated 2008-07-23)&lt;br /&gt;
|NT only, conf reflects this&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|Cross refs cannot display in BibleCS.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Conf Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TurNTB]]&lt;br /&gt;
|Whole Bible, many empty verses dt linkage Obadja missing&lt;br /&gt;
|plenty crossreferences in plain text e.g. Lev 1:1, verse ranges poorly encoded - empty verses, e.g Zeph 1:4-6&lt;br /&gt;
|None&lt;br /&gt;
|Displays fine in GS, BD, MS, BibleCS, SW&lt;br /&gt;
|'''Hold'''  reimport after location of missing text and osismod update&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Wycliffe Bibles===&lt;br /&gt;
'''Global Problems''':&amp;lt;br/&amp;gt;&lt;br /&gt;
These Bibles are likely to have the same set of problems. If you find an error that pertains to more than one, please briefly note it below and provide details with references here:&amp;lt;br/&amp;gt;[[WBTI Bible discussion|Wycliffe Bible Discussion]]&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Does the module appear complete?&lt;br /&gt;
!width=&amp;quot;30%&amp;quot;|Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=amu_BL_1999&amp;amp;beta=true amu_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Dislays fine in SW. Not in BD.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cco_BL_2002&amp;amp;beta=true cco_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chd_BL_1991&amp;amp;beta=true chd_BL_1991]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chq_BL_1983&amp;amp;beta=true chq_BL_1983]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=chz_BL_2003&amp;amp;beta=true chz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Unicode 5.1 font needed?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ckw_WBTI_1996&amp;amp;beta=true ckw_WBTI_1996]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnl_BL_1994&amp;amp;beta=true cnl_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cnt_BL_1994&amp;amp;beta=true cnt_BL_1994]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cti_BL_1976&amp;amp;beta=true cti_BL_1976]&lt;br /&gt;
|&lt;br /&gt;
|Variation of global header note problem. The reference precedes Matt 5:20 verse number and the heading is indented after as if it were not a heading.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ctp_BL_1992&amp;amp;beta=true ctp_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=dug_WBTI_1999&amp;amp;beta=true dug_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=huv_BL_1996&amp;amp;beta=true huv_BL_1996]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ixl_WBTI_2001&amp;amp;beta=true ixl_WBTI_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jac_WBTI_1997&amp;amp;beta=true jac_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=jvn_BL_1999&amp;amp;beta=true jvn_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=kek_WBTI_2000&amp;amp;beta=true kek_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=lac_BL_1978&amp;amp;beta=true lac_BL_1978]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mir_BL_1988&amp;amp;beta=true mir_BL_1988]&lt;br /&gt;
|Incomplete? Using SW, a spot check of three arbitrary chapters shows empty verses. See Matt 5, v15,16,30,35,36 are missing. Jas 1, v8,11 missing. Rom 8, v4,8 missing.&lt;br /&gt;
----&lt;br /&gt;
Those are all linked verses. (Matt.5.14, Matt.5.15, Matt.5.16 are a single block, where the latter two link to the entry of the first.) Nonetheless, emptyvss is reporting numerous genuinely empty (and unlinked) verses that should have some linking, according to the OSIS source. There might be some sort of importer problem here. (But there is no missing text that I can see.)&lt;br /&gt;
----&lt;br /&gt;
There are 2 bugs in osis2mod: linking is not working and appended, interverse material is replacing a link.&lt;br /&gt;
|&lt;br /&gt;
| hold for osis2mod fix&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=miz_BL_2003&amp;amp;beta=true miz_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mks_BL_1999&amp;amp;beta=true mks_BL_1999]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvc_WBTI_2002&amp;amp;beta=true mvc_WBTI_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mvj_WBTI_2000&amp;amp;beta=true mvj_WBTI_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxq_BL_2004&amp;amp;beta=true mxq_BL_2004]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ncl_BL_1998&amp;amp;beta=true ncl_BL_1998]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ngu_BL_1987&amp;amp;beta=true ngu_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=nhy_BL_2006&amp;amp;beta=true nhy_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=otq_BL_2003&amp;amp;beta=true otq_BL_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=qut_WBTI_1997&amp;amp;beta=true qut_WBTI_1997]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=cso_BL_1986&amp;amp;beta=true cso_BL_1986] (renamed; was sco_BL_1986)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above). Needs Unicode 5.1 font?&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ttc_WBTI_2003&amp;amp;beta=true ttc_WBTI_2003]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=tzz_BL_1987&amp;amp;beta=true tzz_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=usp_WBTI_1999&amp;amp;beta=true usp_WBTI_1999]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=mxt_BL_1983&amp;amp;beta=true mxt_BL_1983] (renamed; was xmt_BL_1983)&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=xtd_BL_2001&amp;amp;beta=true xtd_BL_2001]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zab_BL_1995&amp;amp;beta=true zab_BL_1995]&lt;br /&gt;
|&lt;br /&gt;
|Empty note markers stand before verse numbers. (See Matt 5)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zaw_BL_2006&amp;amp;beta=true zaw_BL_2006]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpo_BL_2002&amp;amp;beta=true zpo_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpq_BL_1987&amp;amp;beta=true zpq_BL_1987]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|In SW, Matt 5:32, the note is split oddly, as if part of it is attached to the prior verse.&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpu_BL_2000&amp;amp;beta=true zpu_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zpv_BL_1990&amp;amp;beta=true zpv_BL_1990]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zsr_BL_1992&amp;amp;beta=true zsr_BL_1992]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=ztq_BL_2000&amp;amp;beta=true ztq_BL_2000]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Scope | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=zty_BL_2002&amp;amp;beta=true zty_BL_2002]&lt;br /&gt;
|&lt;br /&gt;
|Global header note problem (see above).&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in SW&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Dictionary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|Module Name&lt;br /&gt;
!Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf problems?&lt;br /&gt;
!width=&amp;quot;20%&amp;quot;|Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Autenrieth Autenrieth]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=BosworthToller BosworthToller]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=CleasbyVigfusson CleasbyVigfusson]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=FVDPVietAnh FVDPVietAnh]&amp;lt;br&amp;gt;Changed conf 6-30-2008.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisElem LewisElem]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LewisShort LewisShort]&amp;lt;br/&amp;gt;Known bad, do not test&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=LiddellScott LiddellScott]&amp;lt;br/&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Zoega Zoega]&amp;lt;br/&amp;gt;Known bad, do not test;&lt;br /&gt;
|&lt;br /&gt;
|conf has 2 About= (should delete the first)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1806 Webster1806]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering? (may not be necessary for 1806)&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[http://www.crosswire.org/sword/modules/ModInfo.jsp?beta=true&amp;amp;modName=Webster1913 Webster1913]&amp;lt;br/&amp;gt;&lt;br /&gt;
|none&lt;br /&gt;
|none&lt;br /&gt;
|displays well in GS, BD. Displays markup in MS&lt;br /&gt;
|'''Hold''' for 1.5.12 w/ improved TEI rendering&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Map Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Daily Devotional Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Daily]]&lt;br /&gt;
|Appears structurally sound (scrolling between dates works)&lt;br /&gt;
Numerous scripture reference parsing errors in the source. (Fix by running through vs2osisref.)&lt;br /&gt;
&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, Links do not work in MS, some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SME]]&lt;br /&gt;
|Scrolling between dates works, appears structurally sound&lt;br /&gt;
Dates after Christmas mysteriously empty.... (They're present in the doc supplied to imp2ld though.)&lt;br /&gt;
|Displays well in GS, BD, SW, links do not work in MS,  some links appear with markup in BibleCS&lt;br /&gt;
----&lt;br /&gt;
Could you provide some examples.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta Commentary Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module complete?&amp;lt;br&amp;gt;Encoding problems?&amp;lt;br&amp;gt;.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Barnes]]&lt;br /&gt;
|Gen 1.1 entry is not UTF-8 (quotes, nbsp), perhaps elsewhere&lt;br /&gt;
|In BD and GS the bad encoding makes the module look very bad. in SW some characters do not display (? quotation marks) e.g James 2:1 2nd paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[CalvinCommentaries]]&lt;br /&gt;
|Many, not all books from OT and NT, Conf reflects this, features - no FN found&lt;br /&gt;
|Displays fine in GS, BD, MS, SW, cross reference links in BibleCS often displayed as HTML text. e.g. Mark 1:1 second last paragraph&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Clarke]]*hold testing, update planned*&lt;br /&gt;
|Whole Bible, appears complete&lt;br /&gt;
|Displays well in GS, SW. In BD the bad encoding makes the module look very bad.&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[TSK]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in GS. In SW only vers 1 is shown and links do not work.&lt;br /&gt;
Hebrew letters are not done properly (comparing with e-sword) &lt;br /&gt;
e.g. Judg 12:6, where ת appears as ϊ and ו as ε.&lt;br /&gt;
Another example is Nehemiah 7:61, where again it seems to have greek letters, not hebrew.&lt;br /&gt;
&lt;br /&gt;
Also, it is missing the diagram (and introductory text to it) for Numbers 35:4. Is this type of schematic possible in OSIS (or just include an image)?&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[OTPassage]]&lt;br /&gt;
|&lt;br /&gt;
|displays well in BD, GS. In SW only vers 1 is shown.&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Beta GenBook Modules=&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Concord]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Report: This is a favorite of a Lutheran Seminarian, who finds it indispensable.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLutherpredigten]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Appears structurally sound&lt;br /&gt;
|Conf offers headings, none found&lt;br /&gt;
|Displays fine in GS, BD, BibleCS, MS, SW&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Imitation]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Structure works fine, would benefit from chapter names instead of numbers&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in GS, MS, BD, BibleCS, SW&amp;lt;br/&amp;gt;&lt;br /&gt;
Pre-existing &amp;quot;feature&amp;quot; in BD - FN are not displayed.&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Law_Gospel]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|BD cannot display div's which include &amp;lt;verse&amp;gt; tags.  Reported to BD as bug on 18Nov2008.  This bug prevents multiple sections from being viewed.  Basic content visible in GS, BT&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Passion]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|The TOC is undescriptive, needing titles along with numbers.&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS,BD, GS, SW, BibleCS&lt;br /&gt;
|'''ready'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[SummaTheologica]]&amp;lt;br/&amp;gt;[[AquinasSummaTheologica]]&amp;lt;br/&amp;gt;Which should we use?&lt;br /&gt;
|GenBook&lt;br /&gt;
|links like Bible:VUL:Gen.1.1 do not work in BD. This is a BD bug. At the same time though I think that it is inappropriate to prescribe which Bible (Vulgata) is linked to, given that this genBook is in English [[User:Refdoc|Refdoc]]&lt;br /&gt;
:If an author cites a particular work, as Aquinas is likely to have done, this is appropriate. More significantly, since Aquinas is working from Bibles with a different reference system from Bible.NRSVA, it's important to identify that somehow so that we have the potential to do reference system translation.[[User:Osk|Osk]] 21:47, 28 June 2008 (MDT)&lt;br /&gt;
Aquinas will have quoted the Vulgata as it was the authorative translation (i.e. not as a preference, but dt lack of alternative). It is a new situation to have an abundance of translations. I do agree though with the versification being a problem. Only - it will not work right now either as even the Vulgate will be KJV versified. My long term suggestion would be to introduce (once GenBokk bibles are reality) a conf property regarding versification  GenBooks could then refer to VersScheme:Book:Chapter:Verse instead of ModName:Book:Chapter:Verse - which would allow users to use a variety of applicable Bible translations with any given gen book.[[User:Refdoc|Refdoc]] 02:01, 1 July 2008 (MDT)&lt;br /&gt;
|&lt;br /&gt;
|Displays fine in MS, GS SW, BibleCS. Links in BD do not work&lt;br /&gt;
|needs '''fixing'''&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Jub]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|Jub 35:3 is in /Jub/35, not /Jub/35/3&lt;br /&gt;
&lt;br /&gt;
Jub 38:6 is in /Jub/38&lt;br /&gt;
&lt;br /&gt;
Jub 47, 48 links to exodus aren't osisref'ed&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Didache]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Experimental Beta Modules=&lt;br /&gt;
'''Note:''' The following modules are experimental. Many relate to the development of Alternate Versification Bibles, implemented as GenBooks.&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Name&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Module Type&lt;br /&gt;
!width=&amp;quot;40%&amp;quot;|Does the module appear complete?&amp;lt;br&amp;gt;Encoding problems?&lt;br /&gt;
!width=&amp;quot;10%&amp;quot;|.conf Problems?&lt;br /&gt;
!Display problems on any frontend?&lt;br /&gt;
!width=&amp;quot;1%&amp;quot;|Ready / Fix / Hold&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[DRCgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|None&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[GerLut1545lhgb]]&amp;lt;br/&amp;gt;Demo module&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Type | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[Hesychius]]&lt;br /&gt;
|GenBook&lt;br /&gt;
|This module would do well to be converted to a Dictionary/Lexicon.&lt;br /&gt;
|The following conf entries are not defined in wiki: LocalStripFilter=PapyriPlain and SearchOption=IncludeKeyInSearch&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[KJVgb]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[LXXM]]&lt;br /&gt;
|GenBook Bible&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot; &amp;lt;!-- Name | Content Problems | Display Problems | Ready --&amp;gt;&lt;br /&gt;
|[[UDHR]]&lt;br /&gt;
|Dict&lt;br /&gt;
|Test module only. See About for details.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Application Bugs Found During Testing=&lt;br /&gt;
During testing pre-existing bugs may be found in an application.&lt;br /&gt;
==MS==&lt;br /&gt;
* In GenBooks: click on a leaf, then click on (About). (About) does not show. Sometimes nothing happens, other times another entry's content shows.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
==BD==&lt;br /&gt;
* Does not handle foot-notes in anything but Bibles.&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* links leading to a specific Bible module do not work&lt;br /&gt;
* Inconsistently displays &amp;lt;l&amp;gt; elements.&lt;br /&gt;
* Inconsistently displays pre-verse titles.&lt;br /&gt;
&lt;br /&gt;
==GS==&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used: &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words of Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&lt;br /&gt;
* Parallel references in section headings in the Gospels display as *x but do not point to the parallel text. They appear as a cross-reference to the first verse in that chapter. For an example, see Mark 1 or Luke 4 in VietNVB.&lt;br /&gt;
* &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==BT==&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;&amp;lt;div type=&amp;quot;section&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;lg&amp;gt; elements can cause an extra space to be added between the verse number and text.&lt;br /&gt;
&lt;br /&gt;
==SW==&lt;br /&gt;
* Does not handle UTF-8 in Description when listing names of modules.&lt;br /&gt;
* In About w/ UTF-8 characters, e.g. GerLutherpredigten, garbage is shown because it tries to interpret it as &amp;quot;Latin-1&amp;quot;.&lt;br /&gt;
* In About w/ \uxxxxx? RTF codes, e.g. TurNTB, ? is shown.&lt;br /&gt;
** Well, that's the expected behavior if the font lacks the encoded character (and so, not a software or a module bug but a font deficiency if anything).-Osk&lt;br /&gt;
* Does not handle WoC when milestoned quotes are used and transChange is in the WoC:&amp;lt;br/&amp;gt; &amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; sID=&amp;quot;x&amp;quot;/&amp;gt;Words &amp;lt;transChange type=&amp;quot;added&amp;quot;&amp;gt;of&amp;lt;/transChange&amp;gt; Christ&amp;lt;q marker=&amp;quot;&amp;quot; who=&amp;quot;Jesus&amp;quot; eID=&amp;quot;x&amp;quot;/&amp;gt;&amp;lt;br/&amp;gt;The words following &amp;lt;transChange&amp;gt; are not highlighted.&lt;br /&gt;
* Links to Bible references in Daily devotions do not work&lt;br /&gt;
* Shows in commentaries only Vers 1 rather than whole chapter when asked to show a chapter - e.g. Genesis 1 - only Gen 1:1 will show up&lt;br /&gt;
&lt;br /&gt;
==BibleCS==&lt;/div&gt;</summary>
		<author><name>Bdumont</name></author>	</entry>

	</feed>