@@ -5,7 +5,7 @@ module Extensions
5
5
module Whatsnew
6
6
class Index
7
7
8
- @@layout_path = "whatsnew .html.haml"
8
+ @@layout_path = "whatsnew_per_feature .html.haml"
9
9
10
10
def initialize ( path_prefix )
11
11
@path_prefix = path_prefix
@@ -38,10 +38,10 @@ def execute(site)
38
38
main_version = get_main_version ( whatsnew . feature_version )
39
39
if whatsnews [ whatsnew . feature_id ] [ :merged ] [ main_version ] . nil? then
40
40
#puts " Adding " + page.feature_id + " version " + main_version
41
- whatsnew_page = create_page ( page . feature_id , main_version + ".html" )
41
+ whatsnew_page = create_page ( page . feature_id + "-" + main_version + ".html" )
42
42
whatsnew_page . feature_version = main_version
43
43
whatsnew_page . feature_id = page . feature_id
44
- whatsnew_page . title = " What's New in " + main_version
44
+ whatsnew_page . title = site . features [ whatsnew_page . feature_id ] . name + " " + main_version
45
45
whatsnews [ whatsnew . feature_id ] [ :merged ] [ main_version ] = whatsnew_page
46
46
# TODO: how to append page.content into whatsnew_page.content at the right location ?
47
47
#generate front-matter + content in raw_content ?
@@ -75,9 +75,7 @@ def create_page(*paths)
75
75
throw Exception . new ( "too many choices for #{ simple_path } " ) if candidates . size != 1
76
76
whatsnew_page = @site . engine . load_page ( candidates [ 0 ] )
77
77
whatsnew_page . output_path = File . join ( @path_prefix , paths )
78
- #whatsnew_page.create_context("foo!")
79
- #whatsnew_page.rendered_content
80
- #puts " Added page " + whatsnew_page.output_path
78
+ puts " Added page " + whatsnew_page . output_path
81
79
@site . pages << whatsnew_page
82
80
return whatsnew_page
83
81
end
0 commit comments