Flipping around weight order. higher weight at the bottom. use negative to pin to...
authorspf13 <steve.francia@gmail.com>
Sat, 26 Oct 2013 04:20:48 +0000 (00:20 -0400)
committerspf13 <steve.francia@gmail.com>
Sat, 26 Oct 2013 04:20:48 +0000 (00:20 -0400)
hugolib/index.go
hugolib/site_test.go

index 4150d87e3fa90d2dbe1d26a1e00565dd9a97dd9d..028f64a70fb8b8e00d4b46fa2f2c2fe8eec2b808 100644 (file)
@@ -32,7 +32,7 @@ func (p IndexedPages) Less(i, j int) bool {
        if p[i].Weight == p[j].Weight {
                return p[i].Page.Date.Unix() > p[j].Page.Date.Unix()
        } else {
-               return p[i].Weight > p[j].Weight
+               return p[i].Weight < p[j].Weight
        }
 }
 
index e08f0d6d595c12d20a0cad2bbbb6cb3ce9bdbd99..a20c6e299f5d2461af5e13300ef226aa0c186b8a 100644 (file)
@@ -372,8 +372,8 @@ func TestOrderedPages(t *testing.T) {
                t.Fatalf("Unable to build site metadata: %s", err)
        }
 
-       if s.Sections["sect"][0].Weight != 6 || s.Sections["sect"][3].Weight != 2 {
-               t.Errorf("Pages in unexpected order. First should be '%s', got '%s'", 6, s.Sections["sect"][0].Weight)
+       if s.Sections["sect"][0].Weight != 2 || s.Sections["sect"][3].Weight != 6 {
+               t.Errorf("Pages in unexpected order. First should be '%s', got '%s'", 2, s.Sections["sect"][0].Weight)
        }
 
        if s.Sections["sect"][1].Page.Title != "Three" || s.Sections["sect"][2].Page.Title != "Four" {
@@ -437,12 +437,12 @@ func TestWeightedIndexes(t *testing.T) {
                t.Fatalf("Unable to build site metadata: %s", err)
        }
 
-       if s.Indexes["tags"]["a"][0].Page.Title != "bar" {
-               t.Errorf("Pages in unexpected order, 'bar' expected first, got '%v'", s.Indexes["tags"]["a"][0].Page.Title)
+       if s.Indexes["tags"]["a"][0].Page.Title != "foo" {
+               t.Errorf("Pages in unexpected order, 'foo' expected first, got '%v'", s.Indexes["tags"]["a"][0].Page.Title)
        }
 
-       if s.Indexes["categories"]["d"][0].Page.Title != "foo" {
-               t.Errorf("Pages in unexpected order, 'foo' expected first, got '%v'", s.Indexes["categories"]["d"][0].Page.Title)
+       if s.Indexes["categories"]["d"][0].Page.Title != "bar" {
+               t.Errorf("Pages in unexpected order, 'bar' expected first, got '%v'", s.Indexes["categories"]["d"][0].Page.Title)
        }
 
        if s.Indexes["categories"]["e"][0].Page.Title != "bza" {