-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit bab3e4b
Showing
20 changed files
with
6,273 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
test-results/ | ||
tmp/ | ||
routes/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Welcome to Revel | ||
|
||
## Getting Started | ||
|
||
A high-productivity web framework for the [Go language](http://www.golang.org/). | ||
|
||
### Start the web server: | ||
|
||
revel run myapp | ||
|
||
Run with <tt>--help</tt> for options. | ||
|
||
### Go to http://localhost:9000/ and you'll see: | ||
|
||
"It works" | ||
|
||
### Description of Contents | ||
|
||
The default directory structure of a generated Revel application: | ||
|
||
myapp App root | ||
app App sources | ||
controllers App controllers | ||
init.go Interceptor registration | ||
models App domain models | ||
routes Reverse routes (generated code) | ||
views Templates | ||
tests Test suites | ||
conf Configuration files | ||
app.conf Main configuration file | ||
routes Routes definition | ||
messages Message files | ||
public Public assets | ||
css CSS files | ||
js Javascript files | ||
images Image files | ||
|
||
app | ||
|
||
The app directory contains the source code and templates for your application. | ||
|
||
conf | ||
|
||
The conf directory contains the application’s configuration files. There are two main configuration files: | ||
|
||
* app.conf, the main configuration file for the application, which contains standard configuration parameters | ||
* routes, the routes definition file. | ||
|
||
|
||
messages | ||
|
||
The messages directory contains all localized message files. | ||
|
||
public | ||
|
||
Resources stored in the public directory are static assets that are served directly by the Web server. Typically it is split into three standard sub-directories for images, CSS stylesheets and JavaScript files. | ||
|
||
The names of these directories may be anything; the developer need only update the routes. | ||
|
||
test | ||
|
||
Tests are kept in the tests directory. Revel provides a testing framework that makes it easy to write and run functional tests against your application. | ||
|
||
### Follow the guidelines to start developing your application: | ||
|
||
* The README file created within your application. | ||
* The [Getting Started with Revel](http://revel.github.io/tutorial/index.html). | ||
* The [Revel guides](http://revel.github.io/manual/index.html). | ||
* The [Revel sample apps](http://revel.github.io/samples/index.html). | ||
* The [API documentation](http://revel.github.io/docs/godoc/index.html). | ||
|
||
## Contributing | ||
We encourage you to contribute to Revel! Please check out the [Contributing to Revel | ||
guide](https://github.com/revel/revel/blob/master/CONTRIBUTING.md) for guidelines about how | ||
to proceed. [Join us](https://groups.google.com/forum/#!forum/revel-framework)! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package controllers | ||
|
||
import "github.com/revel/revel" | ||
|
||
type App struct { | ||
*revel.Controller | ||
} | ||
|
||
func (c App) Index() revel.Result { | ||
return c.Render() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package app | ||
|
||
import "github.com/revel/revel" | ||
|
||
func init() { | ||
// Filters is the default set of global filters. | ||
revel.Filters = []revel.Filter{ | ||
revel.PanicFilter, // Recover from panics and display an error page instead. | ||
revel.RouterFilter, // Use the routing table to select the right Action | ||
revel.FilterConfiguringFilter, // A hook for adding or removing per-Action filters. | ||
revel.ParamsFilter, // Parse parameters into Controller.Params. | ||
revel.SessionFilter, // Restore and write the session cookie. | ||
revel.FlashFilter, // Restore and write the flash cookie. | ||
revel.ValidationFilter, // Restore kept validation errors and save new ones from cookie. | ||
revel.I18nFilter, // Resolve the requested language | ||
HeaderFilter, // Add some security based headers | ||
revel.InterceptorFilter, // Run interceptors around the action. | ||
revel.CompressFilter, // Compress the result. | ||
revel.ActionInvoker, // Invoke the action. | ||
} | ||
|
||
// register startup functions with OnAppStart | ||
// ( order dependent ) | ||
// revel.OnAppStart(InitDB) | ||
// revel.OnAppStart(FillCache) | ||
} | ||
|
||
// TODO turn this into revel.HeaderFilter | ||
// should probably also have a filter for CSRF | ||
// not sure if it can go in the same filter or not | ||
var HeaderFilter = func(c *revel.Controller, fc []revel.Filter) { | ||
// Add some common security headers | ||
c.Response.Out.Header().Add("X-Frame-Options", "SAMEORIGIN") | ||
c.Response.Out.Header().Add("X-XSS-Protection", "1; mode=block") | ||
c.Response.Out.Header().Add("X-Content-Type-Options", "nosniff") | ||
|
||
fc[0](c, fc[1:]) // Execute the next filter stage. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{{set . "title" "Home"}} | ||
{{template "header.html" .}} | ||
|
||
<header class="hero-unit" style="background-color:#A9F16C"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="hero-text"> | ||
<h1>It works!</h1> | ||
<p></p> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
<div class="span6"> | ||
{{template "flash.html" .}} | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{{template "footer.html" .}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<style type="text/css"> | ||
#sidebar { | ||
position: absolute; | ||
right: 0px; | ||
top:69px; | ||
max-width: 75%; | ||
z-index: 1000; | ||
background-color: #fee; | ||
border: thin solid grey; | ||
padding: 10px; | ||
} | ||
#toggleSidebar { | ||
position: absolute; | ||
right: 0px; | ||
top: 50px; | ||
background-color: #fee; | ||
} | ||
|
||
</style> | ||
<div id="sidebar" style="display:none;"> | ||
<h4>Available pipelines</h4> | ||
<dl> | ||
{{ range $index, $value := .}} | ||
<dt>{{$index}}</dt> | ||
<dd>{{$value}}</dd> | ||
{{end}} | ||
</dl> | ||
<h4>Flash</h4> | ||
<dl> | ||
{{ range $index, $value := .flash}} | ||
<dt>{{$index}}</dt> | ||
<dd>{{$value}}</dd> | ||
{{end}} | ||
</dl> | ||
|
||
<h4>Errors</h4> | ||
<dl> | ||
{{ range $index, $value := .errors}} | ||
<dt>{{$index}}</dt> | ||
<dd>{{$value}}</dd> | ||
{{end}} | ||
</dl> | ||
</div> | ||
<a id="toggleSidebar" href="#" class="toggles"><i class="icon-chevron-left"></i></a> | ||
|
||
<script> | ||
$sidebar = 0; | ||
$('#toggleSidebar').click(function() { | ||
if ($sidebar === 1) { | ||
$('#sidebar').hide(); | ||
$('#toggleSidebar i').addClass('icon-chevron-left'); | ||
$('#toggleSidebar i').removeClass('icon-chevron-right'); | ||
$sidebar = 0; | ||
} | ||
else { | ||
$('#sidebar').show(); | ||
$('#toggleSidebar i').addClass('icon-chevron-right'); | ||
$('#toggleSidebar i').removeClass('icon-chevron-left'); | ||
$sidebar = 1; | ||
} | ||
|
||
return false; | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Not found</title> | ||
</head> | ||
<body> | ||
{{if eq .RunMode "dev"}} | ||
{{template "errors/404-dev.html" .}} | ||
{{else}} | ||
{{with .Error}} | ||
<h1> | ||
{{.Title}} | ||
</h1> | ||
<p> | ||
{{.Description}} | ||
</p> | ||
{{end}} | ||
{{end}} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Application error</title> | ||
</head> | ||
<body> | ||
{{if eq .RunMode "dev"}} | ||
{{template "errors/500-dev.html" .}} | ||
{{else}} | ||
<h1>Oops, an error occured</h1> | ||
<p> | ||
This exception has been logged. | ||
</p> | ||
{{end}} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{{if .flash.success}} | ||
<div class="alert alert-success"> | ||
{{.flash.success}} | ||
</div> | ||
{{end}} | ||
|
||
{{if or .errors .flash.error}} | ||
<div class="alert alert-error"> | ||
{{if .flash.error}} | ||
{{.flash.error}} | ||
{{end}} | ||
<ul style="margin-top:10px;"> | ||
{{range .errors}} | ||
<li>{{.}}</li> | ||
{{end}} | ||
</ul> | ||
</div> | ||
{{end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{{if eq .RunMode "dev"}} | ||
{{template "debug.html" .}} | ||
{{end}} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
<head> | ||
<title>{{.title}}</title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<link rel="stylesheet" type="text/css" href="/public/css/bootstrap.css"> | ||
<link rel="shortcut icon" type="image/png" href="/public/img/favicon.png"> | ||
<script src="/public/js/jquery-1.9.1.min.js" type="text/javascript" charset="utf-8"></script> | ||
{{range .moreStyles}} | ||
<link rel="stylesheet" type="text/css" href="/public/{{.}}"> | ||
{{end}} | ||
{{range .moreScripts}} | ||
<script src="/public/{{.}}" type="text/javascript" charset="utf-8"></script> | ||
{{end}} | ||
</head> | ||
<body> |
Oops, something went wrong.