Add in-section Next/Prev content pointers
authorDave Johnston <johnsto@gmail.com>
Fri, 18 Apr 2014 07:23:13 +0000 (07:23 +0000)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 5 Jan 2015 17:26:09 +0000 (18:26 +0100)
Conflicts:
docs/content/meta/release-notes.md
docs/content/templates/variables.md

docs/content/meta/release-notes.md
docs/content/templates/variables.md
hugolib/page.go
hugolib/site.go

index e26d7d7dc62539a044723fccba38639f38b105ea..a55b00ae883d39994e01f05df4fb48760ff8f720 100644 (file)
@@ -10,6 +10,7 @@ title: Release Notes
 weight: 10
 ---
 
+
 ## **0.12.0** Sept 1, 2014
 
 A lot has happened since Hugo v0.11.0 was released. Most of the work has been
@@ -56,6 +57,9 @@ This release represents over 110 code commits from 29 different contributors.
   * Renamed Indexes > [Taxonomies](/taxonomies/overview)
   * Renamed Chrome > [Partials](/templates/partials)
 
+## Next release
+  * Added section Prev/Next pointers.
+
 ## **0.10.0** March 1, 2014
 
 This release represents over 110 code commits from 29 different contributors.
index 054adfba36048d3ab6ab28e2fb6549bea90c637c..93f5ad02bfb0c2fe40a50d7faaf160b92dc17ef1 100644 (file)
@@ -39,6 +39,8 @@ matter, content or derived from file location.
 **.TableOfContents** The rendered table of contents for this content.<br>
 **.Prev** Pointer to the previous content (based on pub date).<br>
 **.Next** Pointer to the following content (based on pub date).<br>
+**.PrevInSection** Pointer to the previous content within the same section (based on pub date)<br>
+**.NextInSection** Pointer to the following content within the same section (based on pub date)<br>
 **.FuzzyWordCount** The approximate number of words in the content.<br>
 **.WordCount** The number of words in the content.<br>
 **.ReadingTime** The estimated time it takes to read the content in minutes.<br>
index 2ebc17b6bc141bfc369bbb5fbe5eb57d0bfdc017..1383f387ed86b2acac1f2f882b5172ad0b666524 100644 (file)
@@ -80,6 +80,8 @@ type PageMeta struct {
 type Position struct {
        Prev *Page
        Next *Page
+       PrevInSection *Page
+       NextInSection *Page
 }
 
 type Pages []*Page
index 41c0d26c7e9d623dbd53068db7622a61ee99a6d6..b4af9e76ca5de5fb81ba8abe697828da432e22b6 100644 (file)
@@ -724,6 +724,15 @@ func (s *Site) assembleSections() {
 
        for k := range s.Sections {
                s.Sections[k].Sort()
+
+               for i, wp := range s.Sections[k] {
+                       if i > 0 {
+                               wp.Page.NextInSection = s.Sections[k][i - 1].Page;
+                       }
+                       if i < len(s.Sections[k]) - 1 {
+                               wp.Page.PrevInSection = s.Sections[k][i + 1].Page;
+                       }
+               }
        }
 }