Fix paginator with uglyurls
authorbep <bjorn.erik.pedersen@gmail.com>
Sun, 10 May 2015 13:23:36 +0000 (15:23 +0200)
committerbep <bjorn.erik.pedersen@gmail.com>
Sun, 10 May 2015 13:23:36 +0000 (15:23 +0200)
Fixes #1120

hugolib/pagination.go
hugolib/pagination_test.go

index 8210ca9456107fc192a6245c82a3ad594a046609..5c477bd5f67a70ef8234afd279b5f10dfaf5db28 100644 (file)
@@ -23,6 +23,7 @@ import (
        "math"
        "path"
        "reflect"
+       "strings"
 )
 
 type Pager struct {
@@ -268,6 +269,8 @@ func paginatePages(seq interface{}, pagerSize int, section string) (pagers, erro
                return nil, err
        }
 
+       section = strings.TrimSuffix(section, ".html")
+
        urlFactory := newPaginationURLFactory(section)
        paginator, _ := newPaginator(pages, pagerSize, urlFactory)
        pagers := paginator.Pagers()
index 5d7dcc3e5470488e4f63666ca3120ad8dc0950f8..e76709fdbf4cbec78adfc67f9db1d99b9176cfd9 100644 (file)
@@ -172,7 +172,6 @@ func TestPaginate(t *testing.T) {
 }
 
 func doTestPaginate(t *testing.T, useViper bool) {
-
        pagerSize := 5
        if useViper {
                viper.Set("paginate", pagerSize)