MichaelKentBurns / BibleModel

Data model / database containing complete text of the Bible, Cross References, Notes and other references
3 stars 0 forks source link

Need simple web pages to display the contents of any json files. #6

Open MichaelKentBurns opened 1 week ago

MichaelKentBurns commented 1 week ago

The initialization of the state machine in Bible.js (and other classes as well) are supposed to assemble data and store it in .json files. While BibleModel is not intended as an official display of the Bible model data, we do want html and js files capable of reading in those json files and displaying them in a readable web page. Nothing fancy. Just fetch the data and build a table. Other modules such as BibleRead and BibleStudy will have much fancier ways of displaying the text.

MichaelKentBurns commented 1 week ago

The first cut of this was committed today (Nov 11) as created books.html to fetch and display books.json It works in debug mode, but there is a problem doing the fetch using the file:// style URL. I need to push this and deploy it under XAMPP to test/debug it working properly through a server and browser.

MichaelKentBurns commented 2 days ago

books.html now works with some caveats described in the page itself.