Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
ec9e6fb8
Commit
ec9e6fb8
authored
Dec 16, 2014
by
Dawn Chen
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2987 from lavalamp/fix6
fix Godeps.json; upgrade context, html, and websocket packages
parents
bb289492
f27bfc52
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
11 deletions
+8
-11
Godeps.json
Godeps/Godeps.json
+3
-6
context.go
Godeps/_workspace/src/golang.org/x/net/context/context.go
+1
-1
atom.go
Godeps/_workspace/src/golang.org/x/net/html/atom/atom.go
+1
-1
charset.go
...s/_workspace/src/golang.org/x/net/html/charset/charset.go
+1
-1
doc.go
Godeps/_workspace/src/golang.org/x/net/html/doc.go
+1
-1
websocket.go
...ps/_workspace/src/golang.org/x/net/websocket/websocket.go
+1
-1
No files found.
Godeps/Godeps.json
View file @
ec9e6fb8
...
@@ -145,18 +145,15 @@
...
@@ -145,18 +145,15 @@
},
},
{
{
"ImportPath"
:
"golang.org/x/net/context"
,
"ImportPath"
:
"golang.org/x/net/context"
,
"Comment"
:
"null-214"
,
"Rev"
:
"cbcac7bb8415db9b6cb4d1ebab1dc9afbd688b97"
"Rev"
:
"c043f0dc72e4cdd23ae039470ea9d63e6680a1b2"
},
},
{
{
"ImportPath"
:
"golang.org/x/net/html"
,
"ImportPath"
:
"golang.org/x/net/html"
,
"Comment"
:
"null-214"
,
"Rev"
:
"cbcac7bb8415db9b6cb4d1ebab1dc9afbd688b97"
"Rev"
:
"c043f0dc72e4cdd23ae039470ea9d63e6680a1b2"
},
},
{
{
"ImportPath"
:
"golang.org/x/net/websocket"
,
"ImportPath"
:
"golang.org/x/net/websocket"
,
"Comment"
:
"null-214"
,
"Rev"
:
"cbcac7bb8415db9b6cb4d1ebab1dc9afbd688b97"
"Rev"
:
"c043f0dc72e4cdd23ae039470ea9d63e6680a1b2"
},
},
{
{
"ImportPath"
:
"gopkg.in/v2/yaml"
,
"ImportPath"
:
"gopkg.in/v2/yaml"
,
...
...
Godeps/_workspace/src/golang.org/x/net/context/context.go
View file @
ec9e6fb8
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
//
//
// See http://blog.golang.org/context for example code for a server that uses
// See http://blog.golang.org/context for example code for a server that uses
// Contexts.
// Contexts.
package
context
package
context
// import "golang.org/x/net/context"
import
(
import
(
"errors"
"errors"
...
...
Godeps/_workspace/src/golang.org/x/net/html/atom/atom.go
View file @
ec9e6fb8
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
// whether atom.H1 < atom.H2 may also change. The codes are not guaranteed to
// whether atom.H1 < atom.H2 may also change. The codes are not guaranteed to
// be dense. The only guarantees are that e.g. looking up "div" will yield
// be dense. The only guarantees are that e.g. looking up "div" will yield
// atom.Div, calling atom.Div.String will return "div", and atom.Div != 0.
// atom.Div, calling atom.Div.String will return "div", and atom.Div != 0.
package
atom
package
atom
// import "golang.org/x/net/html/atom"
// Atom is an integer code for a string. The zero value maps to "".
// Atom is an integer code for a string. The zero value maps to "".
type
Atom
uint32
type
Atom
uint32
...
...
Godeps/_workspace/src/golang.org/x/net/html/charset/charset.go
View file @
ec9e6fb8
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
//
//
// The mapping from encoding labels to encodings is defined at
// The mapping from encoding labels to encodings is defined at
// http://encoding.spec.whatwg.org.
// http://encoding.spec.whatwg.org.
package
charset
package
charset
// import "golang.org/x/net/html/charset"
import
(
import
(
"bytes"
"bytes"
...
...
Godeps/_workspace/src/golang.org/x/net/html/doc.go
View file @
ec9e6fb8
...
@@ -93,7 +93,7 @@ The relevant specifications include:
...
@@ -93,7 +93,7 @@ The relevant specifications include:
http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html and
http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html and
http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html
http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html
*/
*/
package
html
package
html
// import "golang.org/x/net/html"
// The tokenization algorithm implemented by this package is not a line-by-line
// The tokenization algorithm implemented by this package is not a line-by-line
// transliteration of the relatively verbose state-machine in the WHATWG
// transliteration of the relatively verbose state-machine in the WHATWG
...
...
Godeps/_workspace/src/golang.org/x/net/websocket/websocket.go
View file @
ec9e6fb8
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
// Package websocket implements a client and server for the WebSocket protocol
// Package websocket implements a client and server for the WebSocket protocol
// as specified in RFC 6455.
// as specified in RFC 6455.
package
websocket
package
websocket
// import "golang.org/x/net/websocket"
import
(
import
(
"bufio"
"bufio"
...
...
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