Skip to content

Commit 5c96d75

Browse files
committed
Improving path on whatnew pages
1 parent 8890bdb commit 5c96d75

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
lines changed

.rvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rvm ruby-1.9.3@jbosstools
1+
rvm ruby-1.9.3@jbosstools-website
22

33
# this speeds up awestruct
44
# saves about 3-4 seocnds.

_ext/whatsnew.rb

+4-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module Extensions
55
module Whatsnew
66
class Index
77

8-
@@layout_path = "whatsnew.html.haml"
8+
@@layout_path = "whatsnew_per_feature.html.haml"
99

1010
def initialize(path_prefix)
1111
@path_prefix = path_prefix
@@ -38,10 +38,10 @@ def execute(site)
3838
main_version = get_main_version(whatsnew.feature_version)
3939
if whatsnews[whatsnew.feature_id][:merged][main_version].nil? then
4040
#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")
4242
whatsnew_page.feature_version = main_version
4343
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
4545
whatsnews[whatsnew.feature_id][:merged][main_version] = whatsnew_page
4646
# TODO: how to append page.content into whatsnew_page.content at the right location ?
4747
#generate front-matter + content in raw_content ?
@@ -75,9 +75,7 @@ def create_page(*paths)
7575
throw Exception.new( "too many choices for #{simple_path}" ) if candidates.size != 1
7676
whatsnew_page = @site.engine.load_page( candidates[0] )
7777
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
8179
@site.pages << whatsnew_page
8280
return whatsnew_page
8381
end

_layouts/features.html.haml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ tab: features
44
---
55

66
.row-fluid
7-
.span3.sidebar
7+
.span2.sidebar
88
%ul.nav.nav-list
99
- feature = site.features.values.select{|feature| feature.url == join(site.base_url, page.url)}.first
1010
%li.nav-header
@@ -28,6 +28,6 @@ tab: features
2828
%li
2929
%a{:href => join(site.base_url, feature.url)} #{feature.name}
3030

31-
.span9#feature
31+
.span10#feature
3232
~content
3333

File renamed without changes.

whatsnew/openshift/openshift-news-2.5.1.CR1.adoc

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
= What's New in 2.5.1.CR1
2-
:page-layout: whatsnew
32
:page-feature_id: openshift
43
:page-feature_version: 2.5.1.CR1
54

0 commit comments

Comments
 (0)