Skip to content

Commit

Permalink
another committee change
Browse files Browse the repository at this point in the history
  • Loading branch information
zabore committed Oct 1, 2024
1 parent fcf7445 commit 1845980
Show file tree
Hide file tree
Showing 8 changed files with 91 additions and 29 deletions.
4 changes: 2 additions & 2 deletions committees.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ title: "Committees for R/Medicine 2025"

- **Chair: Emily Zabor, Cleveland Clinic**

- Terry Christiani, The R Consortium

- Peter Higgins, University of Michigan

- Joy Payton, Children's Hospital of Philadelphia

- Steven Schwager, Cornell University

- Joseph Rickert, The R Consortium

- Ray Balise, University of Miami

- Beth Atkinson, Mayo Clinic
Expand Down
49 changes: 30 additions & 19 deletions docs/committees.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.4.555">
<meta name="generator" content="quarto-1.5.57">

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


<title>R/Medicine 2025 - Committees for R/Medicine 2025</title>
<title>Committees for R/Medicine 2025 R/Medicine 2025</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
Expand Down Expand Up @@ -83,7 +83,7 @@
</a>
</div>
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
Expand Down Expand Up @@ -130,7 +130,7 @@
</li>
</ul>
</div> <!-- /navcollapse -->
<div class="quarto-navbar-tools">
<div class="quarto-navbar-tools">
</div>
</div> <!-- /container-fluid -->
</nav>
Expand All @@ -139,7 +139,7 @@
<div id="quarto-content" class="quarto-container page-columns page-rows-contents page-layout-article page-navbar">
<!-- sidebar -->
<!-- margin-sidebar -->
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar zindex-bottom">

</div>
<!-- main -->
Expand Down Expand Up @@ -170,10 +170,10 @@ <h1 class="title">Committees for R/Medicine 2025</h1>
<h2 class="anchored" data-anchor-id="organizing-committee">Organizing Committee</h2>
<ul>
<li><p><strong>Chair: Emily Zabor, Cleveland Clinic</strong></p></li>
<li><p>Terry Christiani, The R Consortium</p></li>
<li><p>Peter Higgins, University of Michigan</p></li>
<li><p>Joy Payton, Children’s Hospital of Philadelphia</p></li>
<li><p>Steven Schwager, Cornell University</p></li>
<li><p>Joseph Rickert, The R Consortium</p></li>
<li><p>Ray Balise, University of Miami</p></li>
<li><p>Beth Atkinson, Mayo Clinic</p></li>
<li><p>Michael Kane, MD Anderson</p></li>
Expand Down Expand Up @@ -235,18 +235,7 @@ <h2 class="anchored" data-anchor-id="program-committee">Program Committee</h2>
}
return false;
}
const clipboard = new window.ClipboardJS('.code-copy-button', {
text: function(trigger) {
const codeEl = trigger.previousElementSibling.cloneNode(true);
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
});
clipboard.on('success', function(e) {
const onCopySuccess = function(e) {
// button target
const button = e.trigger;
// don't keep focus
Expand Down Expand Up @@ -278,15 +267,37 @@ <h2 class="anchored" data-anchor-id="program-committee">Program Committee</h2>
}, 1000);
// clear code selection
e.clearSelection();
}
const getTextToCopy = function(trigger) {
const codeEl = trigger.previousElementSibling.cloneNode(true);
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
text: getTextToCopy
});
clipboard.on('success', onCopySuccess);
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
// For code content inside modals, clipBoardJS needs to be initialized with a container option
// TODO: Check when it could be a function (https://github.com/zenorocha/clipboard.js/issues/860)
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
text: getTextToCopy,
container: window.document.getElementById('quarto-embedded-source-code-modal')
});
clipboardModal.on('success', onCopySuccess);
}
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
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)');
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):not(.about-link)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
Expand Down
4 changes: 2 additions & 2 deletions docs/search.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@
"href": "committees.html",
"title": "Committees for R/Medicine 2025",
"section": "",
"text": "Chair: Emily Zabor, Cleveland Clinic\nPeter Higgins, University of Michigan\nJoy Payton, Children’s Hospital of Philadelphia\nSteven Schwager, Cornell University\nJoseph Rickert, The R Consortium\nRay Balise, University of Miami\nBeth Atkinson, Mayo Clinic\nMichael Kane, MD Anderson\nDaniel Chen, The University of BC & Posit\nJaclyn Janis, Posit\nBryan Mayfield, Precision Analytical Inc\nAndey Nunes-Brewster, Oregon Health Authority\nBen Gerber, UMass\nDaniel Sjoberg, Genentech\nChris Beeley, National Health Service\nKalyani Chandupatla, Amgen\n\n\n\n\n\n\n\nTBD"
"text": "Chair: Emily Zabor, Cleveland Clinic\nTerry Christiani, The R Consortium\nPeter Higgins, University of Michigan\nJoy Payton, Children’s Hospital of Philadelphia\nSteven Schwager, Cornell University\nRay Balise, University of Miami\nBeth Atkinson, Mayo Clinic\nMichael Kane, MD Anderson\nDaniel Chen, The University of BC & Posit\nJaclyn Janis, Posit\nBryan Mayfield, Precision Analytical Inc\nAndey Nunes-Brewster, Oregon Health Authority\nBen Gerber, UMass\nDaniel Sjoberg, Genentech\nChris Beeley, National Health Service\nKalyani Chandupatla, Amgen\n\n\n\n\n\n\n\nTBD"
},
{
"objectID": "committees.html#organizing-committee",
"href": "committees.html#organizing-committee",
"title": "Committees for R/Medicine 2025",
"section": "",
"text": "Chair: Emily Zabor, Cleveland Clinic\nPeter Higgins, University of Michigan\nJoy Payton, Children’s Hospital of Philadelphia\nSteven Schwager, Cornell University\nJoseph Rickert, The R Consortium\nRay Balise, University of Miami\nBeth Atkinson, Mayo Clinic\nMichael Kane, MD Anderson\nDaniel Chen, The University of BC & Posit\nJaclyn Janis, Posit\nBryan Mayfield, Precision Analytical Inc\nAndey Nunes-Brewster, Oregon Health Authority\nBen Gerber, UMass\nDaniel Sjoberg, Genentech\nChris Beeley, National Health Service\nKalyani Chandupatla, Amgen"
"text": "Chair: Emily Zabor, Cleveland Clinic\nTerry Christiani, The R Consortium\nPeter Higgins, University of Michigan\nJoy Payton, Children’s Hospital of Philadelphia\nSteven Schwager, Cornell University\nRay Balise, University of Miami\nBeth Atkinson, Mayo Clinic\nMichael Kane, MD Anderson\nDaniel Chen, The University of BC & Posit\nJaclyn Janis, Posit\nBryan Mayfield, Precision Analytical Inc\nAndey Nunes-Brewster, Oregon Health Authority\nBen Gerber, UMass\nDaniel Sjoberg, Genentech\nChris Beeley, National Health Service\nKalyani Chandupatla, Amgen"
},
{
"objectID": "committees.html#program-committee",
Expand Down
4 changes: 2 additions & 2 deletions docs/site_libs/bootstrap/bootstrap.min.css

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions docs/site_libs/quarto-html/quarto-syntax-highlighting.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 12 additions & 3 deletions docs/site_libs/quarto-html/quarto.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
if (link.href.indexOf("#") !== -1) {
const anchor = link.href.split("#")[1];
const heading = window.document.querySelector(
`[data-anchor-id=${anchor}]`
`[data-anchor-id="${anchor}"]`
);
if (heading) {
// Add the class
Expand Down Expand Up @@ -134,8 +134,10 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
window.innerHeight + window.pageYOffset >=
window.document.body.offsetHeight
) {
// This is the no-scroll case where last section should be the active one
sectionIndex = 0;
} else {
// This finds the last section visible on screen that should be made active
sectionIndex = [...sections].reverse().findIndex((section) => {
if (section) {
return window.pageYOffset >= section.offsetTop - sectionMargin;
Expand Down Expand Up @@ -317,6 +319,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
for (const child of el.children) {
child.style.opacity = 0;
child.style.overflow = "hidden";
child.style.pointerEvents = "none";
}

nexttick(() => {
Expand Down Expand Up @@ -358,6 +361,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {

const clone = child.cloneNode(true);
clone.style.opacity = 1;
clone.style.pointerEvents = null;
clone.style.display = null;
toggleContents.append(clone);
}
Expand Down Expand Up @@ -432,6 +436,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
for (const child of el.children) {
child.style.opacity = 1;
child.style.overflow = null;
child.style.pointerEvents = null;
}

const placeholderEl = window.document.getElementById(
Expand Down Expand Up @@ -739,6 +744,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
// Process the collapse state if this is an UL
if (el.tagName === "UL") {
if (tocOpenDepth === -1 && depth > 1) {
// toc-expand: false
el.classList.add("collapse");
} else if (
depth <= tocOpenDepth ||
Expand All @@ -757,10 +763,9 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
};

// walk the TOC and expand / collapse any items that should be shown

if (tocEl) {
walk(tocEl, 0);
updateActiveLink();
walk(tocEl, 0);
}

// Throttle the scroll event and walk peridiocally
Expand All @@ -779,6 +784,10 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
window.addEventListener(
"resize",
throttle(() => {
if (tocEl) {
updateActiveLink();
walk(tocEl, 0);
}
if (!isReaderMode()) {
hideOverlappedSidebars();
}
Expand Down
36 changes: 36 additions & 0 deletions docs/site_libs/quarto-nav/quarto-nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,45 @@ const headroomChanged = new CustomEvent("quarto-hrChanged", {
composed: false,
});

const announceDismiss = () => {
const annEl = window.document.getElementById("quarto-announcement");
if (annEl) {
annEl.remove();

const annId = annEl.getAttribute("data-announcement-id");
window.localStorage.setItem(`quarto-announce-${annId}`, "true");
}
};

const announceRegister = () => {
const annEl = window.document.getElementById("quarto-announcement");
if (annEl) {
const annId = annEl.getAttribute("data-announcement-id");
const isDismissed =
window.localStorage.getItem(`quarto-announce-${annId}`) || false;
if (isDismissed) {
announceDismiss();
return;
} else {
annEl.classList.remove("hidden");
}

const actionEl = annEl.querySelector(".quarto-announcement-action");
if (actionEl) {
actionEl.addEventListener("click", function (e) {
e.preventDefault();
// Hide the bar immediately
announceDismiss();
});
}
}
};

window.document.addEventListener("DOMContentLoaded", function () {
let init = false;

announceRegister();

// Manage the back to top button, if one is present.
let lastScrollTop = window.pageYOffset || document.documentElement.scrollTop;
const scrollDownBuffer = 5;
Expand Down
6 changes: 5 additions & 1 deletion docs/site_libs/quarto-search/quarto-search.js
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,11 @@ async function fuseSearch(query, fuse, fuseOptions) {

// If we don't have a subfuse and the query is long enough, go ahead
// and create a subfuse to use for subsequent queries
if (now - then > kFuseMaxWait && subSearchFuse === undefined) {
if (
now - then > kFuseMaxWait &&
subSearchFuse === undefined &&
resultsRaw.length < fuseOptions.limit
) {
subSearchTerm = query;
subSearchFuse = new window.Fuse([], kFuseIndexOptions);
resultsRaw.forEach((rr) => {
Expand Down

0 comments on commit 1845980

Please sign in to comment.