├── .gitignore ├── PDFs └── Hutterer2007lynx.pdf ├── Query tester.request ├── README.md ├── Web hook tester.request ├── config.inc.php ├── couchdb-design ├── geo.js ├── graph.js ├── highwire.js └── tags.js ├── couchdb-playground ├── identifier.html ├── jquery.js ├── representations.html └── view.html ├── couchsimple.php ├── data-backup └── couchdb.json ├── geocode.php ├── hypothesis.php ├── images ├── 7iUlfzBp.jpg ├── Screenshot 2016-06-23 14.22.59.png ├── Screenshot 2016-06-23 15.53.07.png └── sC-uTVdd.png ├── lib.php ├── tmp └── README.md ├── webhook.php └── www ├── api.php ├── api_utils.php ├── index.html ├── jquery-1.11.2.min.js ├── latin.js └── leaflet-0.7.3 ├── images ├── layers-2x.png ├── layers.png ├── marker-icon-2x.png ├── marker-icon.png └── marker-shadow.png ├── leaflet-src.js ├── leaflet.css └── leaflet.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | tmp/log.txt 4 | 5 | CiteProc.php 6 | locale 7 | style 8 | -------------------------------------------------------------------------------- /PDFs/Hutterer2007lynx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/PDFs/Hutterer2007lynx.pdf -------------------------------------------------------------------------------- /Query tester.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/Query tester.request -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/README.md -------------------------------------------------------------------------------- /Web hook tester.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/Web hook tester.request -------------------------------------------------------------------------------- /config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/config.inc.php -------------------------------------------------------------------------------- /couchdb-design/geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/couchdb-design/geo.js -------------------------------------------------------------------------------- /couchdb-design/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/couchdb-design/graph.js -------------------------------------------------------------------------------- /couchdb-design/highwire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/couchdb-design/highwire.js -------------------------------------------------------------------------------- /couchdb-design/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/couchdb-design/tags.js -------------------------------------------------------------------------------- /couchdb-playground/identifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/couchdb-playground/identifier.html -------------------------------------------------------------------------------- /couchdb-playground/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/couchdb-playground/jquery.js -------------------------------------------------------------------------------- /couchdb-playground/representations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/couchdb-playground/representations.html -------------------------------------------------------------------------------- /couchdb-playground/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/couchdb-playground/view.html -------------------------------------------------------------------------------- /couchsimple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/couchsimple.php -------------------------------------------------------------------------------- /data-backup/couchdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/data-backup/couchdb.json -------------------------------------------------------------------------------- /geocode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/geocode.php -------------------------------------------------------------------------------- /hypothesis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/hypothesis.php -------------------------------------------------------------------------------- /images/7iUlfzBp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/images/7iUlfzBp.jpg -------------------------------------------------------------------------------- /images/Screenshot 2016-06-23 14.22.59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/images/Screenshot 2016-06-23 14.22.59.png -------------------------------------------------------------------------------- /images/Screenshot 2016-06-23 15.53.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/images/Screenshot 2016-06-23 15.53.07.png -------------------------------------------------------------------------------- /images/sC-uTVdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/images/sC-uTVdd.png -------------------------------------------------------------------------------- /lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/lib.php -------------------------------------------------------------------------------- /tmp/README.md: -------------------------------------------------------------------------------- 1 | This directory needs chmod 777 to work -------------------------------------------------------------------------------- /webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/webhook.php -------------------------------------------------------------------------------- /www/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/api.php -------------------------------------------------------------------------------- /www/api_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/api_utils.php -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/index.html -------------------------------------------------------------------------------- /www/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /www/latin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/latin.js -------------------------------------------------------------------------------- /www/leaflet-0.7.3/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/leaflet-0.7.3/images/layers-2x.png -------------------------------------------------------------------------------- /www/leaflet-0.7.3/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/leaflet-0.7.3/images/layers.png -------------------------------------------------------------------------------- /www/leaflet-0.7.3/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/leaflet-0.7.3/images/marker-icon-2x.png -------------------------------------------------------------------------------- /www/leaflet-0.7.3/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/leaflet-0.7.3/images/marker-icon.png -------------------------------------------------------------------------------- /www/leaflet-0.7.3/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/leaflet-0.7.3/images/marker-shadow.png -------------------------------------------------------------------------------- /www/leaflet-0.7.3/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/leaflet-0.7.3/leaflet-src.js -------------------------------------------------------------------------------- /www/leaflet-0.7.3/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/leaflet-0.7.3/leaflet.css -------------------------------------------------------------------------------- /www/leaflet-0.7.3/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmpage/recon16-annotation/HEAD/www/leaflet-0.7.3/leaflet.js --------------------------------------------------------------------------------