Skip to content

Commit 59103c2

Browse files
committed
Routes and sidebar link are extracted from auth_proxy.html and inserted into contiv.html during build, fixed incorrect verbs in auth_proxy routes
Signed-off-by: Bill Robinson <[email protected]>
1 parent 1cdf3ac commit 59103c2

File tree

5 files changed

+930
-206
lines changed

5 files changed

+930
-206
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# data is extracted from this file and merged into spec/docs/contiv.html as part of the build process
2+
# but we don't actually need to keep it around.
3+
spec/docs/auth_proxy.html

spec/auth_proxy.raml

+2-1
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,10 @@ securedBy: custom_scheme
8888
/{username}:
8989
type: {collection-item: {provider: auth_proxy}}
9090
displayName: Local User
91-
put:
91+
patch:
9292

9393
/ldap_configuration:
9494
type: {collection-item: {provider: auth_proxy}}
9595
displayName: LDAP Configuration
9696
put:
97+
patch:

spec/cleanup.rb

+18-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,23 @@
77

88
doc = Nokogiri::HTML(File.read(FILENAME))
99

10-
# add trailing slashes to all paths
10+
# ----- IMPORT AUTH_PROXY DATA ----------------------------------------------------------------------
11+
12+
auth_doc = Nokogiri::HTML(File.read("docs/auth_proxy.html"))
13+
14+
# extract the main panel and sidebar link nodes
15+
auth_panel = auth_doc.css(".panel-default").first
16+
sidebar_link = auth_doc.css("#sidebar ul li").first
17+
18+
# add auth_proxy api panel under the header
19+
doc.at(".page-header").after(auth_panel)
20+
21+
# add auth_proxy link to the top of the sidebar
22+
doc.at("#sidebar ul").prepend_child(sidebar_link)
23+
24+
# ----- TIDY OUTPUT FILE ----------------------------------------------------------------------------
1125

26+
# add trailing slashes to all paths
1227
node_groups = [
1328
doc.css(".panel-title a").select { |n| n.text.start_with?("/") },
1429
doc.css(".modal-title"),
@@ -19,13 +34,12 @@
1934
end
2035

2136
# insert additional <head> tag requirements for the contiv header
22-
2337
doc.at("head") << Nokogiri::HTML::DocumentFragment.parse(File.read("docs/head.html"))
2438

2539
# insert the contiv header html into the top of the <body>
26-
2740
doc.at("body").prepend_child(Nokogiri::HTML::DocumentFragment.parse(File.read("docs/body.html")))
2841

29-
# overwrite the original HTML file
42+
# ----- OUTPUT --------------------------------------------------------------------------------------
3043

44+
# overwrite the original HTML file
3145
File.write(FILENAME, doc.to_html)

0 commit comments

Comments
 (0)