Change all uses of sort.Sort to sort.Stable.Using sort.Stable ensures that even if...
authorNate Finch <nate.finch@gmail.com>
Tue, 9 Sep 2014 09:59:47 +0000 (05:59 -0400)
committerspf13 <steve.francia@gmail.com>
Tue, 9 Sep 2014 13:22:16 +0000 (09:22 -0400)
hugolib/menu.go
hugolib/pageSort.go
hugolib/taxonomy.go

index 471f29610148a287c833dfb33526ad91ee894c30..4092432c8c0138a458de139df925681e5ef6e786 100644 (file)
@@ -129,7 +129,7 @@ func (by MenuEntryBy) Sort(menu Menu) {
                menu: menu,
                by:   by, // The Sort method's receiver is the function (closure) that defines the sort order.
        }
-       sort.Sort(ms)
+       sort.Stable(ms)
 }
 
 var DefaultMenuEntrySort = func(m1, m2 *MenuEntry) bool {
index 63e230ac0fd38797710920f61bc56e613cb69532..c621740b29ca697da4b832ad2b16b2664c7d3cc9 100644 (file)
@@ -35,7 +35,7 @@ func (by PageBy) Sort(pages Pages) {
                pages: pages,
                by:    by, // The Sort method's receiver is the function (closure) that defines the sort order.
        }
-       sort.Sort(ps)
+       sort.Stable(ps)
 }
 
 var DefaultPageSort = func(p1, p2 *Page) bool {
index 890bd550c1ef68c5e6ba8bc0900652ea08896f9b..c030618302543b24324720e1517c99b48fc18e48 100644 (file)
@@ -134,7 +134,7 @@ func (by OIby) Sort(taxonomy OrderedTaxonomy) {
                taxonomy: taxonomy,
                by:       by, // The Sort method's receiver is the function (closure) that defines the sort order.
        }
-       sort.Sort(ps)
+       sort.Stable(ps)
 }
 
 // Len is part of sort.Interface.
@@ -162,7 +162,7 @@ func (wp WeightedPages) Pages() Pages {
 
 func (p WeightedPages) Len() int      { return len(p) }
 func (p WeightedPages) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
-func (p WeightedPages) Sort()         { sort.Sort(p) }
+func (p WeightedPages) Sort()         { sort.Stable(p) }
 func (p WeightedPages) Count() int    { return len(p) }
 func (p WeightedPages) Less(i, j int) bool {
        if p[i].Weight == p[j].Weight {