[sword-svn] r412 - trunk/flashtools

scribe at crosswire.org scribe at crosswire.org
Tue Feb 5 06:26:39 MST 2013


Author: scribe
Date: 2013-02-05 06:26:39 -0700 (Tue, 05 Feb 2013)
New Revision: 412

Modified:
   trunk/flashtools/flash.cpp
Log:
added unescaped greek to csv


Modified: trunk/flashtools/flash.cpp
===================================================================
--- trunk/flashtools/flash.cpp	2013-02-05 13:19:50 UTC (rev 411)
+++ trunk/flashtools/flash.cpp	2013-02-05 13:26:39 UTC (rev 412)
@@ -188,8 +188,9 @@
      // output header
      cout
           << "FreqKJV|"
+          << "Strongs|"
           << "Greek|"
-          << "Strongs|"
+          << "Escaped UTF-8|"
           << "TranslationInAV"
           << "\n";
 /*
@@ -223,8 +224,9 @@
 		s = itoa(atoi(s.c_str())).c_str();
 		cout
 			<< w.freq << "|"
+			<< w.strong << "|"
+			<< w.utf8.c_str() << "|"
 			<< escapedUTF8(w.utf8).c_str() << "|"
-			<< w.strong << "|"
 			<< prettyKJVFreq(w.kjvFreq).c_str()
 /*
                << w.freq << "|"
@@ -339,7 +341,7 @@
 	
 	SWModule *tmpBible = manager.getModule(modName);
 	if (!tmpBible) {
-		cerr << "Unable to locate KJV module" << endl;
+		cerr << "Unable to locate " << modName.c_str() << " module" << endl;
 		exit(1);
 	}
 	SWModule &bible = *tmpBible;




More information about the sword-cvs mailing list