/****************************************************************************** * * webiftest.cpp - * * $Id: webiftest.cpp 2833 2013-06-29 06:40:28Z chrislit $ * * Copyright 2003-2013 CrossWire Bible Society (http://www.crosswire.org) * CrossWire Bible Society * P. O. Box 2528 * Tempe, AZ 85280-2528 * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation version 2. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * */ #ifndef __GNUC__ #include #else #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #ifndef NO_SWORD_NAMESPACE using namespace sword; #endif using namespace std; #define MAXBUF 30000 int main(int argc, char **argv) { const char* modName = (argc >= 2) ? argv[1] : "KJV"; const char* keyName = (argc == 3) ? argv[2] : "John 1:1"; SWMgr mgr(0, 0, true, new MarkupFilterMgr(FMT_WEBIF, ENC_UTF8)); mgr.setGlobalOption("Strong's Numbers", "on"); mgr.setGlobalOption("Morphological Tags", "on"); SWModule *module = mgr.Modules[modName]; if (!module) { module = mgr.Modules.begin()->second; } module->setKey(keyName); std::cout << module->renderText() << std::endl<< std::endl<< std::endl; //------------------------ SWMgr mgr2(0, 0, true, new MarkupFilterMgr(FMT_HTMLHREF, ENC_UTF8)); mgr2.setGlobalOption("Strong's Numbers", "on"); mgr2.setGlobalOption("Morphological Tags", "on"); module = mgr2.Modules[modName]; if (!module) { module = mgr2.Modules.begin()->second; } module->setKey(keyName); std::cout << module->renderText() << std::endl; return 0; }