diff options
author | Chris Little <chrislit@crosswire.org> | 2009-03-10 12:24:58 +0000 |
---|---|---|
committer | Chris Little <chrislit@crosswire.org> | 2009-03-10 12:24:58 +0000 |
commit | dfcce2c47e674cd0d08bb38ed9303bd704861bc8 (patch) | |
tree | 0ad2b3f6bf54b8ee860b4bdf4eb0e228f8a8cc64 /versification/v11nsys.pl | |
parent | 0060fbe13ffcad705d27841d664fb1951965138d (diff) | |
download | sword-tools-dfcce2c47e674cd0d08bb38ed9303bd704861bc8.tar.gz |
corrected some of the CCEL source data:
OdesSol is a completely different book from Odes (the former is a pseudepigraphon, the latter an appendix to the LXX)
and there's no need to maintain 1-4Kgdms naming rather than mapping these directly to 1-2Sam,1-2Kgs
git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@161 07627401-56e2-0310-80f4-f8cd0041bdcd
Diffstat (limited to 'versification/v11nsys.pl')
-rw-r--r-- | versification/v11nsys.pl | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/versification/v11nsys.pl b/versification/v11nsys.pl index 239aa35..0e9fbb8 100644 --- a/versification/v11nsys.pl +++ b/versification/v11nsys.pl @@ -4,10 +4,6 @@ sub cleanupLine { # here we'll do some cleanup of our input, mostly to regularlize input
$ret = @_[0];
- $ret =~ s/1Kgdms/1Kgs/g;
- $ret =~ s/2Kgdms/2Kgs/g;
- $ret =~ s/3Kgdms/1Sam/g;
- $ret =~ s/4Kgdms/2Sam/g;
$ret =~ s/>Pss\./>Ps\//g;
return $ret;
|