File tree 5 files changed +930
-206
lines changed
5 files changed +930
-206
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -88,9 +88,10 @@ securedBy: custom_scheme
88
88
/{username} :
89
89
type : {collection-item: {provider: auth_proxy}}
90
90
displayName : Local User
91
- put :
91
+ patch :
92
92
93
93
/ldap_configuration :
94
94
type : {collection-item: {provider: auth_proxy}}
95
95
displayName : LDAP Configuration
96
96
put :
97
+ patch :
Original file line number Diff line number Diff line change 7
7
8
8
doc = Nokogiri ::HTML ( File . read ( FILENAME ) )
9
9
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 ----------------------------------------------------------------------------
11
25
26
+ # add trailing slashes to all paths
12
27
node_groups = [
13
28
doc . css ( ".panel-title a" ) . select { |n | n . text . start_with? ( "/" ) } ,
14
29
doc . css ( ".modal-title" ) ,
19
34
end
20
35
21
36
# insert additional <head> tag requirements for the contiv header
22
-
23
37
doc . at ( "head" ) << Nokogiri ::HTML ::DocumentFragment . parse ( File . read ( "docs/head.html" ) )
24
38
25
39
# insert the contiv header html into the top of the <body>
26
-
27
40
doc . at ( "body" ) . prepend_child ( Nokogiri ::HTML ::DocumentFragment . parse ( File . read ( "docs/body.html" ) ) )
28
41
29
- # overwrite the original HTML file
42
+ # ----- OUTPUT --------------------------------------------------------------------------------------
30
43
44
+ # overwrite the original HTML file
31
45
File . write ( FILENAME , doc . to_html )
You can’t perform that action at this time.
0 commit comments