Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/update_documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,13 @@
)
index_file.write(redirect_link)
index_file.close()

# update the profiler_options.html file to redirect to detailed options docs
index_file = open("../profiler_options.html", "w")
redirect_link = (
'<meta http-equiv="refresh" content="0; url=./docs/'
+ version
+ '/html/profiler.html#profile-options" />'
)
index_file.write(redirect_link)
index_file.close()
1 change: 1 addition & 0 deletions profiler_options.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<meta http-equiv="refresh" content="0; url=./docs/0.10.2/html/profiler.html#profile-options" />