Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Łukasz Nowak
caddy
Commits
924b53eb
Commit
924b53eb
authored
Apr 18, 2016
by
Matthew Holt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor changes
parent
2b51be7f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
dist/CHANGES.txt
dist/CHANGES.txt
+2
-2
middleware/context.go
middleware/context.go
+1
-1
No files found.
dist/CHANGES.txt
View file @
924b53eb
CHANGES
<master>
- Built with Go 1.6.
1
- New pprof directive for exposing process p
erformance profile
- Built with Go 1.6.
2
- New pprof directive for exposing process p
rofiling endpoints
- New expvar directive for exposing memory/GC performance
- New -restart option to force in-process restarts on Unix systems
- Only fail to start if managed certificate is expired (issue #642)
...
...
middleware/context.go
View file @
924b53eb
...
...
@@ -231,7 +231,7 @@ func (c Context) ToUpper(s string) string {
return
strings
.
ToUpper
(
s
)
}
// Split is a passthrough to strings.Split. It will split the first argument at each instance of the sep
e
rator and return a slice of strings.
// Split is a passthrough to strings.Split. It will split the first argument at each instance of the sep
a
rator and return a slice of strings.
func
(
c
Context
)
Split
(
s
string
,
sep
string
)
[]
string
{
return
strings
.
Split
(
s
,
sep
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment