Browse Source

updated ignore file

bmallred 10 years ago
parent
commit
e679388898
3 changed files with 62 additions and 59 deletions
  1. 3 0
      .gitignore
  2. 29 29
      app/routes/routes.go
  3. 30 30
      app/tmp/main.go

+ 3 - 0
.gitignore

21
21
22
*.exe
22
*.exe
23
*.test
23
*.test
24
test-results/
25
tmp/
26
routes/

+ 29 - 29
app/routes/routes.go

71
}
71
}
72
72
73
73
74
type tStatic struct {}
75
var Static tStatic
76
77
78
func (_ tStatic) Serve(
79
		prefix string,
80
		filepath string,
81
		) string {
82
	args := make(map[string]string)
83
	
84
	revel.Unbind(args, "prefix", prefix)
85
	revel.Unbind(args, "filepath", filepath)
86
	return revel.MainRouter.Reverse("Static.Serve", args).Url
87
}
88
89
func (_ tStatic) ServeModule(
90
		moduleName string,
91
		prefix string,
92
		filepath string,
93
		) string {
94
	args := make(map[string]string)
95
	
96
	revel.Unbind(args, "moduleName", moduleName)
97
	revel.Unbind(args, "prefix", prefix)
98
	revel.Unbind(args, "filepath", filepath)
99
	return revel.MainRouter.Reverse("Static.ServeModule", args).Url
100
}
101
102
103
type tTestRunner struct {}
74
type tTestRunner struct {}
104
var TestRunner tTestRunner
75
var TestRunner tTestRunner
105
76
130
}
101
}
131
102
132
103
104
type tStatic struct {}
105
var Static tStatic
106
107
108
func (_ tStatic) Serve(
109
		prefix string,
110
		filepath string,
111
		) string {
112
	args := make(map[string]string)
113
	
114
	revel.Unbind(args, "prefix", prefix)
115
	revel.Unbind(args, "filepath", filepath)
116
	return revel.MainRouter.Reverse("Static.Serve", args).Url
117
}
118
119
func (_ tStatic) ServeModule(
120
		moduleName string,
121
		prefix string,
122
		filepath string,
123
		) string {
124
	args := make(map[string]string)
125
	
126
	revel.Unbind(args, "moduleName", moduleName)
127
	revel.Unbind(args, "prefix", prefix)
128
	revel.Unbind(args, "filepath", filepath)
129
	return revel.MainRouter.Reverse("Static.ServeModule", args).Url
130
}
131
132

+ 30 - 30
app/tmp/main.go

5
	"flag"
5
	"flag"
6
	"reflect"
6
	"reflect"
7
	"github.com/revel/revel"
7
	"github.com/revel/revel"
8
	controllers0 "github.com/revel/revel/modules/static/app/controllers"
8
	_ "github.com/grassfed/app"
9
	controllers "github.com/grassfed/app/controllers"
10
	tests "github.com/grassfed/tests"
11
	controllers1 "github.com/revel/revel/modules/static/app/controllers"
9
	_ "github.com/revel/revel/modules/testrunner/app"
12
	_ "github.com/revel/revel/modules/testrunner/app"
10
	controllers1 "github.com/revel/revel/modules/testrunner/app/controllers"
11
	_ "grassfed/app"
12
	controllers "grassfed/app/controllers"
13
	tests "grassfed/tests"
13
	controllers0 "github.com/revel/revel/modules/testrunner/app/controllers"
14
)
14
)
15
15
16
var (
16
var (
108
			
108
			
109
		})
109
		})
110
	
110
	
111
	revel.RegisterController((*controllers0.Static)(nil),
111
	revel.RegisterController((*controllers0.TestRunner)(nil),
112
		[]*revel.MethodType{
112
		[]*revel.MethodType{
113
			&revel.MethodType{
113
			&revel.MethodType{
114
				Name: "Serve",
114
				Name: "Index",
115
				Args: []*revel.MethodArg{ 
115
				Args: []*revel.MethodArg{ 
116
					&revel.MethodArg{Name: "prefix", Type: reflect.TypeOf((*string)(nil)) },
117
					&revel.MethodArg{Name: "filepath", Type: reflect.TypeOf((*string)(nil)) },
118
				},
116
				},
119
				RenderArgNames: map[int][]string{ 
117
				RenderArgNames: map[int][]string{ 
118
					46: []string{ 
119
						"testSuites",
120
					},
120
				},
121
				},
121
			},
122
			},
122
			&revel.MethodType{
123
			&revel.MethodType{
123
				Name: "ServeModule",
124
				Name: "Run",
124
				Args: []*revel.MethodArg{ 
125
				Args: []*revel.MethodArg{ 
125
					&revel.MethodArg{Name: "moduleName", Type: reflect.TypeOf((*string)(nil)) },
126
					&revel.MethodArg{Name: "prefix", Type: reflect.TypeOf((*string)(nil)) },
127
					&revel.MethodArg{Name: "filepath", Type: reflect.TypeOf((*string)(nil)) },
126
					&revel.MethodArg{Name: "suite", Type: reflect.TypeOf((*string)(nil)) },
127
					&revel.MethodArg{Name: "test", Type: reflect.TypeOf((*string)(nil)) },
128
				},
128
				},
129
				RenderArgNames: map[int][]string{ 
129
				RenderArgNames: map[int][]string{ 
130
					69: []string{ 
131
						"error",
132
					},
130
				},
133
				},
131
			},
134
			},
132
			
133
		})
134
	
135
	revel.RegisterController((*controllers1.TestRunner)(nil),
136
		[]*revel.MethodType{
137
			&revel.MethodType{
135
			&revel.MethodType{
138
				Name: "Index",
136
				Name: "List",
139
				Args: []*revel.MethodArg{ 
137
				Args: []*revel.MethodArg{ 
140
				},
138
				},
141
				RenderArgNames: map[int][]string{ 
139
				RenderArgNames: map[int][]string{ 
142
					46: []string{ 
143
						"testSuites",
144
					},
145
				},
140
				},
146
			},
141
			},
142
			
143
		})
144
	
145
	revel.RegisterController((*controllers1.Static)(nil),
146
		[]*revel.MethodType{
147
			&revel.MethodType{
147
			&revel.MethodType{
148
				Name: "Run",
148
				Name: "Serve",
149
				Args: []*revel.MethodArg{ 
149
				Args: []*revel.MethodArg{ 
150
					&revel.MethodArg{Name: "suite", Type: reflect.TypeOf((*string)(nil)) },
151
					&revel.MethodArg{Name: "test", Type: reflect.TypeOf((*string)(nil)) },
150
					&revel.MethodArg{Name: "prefix", Type: reflect.TypeOf((*string)(nil)) },
151
					&revel.MethodArg{Name: "filepath", Type: reflect.TypeOf((*string)(nil)) },
152
				},
152
				},
153
				RenderArgNames: map[int][]string{ 
153
				RenderArgNames: map[int][]string{ 
154
					69: []string{ 
155
						"error",
156
					},
157
				},
154
				},
158
			},
155
			},
159
			&revel.MethodType{
156
			&revel.MethodType{
160
				Name: "List",
157
				Name: "ServeModule",
161
				Args: []*revel.MethodArg{ 
158
				Args: []*revel.MethodArg{ 
159
					&revel.MethodArg{Name: "moduleName", Type: reflect.TypeOf((*string)(nil)) },
160
					&revel.MethodArg{Name: "prefix", Type: reflect.TypeOf((*string)(nil)) },
161
					&revel.MethodArg{Name: "filepath", Type: reflect.TypeOf((*string)(nil)) },
162
				},
162
				},
163
				RenderArgNames: map[int][]string{ 
163
				RenderArgNames: map[int][]string{ 
164
				},
164
				},
167
		})
167
		})
168
	
168
	
169
	revel.DefaultValidationKeys = map[string]map[int]string{ 
169
	revel.DefaultValidationKeys = map[string]map[int]string{ 
170
		"grassfed/app/controllers.App.Add": { 
170
		"github.com/grassfed/app/controllers.App.Add": { 
171
			26: "id",
171
			26: "id",
172
			27: "product",
172
			27: "product",
173
			28: "calories",
173
			28: "calories",