Alternate Versification

From CrossWire Bible Society
Jump to: navigation, search

The traditional versification of the Bible was first introduced by William Whittingham in his New Testament published in Geneva in 1557.[1]

Introduction

Alternate versification is abbreviated as av11n and covers both canon and versification different from KJV canon and versification previously default and only option in CrossWire applications.

  • Canon pertains to what is included in a version of the Bible.
  • Versification deals with the naming and order of books, and the numbering of chapters and verses in a canon.

As of SWORD 1.5.11, there was only one supported canon and versification: The KJV Old and New Testaments. This is represented in canon.h as a fixed, hard-coded system.

Alternate versifications mean ultimately to allow Bible texts with arbitrary canon or versification schemes to coexist peacefully on the same SWORD installation and (ultimately) to map cleanly between each other via cross references or parallel display.

There are technically 2 routes to support this under development:

  1. ripping out the hardcoded KJV canon.h offsets and replacing them with VerseMgr, which allows registration of canon.h-like v11n systems.
  2. genbook Bibles

Both these routes have been under development and 2 requires 1.

  1. has been completed and included from Sword 1.6.0.
  2. is partially supported by Sword 1.6.x.

Note:

  1. See page 89 of the OSIS 2.1 User Manual.

Overview

Up until 1.5.11, the canon and the versification were hard coded into the engine in the form of the file canon.h, which offered book names and chapter + verse offsets to the engine. The new approach is that:

  1. Each Bible module will carry a .conf entry identifying its versification from an supported list of versification systems. Without this identification, the versification system will default to "KJV" for backward compatibility.
  2. The engine will have, for each major canon and versification variety, a new header file similar to the previous canon.h.
  3. On system start, the engine will load, for each open KJV-divergent module, the relevant data presented in the relevant canon_{Versification].h into a table held in memory.
  4. Subsequently, the relevant module will be accessible via the usual methods - which have not changed from 1.5.11.
  5. What does not work anymore is to assume that a book or chapter has a set (fixed) number of verses. Instead, 1.6.0 introduces new methods VerseKey::getChapterMax() and VerseKey::getVerseMax() to provide the relevant information for a given module--replacing VerseKey::books[testament][book].chapmax and .versemax members.
  6. Similarly VerseKey::getBookName() and VerseKey::getBookAbbrev() replace the previous const char *name and const char *prefAbbrev respectively.
  7. At a later stage (>1.6.0) the engine will allow for GenBook Bibles to automatically create arbitrary versification tables on the fly.
  8. The final step (in >1.6.0) will be to allow mappings between versification schemes to allow cross-referencing and parallel display of corresponding passages.

GenBook Bibles

GenBook Bibles are Bibles stored in GenBook format. They are accessed via VerseKey, which in turn calls TreeKey.

The role of GenBook Bibles will mainly be to allow alternative versifications and canons over and above those provided by alternative canon header files.

SWORD Versification Tools

The primary versification tools are:

  • v11nsys.pl – Converts a v11n spec into a SWORD canon header file.
  • osis2mod – The -v11n flag allows one to build a Bible or commentary SWORD module with a versification other than the KJV.
  • imp2vs – The -v11n flag allows one to build a Bible or commentary SWORD module with a versification other than the KJV.

A secondary but relevant diagnostic tool is:

  • emptyvss – outputs a list of the verses missing from a given SWORD module, in relation to the v11n specified in the .conf file.

How to Create Modules with Alternative Versifications

  1. Set the relevant entries in the configuration file
  2. If your module uses a versification or canon not yet present in SWORD you might have to create a canon header file. Sword tools contain relevant scripts. Please be aware that we will not hard code every versification under the sun but only select and important ones. If your scheme is not one of those you will need either accept the limitations of any chosen existing one or go down the route of a GenBook Bible. Discuss on sword-devel what you are planning to do and you will get appropriate advice.
  3. The importers work as usual. You specify a versification for the text to the import utility (imp2vs or osis2mod). It will pass the v11n value to the SWText constructor, which will instruct it to use the specified v11n.
  4. Append works as usual. Append pertains to whether a text is overwritten or appended to, so its use can affect the stored order of verses, but won't affect where the engine thinks they belong for access/display purposes.
  5. Each v11n specifies a book order, so different traditions that vary with respect to book order would have to be represented by different v11n definitions.

What happens to verses that fall outside the specified v11n?

During module making, what happens to verses in the source text that fall outside the specified v11n?

There are a variety of v11n schemes which can be specified when you import a module. Based on your selection, the tool will append extra verses to the previous canonical verse that has already been assigned content. Extra verses in a canonical chapter will be assigned to the last canonical verse that has been assigned content. Extra chapters in a canonical book will be assigned to the last canonical verse of the previous chapter that has been assigned content. Non-canonical books will be ignored or cause an error. The content for extra chapters and/or extra verses is appended as text only, without references.

Supported versification systems

Pre-1.6.0

  • KJV (The default v11n system in Sword)

1.6.0

  • KJVA (KJV + Apocrypha)
  • NRSV (This is a probable future replacement for KJV as the default v11n in Sword.)
  • NRSVA (NRSV + Apocrypha)
  • MT (Masoretic Text – for Hebrew Bibles)
  • Leningrad (The v11n of the Leningrad Codex, except that the book order is different)

1.6.1

  • Synodal (The v11n of the Russian Synodal Bible and related Bibles)
  • Vulg (Vulgate)
  • Luther (Luther)
  • German (Identical to Luther, but without the deuterocanonical books and with Vulgate/KJV book order.)

1.6.2

  • Catholic (The v11n of many Catholic Bibles, for those Bibles with 10 chapters in Esther)
  • Catholic2 (The v11n of many Catholic Bibles, for those Bibles with 16 chapters in Esther)

1.7.2

  • LXX – for the Greek LXX & translations of the LXX
  • Orthodox – based on the LXX v11n, but using a different book order and fewer books
  • SynodalProt – the ParaText Synodal Protestant v11n as used by IBT for Bibles containing protocanonical books only

1.8.0

French Bible versifications[1]:

  • Calvin – French Bible d'Olivétan and followers, 1560+ Bible de Genève, 1707-1855, Bible D. Martin, Bible F. Ostervald...
  • Darby_fr – French Bibles by J.N. Darby
  • Segond – French Bibles L. Segond 1880, 1910, 1978, 2002 (NBS), 2007 (SG21)

v11n test modules

Within the CrossWire repository for Experimental modules are a number of "empty" test modules for each v11n. i.e. Each chapter and verse is allocated an OSIS reference, but there is no verse text or other content. The list of such modules may be incomplete.

See also

Resources

  • Books of the Bible – a side-by-side comparison of Jewish, Catholic, Orthodox and Protestant canons. The scope of this article is the book order - it does not dive down to chapter and verse level.
  • Psalms – this article includes a handy table showing how the organization and numbering of the Psalms differs slightly between the (Masoretic) Hebrew and the (Septuagint) Greek manuscripts.
  • BibleOrgSys – Bible organisational system (an internationalised system for handling different Bible book/chapter/verse arrangements) [1].

Reference

  1. See French versifications.