Skip to content

Commit

Permalink
Deploying to scroll-output from @ bece673 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
breck7 committed Feb 25, 2024
1 parent 3ba68a2 commit fa17cf2
Show file tree
Hide file tree
Showing 1,567 changed files with 6,346 additions and 6,381 deletions.
8 changes: 4 additions & 4 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<link rel="canonical" href="https://cancerdb.com/404.html"></link>
<meta charset="iso-8859-1"></meta>
<meta name="viewport" content="width=device-width,initial-scale=1"></meta>
<meta name="description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta name="description" content="CancerDB: Key data about cancer in one table"></meta>
<meta name="generator" content="Scroll v71.5.0"></meta>
<meta property="og:title" content="Oops! - Page not found"></meta>
<meta property="og:description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta property="og:description" content="CancerDB: Key data about cancer in one table"></meta>
<meta property="og:image" content=""></meta>
<meta name="twitter:card" content="summary_large_image"></meta>

Expand All @@ -18,7 +18,7 @@
<form style="display:inline-block;" method="get" action="/fullTextSearch">
<input type="search" id="trueBaseThemeHeaderSearch" name="q" placeholder="Search" autocomplete="off"></input>
</form>
<a href="/csv.html">Questions</a>
<a href="/csv.html">Measures</a>
<a href="/queries/all.html">Concepts</a>
</div>
<a class="trueBaseThemeGitHubTopRight" href="https://github.com/breck7/CancerDB"><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub icon</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg></a>
Expand Down Expand Up @@ -60,7 +60,7 @@
<span>·</span>
<a href="/pages/sponsor.html">Sponsor</a>
<span>·</span>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 117</a>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 369</a>
<span>·</span>
<a href="mailto:[email protected]">[email protected]</a>
<span>·</span>
Expand Down
8 changes: 4 additions & 4 deletions TrueBaseBrowserApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,10 @@ class TrueBaseBrowserApp {

this.codeMirrorInstance.setValue(localValue ? localValue.childrenToString() : data.content)
const title = new TreeNode(this.value).get("title") || filename
document.getElementById("topUnansweredQuestions").innerHTML = `<h3>Open questions about ${title}</h3>
${data.topUnansweredQuestions
document.getElementById("topMissingMeasurements").innerHTML = `<h3>Missing measurements about ${title}</h3>
${data.topMissingMeasurements
.slice(0, 8)
.map(question => `<div title="${question.column}">${question.question}</div>`)
.map(measure => `<div title="${measure.column}">${measure.question}</div>`)
.join("")}`

document.getElementById("helpfulResearchLinks").innerHTML = data.helpfulResearchLinks
Expand Down Expand Up @@ -330,7 +330,7 @@ class TrueBaseBrowserApp {
<div id="tqlErrors"></div> <!-- todo: cleanup. -->
</div>
<div class="cell">
<div id="topUnansweredQuestions"></div>
<div id="topMissingMeasurements"></div>
<div id="helpfulResearchLinks"></div>
<div id="exampleSection"></div>
</div>
Expand Down
Binary file modified cancerdb.csv.zip
Binary file not shown.
192 changes: 96 additions & 96 deletions columns.csv

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions combined.js
Original file line number Diff line number Diff line change
Expand Up @@ -26245,10 +26245,10 @@ class TrueBaseBrowserApp {

this.codeMirrorInstance.setValue(localValue ? localValue.childrenToString() : data.content)
const title = new TreeNode(this.value).get("title") || filename
document.getElementById("topUnansweredQuestions").innerHTML = `<h3>Open questions about ${title}</h3>
${data.topUnansweredQuestions
document.getElementById("topMissingMeasurements").innerHTML = `<h3>Missing measurements about ${title}</h3>
${data.topMissingMeasurements
.slice(0, 8)
.map(question => `<div title="${question.column}">${question.question}</div>`)
.map(measure => `<div title="${measure.column}">${measure.question}</div>`)
.join("")}`

document.getElementById("helpfulResearchLinks").innerHTML = data.helpfulResearchLinks
Expand Down Expand Up @@ -26317,7 +26317,7 @@ class TrueBaseBrowserApp {
<div id="tqlErrors"></div> <!-- todo: cleanup. -->
</div>
<div class="cell">
<div id="topUnansweredQuestions"></div>
<div id="topMissingMeasurements"></div>
<div id="helpfulResearchLinks"></div>
<div id="exampleSection"></div>
</div>
Expand Down
8 changes: 4 additions & 4 deletions concepts/3d-crt.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<link rel="canonical" href="https://cancerdb.com/truebase/3d-crt.html"></link>
<meta charset="iso-8859-1"></meta>
<meta name="viewport" content="width=device-width,initial-scale=1"></meta>
<meta name="description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta name="description" content="CancerDB: Key data about cancer in one table"></meta>
<meta name="generator" content="Scroll v71.5.0"></meta>
<meta property="og:title" content="3D-CRT"></meta>
<meta property="og:description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta property="og:description" content="CancerDB: Key data about cancer in one table"></meta>
<meta property="og:image" content=""></meta>
<meta name="twitter:card" content="summary_large_image"></meta>

Expand All @@ -18,7 +18,7 @@
<form style="display:inline-block;" method="get" action="/fullTextSearch">
<input type="search" id="trueBaseThemeHeaderSearch" name="q" placeholder="Search" autocomplete="off"></input>
</form>
<a href="/csv.html">Questions</a>
<a href="/csv.html">Measures</a>
<a href="/queries/all.html">Concepts</a>
</div>
<a class="trueBaseThemeGitHubTopRight" href="https://github.com/breck7/CancerDB"><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub icon</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg></a>
Expand Down Expand Up @@ -68,7 +68,7 @@
<span>·</span>
<a href="/pages/sponsor.html">Sponsor</a>
<span>·</span>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 117</a>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 369</a>
<span>·</span>
<a href="mailto:[email protected]">[email protected]</a>
<span>·</span>
Expand Down
8 changes: 4 additions & 4 deletions concepts/a-lucky-man-a-memoir.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<link rel="canonical" href="https://cancerdb.com/truebase/a-lucky-man-a-memoir.html"></link>
<meta charset="iso-8859-1"></meta>
<meta name="viewport" content="width=device-width,initial-scale=1"></meta>
<meta name="description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta name="description" content="CancerDB: Key data about cancer in one table"></meta>
<meta name="generator" content="Scroll v71.5.0"></meta>
<meta property="og:title" content="A Lucky Man: A Memoir"></meta>
<meta property="og:description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta property="og:description" content="CancerDB: Key data about cancer in one table"></meta>
<meta property="og:image" content=""></meta>
<meta name="twitter:card" content="summary_large_image"></meta>

Expand All @@ -18,7 +18,7 @@
<form style="display:inline-block;" method="get" action="/fullTextSearch">
<input type="search" id="trueBaseThemeHeaderSearch" name="q" placeholder="Search" autocomplete="off"></input>
</form>
<a href="/csv.html">Questions</a>
<a href="/csv.html">Measures</a>
<a href="/queries/all.html">Concepts</a>
</div>
<a class="trueBaseThemeGitHubTopRight" href="https://github.com/breck7/CancerDB"><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub icon</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg></a>
Expand Down Expand Up @@ -65,7 +65,7 @@
<span>·</span>
<a href="/pages/sponsor.html">Sponsor</a>
<span>·</span>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 117</a>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 369</a>
<span>·</span>
<a href="mailto:[email protected]">[email protected]</a>
<span>·</span>
Expand Down
8 changes: 4 additions & 4 deletions concepts/a-new-war-on-cancer-book.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<link rel="canonical" href="https://cancerdb.com/truebase/a-new-war-on-cancer-book.html"></link>
<meta charset="iso-8859-1"></meta>
<meta name="viewport" content="width=device-width,initial-scale=1"></meta>
<meta name="description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta name="description" content="CancerDB: Key data about cancer in one table"></meta>
<meta name="generator" content="Scroll v71.5.0"></meta>
<meta property="og:title" content="A New War on Cancer: The Unlikely Heroes Revolutionizing Prevention"></meta>
<meta property="og:description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta property="og:description" content="CancerDB: Key data about cancer in one table"></meta>
<meta property="og:image" content=""></meta>
<meta name="twitter:card" content="summary_large_image"></meta>

Expand All @@ -18,7 +18,7 @@
<form style="display:inline-block;" method="get" action="/fullTextSearch">
<input type="search" id="trueBaseThemeHeaderSearch" name="q" placeholder="Search" autocomplete="off"></input>
</form>
<a href="/csv.html">Questions</a>
<a href="/csv.html">Measures</a>
<a href="/queries/all.html">Concepts</a>
</div>
<a class="trueBaseThemeGitHubTopRight" href="https://github.com/breck7/CancerDB"><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub icon</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg></a>
Expand Down Expand Up @@ -67,7 +67,7 @@
<span>·</span>
<a href="/pages/sponsor.html">Sponsor</a>
<span>·</span>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 117</a>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 369</a>
<span>·</span>
<a href="mailto:[email protected]">[email protected]</a>
<span>·</span>
Expand Down
8 changes: 4 additions & 4 deletions concepts/aaccr-et.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<link rel="canonical" href="https://cancerdb.com/truebase/aaccr-et.html"></link>
<meta charset="iso-8859-1"></meta>
<meta name="viewport" content="width=device-width,initial-scale=1"></meta>
<meta name="description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta name="description" content="CancerDB: Key data about cancer in one table"></meta>
<meta name="generator" content="Scroll v71.5.0"></meta>
<meta property="og:title" content="AACCR"></meta>
<meta property="og:description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta property="og:description" content="CancerDB: Key data about cancer in one table"></meta>
<meta property="og:image" content=""></meta>
<meta name="twitter:card" content="summary_large_image"></meta>

Expand All @@ -18,7 +18,7 @@
<form style="display:inline-block;" method="get" action="/fullTextSearch">
<input type="search" id="trueBaseThemeHeaderSearch" name="q" placeholder="Search" autocomplete="off"></input>
</form>
<a href="/csv.html">Questions</a>
<a href="/csv.html">Measures</a>
<a href="/queries/all.html">Concepts</a>
</div>
<a class="trueBaseThemeGitHubTopRight" href="https://github.com/breck7/CancerDB"><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub icon</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg></a>
Expand Down Expand Up @@ -71,7 +71,7 @@
<span>·</span>
<a href="/pages/sponsor.html">Sponsor</a>
<span>·</span>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 117</a>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 369</a>
<span>·</span>
<a href="mailto:[email protected]">[email protected]</a>
<span>·</span>
Expand Down
8 changes: 4 additions & 4 deletions concepts/aaci.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<link rel="canonical" href="https://cancerdb.com/truebase/aaci.html"></link>
<meta charset="iso-8859-1"></meta>
<meta name="viewport" content="width=device-width,initial-scale=1"></meta>
<meta name="description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta name="description" content="CancerDB: Key data about cancer in one table"></meta>
<meta name="generator" content="Scroll v71.5.0"></meta>
<meta property="og:title" content="Association of American Cancer Institutes"></meta>
<meta property="og:description" content="CancerDB: key concepts about cancer in one model"></meta>
<meta property="og:description" content="CancerDB: Key data about cancer in one table"></meta>
<meta property="og:image" content=""></meta>
<meta name="twitter:card" content="summary_large_image"></meta>

Expand All @@ -18,7 +18,7 @@
<form style="display:inline-block;" method="get" action="/fullTextSearch">
<input type="search" id="trueBaseThemeHeaderSearch" name="q" placeholder="Search" autocomplete="off"></input>
</form>
<a href="/csv.html">Questions</a>
<a href="/csv.html">Measures</a>
<a href="/queries/all.html">Concepts</a>
</div>
<a class="trueBaseThemeGitHubTopRight" href="https://github.com/breck7/CancerDB"><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub icon</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg></a>
Expand Down Expand Up @@ -75,7 +75,7 @@
<span>·</span>
<a href="/pages/sponsor.html">Sponsor</a>
<span>·</span>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 117</a>
<a href="https://github.com/breck7/CancerDB/commit/298bb5823a411c905aa98bec02e8c0c2ed2bfbea" title="An early version of CancerDB.com shipped on February 24th, 2023">Day 369</a>
<span>·</span>
<a href="mailto:[email protected]">[email protected]</a>
<span>·</span>
Expand Down
Loading

0 comments on commit fa17cf2

Please sign in to comment.