├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md └── src ├── EPUB ├── appendix.xhtml ├── challenges.xhtml ├── copyright.xhtml ├── cover.xhtml ├── current-system.xhtml ├── history.xhtml ├── images │ ├── code-commits.png │ ├── cover.png │ ├── ford-foundation.png │ └── git-subversion-jobs.png ├── nav.xhtml ├── opportunities.xhtml ├── package.opf ├── preface.xhtml ├── style.css ├── sustaining.xhtml └── title.xhtml ├── META-INF └── container.xml └── mimetype /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/README.md -------------------------------------------------------------------------------- /src/EPUB/appendix.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/appendix.xhtml -------------------------------------------------------------------------------- /src/EPUB/challenges.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/challenges.xhtml -------------------------------------------------------------------------------- /src/EPUB/copyright.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/copyright.xhtml -------------------------------------------------------------------------------- /src/EPUB/cover.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/cover.xhtml -------------------------------------------------------------------------------- /src/EPUB/current-system.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/current-system.xhtml -------------------------------------------------------------------------------- /src/EPUB/history.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/history.xhtml -------------------------------------------------------------------------------- /src/EPUB/images/code-commits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/images/code-commits.png -------------------------------------------------------------------------------- /src/EPUB/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/images/cover.png -------------------------------------------------------------------------------- /src/EPUB/images/ford-foundation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/images/ford-foundation.png -------------------------------------------------------------------------------- /src/EPUB/images/git-subversion-jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/images/git-subversion-jobs.png -------------------------------------------------------------------------------- /src/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/nav.xhtml -------------------------------------------------------------------------------- /src/EPUB/opportunities.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/opportunities.xhtml -------------------------------------------------------------------------------- /src/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/package.opf -------------------------------------------------------------------------------- /src/EPUB/preface.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/preface.xhtml -------------------------------------------------------------------------------- /src/EPUB/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/style.css -------------------------------------------------------------------------------- /src/EPUB/sustaining.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/sustaining.xhtml -------------------------------------------------------------------------------- /src/EPUB/title.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/EPUB/title.xhtml -------------------------------------------------------------------------------- /src/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnorris/roads-and-bridges/HEAD/src/META-INF/container.xml -------------------------------------------------------------------------------- /src/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip --------------------------------------------------------------------------------