Skip to content

Commit da9e04b

Browse files
author
Quarto GHA Workflow Runner
committed
Built site for gh-pages
1 parent e9f0cc5 commit da9e04b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+465
-61
lines changed

.nojekyll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
a49949c2
1+
a2c10cd4
12.3 KB
Binary file not shown.

index.html

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.4.550">
5+
<meta name="generator" content="quarto-1.4.552">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

@@ -357,6 +357,13 @@ <h1 class="unnumbered">Welcome</h1><p><img src="images/cover.png" title="R for C
357357
<section id="events" class="level2 unnumbered">
358358
<h2 class="unnumbered anchored" data-anchor-id="events">Events</h2>
359359
<div class="cell">
360+
<style type="text/css">
361+
.table {
362+
font-size: 0.825rem;
363+
}
364+
</style>
365+
</div>
366+
<div class="cell">
360367
<div class="cell-output-display">
361368
<table class="table table-sm table-striped small">
362369
<thead>
@@ -503,6 +510,24 @@ <h2 class="unnumbered anchored" data-anchor-id="license">License</h2>
503510
// clear code selection
504511
e.clearSelection();
505512
});
513+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
514+
var mailtoRegex = new RegExp(/^mailto:/);
515+
var filterRegex = new RegExp("https:\/\/r4csr\.org\/");
516+
var isInternal = (href) => {
517+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
518+
}
519+
// Inspect non-navigation links and adorn them if external
520+
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
521+
for (var i=0; i<links.length; i++) {
522+
const link = links[i];
523+
if (!isInternal(link.href)) {
524+
// undo the damage that might have been done by quarto-nav.js in the case of
525+
// links that we want to consider external
526+
if (link.dataset.originalHref !== undefined) {
527+
link.href = link.dataset.originalHref;
528+
}
529+
}
530+
}
506531
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
507532
const config = {
508533
allowHTML: true,
@@ -537,7 +562,11 @@ <h2 class="unnumbered anchored" data-anchor-id="license">License</h2>
537562
try { href = new URL(href).hash; } catch {}
538563
const id = href.replace(/^#\/?/, "");
539564
const note = window.document.getElementById(id);
540-
return note.innerHTML;
565+
if (note) {
566+
return note.innerHTML;
567+
} else {
568+
return "";
569+
}
541570
});
542571
}
543572
const xrefs = window.document.querySelectorAll('a.quarto-xref');

preface.html

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.4.550">
5+
<meta name="generator" content="quarto-1.4.552">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

@@ -482,6 +482,24 @@ <h2 class="unnumbered anchored" data-anchor-id="authors-and-contributors">Author
482482
// clear code selection
483483
e.clearSelection();
484484
});
485+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
486+
var mailtoRegex = new RegExp(/^mailto:/);
487+
var filterRegex = new RegExp("https:\/\/r4csr\.org\/");
488+
var isInternal = (href) => {
489+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
490+
}
491+
// Inspect non-navigation links and adorn them if external
492+
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
493+
for (var i=0; i<links.length; i++) {
494+
const link = links[i];
495+
if (!isInternal(link.href)) {
496+
// undo the damage that might have been done by quarto-nav.js in the case of
497+
// links that we want to consider external
498+
if (link.dataset.originalHref !== undefined) {
499+
link.href = link.dataset.originalHref;
500+
}
501+
}
502+
}
485503
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
486504
const config = {
487505
allowHTML: true,
@@ -516,7 +534,11 @@ <h2 class="unnumbered anchored" data-anchor-id="authors-and-contributors">Author
516534
try { href = new URL(href).hash; } catch {}
517535
const id = href.replace(/^#\/?/, "");
518536
const note = window.document.getElementById(id);
519-
return note.innerHTML;
537+
if (note) {
538+
return note.innerHTML;
539+
} else {
540+
return "";
541+
}
520542
});
521543
}
522544
const xrefs = window.document.querySelectorAll('a.quarto-xref');

project-folder.html

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.4.550">
5+
<meta name="generator" content="quarto-1.4.552">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

@@ -734,6 +734,24 @@ <h2 data-number="11.4" class="anchored" data-anchor-id="compliance"><span class=
734734
// clear code selection
735735
e.clearSelection();
736736
});
737+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
738+
var mailtoRegex = new RegExp(/^mailto:/);
739+
var filterRegex = new RegExp("https:\/\/r4csr\.org\/");
740+
var isInternal = (href) => {
741+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
742+
}
743+
// Inspect non-navigation links and adorn them if external
744+
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
745+
for (var i=0; i<links.length; i++) {
746+
const link = links[i];
747+
if (!isInternal(link.href)) {
748+
// undo the damage that might have been done by quarto-nav.js in the case of
749+
// links that we want to consider external
750+
if (link.dataset.originalHref !== undefined) {
751+
link.href = link.dataset.originalHref;
752+
}
753+
}
754+
}
737755
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
738756
const config = {
739757
allowHTML: true,
@@ -768,7 +786,11 @@ <h2 data-number="11.4" class="anchored" data-anchor-id="compliance"><span class=
768786
try { href = new URL(href).hash; } catch {}
769787
const id = href.replace(/^#\/?/, "");
770788
const note = window.document.getElementById(id);
771-
return note.innerHTML;
789+
if (note) {
790+
return note.innerHTML;
791+
} else {
792+
return "";
793+
}
772794
});
773795
}
774796
const xrefs = window.document.querySelectorAll('a.quarto-xref');

project-management.html

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.4.550">
5+
<meta name="generator" content="quarto-1.4.552">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

@@ -732,6 +732,24 @@ <h2 data-number="12.6" class="anchored" data-anchor-id="operation"><span class="
732732
// clear code selection
733733
e.clearSelection();
734734
});
735+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
736+
var mailtoRegex = new RegExp(/^mailto:/);
737+
var filterRegex = new RegExp("https:\/\/r4csr\.org\/");
738+
var isInternal = (href) => {
739+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
740+
}
741+
// Inspect non-navigation links and adorn them if external
742+
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
743+
for (var i=0; i<links.length; i++) {
744+
const link = links[i];
745+
if (!isInternal(link.href)) {
746+
// undo the damage that might have been done by quarto-nav.js in the case of
747+
// links that we want to consider external
748+
if (link.dataset.originalHref !== undefined) {
749+
link.href = link.dataset.originalHref;
750+
}
751+
}
752+
}
735753
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
736754
const config = {
737755
allowHTML: true,
@@ -766,7 +784,11 @@ <h2 data-number="12.6" class="anchored" data-anchor-id="operation"><span class="
766784
try { href = new URL(href).hash; } catch {}
767785
const id = href.replace(/^#\/?/, "");
768786
const note = window.document.getElementById(id);
769-
return note.innerHTML;
787+
if (note) {
788+
return note.innerHTML;
789+
} else {
790+
return "";
791+
}
770792
});
771793
}
772794
const xrefs = window.document.querySelectorAll('a.quarto-xref');

project-overview.html

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.4.550">
5+
<meta name="generator" content="quarto-1.4.552">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

@@ -408,6 +408,24 @@ <h1 class="title"><span id="project-overview" class="quarto-section-identifier">
408408
// clear code selection
409409
e.clearSelection();
410410
});
411+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
412+
var mailtoRegex = new RegExp(/^mailto:/);
413+
var filterRegex = new RegExp("https:\/\/r4csr\.org\/");
414+
var isInternal = (href) => {
415+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
416+
}
417+
// Inspect non-navigation links and adorn them if external
418+
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
419+
for (var i=0; i<links.length; i++) {
420+
const link = links[i];
421+
if (!isInternal(link.href)) {
422+
// undo the damage that might have been done by quarto-nav.js in the case of
423+
// links that we want to consider external
424+
if (link.dataset.originalHref !== undefined) {
425+
link.href = link.dataset.originalHref;
426+
}
427+
}
428+
}
411429
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
412430
const config = {
413431
allowHTML: true,
@@ -442,7 +460,11 @@ <h1 class="title"><span id="project-overview" class="quarto-section-identifier">
442460
try { href = new URL(href).hash; } catch {}
443461
const id = href.replace(/^#\/?/, "");
444462
const note = window.document.getElementById(id);
445-
return note.innerHTML;
463+
if (note) {
464+
return note.innerHTML;
465+
} else {
466+
return "";
467+
}
446468
});
447469
}
448470
const xrefs = window.document.querySelectorAll('a.quarto-xref');

references.html

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.4.550">
5+
<meta name="generator" content="quarto-1.4.552">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

@@ -465,6 +465,24 @@ <h1 class="title">References</h1>
465465
// clear code selection
466466
e.clearSelection();
467467
});
468+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
469+
var mailtoRegex = new RegExp(/^mailto:/);
470+
var filterRegex = new RegExp("https:\/\/r4csr\.org\/");
471+
var isInternal = (href) => {
472+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
473+
}
474+
// Inspect non-navigation links and adorn them if external
475+
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
476+
for (var i=0; i<links.length; i++) {
477+
const link = links[i];
478+
if (!isInternal(link.href)) {
479+
// undo the damage that might have been done by quarto-nav.js in the case of
480+
// links that we want to consider external
481+
if (link.dataset.originalHref !== undefined) {
482+
link.href = link.dataset.originalHref;
483+
}
484+
}
485+
}
468486
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
469487
const config = {
470488
allowHTML: true,
@@ -499,7 +517,11 @@ <h1 class="title">References</h1>
499517
try { href = new URL(href).hash; } catch {}
500518
const id = href.replace(/^#\/?/, "");
501519
const note = window.document.getElementById(id);
502-
return note.innerHTML;
520+
if (note) {
521+
return note.innerHTML;
522+
} else {
523+
return "";
524+
}
503525
});
504526
}
505527
const xrefs = window.document.querySelectorAll('a.quarto-xref');

search.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"href": "index.html#events",
1515
"title": "R for Clinical Study Reports and Submission",
1616
"section": "Events",
17-
"text": "Events\n\n\n\n\n\nVenue\nType\nDate\nMaterials\n\n\n\n\nR/Pharma Conference\nWorkshop\n2021-10-28\nSlides\n\n\nChina-R Conference\nTalk\n2021-11-20\nSlides\n\n\nASA Princeton-Trenton Chapter\nShort course\n2021-12-02\nSlides\n\n\nGWU Biostatistics Center\nTalk\n2022-01-21\nSlides\n\n\nRStudio Pharma Meetup Series\nTalk\n2022-05-17\nSlides\n\n\nASA Biopharmaceutical Section Regulatory-Industry Statistics Workshop\nShort course\n2022-09-20\nSlides\n\n\nPSI Webinar Series: Showcasing R use in Pharma\nTalk\n2022-10-25\nSlides",
17+
"text": "Events\n\n\n\n\n\n\n\n\nVenue\nType\nDate\nMaterials\n\n\n\n\nR/Pharma Conference\nWorkshop\n2021-10-28\nSlides\n\n\nChina-R Conference\nTalk\n2021-11-20\nSlides\n\n\nASA Princeton-Trenton Chapter\nShort course\n2021-12-02\nSlides\n\n\nGWU Biostatistics Center\nTalk\n2022-01-21\nSlides\n\n\nRStudio Pharma Meetup Series\nTalk\n2022-05-17\nSlides\n\n\nASA Biopharmaceutical Section Regulatory-Industry Statistics Workshop\nShort course\n2022-09-20\nSlides\n\n\nPSI Webinar Series: Showcasing R use in Pharma\nTalk\n2022-10-25\nSlides",
1818
"crumbs": [
1919
"Welcome"
2020
]

site_libs/bootstrap/bootstrap.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.

site_libs/quarto-nav/quarto-nav.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ window.document.addEventListener("DOMContentLoaded", function () {
237237
const links = window.document.querySelectorAll("a");
238238
for (let i = 0; i < links.length; i++) {
239239
if (links[i].href) {
240+
links[i].dataset.originalHref = links[i].href;
240241
links[i].href = links[i].href.replace(/\/index\.html/, "/");
241242
}
242243
}

0 commit comments

Comments
 (0)