├── .gitignore ├── CREDITS ├── LICENSE ├── README.md ├── __init__.py ├── apropos_web.service ├── apropos_web ├── __init__.py ├── apropos.py ├── apropos_db_logger.py ├── config.py ├── logger.py ├── static │ ├── css │ │ └── bootstrap-multiselect.css │ ├── images │ │ ├── favicon.ico │ │ └── netbsd.png │ ├── js │ │ └── bootstrap-multiselect.js │ └── mandoc.css └── templates │ ├── index.html │ ├── no_results.html │ ├── results.html │ ├── similar.html │ ├── whatis.html │ └── words.html ├── man-page-updater ├── Makefile ├── freebsd.py ├── man.conf ├── netbsd.py ├── openbsd.py ├── posix_man_page_update_steps ├── rename_posix_html_files.py ├── updater.py └── updater_utils.py ├── requirements.txt ├── sql └── create_tables.sql ├── startup.sh └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apropos_web.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web.service -------------------------------------------------------------------------------- /apropos_web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apropos_web/apropos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/apropos.py -------------------------------------------------------------------------------- /apropos_web/apropos_db_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/apropos_db_logger.py -------------------------------------------------------------------------------- /apropos_web/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/config.py -------------------------------------------------------------------------------- /apropos_web/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/logger.py -------------------------------------------------------------------------------- /apropos_web/static/css/bootstrap-multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/static/css/bootstrap-multiselect.css -------------------------------------------------------------------------------- /apropos_web/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/static/images/favicon.ico -------------------------------------------------------------------------------- /apropos_web/static/images/netbsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/static/images/netbsd.png -------------------------------------------------------------------------------- /apropos_web/static/js/bootstrap-multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/static/js/bootstrap-multiselect.js -------------------------------------------------------------------------------- /apropos_web/static/mandoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/static/mandoc.css -------------------------------------------------------------------------------- /apropos_web/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/templates/index.html -------------------------------------------------------------------------------- /apropos_web/templates/no_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/templates/no_results.html -------------------------------------------------------------------------------- /apropos_web/templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/templates/results.html -------------------------------------------------------------------------------- /apropos_web/templates/similar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/templates/similar.html -------------------------------------------------------------------------------- /apropos_web/templates/whatis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/templates/whatis.html -------------------------------------------------------------------------------- /apropos_web/templates/words.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/apropos_web/templates/words.html -------------------------------------------------------------------------------- /man-page-updater/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/man-page-updater/Makefile -------------------------------------------------------------------------------- /man-page-updater/freebsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/man-page-updater/freebsd.py -------------------------------------------------------------------------------- /man-page-updater/man.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/man-page-updater/man.conf -------------------------------------------------------------------------------- /man-page-updater/netbsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/man-page-updater/netbsd.py -------------------------------------------------------------------------------- /man-page-updater/openbsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/man-page-updater/openbsd.py -------------------------------------------------------------------------------- /man-page-updater/posix_man_page_update_steps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/man-page-updater/posix_man_page_update_steps -------------------------------------------------------------------------------- /man-page-updater/rename_posix_html_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/man-page-updater/rename_posix_html_files.py -------------------------------------------------------------------------------- /man-page-updater/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/man-page-updater/updater.py -------------------------------------------------------------------------------- /man-page-updater/updater_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/man-page-updater/updater_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/requirements.txt -------------------------------------------------------------------------------- /sql/create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/sql/create_tables.sql -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/startup.sh -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinav-upadhyay/apropos_web/HEAD/wsgi.py --------------------------------------------------------------------------------