mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-25 16:29:49 -04:00
- added simple build batch file to copy assets into directory for android build.
This commit is contained in:
parent
6d74b54db1
commit
3e7c571213
@ -11,21 +11,22 @@
|
||||
<meta name="blogchalk" content="United States, Missouri, Saint Louis, English, Jason, Male, 21-25, photography, poetry" />
|
||||
<meta name="copyright" content="All content copyrighted to Jason Wall, and available by permission of the owner." />
|
||||
<title>The Bible with Strong's Numbers and Cross References</title>
|
||||
<script type="text/javascript" src="js/jquery.min.js"></script>
|
||||
<!--<script type="text/javascript" src="js/bible_ref_parsing.js"></script>-->
|
||||
<script type="text/javascript" src="js/bible_ref_parsing.min.js"></script>
|
||||
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
|
||||
<script type="text/javascript" src="js/bible_ref_parsing.js"></script>
|
||||
<!--<script type="text/javascript" src="js/bible_ref_parsing.min.js"></script>-->
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function()
|
||||
{
|
||||
var tests = [
|
||||
["acts 1:4 - 60", "Acts 1:4 - 1:60"],
|
||||
["acts 1:4 - 60", "Acts 1:4 - 1:60"],
|
||||
["acts 1:4 - *", "Acts 1:4 - 1:*"],
|
||||
["acts 1:4 - 2:8", "Acts 1:4 - 2:8"],
|
||||
["acts 1:4 - 1:8", "Acts 1:4 - 1:8"],
|
||||
["acts 1:4 - 2:8", "Acts 1:4 - 2:8"],
|
||||
["acts 1:4 - 1:8", "Acts 1:4 - 1:8"],
|
||||
["acts 1:4 - 2", "Acts 1:4 - 1:4"],
|
||||
|
||||
["acts 1:4 - 8", "Acts 1:4 - 1:8"],
|
||||
["acts 1:4-8", "Acts 1:4 - 1:8"],
|
||||
["acts 1:4 - 8", "Acts 1:4 - 1:8"],
|
||||
["acts 1:4-8", "Acts 1:4 - 1:8"],
|
||||
["john 1:4 - john 2", "John 1:4 - 2:*"],
|
||||
["john 1 : 4 - john 2", "John 1:4 - 2:*"],
|
||||
["I john 1:4 - I john 2", "1 John 1:4 - 2:*"],
|
||||
@ -71,6 +72,7 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
r += "<b>Expected:</b> " + t[1] + "<br />";
|
||||
r += "<span style='color:red'>Failed</span><br /><br />";
|
||||
failed++;
|
||||
}
|
||||
@ -80,8 +82,6 @@
|
||||
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
Binary file not shown.
@ -14,7 +14,7 @@
|
||||
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
|
||||
<script type="text/javascript" src="js/jquery.cookie.js"></script>
|
||||
<script type="text/javascript" src="js/jquery-ui-1.9.1.custom.min.js"></script>
|
||||
<script type="text/javascript" src="js/bible_ref_parsing.min.js"></script>
|
||||
<script type="text/javascript" src="js/bible_ref_parsing.js"></script>
|
||||
<script type="text/javascript" src="js/common.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function()
|
||||
@ -125,3 +125,4 @@
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
10
build.bat
Normal file
10
build.bat
Normal file
@ -0,0 +1,10 @@
|
||||
xcopy bibles Android\DynamicBible\assets\bibles /E /Y /Q /I
|
||||
xcopy css Android\DynamicBible\assets\css /E /Y /Q /I
|
||||
xcopy images Android\DynamicBible\assets\images /E /Y /Q /I
|
||||
xcopy index Android\DynamicBible\assets\index /E /Y /Q /I
|
||||
xcopy js Android\DynamicBible\assets\js /E /Y /Q /I
|
||||
xcopy xml Android\DynamicBible\assets\xml /E /Y /Q /I
|
||||
copy icon.psd /B Android\DynamicBible\assets\icon.psd /Y
|
||||
copy biblerefparsingtests.html /A Android\DynamicBible\assets\biblerefparsingtests.html /Y
|
||||
copy index.html /A Android\DynamicBible\assets\index.html /Y
|
||||
copy icon.png /B Android\DynamicBible\assets\icon.png /Y
|
Loading…
x
Reference in New Issue
Block a user