├── .gitignore ├── INSTALL_NOTES.md ├── LICENSE ├── Makefile ├── README.md ├── analysis.py ├── haproxy.cfg ├── requirements.txt ├── server.py ├── static ├── 1140.css ├── ajax-loader.gif ├── ihaveadream.txt ├── images │ └── skins │ │ ├── ButtonTemplate.psd │ │ ├── orange │ │ ├── button_left.gif │ │ ├── button_left.png │ │ ├── button_right.gif │ │ └── button_right.png │ │ ├── silver │ │ ├── button_left.gif │ │ ├── button_left.png │ │ ├── button_right.gif │ │ └── button_right.png │ │ ├── simple │ │ └── awesome-overlay-sprite.png │ │ └── yellow │ │ ├── button_left.gif │ │ ├── button_left.png │ │ ├── button_right.gif │ │ └── button_right.png ├── jquery.js ├── logo.png ├── obamastateofunion2011.txt ├── prideandprejudice.txt ├── robinsoncrusoe.txt ├── romeoandjuliet.txt ├── sexybuttons.css ├── theiliad.txt ├── thejunglebook.txt └── wealthofnations.txt └── views └── index.tpl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/INSTALL_NOTES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/README.md -------------------------------------------------------------------------------- /analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/analysis.py -------------------------------------------------------------------------------- /haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/haproxy.cfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Paste==1.7.5.1 2 | bottle==0.12.7 3 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/server.py -------------------------------------------------------------------------------- /static/1140.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/1140.css -------------------------------------------------------------------------------- /static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/ajax-loader.gif -------------------------------------------------------------------------------- /static/ihaveadream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/ihaveadream.txt -------------------------------------------------------------------------------- /static/images/skins/ButtonTemplate.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/ButtonTemplate.psd -------------------------------------------------------------------------------- /static/images/skins/orange/button_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/orange/button_left.gif -------------------------------------------------------------------------------- /static/images/skins/orange/button_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/orange/button_left.png -------------------------------------------------------------------------------- /static/images/skins/orange/button_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/orange/button_right.gif -------------------------------------------------------------------------------- /static/images/skins/orange/button_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/orange/button_right.png -------------------------------------------------------------------------------- /static/images/skins/silver/button_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/silver/button_left.gif -------------------------------------------------------------------------------- /static/images/skins/silver/button_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/silver/button_left.png -------------------------------------------------------------------------------- /static/images/skins/silver/button_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/silver/button_right.gif -------------------------------------------------------------------------------- /static/images/skins/silver/button_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/silver/button_right.png -------------------------------------------------------------------------------- /static/images/skins/simple/awesome-overlay-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/simple/awesome-overlay-sprite.png -------------------------------------------------------------------------------- /static/images/skins/yellow/button_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/yellow/button_left.gif -------------------------------------------------------------------------------- /static/images/skins/yellow/button_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/yellow/button_left.png -------------------------------------------------------------------------------- /static/images/skins/yellow/button_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/yellow/button_right.gif -------------------------------------------------------------------------------- /static/images/skins/yellow/button_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/images/skins/yellow/button_right.png -------------------------------------------------------------------------------- /static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/jquery.js -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/obamastateofunion2011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/obamastateofunion2011.txt -------------------------------------------------------------------------------- /static/prideandprejudice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/prideandprejudice.txt -------------------------------------------------------------------------------- /static/robinsoncrusoe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/robinsoncrusoe.txt -------------------------------------------------------------------------------- /static/romeoandjuliet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/romeoandjuliet.txt -------------------------------------------------------------------------------- /static/sexybuttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/sexybuttons.css -------------------------------------------------------------------------------- /static/theiliad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/theiliad.txt -------------------------------------------------------------------------------- /static/thejunglebook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/thejunglebook.txt -------------------------------------------------------------------------------- /static/wealthofnations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/static/wealthofnations.txt -------------------------------------------------------------------------------- /views/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterldowns/bookshrink/HEAD/views/index.tpl --------------------------------------------------------------------------------