URI: 
       Fix paginator with uglyurls - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 0e00ca6a6e94f30b0e5b6fcba3749029075a3462
   DIR parent bef496b97e1dc2df8c52b080152d539a58752801
  HTML Author: bep <bjorn.erik.pedersen@gmail.com>
       Date:   Sun, 10 May 2015 15:23:36 +0200
       
       Fix paginator with uglyurls
       
       Fixes #1120
       
       Diffstat:
         M hugolib/pagination.go               |       3 +++
         M hugolib/pagination_test.go          |       1 -
       
       2 files changed, 3 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/hugolib/pagination.go b/hugolib/pagination.go
       @@ -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()
   DIR diff --git a/hugolib/pagination_test.go b/hugolib/pagination_test.go
       @@ -172,7 +172,6 @@ func TestPaginate(t *testing.T) {
        }
        
        func doTestPaginate(t *testing.T, useViper bool) {
       -
                pagerSize := 5
                if useViper {
                        viper.Set("paginate", pagerSize)