Skip to content

Commit 49321f5

Browse files
committed
Updated website and examples
Signed-off-by: Vishal Rana <[email protected]>
1 parent a89cf4d commit 49321f5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+57
-57
lines changed

.gitattributes

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*.json text eol=lf
1515
LICENSE text eol=lf
1616

17-
# Exclude `website` and `examples` from GitHub's language statistics
17+
# Exclude `website` and `cookbook` from GitHub's language statistics
1818
# https://github.com/github/linguist#using-gitattributes
19-
examples/* linguist-documentation
19+
cookbook/* linguist-documentation
2020
website/* linguist-documentation
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/twitter/handler/post.go cookbook/twitter/handler/post.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strconv"
66

77
"github.com/labstack/echo"
8-
"github.com/labstack/echo/examples/twitter/model"
8+
"github.com/labstack/echo/cookbook/twitter/model"
99
mgo "gopkg.in/mgo.v2"
1010
"gopkg.in/mgo.v2/bson"
1111
)

examples/twitter/handler/user.go cookbook/twitter/handler/user.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
jwt "github.com/dgrijalva/jwt-go"
88
"github.com/labstack/echo"
9-
"github.com/labstack/echo/examples/twitter/model"
9+
"github.com/labstack/echo/cookbook/twitter/model"
1010
mgo "gopkg.in/mgo.v2"
1111
"gopkg.in/mgo.v2/bson"
1212
)
File renamed without changes.
File renamed without changes.

examples/twitter/server.go cookbook/twitter/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"github.com/labstack/echo"
5-
"github.com/labstack/echo/examples/twitter/handler"
5+
"github.com/labstack/echo/cookbook/twitter/handler"
66
"github.com/labstack/echo/middleware"
77
"github.com/labstack/gommon/log"
88
mgo "gopkg.in/mgo.v2"
File renamed without changes.
File renamed without changes.
File renamed without changes.

website/config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ googleAnalytics = "UA-85059636-2"
66
[permalinks]
77
guide = "/guide/:filename"
88
middleware = "/middleware/:filename"
9-
examples = "/examples/:filename"
9+
example = "/cookbook/:filename"
1010
[params]
1111
description = "Echo is a high performance, extensible, minimalist web framework for Go (Golang)."

website/content/cookbook.md

+13

website/content/examples/auto-tls.md website/content/cookbook/auto-tls.md

+2-2

website/content/examples/cors.md website/content/cookbook/cors.md

+2-2

website/content/examples/crud.md website/content/cookbook/crud.md

+2-2

website/content/examples/embed-resources.md website/content/cookbook/embed-resources.md

+2-2

website/content/examples/file-upload.md website/content/cookbook/file-upload.md

+2-2

website/content/examples/google-app-engine.md website/content/cookbook/google-app-engine.md

+2-2

website/content/examples/graceful-shutdown.md website/content/cookbook/graceful-shutdown.md

+2-2

website/content/examples/hello-world.md website/content/cookbook/hello-world.md

+2-2

website/content/examples/http2.md website/content/cookbook/http2.md

+2-2

website/content/examples/jsonp.md website/content/cookbook/jsonp.md

+2-2

website/content/examples/jwt.md website/content/cookbook/jwt.md

+2-2

website/content/examples/middleware.md website/content/cookbook/middleware.md

+2-2

website/content/examples/streaming-response.md website/content/cookbook/streaming-response.md

+2-2

website/content/examples/subdomains.md website/content/cookbook/subdomains.md

+2-2

website/content/examples/twitter.md website/content/cookbook/twitter.md

+2-2

website/content/examples/websocket.md website/content/cookbook/websocket.md

+2-2

website/content/examples.md

-13
This file was deleted.

website/content/guide/migration.md

+1-1

website/content/guide/response.md

+1-1

website/content/middleware.md

+1-1

website/content/middleware/jwt.md

+1-1

website/layouts/shortcodes/embed.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<pre data-src="https://raw.githubusercontent.com/labstack/echo/master/examples/{{ .Get 0 }}"></pre>
1+
<pre data-src="https://raw.githubusercontent.com/labstack/echo/master/cookbook/{{ .Get 0 }}"></pre>
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://github.com/labstack/echo/tree/master/examples/{{ .Get 0 }}
1+
https://github.com/labstack/echo/tree/master/cookbook/{{ .Get 0 }}

0 commit comments

Comments
 (0)