Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
0b74db64
authored
2013-08-19 13:02:18 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix typo for templateLeft
1 parent
f2222ba3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
beego.go
config.go
template.go
beego.go
View file @
0b74db6
...
...
@@ -48,8 +48,8 @@ var (
EnableXSRF
bool
XSRFExpire
int
CopyRequestBody
bool
//When in raw application, You want to the reqeustbody
Templat
Left
string
Templat
Right
string
Templat
eLeft
string
Templat
eRight
string
)
func
init
()
{
...
...
@@ -80,8 +80,8 @@ func init() {
ErrorsShow
=
true
XSRFKEY
=
"beegoxsrf"
XSRFExpire
=
60
TemplatLeft
=
"{{"
TemplatRight
=
"}}"
Templat
e
Left
=
"{{"
Templat
e
Right
=
"}}"
ParseConfig
()
runtime
.
GOMAXPROCS
(
runtime
.
NumCPU
())
}
...
...
config.go
View file @
0b74db6
...
...
@@ -199,10 +199,10 @@ func ParseConfig() (err error) {
XSRFExpire
=
expire
}
if
tplleft
:=
AppConfig
.
String
(
"templateleft"
);
tplleft
!=
""
{
TemplatLeft
=
tplleft
Templat
e
Left
=
tplleft
}
if
tplright
:=
AppConfig
.
String
(
"templateright"
);
tplright
!=
""
{
TemplatRight
=
tplright
Templat
e
Right
=
tplright
}
}
return
nil
...
...
template.go
View file @
0b74db6
...
...
@@ -112,7 +112,7 @@ func BuildTemplate(dir string) error {
return
err
}
for
k
,
v
:=
range
self
.
files
{
BeeTemplates
[
k
]
=
template
.
Must
(
template
.
New
(
"beegoTemplate"
+
k
)
.
Funcs
(
beegoTplFuncMap
)
.
ParseFiles
(
v
...
))
.
Delims
(
Templat
Left
,
Templat
Right
)
BeeTemplates
[
k
]
=
template
.
Must
(
template
.
New
(
"beegoTemplate"
+
k
)
.
Funcs
(
beegoTplFuncMap
)
.
ParseFiles
(
v
...
))
.
Delims
(
Templat
eLeft
,
Template
Right
)
}
return
nil
}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment