├── .circleci └── config.yml ├── .gitignore ├── .travis.yml ├── AUTHORS ├── COPYING ├── README.md ├── TODO ├── books ├── __init__.py ├── admin.py ├── app_settings.py ├── atom.py ├── epub.py ├── epubinfo.py ├── forms.py ├── langlist.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── addbooks.py │ │ ├── addepub.py │ │ ├── exportbooks.py │ │ ├── fetch_ia_item.py │ │ └── fetch_ia_items_from_search.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20171101_0824.py │ └── __init__.py ├── models.py ├── opds.py ├── popuphandler.py ├── search.py ├── selectwithpop.py ├── templates │ ├── popupadd.html │ └── popupplus.html ├── tests.py ├── urls.py ├── uuidfield.py └── views.py ├── examples └── The Dunwich Horror.epub ├── local_settings.example.py ├── manage.py ├── pathagar ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── pylintrc ├── requirements.txt ├── scripts └── run-pylint.sh ├── static ├── images │ ├── feed.png │ ├── generic_cover.png │ ├── go-next.png │ └── go-previous.png ├── js │ ├── RelatedObjectLookups.js │ ├── jquery-1.5.2.min.js │ └── jquery.example.min.js └── style │ ├── blueprint │ ├── ie.css │ ├── plugins │ │ ├── buttons │ │ │ ├── icons │ │ │ │ ├── cross.png │ │ │ │ ├── key.png │ │ │ │ └── tick.png │ │ │ ├── readme.txt │ │ │ └── screen.css │ │ ├── fancy-type │ │ │ ├── readme.txt │ │ │ └── screen.css │ │ ├── link-icons │ │ │ ├── icons │ │ │ │ ├── doc.png │ │ │ │ ├── email.png │ │ │ │ ├── epub.png │ │ │ │ ├── external.png │ │ │ │ ├── feed.png │ │ │ │ ├── im.png │ │ │ │ ├── pdf.png │ │ │ │ ├── visited.png │ │ │ │ └── xls.png │ │ │ ├── readme.txt │ │ │ └── screen.css │ │ └── rtl │ │ │ ├── readme.txt │ │ │ └── screen.css │ ├── print.css │ └── screen.css │ └── style.css ├── templates ├── admin │ └── base_site.html ├── authors │ └── author_list.html ├── base.html ├── books │ ├── book_confirm_delete.html │ ├── book_detail.html │ ├── book_form.html │ ├── book_list.html │ └── tag_list.html └── registration │ └── login.html └── test-requirements.txt /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/TODO -------------------------------------------------------------------------------- /books/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /books/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/admin.py -------------------------------------------------------------------------------- /books/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/app_settings.py -------------------------------------------------------------------------------- /books/atom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/atom.py -------------------------------------------------------------------------------- /books/epub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/epub.py -------------------------------------------------------------------------------- /books/epubinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/epubinfo.py -------------------------------------------------------------------------------- /books/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/forms.py -------------------------------------------------------------------------------- /books/langlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/langlist.py -------------------------------------------------------------------------------- /books/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /books/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /books/management/commands/addbooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/management/commands/addbooks.py -------------------------------------------------------------------------------- /books/management/commands/addepub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/management/commands/addepub.py -------------------------------------------------------------------------------- /books/management/commands/exportbooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/management/commands/exportbooks.py -------------------------------------------------------------------------------- /books/management/commands/fetch_ia_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/management/commands/fetch_ia_item.py -------------------------------------------------------------------------------- /books/management/commands/fetch_ia_items_from_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/management/commands/fetch_ia_items_from_search.py -------------------------------------------------------------------------------- /books/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/migrations/0001_initial.py -------------------------------------------------------------------------------- /books/migrations/0002_auto_20171101_0824.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/migrations/0002_auto_20171101_0824.py -------------------------------------------------------------------------------- /books/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /books/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/models.py -------------------------------------------------------------------------------- /books/opds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/opds.py -------------------------------------------------------------------------------- /books/popuphandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/popuphandler.py -------------------------------------------------------------------------------- /books/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/search.py -------------------------------------------------------------------------------- /books/selectwithpop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/selectwithpop.py -------------------------------------------------------------------------------- /books/templates/popupadd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/templates/popupadd.html -------------------------------------------------------------------------------- /books/templates/popupplus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/templates/popupplus.html -------------------------------------------------------------------------------- /books/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/tests.py -------------------------------------------------------------------------------- /books/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/urls.py -------------------------------------------------------------------------------- /books/uuidfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/uuidfield.py -------------------------------------------------------------------------------- /books/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/books/views.py -------------------------------------------------------------------------------- /examples/The Dunwich Horror.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/examples/The Dunwich Horror.epub -------------------------------------------------------------------------------- /local_settings.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/local_settings.example.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/manage.py -------------------------------------------------------------------------------- /pathagar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pathagar/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/pathagar/settings.py -------------------------------------------------------------------------------- /pathagar/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/pathagar/urls.py -------------------------------------------------------------------------------- /pathagar/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/pathagar/wsgi.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/run-pylint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/scripts/run-pylint.sh -------------------------------------------------------------------------------- /static/images/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/images/feed.png -------------------------------------------------------------------------------- /static/images/generic_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/images/generic_cover.png -------------------------------------------------------------------------------- /static/images/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/images/go-next.png -------------------------------------------------------------------------------- /static/images/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/images/go-previous.png -------------------------------------------------------------------------------- /static/js/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/js/RelatedObjectLookups.js -------------------------------------------------------------------------------- /static/js/jquery-1.5.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/js/jquery-1.5.2.min.js -------------------------------------------------------------------------------- /static/js/jquery.example.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/js/jquery.example.min.js -------------------------------------------------------------------------------- /static/style/blueprint/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/ie.css -------------------------------------------------------------------------------- /static/style/blueprint/plugins/buttons/icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/buttons/icons/cross.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/buttons/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/buttons/icons/key.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/buttons/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/buttons/icons/tick.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/buttons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/buttons/readme.txt -------------------------------------------------------------------------------- /static/style/blueprint/plugins/buttons/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/buttons/screen.css -------------------------------------------------------------------------------- /static/style/blueprint/plugins/fancy-type/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/fancy-type/readme.txt -------------------------------------------------------------------------------- /static/style/blueprint/plugins/fancy-type/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/fancy-type/screen.css -------------------------------------------------------------------------------- /static/style/blueprint/plugins/link-icons/icons/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/link-icons/icons/doc.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/link-icons/icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/link-icons/icons/email.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/link-icons/icons/epub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/link-icons/icons/epub.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/link-icons/icons/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/link-icons/icons/external.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/link-icons/icons/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/link-icons/icons/feed.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/link-icons/icons/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/link-icons/icons/im.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/link-icons/icons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/link-icons/icons/pdf.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/link-icons/icons/visited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/link-icons/icons/visited.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/link-icons/icons/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/link-icons/icons/xls.png -------------------------------------------------------------------------------- /static/style/blueprint/plugins/link-icons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/link-icons/readme.txt -------------------------------------------------------------------------------- /static/style/blueprint/plugins/link-icons/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/link-icons/screen.css -------------------------------------------------------------------------------- /static/style/blueprint/plugins/rtl/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/rtl/readme.txt -------------------------------------------------------------------------------- /static/style/blueprint/plugins/rtl/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/plugins/rtl/screen.css -------------------------------------------------------------------------------- /static/style/blueprint/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/print.css -------------------------------------------------------------------------------- /static/style/blueprint/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/blueprint/screen.css -------------------------------------------------------------------------------- /static/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/static/style/style.css -------------------------------------------------------------------------------- /templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/templates/admin/base_site.html -------------------------------------------------------------------------------- /templates/authors/author_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/templates/authors/author_list.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/books/book_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/templates/books/book_confirm_delete.html -------------------------------------------------------------------------------- /templates/books/book_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/templates/books/book_detail.html -------------------------------------------------------------------------------- /templates/books/book_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/templates/books/book_form.html -------------------------------------------------------------------------------- /templates/books/book_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/templates/books/book_list.html -------------------------------------------------------------------------------- /templates/books/tag_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/templates/books/tag_list.html -------------------------------------------------------------------------------- /templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/templates/registration/login.html -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PathagarBooks/pathagar/HEAD/test-requirements.txt --------------------------------------------------------------------------------