Initial commit
This commit is contained in:
@@ -0,0 +1,125 @@
|
||||
<%@ page session="false"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
||||
<html>
|
||||
<head>
|
||||
<title>${boek.boek} <c:if test="${boek.hoofdstukken > 1}">${hoofdstuk} </c:if>(${vertaling.afkorting})</title>
|
||||
|
||||
<meta name="viewport"
|
||||
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0" />
|
||||
|
||||
|
||||
<link rel="stylesheet"
|
||||
href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
|
||||
<link rel="stylesheet"
|
||||
href="resources/css/themes/Psalmenweb.css" />
|
||||
<link rel="stylesheet"
|
||||
href="resources/css/psalmenweb.css" />
|
||||
|
||||
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
|
||||
<script
|
||||
src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script>
|
||||
<script src="resources/js/prefs.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" data-theme="a">
|
||||
<div data-role="header" data-position="fixed" id="psalmhoofd">
|
||||
<div class="psalmheader">${boek.boek} <c:if test="${boek.hoofdstukken > 1}">${hoofdstuk} </c:if>(${vertaling.afkorting})</div>
|
||||
<a data-inline="true" data-icon="custom" data-iconpos="notext" id="bw" data-ajax="false" class="ui-btn-right" style="margin-right:350px;"></a>
|
||||
<a href="hcindex" data-inline="true" data-icon="custom" data-iconpos="notext" id="hc" data-ajax="false" class="ui-btn-right" style="margin-right:250px;"></a>
|
||||
<c:choose>
|
||||
<c:when test="${vertaling.id == 1}">
|
||||
<a href="${linkvertaling}" data-inline="true" data-icon="custom" data-iconpos="notext" id="sv" data-ajax="false" class="ui-btn-right" style="margin-right:150px;"></a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<a href="${linkvertaling}" data-inline="true" data-icon="custom" data-iconpos="notext" id="hsv" data-ajax="false" class="ui-btn-right" style="margin-right:150px;"></a>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<a href="psalmindex" data-inline="true" data-icon="custom" data-iconpos="notext" id="note" data-ajax="false" class="ui-btn-right" style="margin-right:50px;"></a>
|
||||
</div>
|
||||
<div data-role="content">
|
||||
<br /> <br />
|
||||
<c:forEach items="${verzen}" var="vers"
|
||||
varStatus="varstatus">
|
||||
<p class="psalmline"><span class="bijbelvers">${vers.vers}</span> ${vers.tekst}</p>
|
||||
</c:forEach>
|
||||
|
||||
<br />
|
||||
</div>
|
||||
<div data-role="footer" class="bigbuttons">
|
||||
<div data-role="navbar" data-position="fixed" class="bigbuttons" data-grid="d">
|
||||
<ul>
|
||||
<li><a href="${linkvorige}" id="left" data-icon="custom" data-ajax="false"> </a></li>
|
||||
<li><a href="#" id="minus" data-icon="custom"> </a></li>
|
||||
<li><a href="bijbelindex?t=${vertaling.id}" id="index" data-icon="custom" data-ajax="false" data-transition="pop"> </a></li>
|
||||
<li><a href="#" id="plus" data-icon="custom"> </a></li>
|
||||
<li><a href="${linkvolgende}" id="right" data-icon="custom" data-ajax="false"> </a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
var PREF_TEXTSIZE;
|
||||
var PREF_COLOR;
|
||||
|
||||
$(function() {
|
||||
loadPreferences();
|
||||
setPreferences();
|
||||
bindListeners();
|
||||
});
|
||||
|
||||
function changeTextSize(delta) {
|
||||
var size = parseInt($(".psalmverseheader").css("font-size"));
|
||||
cssSize = (size + delta) + "px";
|
||||
$(".psalmverseheader").css("font-size", cssSize);
|
||||
|
||||
size = parseInt($(".psalmline").css("font-size"));
|
||||
cssSize = (size + delta) + "px";
|
||||
$(".psalmline").css("font-size", cssSize);
|
||||
|
||||
PREF_TEXTSIZE = size + delta;
|
||||
savePreferences();
|
||||
}
|
||||
|
||||
$(document).on('pageinit', function() {
|
||||
$(document).on("click", "#minus", function(e) {
|
||||
changeTextSize(-2);
|
||||
});
|
||||
|
||||
$(document).on("click", "#plus", function(e) {
|
||||
changeTextSize(2);
|
||||
});
|
||||
|
||||
if ($("#left").attr("href") == "#") {
|
||||
$("#left span.ui-icon").css("background-image", "none");
|
||||
}
|
||||
|
||||
if ($("#right").attr("href") == "#") {
|
||||
$("#right span.ui-icon").css("background-image", "none");
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
// function goToVerse(immediately) {
|
||||
// if ("${vers}" != "") {
|
||||
// var target = $("#v${vers}").get(0).offsetTop;
|
||||
//
|
||||
// if (target !== undefined) {
|
||||
// if (immediately) {
|
||||
// $.mobile.silentScroll(target);
|
||||
// } else {
|
||||
// setTimeout(function(){$.mobile.silentScroll(target);}, 100); // scroll after 1 sec
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
// $(document).on('pageshow', function(){
|
||||
//goToVerse(false);
|
||||
// });
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,46 @@
|
||||
<%@ page session="false"%>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Index (${vertaling.afkorting})</title>
|
||||
<meta name="viewport"
|
||||
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0" />
|
||||
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/themes/Psalmenweb.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/psalmenweb.css" />
|
||||
|
||||
<style type="text/css">
|
||||
a {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.ui-btn {
|
||||
height: 100px;
|
||||
font-size: 60px;
|
||||
line-height: 40px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
|
||||
<script
|
||||
src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script></head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" id="myPage" data-theme="a">
|
||||
<div data-role="content" data-theme="a">
|
||||
<c:forEach items="${letters}" var="letter" varStatus="index">
|
||||
<c:if test="${(index.index % 4 == 0) && (index.index > 0)}">
|
||||
</div>
|
||||
</c:if>
|
||||
<c:if test="${index.index % 4 == 0}">
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
</c:if>
|
||||
<a href="bijbelindexboeken?start=${letter}&t=${vertaling.id}" data-role="button" data-theme="a" data-ajax="false">${letter}</a>
|
||||
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,46 @@
|
||||
<%@ page session="false"%>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Index (${vertaling.afkorting})</title>
|
||||
<meta name="viewport"
|
||||
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0" />
|
||||
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/themes/Psalmenweb.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/psalmenweb.css" />
|
||||
|
||||
<style type="text/css">
|
||||
a {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.ui-btn {
|
||||
height: 100px;
|
||||
font-size: 60px;
|
||||
line-height: 40px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
|
||||
<script
|
||||
src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script></head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" id="myPage" data-theme="a">
|
||||
<div data-role="content" data-theme="a">
|
||||
<c:forEach items="${boeken}" var="boek" varStatus="index">
|
||||
<c:if test="${(index.index % 4 == 0) && (index.index > 0)}">
|
||||
</div>
|
||||
</c:if>
|
||||
<c:if test="${index.index % 4 == 0}">
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
</c:if>
|
||||
<a href="bijbelindexchapter?boek=${boek.id}&t=${vertaling.id}" data-role="button" data-theme="a" data-ajax="false">${boek.afkorting}</a>
|
||||
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,176 @@
|
||||
<%@ page session="false"%>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Index (${vertaling.afkorting})</title>
|
||||
<meta name="viewport"
|
||||
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0" />
|
||||
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/themes/Psalmenweb.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/psalmenweb.css" />
|
||||
|
||||
<style type="text/css">
|
||||
a {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.ui-btn {
|
||||
height: 100px;
|
||||
font-size: 60px;
|
||||
line-height: 40px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
|
||||
<script
|
||||
src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script></head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" id="myPage" data-theme="a">
|
||||
<div data-role="content" data-theme="a">
|
||||
<a id="boekhoofdstuk" style="width: 100%;" href="#" data-role="button" data-transition="fade" class="indexlabel" data-theme="a">${boek.boek} <span id="choice"></span></a>
|
||||
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="k7" href="#" data-role="button" data-theme="a">7</a>
|
||||
|
||||
<a id="k8" href="#" data-role="button" data-theme="a">8</a>
|
||||
|
||||
<a id="k9" href="#" data-role="button" data-theme="a">9</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="k4" href="#" data-role="button" data-theme="a">4</a>
|
||||
|
||||
<a id="k5" href="#" data-role="button" data-theme="a">5</a>
|
||||
|
||||
<a id="k6" href="#" data-role="button" data-theme="a">6</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="k1" href="#" data-role="button" data-theme="a">1</a>
|
||||
|
||||
<a id="k2" href="#" data-role="button" data-theme="a">2</a>
|
||||
|
||||
<a id="k3" href="#" data-role="button" data-theme="a">3</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="kd" href="#" data-role="button" data-theme="a">◀</a>
|
||||
|
||||
<a id="k0" href="#" data-role="button" data-theme="a">0</a>
|
||||
|
||||
<a id="ke" href="#" data-role="button" data-theme="a">✔</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(function () {
|
||||
$(".indexknoppengroep a").click(function() {
|
||||
if ($("div.ui-loader.ui-overlay-shadow").length == 1) {
|
||||
return;
|
||||
}
|
||||
var knop = this.id.substring(1);
|
||||
switch(knop) {
|
||||
case "0":
|
||||
case "1":
|
||||
case "2":
|
||||
case "3":
|
||||
case "4":
|
||||
case "5":
|
||||
case "6":
|
||||
case "7":
|
||||
case "8":
|
||||
case "9":
|
||||
addNumber(knop);
|
||||
break;
|
||||
case "d":
|
||||
removeChar();
|
||||
break;
|
||||
case "e":
|
||||
if (! $("#boekhoofdstuk").hasClass("invalid")) {
|
||||
var choice = $("#choice").html();
|
||||
if (choice == "") {
|
||||
choice = "1";
|
||||
$("#choice").html(choice);
|
||||
}
|
||||
|
||||
window.location.href = "bijbel?t=${vertaling.id}&b=${boek.id}&h=" + choice;
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function addNumber(knop) {
|
||||
var choice = $("#choice").html();
|
||||
var lengte = choice.length;
|
||||
|
||||
if (lengte == 3) {
|
||||
choice = "";
|
||||
}
|
||||
if (lengte == 0 && knop == "0") {
|
||||
return;
|
||||
}
|
||||
|
||||
choice += knop;
|
||||
|
||||
$("#choice").html(choice);
|
||||
|
||||
checkCorrectChapter();
|
||||
}
|
||||
|
||||
function removeChar() {
|
||||
var choice = $("#choice").html();
|
||||
var lengte = choice.length;
|
||||
if (lengte > 0) {
|
||||
choice = choice.substring(0, choice.length - 1);
|
||||
$("#choice").html(choice);
|
||||
}
|
||||
checkCorrectChapter();
|
||||
}
|
||||
|
||||
function checkCorrectChapter() {
|
||||
var hoofdstuk = parseInt($("#choice").html());
|
||||
if (hoofdstuk > ${boek.hoofdstukken}) {
|
||||
$("#boekhoofdstuk").addClass("invalid");
|
||||
} else {
|
||||
$("#boekhoofdstuk").removeClass("invalid");
|
||||
}
|
||||
}
|
||||
|
||||
function toastVerseDoesNotExist() {
|
||||
$("a#choice span span").addClass("invalid");
|
||||
$("<div class='ui-loader ui-overlay-shadow ui-body-e ui-corner-all'><h1>Dit vers bestaat niet.</h1></div>")
|
||||
.css({
|
||||
display: "block",
|
||||
// opacity: 0.90,
|
||||
position: "fixed",
|
||||
padding: "7px",
|
||||
"text-align": "center",
|
||||
width: "350px",
|
||||
left: ($(window).width() - 364) / 2,
|
||||
top: $(window).height() / 2})
|
||||
.appendTo($.mobile.pageContainer).delay(2000)
|
||||
.fadeOut(400, function(){
|
||||
$(this).remove();
|
||||
var choice = $("a#choice span span").html();
|
||||
choice = choice.substring(0, choice.indexOf("vers") + 5);
|
||||
$("a#choice span span").html(choice);
|
||||
$("a#choice span span").removeClass("invalid");
|
||||
});
|
||||
}
|
||||
|
||||
function checkPsalmVerseExists(psalm, vers) {
|
||||
var result;
|
||||
$.ajax({
|
||||
url: 'psalmcheck',
|
||||
async: false,
|
||||
data: {p: psalm, v: vers}, //'p=' & psalm & '&v=' & vers,
|
||||
success: function(data) {
|
||||
result = data;
|
||||
}
|
||||
});
|
||||
|
||||
return result;
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,124 @@
|
||||
<%@ page session="false"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
||||
<html>
|
||||
<head>
|
||||
<title>Zondag ${hc}</title>
|
||||
|
||||
<meta name="viewport"
|
||||
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0" />
|
||||
|
||||
|
||||
<link rel="stylesheet"
|
||||
href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
|
||||
<link rel="stylesheet"
|
||||
href="resources/css/themes/Psalmenweb.min.css" />
|
||||
<link rel="stylesheet"
|
||||
href="resources/css/psalmenweb.css" />
|
||||
|
||||
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
|
||||
<script
|
||||
src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script>
|
||||
<script src="resources/js/prefs.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" data-theme="a">
|
||||
<div data-role="header" data-position="fixed">
|
||||
<div class="psalmheader">Zondag ${hc}</div>
|
||||
<a data-inline="true" data-icon="custom" data-iconpos="notext" id="bw" data-ajax="false" class="ui-btn-right" style="margin-right:350px;"></a>
|
||||
<a href="psalmindex" data-inline="true" data-icon="custom" data-iconpos="notext" id="note" data-ajax="false" class="ui-btn-right" style="margin-right:150px;"></a>
|
||||
<a href="bijbelindex?t=1" data-inline="true" data-icon="custom" data-iconpos="notext" id="book" data-ajax="false" class="ui-btn-right" style="margin-right:50px;"></a>
|
||||
</div>
|
||||
<div data-role="content">
|
||||
<br /> <br />
|
||||
<c:forEach items="${zondag}" var="vraag" varStatus="varstatus">
|
||||
<div class="psalmverseheader">Vraag ${vraag.vraag}</div>
|
||||
<p class="hclinequestion">${vraag.tekstVraag}</p>
|
||||
<p class="hclineanswer">${vraag.tekstAntwoord}</p>
|
||||
<br />
|
||||
</c:forEach>
|
||||
|
||||
<br />
|
||||
</div>
|
||||
<div data-role="footer" class="bigbuttons">
|
||||
<div data-role="navbar" class="bigbuttons" data-position="fixed">
|
||||
<ul>
|
||||
<li><a href="hc?z=${hc - 1}" id="left" data-icon="custom" data-ajax="false"> </a></li>
|
||||
<li><a href="#" id="minus" data-icon="custom"> </a></li>
|
||||
<li><a href="hcindex" id="index" data-icon="custom" data-ajax="false" data-transition="pop"> </a></li>
|
||||
<li><a href="#" id="plus" data-icon="custom"> </a></li>
|
||||
<li><a href="hc?z=${hc + 1}" id="right" data-icon="custom" data-ajax="false"> </a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
var PREF_TEXTSIZE;
|
||||
var PREF_COLOR;
|
||||
|
||||
$(function() {
|
||||
loadPreferences();
|
||||
setPreferences();
|
||||
bindListeners();
|
||||
});
|
||||
|
||||
function changeTextSize(delta) {
|
||||
var size = parseInt($(".psalmverseheader").css("font-size"));
|
||||
cssSize = (size + delta) + "px";
|
||||
$(".psalmverseheader").css("font-size", cssSize);
|
||||
|
||||
size = parseInt($(".hclinequestion").css("font-size"));
|
||||
cssSize = (size + delta) + "px";
|
||||
$(".hclinequestion").css("font-size", cssSize);
|
||||
|
||||
size = parseInt($(".hclineanswer").css("font-size"));
|
||||
cssSize = (size + delta) + "px";
|
||||
$(".hclineanswer").css("font-size", cssSize);
|
||||
|
||||
PREF_TEXTSIZE = size + delta;
|
||||
savePreferences();
|
||||
}
|
||||
|
||||
$(document).on('pageinit', function() {
|
||||
$(document).on("click", "#minus", function(e) {
|
||||
changeTextSize(-2);
|
||||
});
|
||||
|
||||
$(document).on("click", "#plus", function(e) {
|
||||
changeTextSize(2);
|
||||
});
|
||||
|
||||
if ('${hc}' == '1') {
|
||||
$("#left").attr("href", "#");
|
||||
$("#left span.ui-icon").css("background-image", "none");
|
||||
}
|
||||
if ('${hc}' == '52') {
|
||||
$("#right").attr("href", "#");
|
||||
$("#right span.ui-icon").css("background-image", "none");
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
function goToVerse(immediately) {
|
||||
if ("${vers}" != "") {
|
||||
var target = $("#v${vers}").get(0).offsetTop;
|
||||
|
||||
if (target !== undefined) {
|
||||
if (immediately) {
|
||||
$.mobile.silentScroll(target);
|
||||
} else {
|
||||
setTimeout(function(){$.mobile.silentScroll(target);}, 100); // scroll after 1 sec
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$(document).on('pageshow', function(){
|
||||
goToVerse(false);
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,146 @@
|
||||
<%@ page session="false"%>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Index Catechismus</title>
|
||||
<meta name="viewport"
|
||||
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0" />
|
||||
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/themes/Psalmenweb.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/psalmenweb.css" />
|
||||
|
||||
<style type="text/css">
|
||||
a {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.ui-btn {
|
||||
height: 100px;
|
||||
font-size: 60px;
|
||||
line-height: 40px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
|
||||
<script
|
||||
src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script></head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" id="myPage" data-theme="a">
|
||||
<div data-role="content" data-theme="a">
|
||||
<a id="hc" style="width: 100%;" href="#" data-role="button" data-transition="fade" class="indexlabel" data-theme="a">Zondag <span id="choice"></span></a>
|
||||
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="k7" href="#" data-role="button" data-theme="a">7</a>
|
||||
|
||||
<a id="k8" href="#" data-role="button" data-theme="a">8</a>
|
||||
|
||||
<a id="k9" href="#" data-role="button" data-theme="a">9</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="k4" href="#" data-role="button" data-theme="a">4</a>
|
||||
|
||||
<a id="k5" href="#" data-role="button" data-theme="a">5</a>
|
||||
|
||||
<a id="k6" href="#" data-role="button" data-theme="a">6</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="k1" href="#" data-role="button" data-theme="a">1</a>
|
||||
|
||||
<a id="k2" href="#" data-role="button" data-theme="a">2</a>
|
||||
|
||||
<a id="k3" href="#" data-role="button" data-theme="a">3</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="kd" href="#" data-role="button" data-theme="a">↶</a>
|
||||
|
||||
<a id="k0" href="#" data-role="button" data-theme="a">0</a>
|
||||
|
||||
<a id="ke" href="#" data-role="button" data-theme="a">✔</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(function () {
|
||||
$(".indexknoppengroep a").click(function() {
|
||||
if ($("div.ui-loader.ui-overlay-shadow").length == 1) {
|
||||
return;
|
||||
}
|
||||
var knop = this.id.substring(1);
|
||||
switch(knop) {
|
||||
case "0":
|
||||
case "1":
|
||||
case "2":
|
||||
case "3":
|
||||
case "4":
|
||||
case "5":
|
||||
case "6":
|
||||
case "7":
|
||||
case "8":
|
||||
case "9":
|
||||
addNumber(knop);
|
||||
break;
|
||||
case "d":
|
||||
if ($("#choice").html().length == 0) {
|
||||
window.history.back();
|
||||
} else {
|
||||
removeChar();
|
||||
}
|
||||
|
||||
break;
|
||||
case "e":
|
||||
if (! $("#hc").hasClass("invalid")) {
|
||||
var choice = $("#choice").html();
|
||||
window.location.href = "hc?z=" + choice;
|
||||
}
|
||||
}
|
||||
if ($("#choice").html().length == 0) {
|
||||
$("a#kd span span").html("↶");
|
||||
} else {
|
||||
$("a#kd span span").html("◀");
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function addNumber(knop) {
|
||||
var choice = $("#choice").html();
|
||||
var lengte = choice.length;
|
||||
|
||||
if (lengte == 2) {
|
||||
choice = "";
|
||||
}
|
||||
if (lengte == 0 && knop == "0") {
|
||||
return;
|
||||
}
|
||||
|
||||
choice += knop;
|
||||
|
||||
$("#choice").html(choice);
|
||||
|
||||
checkCorrectChoice();
|
||||
}
|
||||
|
||||
function removeChar() {
|
||||
var choice = $("#choice").html();
|
||||
var lengte = choice.length;
|
||||
if (lengte > 0) {
|
||||
choice = choice.substring(0, choice.length - 1);
|
||||
$("#choice").html(choice);
|
||||
}
|
||||
checkCorrectChoice();
|
||||
}
|
||||
|
||||
function checkCorrectChoice() {
|
||||
var hc = parseInt($("#choice").html());
|
||||
if (hc > 52) {
|
||||
$("#hc").addClass("invalid");
|
||||
} else {
|
||||
$("#hc").removeClass("invalid");
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,54 @@
|
||||
<%@ page session="false"%>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Psalmen</title>
|
||||
<meta name="viewport"
|
||||
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0" />
|
||||
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/themes/Psalmenweb.css" />
|
||||
<link rel="stylesheet" href="resources/css/psalmenweb.css" />
|
||||
|
||||
<style type="text/css">
|
||||
a {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.ui-btn {
|
||||
height: 100px;
|
||||
font-size: 60px;
|
||||
line-height: 40px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
|
||||
<script
|
||||
src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script></head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" id="myPage" data-theme="a">
|
||||
<div data-role="content" data-theme="a">
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a href="bijbelindex?t=1" style="width: 100%;" data-role="button" data-theme="a" data-ajax="false">Bijbel (HSV)</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a href="bijbelindex?t=2" style="width: 100%;"data-role="button" data-theme="a" data-ajax="false">Bijbel (SV)</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a href="psalmindex" style="width: 100%;" data-role="button" data-theme="a" data-ajax="false">Psalmen</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a href="hcindex" style="width: 100%;" data-role="button" data-theme="a" data-ajax="false">Heidelbergse Catechismus</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a style="width: 100%; visibility: hidden;" data-role="button" data-theme="a" data-ajax="false">Psalmen</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a href="info" style="width: 100%;" data-role="button" data-theme="a" data-ajax="false">Informatie</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,43 @@
|
||||
<%@ page session="false"%>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Psalmen</title>
|
||||
<meta name="viewport"
|
||||
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0" />
|
||||
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/themes/Psalmenweb.css" />
|
||||
<link rel="stylesheet" href="resources/css/psalmenweb.css" />
|
||||
|
||||
<style type="text/css">
|
||||
a {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.ui-btn {
|
||||
height: 100px;
|
||||
font-size: 60px;
|
||||
line-height: 40px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
|
||||
<script
|
||||
src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script></head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" id="myPage" data-theme="a">
|
||||
<div data-role="content" data-theme="a">
|
||||
<p style="font-size: 40px; line-height: 1.5; text-align: left;">
|
||||
Het doel van deze website is om de Bijbel en de psalmen toegankelijk te maken voor slecht- en minderzienden.
|
||||
De website is geoptimaliseerd voor tablets. Een internetverbinding is noodzakelijk!
|
||||
</p>
|
||||
<p style="font-size: 40px; line-height: 1.5; text-align: left;">
|
||||
Ik help u graag bij problemen of vragen. Telefoon: 06-14243000 of email: <a href="mailto:info@psalmenonline.nl">info@psalmenonline.nl</a>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,132 @@
|
||||
<%@ page session="false"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
||||
<html>
|
||||
<head>
|
||||
<title>Psalm ${psalm}</title>
|
||||
|
||||
<meta name="viewport"
|
||||
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0" />
|
||||
|
||||
|
||||
<link rel="stylesheet"
|
||||
href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
|
||||
<link rel="stylesheet"
|
||||
href="resources/css/themes/Psalmenweb.min.css" />
|
||||
<link rel="stylesheet"
|
||||
href="resources/css/psalmenweb.css" />
|
||||
|
||||
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
|
||||
<script
|
||||
src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script>
|
||||
<script src="resources/js/prefs.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" data-theme="a">
|
||||
<div data-role="header" data-position="fixed">
|
||||
<div class="psalmheader">Psalm ${psalm}</div>
|
||||
<a data-inline="true" data-icon="custom" data-iconpos="notext" id="bw" data-ajax="false" class="ui-btn-right" style="margin-right:350px;"></a>
|
||||
<a href="hcindex" data-inline="true" data-icon="custom" data-iconpos="notext" id="hc" data-ajax="false" class="ui-btn-right" style="margin-right:150px;">a</a>
|
||||
<a href="bijbelindex?t=1" data-inline="true" data-icon="custom" data-iconpos="notext" id="book" data-ajax="false" class="ui-btn-right" style="margin-right:50px;"></a>
|
||||
</div>
|
||||
<div data-role="content">
|
||||
<br /> <br />
|
||||
<c:forEach items="${psalmRegels}" var="psalmregel"
|
||||
varStatus="varstatus">
|
||||
<c:if
|
||||
test="${(varstatus.index == 0) || (psalmregel.vers != psalmRegels[varstatus.index - 1].vers)}">
|
||||
<a id="v${psalmregel.vers}"></a>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<c:choose>
|
||||
<c:when test="${psalmregel.vers == 0}">
|
||||
<div class="psalmverseheader">Voorzang</div>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<div class="psalmverseheader">Vers ${psalmregel.vers}</div>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</c:if>
|
||||
<p class="psalmline">${psalmregel.tekst}</p>
|
||||
</c:forEach>
|
||||
|
||||
<br />
|
||||
</div>
|
||||
<div data-role="footer" class="bigbuttons">
|
||||
<div data-role="navbar" class="bigbuttons" data-position="fixed">
|
||||
<ul>
|
||||
<li><a href="psalm?p=${psalm - 1}" id="left" data-icon="custom" data-ajax="false"> </a></li>
|
||||
<li><a href="#" id="minus" data-icon="custom"> </a></li>
|
||||
<li><a href="psalmindex" id="index" data-icon="custom" data-ajax="false" data-transition="pop"> </a></li>
|
||||
<li><a href="#" id="plus" data-icon="custom"> </a></li>
|
||||
<li><a href="psalm?p=${psalm + 1}" id="right" data-icon="custom" data-ajax="false"> </a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
var PREF_TEXTSIZE;
|
||||
var PREF_COLOR;
|
||||
|
||||
$(function() {
|
||||
loadPreferences();
|
||||
setPreferences();
|
||||
bindListeners();
|
||||
});
|
||||
|
||||
function changeTextSize(delta) {
|
||||
var size = parseInt($(".psalmverseheader").css("font-size"));
|
||||
cssSize = (size + delta) + "px";
|
||||
$(".psalmverseheader").css("font-size", cssSize);
|
||||
|
||||
size = parseInt($(".psalmline").css("font-size"));
|
||||
cssSize = (size + delta) + "px";
|
||||
$(".psalmline").css("font-size", cssSize);
|
||||
}
|
||||
|
||||
$(function () {
|
||||
$(document).on("click", "#minus", function(e) {
|
||||
changeTextSize(-2);
|
||||
//goToVerse(true);
|
||||
});
|
||||
|
||||
$(document).on("click", "#plus", function(e) {
|
||||
changeTextSize(2);
|
||||
//goToVerse(true);
|
||||
});
|
||||
|
||||
if ('${psalm}' == '1') {
|
||||
$("#left").attr("href", "#");
|
||||
$("#left span.ui-icon").css("background-image", "none");
|
||||
}
|
||||
if ('${psalm}' == '150') {
|
||||
$("#right").attr("href", "#");
|
||||
$("#right span.ui-icon").css("background-image", "none");
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
function goToVerse(immediately) {
|
||||
if ("${vers}" != "") {
|
||||
var target = $("#v${vers}").get(0).offsetTop;
|
||||
|
||||
if (target !== undefined) {
|
||||
if (immediately) {
|
||||
$.mobile.silentScroll(target);
|
||||
} else {
|
||||
setTimeout(function(){$.mobile.silentScroll(target);}, 100); // scroll after 1 sec
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$(document).on('pageshow', function(){
|
||||
goToVerse(false);
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,232 @@
|
||||
<%@ page session="false"%>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Index Psalmen</title>
|
||||
<meta name="viewport"
|
||||
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0" />
|
||||
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/themes/Psalmenweb.min.css" />
|
||||
<link rel="stylesheet" href="resources/css/psalmenweb.css" />
|
||||
|
||||
<style type="text/css">
|
||||
a {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.ui-btn {
|
||||
height: 100px;
|
||||
font-size: 60px;
|
||||
line-height: 40px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
|
||||
<script
|
||||
src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script></head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" id="myPage" data-theme="a">
|
||||
<div data-role="content" data-theme="a">
|
||||
<a id="choice" style="width: 100%;" href="#" data-role="button" data-transition="fade" class="indexlabel" data-theme="a">Psalm</a>
|
||||
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="k7" href="#" data-role="button" data-theme="a">7</a>
|
||||
|
||||
<a id="k8" href="#" data-role="button" data-theme="a">8</a>
|
||||
|
||||
<a id="k9" href="#" data-role="button" data-theme="a">9</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="k4" href="#" data-role="button" data-theme="a">4</a>
|
||||
|
||||
<a id="k5" href="#" data-role="button" data-theme="a">5</a>
|
||||
|
||||
<a id="k6" href="#" data-role="button" data-theme="a">6</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="k1" href="#" data-role="button" data-theme="a">1</a>
|
||||
|
||||
<a id="k2" href="#" data-role="button" data-theme="a">2</a>
|
||||
|
||||
<a id="k3" href="#" data-role="button" data-theme="a">3</a>
|
||||
</div>
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav indexknoppengroep">
|
||||
<a id="kd" href="#" data-role="button" data-theme="a">↶</a>
|
||||
|
||||
<a id="k0" href="#" data-role="button" data-theme="a">0</a>
|
||||
|
||||
<a id="ke" href="#" data-role="button" data-theme="a">✔</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(function () {
|
||||
$(".indexknoppengroep a").click(function() {
|
||||
if ($("div.ui-loader.ui-overlay-shadow").length == 1) {
|
||||
return;
|
||||
}
|
||||
var knop = this.id.substring(1);
|
||||
switch(knop) {
|
||||
case "0":
|
||||
case "1":
|
||||
case "2":
|
||||
case "3":
|
||||
case "4":
|
||||
case "5":
|
||||
case "6":
|
||||
case "7":
|
||||
case "8":
|
||||
case "9":
|
||||
addNumber(knop);
|
||||
break;
|
||||
case "d":
|
||||
if ($("a#choice span span").html().length < 7) {
|
||||
window.history.back();
|
||||
} else {
|
||||
removeChar();
|
||||
}
|
||||
|
||||
break;
|
||||
case "e":
|
||||
if ($("a#choice span span").hasClass("invalid")) {
|
||||
break;
|
||||
}
|
||||
var choice = $("a#choice span span").html();
|
||||
if (choice.indexOf("vers") > 0) {
|
||||
var psalm = choice.substring(6, choice.indexOf("vers") - 1);
|
||||
var vers = choice.substring(choice.indexOf("vers") + 5);
|
||||
if (vers == "") {
|
||||
vers = 1;
|
||||
choice += "1";
|
||||
$("a#choice span span").html(choice);
|
||||
}
|
||||
if (! checkPsalmVerseExists(psalm, vers)) {
|
||||
toastVerseDoesNotExist();
|
||||
} else {
|
||||
window.location.href = "psalm?p=" + psalm + "&v=" + vers;
|
||||
//window.location.href = "/psalm?p=" + psalm + "&v=" + vers;
|
||||
}
|
||||
|
||||
} else {
|
||||
if (! (choice.length < 7)) {
|
||||
choice += " vers ";
|
||||
$("a#choice span span").html(choice);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
var choice = $("a#choice span span").html();
|
||||
if (choice.length < 7) {
|
||||
$("a#kd span span").html("↶");
|
||||
} else {
|
||||
$("a#kd span span").html("◀");
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function addNumber(knop) {
|
||||
var choice = $("a#choice span span").html();
|
||||
var lengte = choice.length;
|
||||
|
||||
if (choice.indexOf("vers") > 0) {
|
||||
var vers = choice.substring(choice.indexOf("vers") + 5);
|
||||
var verslengte = vers.length;
|
||||
|
||||
if (verslengte < 2) {
|
||||
if (!(verslengte == 0 && knop == "0")) {
|
||||
choice += knop;
|
||||
}
|
||||
} else {
|
||||
if (!(knop == "0")) {
|
||||
choice = choice.substring(0, choice.indexOf("vers") + 5) + knop;
|
||||
}
|
||||
}
|
||||
$("a#choice span span").html(choice);
|
||||
|
||||
} else {
|
||||
if (lengte == 5) {
|
||||
choice += " ";
|
||||
lengte++;
|
||||
}
|
||||
|
||||
if (lengte < 9) {
|
||||
if (!(lengte == 6 && knop == "0")) {
|
||||
choice += knop;
|
||||
}
|
||||
} else {
|
||||
if (!(knop == "0")) {
|
||||
choice = "Psalm " + knop;
|
||||
}
|
||||
}
|
||||
|
||||
$("a#choice span span").html(choice);
|
||||
|
||||
checkCorrectPsalm();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function removeChar() {
|
||||
var choice = $("a#choice span span").html();
|
||||
var lengte = choice.length;
|
||||
if (lengte > 5) {
|
||||
choice = choice.substring(0, choice.length - 1);
|
||||
if (choice.substring(choice.length - 4) == "vers") {
|
||||
choice = choice.substring(0, choice.length - 5);
|
||||
}
|
||||
$("a#choice span span").html(choice);
|
||||
checkCorrectPsalm();
|
||||
}
|
||||
}
|
||||
|
||||
function checkCorrectPsalm() {
|
||||
var psalm = parseInt($("a#choice span span").html().substring(6));
|
||||
if (psalm < 1 || psalm > 150) {
|
||||
$("a#choice span span").addClass("invalid");
|
||||
} else {
|
||||
$("a#choice span span").removeClass("invalid");
|
||||
}
|
||||
}
|
||||
|
||||
function toastVerseDoesNotExist() {
|
||||
$("a#choice span span").addClass("invalid");
|
||||
$("<div class='ui-loader ui-overlay-shadow ui-body-e ui-corner-all'><h1>Dit vers bestaat niet.</h1></div>")
|
||||
.css({
|
||||
display: "block",
|
||||
// opacity: 0.90,
|
||||
position: "fixed",
|
||||
padding: "7px",
|
||||
"text-align": "center",
|
||||
width: "350px",
|
||||
left: ($(window).width() - 364) / 2,
|
||||
top: $(window).height() / 2})
|
||||
.appendTo($.mobile.pageContainer).delay(2000)
|
||||
.fadeOut(400, function(){
|
||||
$(this).remove();
|
||||
var choice = $("a#choice span span").html();
|
||||
choice = choice.substring(0, choice.indexOf("vers") + 5);
|
||||
$("a#choice span span").html(choice);
|
||||
$("a#choice span span").removeClass("invalid");
|
||||
});
|
||||
}
|
||||
|
||||
function checkPsalmVerseExists(psalm, vers) {
|
||||
var result;
|
||||
$.ajax({
|
||||
url: 'psalmcheck',
|
||||
async: false,
|
||||
data: {p: psalm, v: vers}, //'p=' & psalm & '&v=' & vers,
|
||||
success: function(data) {
|
||||
result = data;
|
||||
}
|
||||
});
|
||||
|
||||
return result;
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user