summaryrefslogtreecommitdiff
path: root/examples/tasks/parallelbibles.cpp
blob: dd57f8648bc5b65e2321836bdccc5984a50e3d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/******************************************************************************
 *
 *  parallelbibles.cpp -	This examples demonstrates a strategy for
 *  				displaying Bibles in parallel
 *
 * $Id: parallelbibles.cpp 3030 2014-02-28 02:14:44Z scribe $
 *
 * Copyright 2013-2014 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.
 *
 */

#include <swmgr.h>
#include <markupfiltmgr.h>
#include <swmodule.h>
#include <versekey.h>
#include <iostream>
#include <vector>
#include <stdio.h>


using namespace sword;
using namespace std;


void parallelDisplay(vector<SWModule *>modules, const char *key) {

	// We'll use the first module's key as our master key to position all other modules.
	VerseKey *master = (VerseKey *)modules[0]->createKey();

	master->setText(key);
	int curVerse   = master->getVerse();
	int curChapter = master->getChapter();
	int curBook    = master->getBook();

	for (master->setVerse(1);	   (master->getBook()    == curBook)
					&& (master->getChapter() == curChapter)
					&& !master->popError();
										(*master)++) {

		cout << "<tr class=\"" << (master->getVerse() == curVerse ? "currentverse":"verse") << "\">";
		for (vector<SWModule *>::iterator module = modules.begin(); module != modules.end(); ++module) {
			(*module)->setKey(master);
			if (!(*module)->popError()) {
				cout << "<td>" << "<span class=\"versenum\">" << master->getVerse() << "</span> ";
				cout << (*module)->renderText() << "</td>";
			}
		}
		cout << "</tr>";
	}
	delete master;
}


void outputHeader(vector<SWModule *>modules, const char *key) {

	modules[0]->setKey(key);
	
	// force a render so our key snaps to a module entry and we get nicely formatted keytext output later
	// otherwise we just get what the user typed
	modules[0]->renderText();

	cout
	<< "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
	<< "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">"
	<< "<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:og=\"http://ogp.me/ns#\" xmlns:fb=\"https://www.facebook.com/2008/fbml\" xml:lang=\"en_US\" lang=\"en_US\">"
	<< "<head profile=\"http://www.w3.org/2000/08/w3c-synd/#\">"
	<< "<meta name=\"keywords\" content=\"Jesus, Christ, Church, Bible, Iran, Persian, Persia, Azeri, Azerbaijan, Armenian, God, Gospel, CrossWire, Java, Web, Software\" />"
	<< "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />"
	<< "<title>OSIS Web: " << modules[0]->getKeyText() << " - Parallel Bible study</title>"
	<< "<link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\"http://crosswire.org/study/common.css\"  />"
	<< "<link rel=\"stylesheet\" type=\"text/css\" media=\"all\" title=\"Washed Out\" href=\"http://crosswire.org/study/wash.css\"  />"
	<< "<link rel=\"stylesheet\" type=\"text/css\" href=\"http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css\"/>"
	<< "<script type=\"text/javascript\" src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js\"></script>"
	<< "<script type=\"text/javascript\" src=\"http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js\"></script>"
	<< "<link rel=\"alternate stylesheet\" type=\"text/css\" media=\"all\" title=\"Washed Out\" href=\"http://crosswire.org/study/wash.css\" />"
	<< "<link rel=\"alternate stylesheet\" type=\"text/css\" media=\"all\" title=\"Parchment\" href=\"http://crosswire.org/study/parchment.css\" />"
	<< "<link rel=\"alternate stylesheet\" type=\"text/css\" media=\"all\" title=\"Sandy Creek\" href=\"http://crosswire.org/study/sandy.css\" />"
	<< "<!--For printing stuff -->"
	<< "<link rel=\"stylesheet\" type=\"text/css\" media=\"print\" href=\"http://crosswire.org/study/print.css\" />"
	<< "<script type=\"text/javascript\" src=\"http://crosswire.org/study/swordweb.js\"></script>"
	<< "</head>"
	<< "<body onload=\"onPageLoad();\" class=\"ltor\">"
 	<<   "<div id=\"pageBorderTop\"></div>"
  	<<   "<div id=\"header\">"
    	<<     "<h1>The Bible Tool</h1>"
  	<<   "</div>"
	<<   "<div id=\"content-main\">"
	<<     "<div id=\"paralleldisplay\">"
	<<       "<style>"
	<<         modules[0]->getRenderHeader()
	<<       "</style>"
	<<       "<h2>Parallel Viewing: " << modules[0]->getKeyText() << "</h2><br/>"
	<<       "<table><thead><tr>";

	for (vector<SWModule *>::iterator module = modules.begin(); module != modules.end(); ++module) {
		cout << "<th>" << (*module)->getDescription() << "</th>";
	}

	cout
	<<       "</tr></thead><tbody>";

	
}

void outputFooter(vector<SWModule *>modules) {

	cout
	<<       "</tbody><tfoot><tr>";

	for (vector<SWModule *>::iterator module = modules.begin(); module != modules.end(); ++module) {
		SWBuf copyLine = (*module)->getConfigEntry("ShortCopyright");
		SWBuf promoLine = (*module)->getConfigEntry("ShortPromo");
		cout
		<< "<th>"
		<< "<div class=\"copyLine\">" <<  copyLine << "</div>"
		<< "<div class=\"promoLine\">" << promoLine << "</div>"
		<< "</th>";
	}

	cout
	<<       "</tr></tfoot></table>"
	<<     "</div>"
	<<   "</div>"
	<<   "<div id=\"footer\">"
	<<     "<p>"
	<<       "<a href=\"http://www.americanbible.org/\" title=\"American Bible Society\"><img src=\"http://crosswire.org/study/images/logo_abs.gif\" width=\"105\" height=\"64\" alt=\"American Bible Society\" /></a>"
	<<       "<a href=\"http://crosswire.org/\" title=\"CrossWire Bible Society\"><img src=\"http://crosswire.org/study/images/logo_cwbs.gif\" width=\"161\" height=\"64\" alt=\"CrossWire Bible Society\" /></a>"
	<<       "<a href=\"http://sbl-site.org/\" title=\"Society of Biblical Literature\"><img src=\"http://crosswire.org/study/images/logo_fbl.gif\" width=\"86\" height=\"64\" alt=\"Society of Biblical Literature\" /></a>"
	<<     "</p>"
	<<     "<p>Copyright &copy; 2003-2011  <a href=\"http://www.crosswire.org/\">CrossWire Bible Society</a></p>"
	<<       "<div id=\"pageBorderBottom\"><br /></div>"
	<<   "</div>"
	<< "</body>"
	<< "</html>";
}


int main(int argc, char **argv) {

	SWMgr library(new MarkupFilterMgr(FMT_XHTML));

	if (argc < 3) {
		fprintf(stderr, "\nusage: %s <modname> [modname ...] <\"key\">\n"
							 "\tExample: %s KJV ESV \"James 1:19\"\n\n", argv[0], argv[0]);
		exit(-1);
	}

	vector<SWModule *> modules;
	for (int i = 1; i < argc-1; ++i) {
		SWModule *bible = library.getModule(argv[i]);
		if (!bible) {
			fprintf(stderr, "Could not find module [%s].  Available modules:\n", argv[i]);
			ModMap::iterator it;
			for (it = library.Modules.begin(); it != library.Modules.end(); ++it) {
				fprintf(stderr, "[%s]\t - %s\n", (*it).second->getName(), (*it).second->getDescription());
			}
			exit(-2);
		}
		modules.push_back(bible);
	}

	outputHeader(modules, argv[argc-1]);
	parallelDisplay(modules, argv[argc-1]);
	outputFooter(modules);

	return 0;
}