├── .gitignore ├── LICENSE ├── README ├── autobuilder.sh ├── branches.sh ├── changed-revs.sh ├── changelog-email ├── maxtime ├── next-rev.sh ├── revdetail.sh ├── revlist.sh ├── rsync-to ├── run-build.sh ├── runlock ├── runtee ├── start ├── stop └── viewer ├── Autobuilder.pm ├── index.cgi ├── log.cgi ├── rebuild.tmpl.html ├── rss.cgi ├── run.py └── static ├── bootstrap-responsive.css ├── bootstrap.css ├── docs.css ├── feed-icon-14x14.png ├── feed-icon-28x28.png ├── grid-18px-masked.png ├── index.css └── log.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/README -------------------------------------------------------------------------------- /autobuilder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/autobuilder.sh -------------------------------------------------------------------------------- /branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/branches.sh -------------------------------------------------------------------------------- /changed-revs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/changed-revs.sh -------------------------------------------------------------------------------- /changelog-email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/changelog-email -------------------------------------------------------------------------------- /maxtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/maxtime -------------------------------------------------------------------------------- /next-rev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/next-rev.sh -------------------------------------------------------------------------------- /revdetail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/revdetail.sh -------------------------------------------------------------------------------- /revlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/revlist.sh -------------------------------------------------------------------------------- /rsync-to: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/rsync-to -------------------------------------------------------------------------------- /run-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/run-build.sh -------------------------------------------------------------------------------- /runlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/runlock -------------------------------------------------------------------------------- /runtee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/runtee -------------------------------------------------------------------------------- /start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/start -------------------------------------------------------------------------------- /stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/stop -------------------------------------------------------------------------------- /viewer/Autobuilder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/Autobuilder.pm -------------------------------------------------------------------------------- /viewer/index.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/index.cgi -------------------------------------------------------------------------------- /viewer/log.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/log.cgi -------------------------------------------------------------------------------- /viewer/rebuild.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/rebuild.tmpl.html -------------------------------------------------------------------------------- /viewer/rss.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/rss.cgi -------------------------------------------------------------------------------- /viewer/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/run.py -------------------------------------------------------------------------------- /viewer/static/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/static/bootstrap-responsive.css -------------------------------------------------------------------------------- /viewer/static/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/static/bootstrap.css -------------------------------------------------------------------------------- /viewer/static/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/static/docs.css -------------------------------------------------------------------------------- /viewer/static/feed-icon-14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/static/feed-icon-14x14.png -------------------------------------------------------------------------------- /viewer/static/feed-icon-28x28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/static/feed-icon-28x28.png -------------------------------------------------------------------------------- /viewer/static/grid-18px-masked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/static/grid-18px-masked.png -------------------------------------------------------------------------------- /viewer/static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/static/index.css -------------------------------------------------------------------------------- /viewer/static/log.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/gitbuilder/HEAD/viewer/static/log.css --------------------------------------------------------------------------------