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)
commit0099b5a3cb922ac3f844b5d9d9f098cd1003b0f5
tree29502c0f6e321a8a7d21f7470a597270f402a8b8
parentd9964451a570aec28116f9f0a35d54a2a42fc6ce
Change all uses of sort.Sort to sort.Stable.Using sort.Stable ensures that even if the sort keys are the same, the order of the sort will not randomly change.  Using the old sort.Sort, if you had pages with no date, the lists of those pages would randomly reorder every time you regenerate the list, causing spurious changes to the output.  Now they'll always get ordered in the same way.
hugolib/menu.go
hugolib/pageSort.go
hugolib/taxonomy.go