Converting SFM Bibles to OSIS

From CrossWire Bible Society
Revision as of 12:01, 15 May 2013 by David Haslam (talk | contribs) (Usage: usfm2osis.py requires a Python interpreter in the system path.)

Jump to: navigation, search

Introduction

Standard Format Markers (SFM) and its more standardized derivative USFM have been used for decades to store Bibles for printing and display in programs like UBS Paratext. The format is popular among Bible translation agencies and Bible societies. The basic format of SFM is simply plaintext with backslash(\) codes. For example, a new Bible verse is signaled by \v followed by the number of the verse.

Older texts in various dialects of SFM can still be found. It was common for various agencies, Bible societies, and even regional offices of such groups to have their own SFM standards. Unified Standard Format Markers (USFM) was developed to standardize SFM and encourage interoperability so that Bibles from one agency could be reasonably expected to operate with the software and stylesheets employed by another. The current version of USFM is 2.3, defined at http://confluence.ubs-icap.org/display/USFM/Home.

Preparing (U)SFM files for conversion

The simplicity of writing SFM also makes it easy to write poor SFM that fails to correspond to any kind of standard. The first task in preparing to convert SFM files to OSIS is to clean the text. The more regular your source files are, the more likely the conversion process will operate correctly.

One method of cleaning up your files is to import them into an SFM editor such as Bibledit (which runs on Linux, Mac OS X, and Windows) or SIL FieldWorks Translation Editor (which runs on Windows). The editors will frequently perform some basic corrections to the SFM syntax, but Bibledit in particular can perform a number of checks to correct specific errors common to SFM.

Checking USFM files for versification issues

Rather than waiting until you have the end result, a SWORD module, and then running the general utility emptyvss, it is possible to use another Windows based utility called GoBibleCreator USFM Preprocessor. Despite its name, its use is not limited to conversion of documents for use towards making Go Bible applications. Although this was originally developed for supporting the Go Bible project, it does have some useful more general features. This is one of them, and is found under the "Check for Consistency" tab. Another is the ability to export the USFM Bible into BQ/DigiStudy format. The Search for Versification Issues is particularly helpful for Bibles structured primarily as "verse per line", rather than as paragraphs containing a verse range. Another useful feature is the identification of non-standard markers.

Converting USFM files to OSIS

This section gives details of software utilities capable of converting USFM files to OSIS.

All such conversions require the use of eXtensions to OSIS of one form or another. Whether these are supported by the SWORD engine should be researched before users conclude that there are faults with the particular conversion method.

usfm2osis.py

Osk has released a new Python script to convert USFM to OSIS. Download from [2]. One of the stated aims was to achieve full coverage of USFM according to the UBS spec.

Notes:

  1. usfm2osis.py will always only generate best practice OSIS, to the best of its ability, so it won't generate stuff that SWORD requires due to its own shortcomings (e.g. 'x-preverse'). To the extent that SWORD title elements require "subType='x-preverse'", these would have to be supplied otherwise. See below.
  2. usfm2osis.py doesn't yet use SWORD bindings, so it's very limited in its knowledge of versification systems. This may mean that for the time being, expanding cross-references would typically have to be done by other means. See below.
  3. In general, anyone interested in converting USFM to OSIS for use with SWORD ought now to employ usfm2osis.py as it's now the only supported pathway for USFM->OSIS->SWORD, inasmuch as its author has a fairly close connection with SWORD and regularly commits stuff to SWORD filters and whatnot. He will definitely not make the least effort to accommodate any non-standard output from converters other than usfm2osis.py.
  4. It is advised to use Python 2.7.x rather than Python 3.x as there are still some issues in getting the script to work with Python 3.
  5. Windows users are advised that should they encounter problems trying to run the script with ordinary CPython from python.org, to use the Python interpreter that can be installed with Cygwin. This would also help for specifying the input files using wildcards.
  6. Bug reports and feature requests are welcomed at either [3] or sword-support.

Usage

usfm2osis.py requires a Python interpreter in the system path.

The usage of usfm2osis.py is output when the script is run without parameters, i.e. with the shell command line

python usfm2osis.py

The syntax is very close to that for usfm2osis.pl – see below.

usfm2osis.pl

usfm2osis.pl is a simple Perl script intended only for converting USFM files to OSIS. It does not provide comprehensive cover for all the tags in the USFM Reference.

Notes:

  1. usfm2osis.pl is now deprecated. Please use the Python script instead. See above.
  2. Its output was geared towards the use of OSIS documents in preparing to make SWORD modules.
  3. usfm2osis.pl is no longer being actively maintained by CrossWire.

Usage

usfm2osis.pl requires a Perl interpreter in the system path. Then you can run:

perl usfm2osis.pl <osisWork> [-o OSIS-file] [-e USFM encoding] <USFM filenames|wildcard>

If usfm2osis.pl is not in the current directory, use its full path.

osisWork should be a value such as Bible.en.WEB.2007.

If you include an OSIS-file value, the output will be written there. Otherwise, it will be written to a file name based on your osisWork.

The USFM encoding argument should indicate the character encoding found in the source files. If none is given, UTF-8 is the default. The list of available encodings depends on your system. Executing the script with no arguments will print the list (as will executing it with an invalid encoding value).

The final argument is a list of filenames or a wildcard value such as *.sfm containing the SFM data.

Notes:

  1. In Windows, a wildcard as one of the usfm2osis.pl parameters does not work. This is due to the way the Windows command shell (cmd.exe) does not expand the wildcard parameter. If you have CygWin installed, the bash shell solves this problem, because it expands the wildcard filename specifier.
  2. In Windows, the following command line syntax will create an OSIS file for each SFM file. This assumes the current directory is the folder where the SFM files are stored, and that there is a same-level directory called osis. It also illustrates the use of (subsititute) drive p: for the full path to usfm2osis.pl, and omits the USFM encoding parameter merely for clarity. The additional use of %f within the output filenames is to give each OSIS XML file a unique name.
for %f in (*.SFM) do perl p:\usfm2osis.pl <osisWork> -o ..\osis\<osisWork>.%f.osis.xml %f

Similarly in CygWin or another bash environment you can use

for f in $(ls *.SFM); do perl usfm2osis.pl <osisWork> -o ../osis/<osisWork>.$f.osis.xml $f; done

Markers not yet supported by usfm2osis.pl

Not all USFM tags are currently supported, just those so far seen "in the wild" by the maintainers of the script. The comments of the script document the current set of tags coverage. In view of the many omissions, it is advised to use the new Python script instead.

Fixing the OSIS XML files

This section attempts to address some of the current deficiencies in SWORD, and lists tools to workaround these issues. Eventually (it is hoped) these will not be necessary, as the fixes will be implemented within usfm2osis.py during its further development.

Cross-references

usfm2osis.py and usfm2osis.pl do not produce cross-references that work properly as links with SWORD. If your text contains such, you need xreffix.pl which sits alongside usfm2osis.pl on the output of usfm2osis.pl. Using it requires the SWORD Perl bindings be installed and a sword-locale.

Preverse titles

Unfortunately, (right now), the next step from such a generated OSIS file via osis2mod does not ensure that certain titles are placed correctly to work with SWORD. A further perl script, title-cleanup.pl adds the argument subType="x-preverse" to some titles.[1][2]

Notes:

  1. Caution: We have encountered a few modules in which this script has been mistakenly applied where it was unnecessary. The effect has been to misplace some titles to above the verse prior to the one they should be displayed as headings for.
  2. Also (right now) there is an unsolved issue that causes some preverse titles to be misplaced. The symptoms are described in [1].

Miscellaneous

Many texts in non-Latin scripts (and even for some Latin scripts) require batch conversion of characters and numbers. There are several scripts to assist with this, without harming the USFM or OSIS markup.[1][2]

Notes:

  1. These supplementary Perl scripts are located in various sub-directories under sword-tools.
  2. This has little to do with usfm2osis.pl

UBS Paratext

Since version 6, UBS Paratext has a menu option to export to OSIS.

Checking | Paratext 6 Checks | Publishing | Convert USFM to OSIS (Best Practice)
See Paratext to OSIS for illustration of this menu option.

This option generates XML files with the following schema definition file referenced.

osisCore.2.0_UBS_SIL_BestPractice.xsd

UBS SIL Best Practice OSIS makes use of several XML attributes that are not used within CrossWire, and some of these are custom (i.e. x-prefix named attributes). An accessible online copy does not seem to be available. Furthermore, the only undated copy of this .xsd file (40KB) that has been obtained includes the following lines:

   <!--    WARNING   WARNING   WARNING
  THIS SCHEMA IS DEVELOPMENTAL AND SHOULD BE USED WITH THAT UNDERSTANDING -->

Contrast the above with the standard definition file (92KB) used by CrossWire.

http://www.bibletechnologies.net/osisCore.2.1.1.xsd

Notwithstanding the above concerns, based on one sample exported from a Paratext project, it has been verified that replacing line 2 by the similar line output from usfm2osis.pl, such a converted XML file can be validated against the standard definition file.

Nevertheless, further testing (using osis2mod) of some OSIS files exported from Paratext revealed that they generated WARNING(NESTING) errors. Some of these were due to the eID milestone for a verse occurring BEFORE the sID milestone for the same verse! Others were due to </note> being placed AFTER the eID milestone for the verse where the note occurs.

Hence I conclude that what Paratext outputs as OSIS is not really "best practice", and would require some improvements to fix issues such as these. However, we know that work on OSIS export from Paratext has virtually stopped - so this may now prove to be of mere historical interest.

The bottom line is that the OSIS export from Paratext is not ready for publishing a SWORD module.

Other osis-converters

osis-converters is the location for the open source (U)SFM-to-OSIS and OSIS-to-SWORD module converters developed independently by the main programmer of xulsword. Some of the OSIS elements used in these Perl scripts are not the same as generated by the CrossWire maintained scripts. See [4].

Creation of publication ready modules from USFM and submission to CrossWire

Checking and validating OSIS files

When checking OSIS XML files there are 3 steps:

  1. Is the OSIS well formed XML ?
  2. Is the file valid to the defined OSIS schema?
  3. Is the file "fit for purpose" (i.e. suitable for immediate use by the SWORD conversion tool called osis2mod)

Step #1 does not guarantee step #2 and step #2 does not guarantee step #3. See above and below and limitations of XML validators.

Before you convert your OSIS files to SWORD format, you should always check that it is valid OSIS.
Before you submit any files to modules@crosswire.org, you must ensure that your files are valid OSIS. Invalid OSIS files will not be accepted.

Module creation process

Our process to create publication ready modules from USFM looks like this:

Stage 1

The command line examples in this section are for Unix. In Windows, it's not as simple to make equivalent command lines for Perl, especially in regard to globbing wildcards for filenames.

  • Iterate usfm2osis.pl over each single USFM file to produce a OSIS file per USFM file
for biblebook in 'ls *usfm'; do usfm2osis.pl $biblebook $biblebook; done
  • Check each OSIS file for XML validity - this will throw up a lot of not obvious USFM encoding problems
for biblebook in 'ls *osis.xml'; do checkbible $biblebook; done
  • Correct USFM files as per mistakes found

Rerun this stage until you have clean and validating OSIS files.

Stage 2

  1. Check the OSIS files for not transformed USFM markers.[1][2]
  2. Fix usfm2osis.pl and add the missing tags for correct OSIS transformation.
  3. Rerun above until you have a clean validating collection of OSIS files with no left over USFM tags.[3]
  4. Send the updates to usfm2osis.pl to CrossWire's SVN repository.
  5. Run usfm2osis.pl over all the USFM files and create a single large OSIS file.
  6. Check again for XML validity.[4]
  7. Run the OSIS file through osis2mod[5], create a conf file, and check the resultant module for problems in a variety of front-ends.[6]
  8. Create a sword locale file and store in your /usr/share/sword/locales.d/ directory[7]
  9. If cross references are part of the USFM files fix these with the help of xreffix.pl (also in sword-tools).[8]
  10. Run again through osis2mod and check again.
  11. Submit the final OSIS file and the conf file to CrossWire together with the locale file.[9]
  12. Send any corrections on the USFM files back to the translation team. Chances are these are all valid and necessary corrections which help to improve the USFM.[10]

Notes:

  1. Not many common ones are left unsupported, but you may encounter usually one or two new ones if you get files from a different new source.
  2. Some supported USFM markers may remain unconverted due to anomalies in how the USFM files were edited.
    Paratext does not check all potential mismatches against the USFM reference manual, and moreover, the manual itself leaves room for some ambiguities.
  3. A lot of the repetitive aspects can be done with the help of some shell scripts, so do not worry that you have to run each time multiples of usfm2osis.pl by hand.
  4. See OSIS Bible validation for further instructions on OSIS validation.
  5. Instructions for running osis2mod are available at osis2mod usage.
  6. Fixes should be made in the USFM files at the very start and then cascaded down into the module following the overall process again.
  7. or the equivalent directory on your system
  8. This requires a sword locale in the local installation at least.
  9. Include advice regarding which repository the module is intended for.
  10. Both Paratext and Bibledit are a bit more forgiving than our tools, but some problems you encounter could have affected the final paper print.