├── .gitignore ├── public ├── img │ ├── favicon.png │ ├── glyphicons-halflings.png │ └── glyphicons-halflings-white.png ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── css │ └── font-awesome.min.css ├── app ├── models │ ├── server.go │ ├── project.go │ ├── user.go │ └── certificate.go ├── views │ ├── errors │ │ ├── 500.html │ │ └── 404.html │ ├── footer.html │ ├── User │ │ ├── Index.html │ │ ├── Password.html │ │ ├── Register.html │ │ └── Create.html │ ├── Project │ │ ├── GenerateOneTimeLink.html │ │ ├── LoadCSR.html │ │ ├── Index.html │ │ ├── ViewCert.html │ │ ├── CreateCertFromTemplate.html │ │ └── CreateCert.html │ ├── flash.html │ ├── App │ │ ├── Index.html │ │ └── Register.html │ ├── Admin │ │ ├── Users.html │ │ ├── Index.html │ │ ├── Projects.html │ │ ├── Project.html │ │ ├── EditProjectMembership.html │ │ ├── EditProject.html │ │ ├── User.html │ │ ├── EditUser.html │ │ ├── EditCertificate.html │ │ ├── ManageProject.html │ │ ├── EditTemplate.html │ │ ├── SignCSR.html │ │ └── NewTemplate.html │ ├── Tour │ │ ├── Index.html │ │ ├── Project.html │ │ └── User.html │ ├── debug.html │ ├── registration_form.html │ └── header.html ├── init.go └── controllers │ ├── tour.go │ ├── gorp.go │ ├── user.go │ └── init.go ├── tests └── apptest.go ├── messages └── sample.en ├── conf ├── app.conf └── routes ├── README.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | test-results/ 2 | tmp/ 3 | routes/ 4 | -------------------------------------------------------------------------------- /public/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinJudd/CAGo/HEAD/public/img/favicon.png -------------------------------------------------------------------------------- /public/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinJudd/CAGo/HEAD/public/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/models/server.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | import () 4 | 5 | type Server struct { 6 | Id int 7 | URL string 8 | } 9 | -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinJudd/CAGo/HEAD/public/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinJudd/CAGo/HEAD/public/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinJudd/CAGo/HEAD/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinJudd/CAGo/HEAD/public/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinJudd/CAGo/HEAD/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinJudd/CAGo/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinJudd/CAGo/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinJudd/CAGo/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/views/errors/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |12 | This exception has been logged. 13 |
14 | {{end}} 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/views/footer.html: -------------------------------------------------------------------------------- 1 | {{if eq .RunMode "dev"}} 2 | {{template "debug.html" .}} 3 | {{end}} 4 | 5 | 8 | 9 |