summaryrefslogtreecommitdiffstats
path: root/modules/bin/conf.go
blob: 037e80a81378b90a21e895f42a4ac58dc5b65959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
package bin

import (
	"fmt"
	"io/ioutil"
	"strings"
)

// bindata_read reads the given file from disk. It returns an error on failure.
func bindata_read(path, name string) ([]byte, error) {
	buf, err := ioutil.ReadFile(path)
	if err != nil {
		err = fmt.Errorf("Error reading asset %s at %s: %v", name, path, err)
	}
	return buf, err
}


// conf_app_ini reads file data from disk. It returns an error on failure.
func conf_app_ini() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/app.ini",
		"conf/app.ini",
	)
}

// conf_content_git_bare_zip reads file data from disk. It returns an error on failure.
func conf_content_git_bare_zip() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/content/git-bare.zip",
		"conf/content/git-bare.zip",
	)
}

// conf_etc_supervisord_conf reads file data from disk. It returns an error on failure.
func conf_etc_supervisord_conf() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/etc/supervisord.conf",
		"conf/etc/supervisord.conf",
	)
}

// conf_gitignore_android reads file data from disk. It returns an error on failure.
func conf_gitignore_android() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/gitignore/Android",
		"conf/gitignore/Android",
	)
}

// conf_gitignore_c reads file data from disk. It returns an error on failure.
func conf_gitignore_c() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/gitignore/C",
		"conf/gitignore/C",
	)
}

// conf_gitignore_c_sharp reads file data from disk. It returns an error on failure.
func conf_gitignore_c_sharp() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/gitignore/C Sharp",
		"conf/gitignore/C Sharp",
	)
}

// conf_gitignore_c_ reads file data from disk. It returns an error on failure.
func conf_gitignore_c_() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/gitignore/C++",
		"conf/gitignore/C++",
	)
}

// conf_gitignore_google_go reads file data from disk. It returns an error on failure.
func conf_gitignore_google_go() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/gitignore/Google Go",
		"conf/gitignore/Google Go",
	)
}

// conf_gitignore_java reads file data from disk. It returns an error on failure.
func conf_gitignore_java() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/gitignore/Java",
		"conf/gitignore/Java",
	)
}

// conf_gitignore_objective_c reads file data from disk. It returns an error on failure.
func conf_gitignore_objective_c() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/gitignore/Objective-C",
		"conf/gitignore/Objective-C",
	)
}

// conf_gitignore_python reads file data from disk. It returns an error on failure.
func conf_gitignore_python() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/gitignore/Python",
		"conf/gitignore/Python",
	)
}

// conf_gitignore_ruby reads file data from disk. It returns an error on failure.
func conf_gitignore_ruby() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/gitignore/Ruby",
		"conf/gitignore/Ruby",
	)
}

// conf_license_affero_gpl reads file data from disk. It returns an error on failure.
func conf_license_affero_gpl() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/license/Affero GPL",
		"conf/license/Affero GPL",
	)
}

// conf_license_apache_v2_license reads file data from disk. It returns an error on failure.
func conf_license_apache_v2_license() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/license/Apache v2 License",
		"conf/license/Apache v2 License",
	)
}

// conf_license_artistic_license_2_0 reads file data from disk. It returns an error on failure.
func conf_license_artistic_license_2_0() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/license/Artistic License 2.0",
		"conf/license/Artistic License 2.0",
	)
}

// conf_license_bsd_3_clause_license reads file data from disk. It returns an error on failure.
func conf_license_bsd_3_clause_license() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/license/BSD (3-Clause) License",
		"conf/license/BSD (3-Clause) License",
	)
}

// conf_license_gpl_v2 reads file data from disk. It returns an error on failure.
func conf_license_gpl_v2() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/license/GPL v2",
		"conf/license/GPL v2",
	)
}

// conf_license_mit_license reads file data from disk. It returns an error on failure.
func conf_license_mit_license() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/license/MIT License",
		"conf/license/MIT License",
	)
}

// conf_mysql_sql reads file data from disk. It returns an error on failure.
func conf_mysql_sql() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/mysql.sql",
		"conf/mysql.sql",
	)
}

// conf_supervisor_ini reads file data from disk. It returns an error on failure.
func conf_supervisor_ini() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/supervisor.ini",
		"conf/supervisor.ini",
	)
}

// conf_version reads file data from disk. It returns an error on failure.
func conf_version() ([]byte, error) {
	return bindata_read(
		"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/VERSION",
		"conf/VERSION",
	)
}

// Asset loads and returns the asset for the given name.
// It returns an error if the asset could not be found or
// could not be loaded.
func Asset(name string) ([]byte, error) {
	cannonicalName := strings.Replace(name, "\\", "/", -1)
	if f, ok := _bindata[cannonicalName]; ok {
		return f()
	}
	return nil, fmt.Errorf("Asset %s not found", name)
}

// AssetNames returns the names of the assets.
func AssetNames() []string {
	names := make([]string, 0, len(_bindata))
	for name := range _bindata {
		names = append(names, name)
	}
	return names
}

// _bindata is a table, holding each asset generator, mapped to its name.
var _bindata = map[string] func() ([]byte, error) {
	"conf/app.ini": conf_app_ini,
	"conf/content/git-bare.zip": conf_content_git_bare_zip,
	"conf/etc/supervisord.conf": conf_etc_supervisord_conf,
	"conf/gitignore/Android": conf_gitignore_android,
	"conf/gitignore/C": conf_gitignore_c,
	"conf/gitignore/C Sharp": conf_gitignore_c_sharp,
	"conf/gitignore/C++": conf_gitignore_c_,
	"conf/gitignore/Google Go": conf_gitignore_google_go,
	"conf/gitignore/Java": conf_gitignore_java,
	"conf/gitignore/Objective-C": conf_gitignore_objective_c,
	"conf/gitignore/Python": conf_gitignore_python,
	"conf/gitignore/Ruby": conf_gitignore_ruby,
	"conf/license/Affero GPL": conf_license_affero_gpl,
	"conf/license/Apache v2 License": conf_license_apache_v2_license,
	"conf/license/Artistic License 2.0": conf_license_artistic_license_2_0,
	"conf/license/BSD (3-Clause) License": conf_license_bsd_3_clause_license,
	"conf/license/GPL v2": conf_license_gpl_v2,
	"conf/license/MIT License": conf_license_mit_license,
	"conf/mysql.sql": conf_mysql_sql,
	"conf/supervisor.ini": conf_supervisor_ini,
	"conf/VERSION": conf_version,
}