Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Installation instructions consolidation #12388

Merged
merged 26 commits into from
Sep 5, 2018
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
90587ba
initial edits for c++ instructions
aaronmarkham Aug 28, 2018
a407afb
consolidation and reorg of install docs
aaronmarkham Aug 28, 2018
ea088a1
simplify python section
aaronmarkham Aug 28, 2018
d237bfe
fix url rewrite to allow for testing
aaronmarkham Aug 28, 2018
2e35cb8
further simplify install
aaronmarkham Aug 28, 2018
788fdf1
fix render issues
aaronmarkham Aug 28, 2018
a13d8ba
adjust formatting
aaronmarkham Aug 28, 2018
ae041d0
adjust formatting
aaronmarkham Aug 28, 2018
3b05cfe
fix python/gpu/master
aaronmarkham Aug 28, 2018
b2d26f2
install footers
aaronmarkham Aug 28, 2018
aae8804
update footers
aaronmarkham Aug 28, 2018
c743cdd
add mac dev setup link for osx
aaronmarkham Aug 28, 2018
09ae549
adjust formatting for footer
aaronmarkham Aug 28, 2018
e4ecfb7
separate validation page
aaronmarkham Aug 28, 2018
9065c25
add toc
aaronmarkham Aug 28, 2018
2675a77
adjust formatting
aaronmarkham Aug 28, 2018
7d9ce90
break out julia and perl
aaronmarkham Aug 28, 2018
1321bbf
fix pypi link
aaronmarkham Aug 28, 2018
88f43c2
fix formatting
aaronmarkham Aug 28, 2018
8289b74
fix formatting
aaronmarkham Aug 28, 2018
7813c37
fix formatting
aaronmarkham Aug 28, 2018
78ce36d
add build from source link
aaronmarkham Aug 29, 2018
e70d319
updating from PR feedback
aaronmarkham Aug 29, 2018
d43e6f9
add c++ and clojure to ubuntu guide; clarify c++ setup
aaronmarkham Aug 29, 2018
06d4be6
added pip chart to install; updates from PR feedback
aaronmarkham Aug 30, 2018
db66150
correct reference to c infer api
aaronmarkham Sep 4, 2018
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
20 changes: 10 additions & 10 deletions docs/_static/js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $(document).ready(function () {
function label(lbl) {
return lbl.replace(/[ .]/g, '-').toLowerCase();
}

function urlSearchParams(searchString) {
let urlDict = new Map();
let searchParams = searchString.substring(1).split("&");
Expand Down Expand Up @@ -45,11 +45,11 @@ $(document).ready(function () {
showContent();
if (window.location.href.indexOf("/install/index.html") >= 0) {
if (versionSelect.indexOf(defaultVersion) >= 0) {
history.pushState(null, null, '/install/index.html?platform=' + platformSelect + '&language=' + languageSelect + '&processor=' + processorSelect);
history.pushState(null, null, 'index.html?platform=' + platformSelect + '&language=' + languageSelect + '&processor=' + processorSelect);
} else {
history.pushState(null, null, '/install/index.html?version=' + versionSelect + '&platform=' + platformSelect + '&language=' + languageSelect + '&processor=' + processorSelect);
history.pushState(null, null, 'index.html?version=' + versionSelect + '&platform=' + platformSelect + '&language=' + languageSelect + '&processor=' + processorSelect);
}
}
}
}

function showContent() {
Expand All @@ -73,22 +73,22 @@ $(document).ready(function () {
$('.current-version').html( $(this).text() + ' <span class="caret"></span></button>' );
if ($(this).text().indexOf(defaultVersion) < 0) {
if (window.location.search.indexOf("version") < 0) {
history.pushState(null, null, '/install/index.html' + window.location.search.concat( '&version=' + $(this).text() ));
history.pushState(null, null, 'index.html' + window.location.search.concat( '&version=' + $(this).text() ));
} else {
history.pushState(null, null, '/install/index.html' + window.location.search.replace( urlParams.get('version'), $(this).text() ));
history.pushState(null, null, 'index.html' + window.location.search.replace( urlParams.get('version'), $(this).text() ));
}
} else if (window.location.search.indexOf("version") >= 0) {
history.pushState(null, null, '/install/index.html' + window.location.search.replace( 'version', 'prev' ));
history.pushState(null, null, 'index.html' + window.location.search.replace( 'version', 'prev' ));
}
}
else if ($(this).hasClass("platforms")) {
history.pushState(null, null, '/install/index.html' + window.location.search.replace( urlParams.get('platform'), $(this).text() ));
history.pushState(null, null, 'index.html' + window.location.search.replace( urlParams.get('platform'), $(this).text() ));
}
else if ($(this).hasClass("languages")) {
history.pushState(null, null, '/install/index.html' + window.location.search.replace( urlParams.get('language'), $(this).text() ));
history.pushState(null, null, 'index.html' + window.location.search.replace( urlParams.get('language'), $(this).text() ));
}
else if ($(this).hasClass("processors")) {
history.pushState(null, null, '/install/index.html' + window.location.search.replace( urlParams.get('processor'), $(this).text() ));
history.pushState(null, null, 'index.html' + window.location.search.replace( urlParams.get('processor'), $(this).text() ));
}
showContent();
//window.location.search = window.location.search.replace( urlParams.get('version'), $(this).text() );
Expand Down
Loading