Skip to content

Commit ce1f8e4

Browse files
committed
RAML now has trailing slashes manually appended to all paths
Signed-off-by: Bill Robinson <[email protected]>
1 parent 9e817dc commit ce1f8e4

File tree

3 files changed

+42
-1
lines changed

3 files changed

+42
-1
lines changed

scripts/build.sh

+18-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,24 @@ docker run --rm \
1515
mv spec/netmaster.raml ./spec/contiv/libraries/netmaster.raml
1616

1717
# run the raml2html tool to generate docs under spec/docs
18-
cd spec
18+
pushd spec
1919
make docs
2020
mkdir -p docs
2121
mv contiv.html docs/
22+
popd
23+
24+
# RAML doesn't currently support trailing slashes so we add them manually here
25+
26+
# altering the HTML requires a gem called Nokogiri
27+
# create a tiny docker image so we don't have to reinstall Nokogiri every time
28+
IMAGE_NAME="raml_trailing_slashes"
29+
30+
if [[ "$(docker images -q $IMAGE_NAME:latest 2>/dev/null)" == "" ]]; then
31+
docker build -t $IMAGE_NAME -f spec/Dockerfile.raml_trailing_slashes .
32+
fi
33+
34+
docker run --rm \
35+
-u $(id -u):$(id -g) \
36+
-v $(pwd):/files \
37+
-w /files/spec \
38+
$IMAGE_NAME /usr/local/bin/ruby raml_trailing_slashes.rb

spec/Dockerfile.raml_trailing_slashes

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM ruby:2.4.0-slim
2+
3+
ENV DEBIAN_FRONTEND=noninteractive
4+
5+
RUN apt-get update && apt-get -y install build-essential && gem install nokogiri

spec/raml_trailing_slashes.rb

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/env ruby
2+
# encoding: utf-8
3+
4+
require "nokogiri"
5+
6+
FILENAME = "docs/contiv.html"
7+
8+
doc = Nokogiri::HTML(File.read(FILENAME))
9+
10+
node_groups = [
11+
doc.css(".panel-title a").select { |n| n.text.start_with?("/") },
12+
doc.css(".modal-title"),
13+
]
14+
15+
node_groups.flatten.each do |node|
16+
node.children.last.content = node.children.last.text + "/"
17+
end
18+
19+
File.write(FILENAME, doc.to_html)

0 commit comments

Comments
 (0)