What I am looking for is antichrist finds in the kjv sources.
Bibleworks, being perhaps regarded as one of the best bibletools that have been made on this planet. What i did now was to start a comparation of its and with others kjv bible sources, and i were amazed to see that it also had various errors, and was even worse than the norwegian computer software' version, but of course i haven't seen through all yet, I'm all the way to jug. considering it have been a used application by many "researchers" in the bible field, this should say something?.
I have made some reports about it on http://drupalbible.mikelee.idv.tw/?q=node/25822 , but not included the errors i found in the bible there, because it was much equal with some of the other repports there.
Here is a php converter used wich(isn't fully completed, only made quick for the kjv)
This may be used to make the drupal exports equal to the files i have compared with(using winmerge look at the link above for more information.):
PHP Code:
<?php
$s1 = "Gen Exo Lev Num Deu Jos Jdg Rut 1Sa 2Sa 1Ki 2Ki 1Ch 2Ch Ezr Neh Est Job Psa Pro Ecc Sol Isa Jer Lam Eze Dan Hos Joe Amo Oba Jon Mic Nah Hab Zep Hag Zec Mal Mat Mar Luk Joh Act Rom 1Co 2Co Gal Eph Phi Col 1Th 2Th 1Ti 2Ti Tit Phm Heb Jam 1Pe 2Pe 1Jo 2Jo 3Jo Jud Rev 1Es Jdt Tob 1Ma 2Ma 3Ma 4Ma Ode Wis Sip Sir Pss Bar Epj Sus Bel Pra Dng Prm Psx Lao 4Es Esg Jsa Jda Tbs Sut Dat Bet WCF WLC WSC 1Cl 2Cl";
$s2 = "GEN EXO LEV NUM DEU JOS JUG RUT 1SM 2SM 1KG 2KG 1CH 2CH EZR NEH EST JOB PS PRO ECC SON ISA JER LAM EZE DAN HOS JOE AMO OBA JON MIC NAH HAB ZEP HAG ZEC MAL MAT MAK LUK JHN ACT ROM 1CO 2CO GAL EPH PHL COL 1TS 2TS 1TM 2TM TIT PHM HEB JAM 1PE 2PE 1JN 2JN 3JN JUD REV";
$a1 = explode(' ', $s1);
$a2 = explode(' ', $s2);
$testfile = $_GET["f"];
$f_arr = file($testfile);
$fh = fopen($testfile,'r');
$f_arr2 = file("2".$testfile);
$fh2 = fopen("2".$testfile,'w');
$count = count($f_arr);
for($i=0; $i<$count; $i++)
{
$s3 = $f_arr[$i];
if (!strpos($s3, "||")) {
$testfile = $_GET["f"];
$a3 = explode(' ', $s3);
$sum = sizeof($a3);
$bw_namesearch = $a3[0];
$token = array_search($bw_namesearch, $a1);
if ($token !== FALSE) { $bw_name = $a2[$token]; }
else { $bw_name = $bw_namesearch; }
$a3[1] = str_replace(":", "|", $a3[1]); //$token + 1
$subset = array_slice($a3, 2, $sum); //$token + 2
$s3 = $bw_name."|".$a3[1]."||".implode(" ",$subset);
fwrite($fh2,$s3);
}
}
echo "done";
?>
I would gladely like some help on this project.
May Gods peace be with you !