├── .gitignore ├── LICENSE.md ├── README.md ├── bookapp ├── client ├── dev-server.js ├── package-lock.json ├── package.json ├── requirements.txt └── src │ ├── app.py │ ├── common │ ├── __init__.py │ ├── jsutils.py │ ├── pymui.py │ ├── pyreact.py │ └── urlutils.py │ ├── index.html │ ├── main │ ├── __init__.py │ ├── aboutModal.py │ ├── appData.py │ ├── appTheme.py │ └── loginModal.py │ ├── static │ ├── app_logo.jpg │ └── favicon.ico │ ├── version.py │ └── views │ ├── __init__.py │ ├── bookEdit │ ├── __init__.py │ ├── bookEditForm.py │ ├── bookEditLookups.py │ └── bookEditView.py │ ├── bookList │ ├── __init__.py │ ├── bookListFilter.py │ ├── bookListTable.py │ └── bookListView.py │ ├── landingPage │ ├── __init__.py │ ├── landingPageMenu.py │ └── landingPageView.py │ └── lookupTable │ ├── __init__.py │ ├── lookupList.py │ └── lookupView.py └── server ├── admin_routes.py ├── appserver.py ├── db_routes.py ├── dbutils.py ├── requirements.txt └── testdata.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/README.md -------------------------------------------------------------------------------- /bookapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/bookapp -------------------------------------------------------------------------------- /client/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/dev-server.js -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/package.json -------------------------------------------------------------------------------- /client/requirements.txt: -------------------------------------------------------------------------------- 1 | Transcrypt==3.7.16 2 | 3 | -------------------------------------------------------------------------------- /client/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/app.py -------------------------------------------------------------------------------- /client/src/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/common/__init__.py -------------------------------------------------------------------------------- /client/src/common/jsutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/common/jsutils.py -------------------------------------------------------------------------------- /client/src/common/pymui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/common/pymui.py -------------------------------------------------------------------------------- /client/src/common/pyreact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/common/pyreact.py -------------------------------------------------------------------------------- /client/src/common/urlutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/common/urlutils.py -------------------------------------------------------------------------------- /client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/index.html -------------------------------------------------------------------------------- /client/src/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/main/__init__.py -------------------------------------------------------------------------------- /client/src/main/aboutModal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/main/aboutModal.py -------------------------------------------------------------------------------- /client/src/main/appData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/main/appData.py -------------------------------------------------------------------------------- /client/src/main/appTheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/main/appTheme.py -------------------------------------------------------------------------------- /client/src/main/loginModal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/main/loginModal.py -------------------------------------------------------------------------------- /client/src/static/app_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/static/app_logo.jpg -------------------------------------------------------------------------------- /client/src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/static/favicon.ico -------------------------------------------------------------------------------- /client/src/version.py: -------------------------------------------------------------------------------- 1 | version = '1.1.0' 2 | -------------------------------------------------------------------------------- /client/src/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/views/bookEdit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/views/bookEdit/bookEditForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/views/bookEdit/bookEditForm.py -------------------------------------------------------------------------------- /client/src/views/bookEdit/bookEditLookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/views/bookEdit/bookEditLookups.py -------------------------------------------------------------------------------- /client/src/views/bookEdit/bookEditView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/views/bookEdit/bookEditView.py -------------------------------------------------------------------------------- /client/src/views/bookList/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/views/bookList/bookListFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/views/bookList/bookListFilter.py -------------------------------------------------------------------------------- /client/src/views/bookList/bookListTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/views/bookList/bookListTable.py -------------------------------------------------------------------------------- /client/src/views/bookList/bookListView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/views/bookList/bookListView.py -------------------------------------------------------------------------------- /client/src/views/landingPage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/views/landingPage/landingPageMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/views/landingPage/landingPageMenu.py -------------------------------------------------------------------------------- /client/src/views/landingPage/landingPageView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/views/landingPage/landingPageView.py -------------------------------------------------------------------------------- /client/src/views/lookupTable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/views/lookupTable/lookupList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/views/lookupTable/lookupList.py -------------------------------------------------------------------------------- /client/src/views/lookupTable/lookupView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/client/src/views/lookupTable/lookupView.py -------------------------------------------------------------------------------- /server/admin_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/server/admin_routes.py -------------------------------------------------------------------------------- /server/appserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/server/appserver.py -------------------------------------------------------------------------------- /server/db_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/server/db_routes.py -------------------------------------------------------------------------------- /server/dbutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/server/dbutils.py -------------------------------------------------------------------------------- /server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/server/requirements.txt -------------------------------------------------------------------------------- /server/testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtp-book/project/HEAD/server/testdata.py --------------------------------------------------------------------------------