<?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=Rlrandallx</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=Rlrandallx"/>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/Special:Contributions/Rlrandallx"/>
		<updated>2026-05-04T01:48:29Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.7</generator>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Encoding&amp;diff=2814</id>
		<title>Encoding</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Encoding&amp;diff=2814"/>
				<updated>2008-01-21T01:42:11Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* Common mistakes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As many people are making mistakes with encoding, here is a small text where I try to explain what does exist.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Computers are working on words of bits, usually 8, 16, 32 or 64 today. Those words are meanless for the computer, they can be interpreted in many ways, as numbers, as instructions, as characters, as true/false values...&lt;br /&gt;
&lt;br /&gt;
An encoding is a set of rules defining how to translate a sequence of words into a sequence of characters.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Single byte encoding ==&lt;br /&gt;
As computer can easily work with groups of bit called bytes, one of the first solution was to use a different byte value for every character. It's easy to understand and to program: every byte encode a single character; it's space efficient (memory was really expensive), you can size a string by counting bytes... You can have up to 256 characters as a byte can have 256 different values.&lt;br /&gt;
&lt;br /&gt;
When computers was mostly an occidental story, [http://en.wikipedia.org/wiki/ASCII ASCII] was one of the first and most successful encoding. It define 128 characters, including upper case and lower case of the Latin alphabet, digits, punctuation and control. Values above 127 are not defined (allowing extensions or controls values). It is a good set of characters to write in English.&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/EBCDIC EBCDIC] is another byte encoding defined by IBM at the same time which include mostly the sames characters but values above 127 are not free.&lt;br /&gt;
&lt;br /&gt;
As many languages are using characters not included in the original ASCII set; many country, or group of country defined new encoding based on the ASCII encoding. Missing characters are filled in the unused 128 values (above 127). As 128 values is not enough for every earth alphabet, we have many of theses encodings. One of the most successful are [http://en.wikipedia.org/wiki/ISO/IEC_8859 ISO-8859] and in particular [http://en.wikipedia.org/wiki/ISO/IEC_8859-1 ISO-8859-1] which include characters for 29 western European and African languages.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Unicode ==&lt;br /&gt;
Theses encoding where 1 byte correspond to 1 character are really great for English, it's working well for languages based on the Latin alphabet, but is really bad for other alphabets. Some of them use more than 256 signs.&lt;br /&gt;
&lt;br /&gt;
You can not write a text with characters from different encoding; and when sending a text, you always have to agree on a common encoding.&lt;br /&gt;
&lt;br /&gt;
Here is Unicode. But first, learn this: '''Unicode is not an encoding'''&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Unicode Unicode] is an industry standard where every character in any real language, past or present (about 100,000 characters), is having a different numeric value called a code-point. This code-point can be recorded in many ways. The first 128 code-points are the same values used in the ASCII encoding.&lt;br /&gt;
&lt;br /&gt;
Did you remember, Unicode is not an encoding? Ok, in fact, Unicode also define many different encodings to store code-point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Multi-bytes encoding ==&lt;br /&gt;
One word = One character was a great rule, let's keep it. When Unicode was young, Code-point where all under 65536. So we can represent every character with a 2 bytes word, (a 16 bits word). This is called [http://en.wikipedia.org/wiki/UTF-16/UCS-2 UCS2]. UCS2 is deprecated.&lt;br /&gt;
&lt;br /&gt;
Now, Code-point are under 2^32, so we can represent every character with a 4 bytes word, (a 32 bit word). This is called [http://en.wikipedia.org/wiki/UTF-32/UCS-4 UCS4], or UTF32.&lt;br /&gt;
&lt;br /&gt;
For an English text, because every character is encoded with 4 bytes, the size if 4 time bigger than the same text in ASCII encoding.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Variable byte length encoding ==&lt;br /&gt;
UCS2 and UCS4 are great, but it takes too much space, and if your old program does work with 1 byte = 1 character, it will not work. We need an encoding where ASCII characters are the same, but with the ability to encode any Unicode character.&lt;br /&gt;
&lt;br /&gt;
So [http://en.wikipedia.org/wiki/UTF-8 UTF-8] was created. It's a variable-byte length encoding. ASCII character are the same as in an ASCII encoded text; and other characters are encoded using 2, 3 or 4 characters. You should use this for all your Sword files now.&lt;br /&gt;
&lt;br /&gt;
For programs written to use UCS2, there is also an extension, [http://en.wikipedia.org/wiki/UTF-16/UCS-2 UTF-16] is designed to use a single 2 bytes word for characters under 65536, and a pair of words above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Common mistakes ==&lt;br /&gt;
If you use a wrong encoding, some characters will not be displayed correctly as the computer decoded it using incorrect rules.&lt;br /&gt;
&lt;br /&gt;
The two most common encoding are ISO-8859-1 and UTF-8&lt;br /&gt;
&lt;br /&gt;
=== 1. An UTF-8 text decoded as ISO-8859-1 (or ISO-8859-*) ===&lt;br /&gt;
&lt;br /&gt;
You will see two or three characters for non-ASCII ones, usually Ã and ©.&lt;br /&gt;
 Et Dieu vit la lumière, qu'elle était bonne; et Dieu sépara la lumière d'avec les ténèbres.&lt;br /&gt;
will show as&lt;br /&gt;
 Et Dieu vit la lumiÃ¨re, qu'elle Ã©tait bonne; et Dieu sÃ©para la lumiÃ¨re d'avec les tÃ©nÃ¨bres.&lt;br /&gt;
&lt;br /&gt;
=== 2. An ISO-8859-1 text decoded as UTF-8 ===&lt;br /&gt;
&lt;br /&gt;
The UTF-8 decoder will find an invalid multi-byte character, it can report an error, or put question marks or squares instead:&lt;br /&gt;
&lt;br /&gt;
 Et Dieu vit la lumière, qu'elle était bonne; et Dieu sépara la lumière d'avec les ténèbres.&lt;br /&gt;
will show as&lt;br /&gt;
 Et Dieu vit la lumi?re, qu'elle ?tait bonne; et Dieu s?para la lumi?re d'avec les t?n?bres.&lt;br /&gt;
&lt;br /&gt;
Warning: If you see squares, it can also be a font problem! This happen if you're using a font which does not define some characters you are using.&lt;br /&gt;
&lt;br /&gt;
=== 3. Using a font that does not include the characters you want ===&lt;br /&gt;
&lt;br /&gt;
If you use accented greek characters, for example, but do not use a unicode font that supports precomposed greek characters (like @Arial Unicode MS) accented characters will appear as empty rectangles in your text. In BibleCS you can change the font in Options/Preferences/Display.&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2716</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2716"/>
				<updated>2007-12-20T20:33:16Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Definitions:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==  '''Problem:'''   ==&lt;br /&gt;
 Jon, could you do this?&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
(Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, Word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Bookmark:''' An N-tree hierarchical structure where nodes can be either a Topic or a Reference&lt;br /&gt;
&lt;br /&gt;
'''VerseList:''' A list of References with a Topic as the Key&lt;br /&gt;
&lt;br /&gt;
== '''Alternatives:''' ==&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2715</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2715"/>
				<updated>2007-12-20T20:26:58Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Definitions:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==  '''Problem:'''   ==&lt;br /&gt;
 Jon, could you do this?&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
(Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, Word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Alternatives:''' ==&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2714</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2714"/>
				<updated>2007-12-20T20:26:40Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Definitions:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==  '''Problem:'''   ==&lt;br /&gt;
 Jon, could you do this?&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
(Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, Word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Alternatives:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2713</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2713"/>
				<updated>2007-12-20T20:26:07Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Problem:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==  '''Problem:'''   ==&lt;br /&gt;
 Jon, could you do this?&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
(Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Alternatives:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2712</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2712"/>
				<updated>2007-12-20T20:25:51Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Problem:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==  '''Problem:'''   ==&lt;br /&gt;
 Jon, could you do this&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
(Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Alternatives:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2711</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2711"/>
				<updated>2007-12-20T20:25:33Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==  '''Problem:'''   ==&lt;br /&gt;
 Jon could you do this&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
(Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Alternatives:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2710</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2710"/>
				<updated>2007-12-20T20:24:36Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Problem:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==  '''Problem:'''   ==&lt;br /&gt;
 Jon could you do this&lt;br /&gt;
=='''Definitions:'''==  (Please correct if you have a better definition)&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Alternatives:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2709</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2709"/>
				<updated>2007-12-20T20:23:57Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Problem:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==  '''Problem:'''   ==&lt;br /&gt;
 Jon could you do this&lt;br /&gt;
=='''Definitions:'''==  (Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Alternatives:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2708</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2708"/>
				<updated>2007-12-20T20:22:44Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Problem:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==  '''Problem:'''   ==&lt;br /&gt;
 Jon could you do this&lt;br /&gt;
== '''Definitions:''' ==  (Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Alternatives:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2707</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2707"/>
				<updated>2007-12-20T20:22:20Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Problem:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==  '''Problem:'''   ==&lt;br /&gt;
 (Jon could you do this)&lt;br /&gt;
== '''Definitions:''' ==  (Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Alternatives:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2706</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2706"/>
				<updated>2007-12-20T20:22:00Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
==  '''Problem:'''   ==&lt;br /&gt;
 (Jon could you do this)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==  (Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Alternatives:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2705</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2705"/>
				<updated>2007-12-20T20:21:21Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; '''Problem:'''   (Jon could you do this)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==  (Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Alternatives:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2704</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2704"/>
				<updated>2007-12-20T20:20:39Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Problem:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Problem:''' ==  (Jon could you do this)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==  (Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:1-3&amp;quot; or &amp;quot;Gen 1:1-3:1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
e.g. &amp;quot;In the beginning...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;br /&gt;
e.g. &amp;quot;In the beginning... ...God said it was good&amp;quot;.]&lt;br /&gt;
&lt;br /&gt;
'''Alternatives:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2703</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2703"/>
				<updated>2007-12-20T20:13:31Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Definitions:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Problem:''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==  (Please correct if you have a better definition)&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. Gen 1:1-3 or Gen 1:1-3:1&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2702</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2702"/>
				<updated>2007-12-20T20:12:39Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Definitions:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Problem:''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt;[\-[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. Gen 1:1-3 or Gen 1:1-3:1&lt;br /&gt;
&lt;br /&gt;
'''Verse:''' Content retrieved from a Bible using a single Reference.&lt;br /&gt;
&lt;br /&gt;
'''Passage:''' Content of a contiguous set of Bible verses using a Range as the Key.&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2701</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2701"/>
				<updated>2007-12-20T19:53:58Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Definitions:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Problem:''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:''' Key used to access verse content in a Bible module, usually in format: &lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; e.g. &amp;quot;Gen 1:2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):''' Key used to access a contiguous set of verses usually of the format:&lt;br /&gt;
&amp;lt;book&amp;gt;\s&amp;lt;chapter&amp;gt;:&amp;lt;verse&amp;gt; - [[&amp;lt;book&amp;gt;\s]&amp;lt;chapter&amp;gt;:]&amp;lt;verse&amp;gt; e.g. Gen 1:1-3 or Gen 1:1-3:1&lt;br /&gt;
&lt;br /&gt;
'''Verse:'''&lt;br /&gt;
&lt;br /&gt;
'''Passage:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2700</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2700"/>
				<updated>2007-12-20T19:47:48Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Definitions:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Problem:''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure e.g. Topic, Reference, Date, word or Strong's number &lt;br /&gt;
&lt;br /&gt;
'''Reference:'''&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):'''&lt;br /&gt;
&lt;br /&gt;
'''Verse:'''&lt;br /&gt;
&lt;br /&gt;
'''Passage:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2699</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2699"/>
				<updated>2007-12-20T19:45:46Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Definitions:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Problem:''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
'''Key:''' Unique string used to locate content in a file or data structure&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Reference:'''&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):'''&lt;br /&gt;
&lt;br /&gt;
'''Verse:'''&lt;br /&gt;
&lt;br /&gt;
'''Passage:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2698</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2698"/>
				<updated>2007-12-20T19:44:35Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Definitions:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Problem:''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
'''Key:'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Reference:'''&lt;br /&gt;
&lt;br /&gt;
'''Range (Ref.):'''&lt;br /&gt;
&lt;br /&gt;
'''Verse:'''&lt;br /&gt;
&lt;br /&gt;
'''Passage:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2697</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2697"/>
				<updated>2007-12-20T19:43:54Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* '''Definitions:''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Problem:''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;br /&gt;
&lt;br /&gt;
'''Key:'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reference:&lt;br /&gt;
&lt;br /&gt;
Range (Ref.):&lt;br /&gt;
&lt;br /&gt;
Verse:&lt;br /&gt;
&lt;br /&gt;
Passage:&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2696</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2696"/>
				<updated>2007-12-20T19:42:13Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== '''Problem:''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Definitions:''' ==&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2695</id>
		<title>Whiteboard/PersistentKeyList</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Whiteboard/PersistentKeyList&amp;diff=2695"/>
				<updated>2007-12-20T19:41:53Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Definitions:'''&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2692</id>
		<title>Frontends:SWORDReader</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2692"/>
				<updated>2007-11-09T23:34:02Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FAQ'''&lt;br /&gt;
''What is the current functionality of the SWORD reader?'' &lt;br /&gt;
&lt;br /&gt;
The SWORD reader enables you to read the bible on a Pocket PC platform (2002 and newer). This operating system is used on the HP IPAQ for example. You can also use it to search for text in the bible.&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2691</id>
		<title>Frontends:SWORDReader</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2691"/>
				<updated>2007-11-09T23:27:11Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FAQ'''&lt;br /&gt;
''What is the current functionality of the SWORD reader?'' &lt;br /&gt;
&lt;br /&gt;
The SWORD reader enables you to read the bible on a Pocket PC platform (2002 and newer). This operating system is used on the HP IPAQ for example. You can also use it to search for text in the bible.&lt;br /&gt;
&lt;br /&gt;
[[Image:http://crosswire.org/sword/swordreader/screenshots/scr1.gif]]&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2690</id>
		<title>Frontends:SWORDReader</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2690"/>
				<updated>2007-11-09T23:25:52Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FAQ'''&lt;br /&gt;
''What is the current functionality of the SWORD reader?'' &lt;br /&gt;
&lt;br /&gt;
The SWORD reader enables you to read the bible on a Pocket PC platform (2002 and newer). This operating system is used on the HP IPAQ for example. You can also use it to search for text in the bible.&lt;br /&gt;
&lt;br /&gt;
[[Image://crosswire.org/sword/swordreader/screenshots/scr1.gif]]&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2689</id>
		<title>Frontends:SWORDReader</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2689"/>
				<updated>2007-11-09T23:25:08Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FAQ'''&lt;br /&gt;
''What is the current functionality of the SWORD reader?'' &lt;br /&gt;
&lt;br /&gt;
The SWORD reader enables you to read the bible on a Pocket PC platform (2002 and newer). This operating system is used on the HP IPAQ for example. You can also use it to search for text in the bible.&lt;br /&gt;
&lt;br /&gt;
[[Image:http://crosswire.org/sword/swordreader/screenshots/scr1.gif]]&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2688</id>
		<title>Frontends:SWORDReader</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2688"/>
				<updated>2007-11-09T23:22:02Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FAQ'''&lt;br /&gt;
''What is the current functionality of the SWORD reader?'' &lt;br /&gt;
&lt;br /&gt;
The SWORD reader enables you to read the bible on a Pocket PC platform (2002 and newer). This operating system is used on the HP IPAQ for example. You can also use it to search for text in the bible.&lt;br /&gt;
&lt;br /&gt;
[[Image:http://crosswire.org/sword/swordreader/scr1.jpg]]&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2687</id>
		<title>Frontends:SWORDReader</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Frontends:SWORDReader&amp;diff=2687"/>
				<updated>2007-11-09T23:19:21Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''FAQ'''&lt;br /&gt;
''What is the current functionality of the SWORD reader?'' &lt;br /&gt;
&lt;br /&gt;
The SWORD reader enables you to read the bible on a Pocket PC platform (2002 and newer). This operating system is used on the HP IPAQ for example. You can also use it to search for text in the bible.&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=Module_Requests&amp;diff=2685</id>
		<title>Module Requests</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=Module_Requests&amp;diff=2685"/>
				<updated>2007-11-09T00:03:07Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: /* Bible Versions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is a place to request modules you would like to be made. If the copyright holder has been contacted, the permissions granted or not can be put here. &lt;br /&gt;
&lt;br /&gt;
New modules are made largely on the basis of content availability and distributability. If you have a link to new material in the public domain, adding it here is a good way of notifying us of its availability. However there is no guarantee that anyone will be interested in creating a module from that material. If you want to see a new module, your quickest results will come from encoding it in OSIS yourself and submitting that to us.&lt;br /&gt;
&lt;br /&gt;
If you would like to see the addition of text currently under copyright and have not made any attempt to get permission for distribution, there is no point to adding it here and the addition will likely be removed. If you only have a link to non-text material (images, PDFs, etc.), there is no point to adding it here and it will likely be removed.&lt;br /&gt;
&lt;br /&gt;
====Bible Versions====&lt;br /&gt;
*Cherokee New Testament [http://cherokeenewtestament.com/] '''Public Domain''' -- check back occasionally to see whether the text version is completed&lt;br /&gt;
&lt;br /&gt;
*KJV (original 1611 version/orthography). There exist some reprints in paper - has anyone scanned it? Also a few electronic editions exist--check into adapting one for Sword.&lt;br /&gt;
&lt;br /&gt;
*NASB Currently being prepared. This will be sold. See FAQ.&lt;br /&gt;
&lt;br /&gt;
*NIV Copyright holder is unwilling to negotiate with Crosswire on use. See FAQ.&lt;br /&gt;
&lt;br /&gt;
====Books====&lt;br /&gt;
* [[Foxe's Book of Martyrs by John Foxe]] ([http://books.google.com/books?id=gCUeSAoqOSEC&amp;amp;dq=&amp;amp;pg=PP1&amp;amp;ots=EwFbQI-cOy&amp;amp;sig=Ciue6KwFnRP_7jDxSRSw1nDEpcw&amp;amp;prev=http://www.google.com/search%3Faq%3Do%26hl%3Den%26client%3Dfirefox-a%26rls%3Dcom.ubuntu%253Aen-US%253Aofficial%26q%3DFoxes%2BBook%2Bof%2BMartyrs%26btnG%3DSearch&amp;amp;sa=X&amp;amp;oi=print&amp;amp;ct=title#PPR9,M1 1] and [http://www.ccel.org/f/foxe/martyrs/home.html 2])&lt;br /&gt;
&lt;br /&gt;
====Commentaries====&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Calvin's Commentaries [http://www.ccel.org/ccel/calvin/commentaries.i.html]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  Work is in progress.  Current approach is to combine ThML files from CCEL and convert to OSIS.  &lt;br /&gt;
  This work is mostly done - see: http://crosswire.org/svn/sword-tools/trunk/modules/calvinscommentaries/&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
  The next step requires a module importer for OSIS commentaries -- the current OSIS importer assumes that the document is formatted as a Bible.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Devotionals====&lt;br /&gt;
&lt;br /&gt;
====Lexicons====&lt;br /&gt;
*Unabridged Brown-Driver-Briggs Hebrew Lexicon -- worth researching; The text exists in electronic format, at least licensed. It's important that this not be the &amp;quot;Abridged BDBG&amp;quot; which is Larry Pierce's alterted module.&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=User_talk:Rlrandallx&amp;diff=2441</id>
		<title>User talk:Rlrandallx</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=User_talk:Rlrandallx&amp;diff=2441"/>
				<updated>2007-07-30T00:51:11Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* I have updated 3 devotional modules and am becoming somewhat&lt;br /&gt;
of an expert with the &amp;quot;LD&amp;quot; modules.&lt;br /&gt;
&lt;br /&gt;
* I am also a QA software engineer by profession and would be&lt;br /&gt;
happy to test out any new compiled pieces of code. (Windows mostly&lt;br /&gt;
but I do have access to a Linux machine for parallel testing.)&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=User_talk:Rlrandallx&amp;diff=2440</id>
		<title>User talk:Rlrandallx</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=User_talk:Rlrandallx&amp;diff=2440"/>
				<updated>2007-07-30T00:49:27Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* I have updated 3 devotional modules and am becoming somewhat&lt;br /&gt;
of an expert with the &amp;quot;LD&amp;quot; modules.&lt;br /&gt;
&lt;br /&gt;
* I am also a QA software engineer by profession and would be&lt;br /&gt;
happy to test out new compiled pieces of code.&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	<entry>
		<id>http://wiki.crosswire.org/index.php?title=User_talk:Rlrandallx&amp;diff=2439</id>
		<title>User talk:Rlrandallx</title>
		<link rel="alternate" type="text/html" href="http://wiki.crosswire.org/index.php?title=User_talk:Rlrandallx&amp;diff=2439"/>
				<updated>2007-07-30T00:48:52Z</updated>
		
		<summary type="html">&lt;p&gt;Rlrandallx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* I have updated 3 devotional modules and am becoming somewhat&lt;br /&gt;
expert with the &amp;quot;LD&amp;quot; modules.&lt;br /&gt;
&lt;br /&gt;
* I am also a QA software engineer by profession and would be&lt;br /&gt;
happy to test out new compiled pieces of code.&lt;/div&gt;</summary>
		<author><name>Rlrandallx</name></author>	</entry>

	</feed>