Add redirect to page parameters and redirects example
authorRoss Lawley <ross.lawley@gmail.com>
Fri, 9 Aug 2013 20:35:23 +0000 (21:35 +0100)
committerRoss Lawley <ross.lawley@gmail.com>
Fri, 9 Aug 2013 20:57:22 +0000 (21:57 +0100)
docs/content/doc/front-matter.md
docs/content/doc/redirects.md [new file with mode: 0644]
docs/content/redirects/my-awesome-blog-post.md [new file with mode: 0644]
docs/layouts/chrome/menu.html
docs/layouts/redirects/single.html [new file with mode: 0644]
hugolib/page.go

index 0fb03b4439b5cc40878ba4f4326c070e4bbbcd71..566fb1fba7685586435b27a5af819867d0c53206 100644 (file)
@@ -4,8 +4,8 @@ date = "2013-07-01"
 +++
 
 The front matter is one of the features that gives Hugo it's strength. It enables
-you to include the meta data of the content right with it. Hugo supports a few 
-different formats each with their own identifying tokens. 
+you to include the meta data of the content right with it. Hugo supports a few
+different formats each with their own identifying tokens.
 
 Supported formats: <br>
   **YAML**, identified by '\-\-\-'. <br>
@@ -24,7 +24,7 @@ Supported formats: <br>
       - "VIM"
     slug: "spf13-vim-3-0-release-and-new-website"
     ---
-    Content of the file goes Here 
+    Content of the file goes Here
 
 ### TOML Example
 
@@ -39,7 +39,7 @@ Supported formats: <br>
     ]
     slug = "spf13-vim-3-0-release-and-new-website"
     +++
-    Content of the file goes Here 
+    Content of the file goes Here
 
 ### JSON Example
 
@@ -54,7 +54,7 @@ Supported formats: <br>
     ],
     "slug": "spf13-vim-3-0-release-and-new-website",
     }
-    Content of the file goes Here 
+    Content of the file goes Here
 
 ### Variables
 
@@ -71,6 +71,7 @@ any variable they want to. These will be placed into the `.Params` variable avai
 
 #### Optional
 
+**redirect** Mark the post as a redirect post<br>
 **draft** If true the content will not be rendered unless `hugo` is called with -d<br>
 **type** The type of the content (will be derived from the directory automatically if unset).<br>
 **markup** (Experimental) Specify "rst" for reStructuredText (requires
diff --git a/docs/content/doc/redirects.md b/docs/content/doc/redirects.md
new file mode 100644 (file)
index 0000000..74b742d
--- /dev/null
@@ -0,0 +1,37 @@
+---
+title: "Redirects"
+Pubdate: "2013-07-09"
+---
+
+For people migrating existing published content to Hugo theres a good chance
+you need a mechanism to handle redirecting old urls.
+
+Luckily, this can be handled easily in a couple of easy steps.
+
+1. Create a special post for the redirect and mark the file as a `redirect`
+    file in the front matter.  Here is an example
+    `content/redirects/my-awesome-blog-post.md` :
+
+    ```markdown
+    ---
+    redirect: true
+    slug: /my-awesome-blog-post/
+    url: /docs/redirects/
+    ---
+```
+
+2. Set the redirect template `layouts/redirects/single.html`:
+
+    ```html
+    <!DOCTYPE html>
+    <html>
+    <head>
+      <link rel="canonical" href="{{ .Url }}"/>
+      <meta http-equiv="content-type" content="text/html; charset=utf-8" />
+      <meta http-equiv="refresh" content="0;url={{ .Url }}" />
+    </head>
+    </html>
+    ```
+
+Now when you go to `/my-awesome-blog-post/` it will do a meta redirect to
+`/docs/redirects/`.
\ No newline at end of file
diff --git a/docs/content/redirects/my-awesome-blog-post.md b/docs/content/redirects/my-awesome-blog-post.md
new file mode 100644 (file)
index 0000000..dedf283
--- /dev/null
@@ -0,0 +1,5 @@
+---
+redirect: true
+slug: /my-awesome-blog-post/
+url: /docs/redirects1/
+---
\ No newline at end of file
index e0eaf7b23b10bc0cd065be30b8843f3e578d4fcd..99e9a04a445dd93155d7adf49b84e9fa17119e35 100644 (file)
@@ -19,6 +19,7 @@
             <li class="nav-header">Extras</li>
             <li> <a href="/doc/shortcodes">ShortCodes</a></li>
             <li> <a href="/doc/indexes">Indexes</a></li>
+            <li> <a href="/doc/redirects">Redirects</a></li>
             <li class="divider"></li>
             <li class="nav-header">Meta</li>
             <li> <a href="/doc/release-notes">Release Notes</a></li>
diff --git a/docs/layouts/redirects/single.html b/docs/layouts/redirects/single.html
new file mode 100644 (file)
index 0000000..e99e758
--- /dev/null
@@ -0,0 +1,8 @@
+<!DOCTYPE html>
+<html>
+<head>
+  <link rel="canonical" href="{{ .Url }}"/>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
+  <meta http-equiv="refresh" content="0;url={{ .Url }}" />
+</head>
+</html>
\ No newline at end of file
index ff00493b212bd4afa8ecacc676649c46621c6b3a..93f2f6dbeb9fa002b96fee25abeac4d5a530f07a 100644 (file)
@@ -42,6 +42,7 @@ type Page struct {
        RenderedContent *bytes.Buffer
        contentType     string
        Draft           bool
+       Redirect        bool
        Tmpl            *template.Template
        Markup          string
        PageMeta
@@ -85,15 +86,22 @@ func initializePage(filename string) (page Page) {
        page.Params = make(map[string]interface{})
        page.Keywords = make([]string, 10, 30)
        page.Markup = "md"
-       page.setSection()
 
        return page
 }
 
 func (p *Page) setSection() {
        x := strings.Split(p.FileName, string(os.PathSeparator))
+       section := x[len(x)-2]
+
+       c := p.Site.Config
+       systemDirs := map[string] bool {
+               c.ContentDir: true,
+               c.StaticDir: true,
+               c.LayoutDir: true,
+       }
 
-       if section := x[len(x)-2]; section != "content" {
+       if !systemDirs[section] && !p.Redirect {
                p.Section = section
        }
 }
@@ -102,7 +110,7 @@ func (page *Page) Type() string {
        if page.contentType != "" {
                return page.contentType
        }
-
+       page.setSection()
        if x := page.GetSection(); x != "" {
                return x
        }
@@ -130,6 +138,7 @@ func (page *Page) Layout(l ...string) string {
 // TODO initalize separately... load from reader (file, or []byte)
 func NewPage(filename string) *Page {
        p := initializePage(filename)
+
        if err := p.buildPageFromFile(); err != nil {
                fmt.Println(err)
                os.Exit(1)
@@ -299,6 +308,8 @@ func (page *Page) handleMetaData(f interface{}) error {
                        page.layout = interfaceToString(v)
                case "markup":
                        page.Markup = interfaceToString(v)
+               case "redirect":
+                       page.Redirect = interfaceToBool(v)
                case "status":
                        page.Status = interfaceToString(v)
                default: