Skip to content

Commit 26bb22b

Browse files
author
Quarto GHA Workflow Runner
committed
Built site for gh-pages
1 parent 536f8d1 commit 26bb22b

File tree

10 files changed

+151
-40
lines changed

10 files changed

+151
-40
lines changed

.nojekyll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0bb82ba1
1+
0ac4b2c8

about.html

Lines changed: 25 additions & 3 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.553">
66

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

@@ -113,7 +113,7 @@
113113
<div class="quarto-navbar-tools">
114114
<div class="dropdown">
115115
<a href="" title="" id="quarto-navigation-tool-dropdown-0" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" aria-expanded="false" aria-label=""><i class="bi bi-github"></i></a>
116-
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="quarto-navigation-tool-dropdown-0">
116+
<ul class="dropdown-menu" aria-labelledby="quarto-navigation-tool-dropdown-0">
117117
<li>
118118
<a class="dropdown-item quarto-navbar-tools-item" href="https://github.com/UCSB-Library-Research-Data-Services/project-data-management">
119119
Website Code
@@ -255,6 +255,24 @@ <h1 class="title">About RDS</h1>
255255
// clear code selection
256256
e.clearSelection();
257257
});
258+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
259+
var mailtoRegex = new RegExp(/^mailto:/);
260+
var filterRegex = new RegExp("https:\/\/UCSB-Library-Research-Data-Services\.github\.io\/project-data-management\/");
261+
var isInternal = (href) => {
262+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
263+
}
264+
// Inspect non-navigation links and adorn them if external
265+
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)');
266+
for (var i=0; i<links.length; i++) {
267+
const link = links[i];
268+
if (!isInternal(link.href)) {
269+
// undo the damage that might have been done by quarto-nav.js in the case of
270+
// links that we want to consider external
271+
if (link.dataset.originalHref !== undefined) {
272+
link.href = link.dataset.originalHref;
273+
}
274+
}
275+
}
258276
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
259277
const config = {
260278
allowHTML: true,
@@ -289,7 +307,11 @@ <h1 class="title">About RDS</h1>
289307
try { href = new URL(href).hash; } catch {}
290308
const id = href.replace(/^#\/?/, "");
291309
const note = window.document.getElementById(id);
292-
return note.innerHTML;
310+
if (note) {
311+
return note.innerHTML;
312+
} else {
313+
return "";
314+
}
293315
});
294316
}
295317
const xrefs = window.document.querySelectorAll('a.quarto-xref');

index.html

Lines changed: 25 additions & 3 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.553">
66

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

@@ -113,7 +113,7 @@
113113
<div class="quarto-navbar-tools">
114114
<div class="dropdown">
115115
<a href="" title="" id="quarto-navigation-tool-dropdown-0" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" aria-expanded="false" aria-label=""><i class="bi bi-github"></i></a>
116-
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="quarto-navigation-tool-dropdown-0">
116+
<ul class="dropdown-menu" aria-labelledby="quarto-navigation-tool-dropdown-0">
117117
<li>
118118
<a class="dropdown-item quarto-navbar-tools-item" href="https://github.com/UCSB-Library-Research-Data-Services/project-data-management">
119119
Website Code
@@ -260,6 +260,24 @@ <h1 class="title">Project Data Management</h1>
260260
// clear code selection
261261
e.clearSelection();
262262
});
263+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
264+
var mailtoRegex = new RegExp(/^mailto:/);
265+
var filterRegex = new RegExp("https:\/\/UCSB-Library-Research-Data-Services\.github\.io\/project-data-management\/");
266+
var isInternal = (href) => {
267+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
268+
}
269+
// Inspect non-navigation links and adorn them if external
270+
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)');
271+
for (var i=0; i<links.length; i++) {
272+
const link = links[i];
273+
if (!isInternal(link.href)) {
274+
// undo the damage that might have been done by quarto-nav.js in the case of
275+
// links that we want to consider external
276+
if (link.dataset.originalHref !== undefined) {
277+
link.href = link.dataset.originalHref;
278+
}
279+
}
280+
}
263281
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
264282
const config = {
265283
allowHTML: true,
@@ -294,7 +312,11 @@ <h1 class="title">Project Data Management</h1>
294312
try { href = new URL(href).hash; } catch {}
295313
const id = href.replace(/^#\/?/, "");
296314
const note = window.document.getElementById(id);
297-
return note.innerHTML;
315+
if (note) {
316+
return note.innerHTML;
317+
} else {
318+
return "";
319+
}
298320
});
299321
}
300322
const xrefs = window.document.querySelectorAll('a.quarto-xref');

manage.html

Lines changed: 25 additions & 3 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.553">
66

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

@@ -113,7 +113,7 @@
113113
<div class="quarto-navbar-tools">
114114
<div class="dropdown">
115115
<a href="" title="" id="quarto-navigation-tool-dropdown-0" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" aria-expanded="false" aria-label=""><i class="bi bi-github"></i></a>
116-
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="quarto-navigation-tool-dropdown-0">
116+
<ul class="dropdown-menu" aria-labelledby="quarto-navigation-tool-dropdown-0">
117117
<li>
118118
<a class="dropdown-item quarto-navbar-tools-item" href="https://github.com/UCSB-Library-Research-Data-Services/project-data-management">
119119
Website Code
@@ -380,6 +380,24 @@ <h3 class="anchored" data-anchor-id="code">Code</h3>
380380
// clear code selection
381381
e.clearSelection();
382382
});
383+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
384+
var mailtoRegex = new RegExp(/^mailto:/);
385+
var filterRegex = new RegExp("https:\/\/UCSB-Library-Research-Data-Services\.github\.io\/project-data-management\/");
386+
var isInternal = (href) => {
387+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
388+
}
389+
// Inspect non-navigation links and adorn them if external
390+
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)');
391+
for (var i=0; i<links.length; i++) {
392+
const link = links[i];
393+
if (!isInternal(link.href)) {
394+
// undo the damage that might have been done by quarto-nav.js in the case of
395+
// links that we want to consider external
396+
if (link.dataset.originalHref !== undefined) {
397+
link.href = link.dataset.originalHref;
398+
}
399+
}
400+
}
383401
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
384402
const config = {
385403
allowHTML: true,
@@ -414,7 +432,11 @@ <h3 class="anchored" data-anchor-id="code">Code</h3>
414432
try { href = new URL(href).hash; } catch {}
415433
const id = href.replace(/^#\/?/, "");
416434
const note = window.document.getElementById(id);
417-
return note.innerHTML;
435+
if (note) {
436+
return note.innerHTML;
437+
} else {
438+
return "";
439+
}
418440
});
419441
}
420442
const xrefs = window.document.querySelectorAll('a.quarto-xref');

plan.html

Lines changed: 28 additions & 6 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.553">
66

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

@@ -113,7 +113,7 @@
113113
<div class="quarto-navbar-tools">
114114
<div class="dropdown">
115115
<a href="" title="" id="quarto-navigation-tool-dropdown-0" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" aria-expanded="false" aria-label=""><i class="bi bi-github"></i></a>
116-
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="quarto-navigation-tool-dropdown-0">
116+
<ul class="dropdown-menu" aria-labelledby="quarto-navigation-tool-dropdown-0">
117117
<li>
118118
<a class="dropdown-item quarto-navbar-tools-item" href="https://github.com/UCSB-Library-Research-Data-Services/project-data-management">
119119
Website Code
@@ -174,7 +174,7 @@ <h1 class="title">Data Management Plan</h1>
174174
<p>Before writing your plan, we recommend you get familiar with the <a href="https://www.go-fair.org/fair-principles/">FAIR</a> and <a href="https://www.gida-global.org/care">CARE</a> principles to guide your process.</p>
175175
<div class="quarto-figure quarto-figure-left">
176176
<figure class="figure">
177-
<p><img src="images/be-FAIR-and-CARE.png" class="img-fluid quarto-figure quarto-figure-left figure-img" style="width:80.0%"></p>
177+
<p><img src="images/be-FAIR-and-CARE.png" class="img-fluid figure-img" style="width:80.0%"></p>
178178
<figcaption>source: <a href="https://www.gida-global.org/care" class="uri">https://www.gida-global.org/care</a></figcaption>
179179
</figure>
180180
</div>
@@ -218,9 +218,9 @@ <h2 class="anchored" data-anchor-id="developing-your-data-management-plan-dmp">D
218218
<h2 class="anchored" data-anchor-id="data-management-plan-tool">Data Management Plan Tool</h2>
219219
<p>There is a tool that you can use to guide your process: <strong>the DMP Tool</strong>. It is a little bit like an online form on steroids. Note that you do not have to use this tool for your project, but from our experience, it provides good guidance for this process.</p>
220220
<ul>
221-
<li>(Almost) everything in one page: <a href="https://www.library.ucsb.edu/sites/default/files/dls-n05-2022-dmptool-navy_0.pdf" class="uri">https://www.library.ucsb.edu/sites/default/files/dls-n05-2022-dmptool-navy_0.pdf</a></li>
221+
<li>(Almost) everything in one page: <a href="https://perma.cc/3HFE-6X7U" class="uri">https://perma.cc/3HFE-6X7U</a></li>
222222
</ul>
223-
<iframe width="100%" height="1000" src="https://www.library.ucsb.edu/sites/default/files/dls-n05-2022-dmptool-navy_0.pdf">
223+
<iframe width="100%" height="1000" src="https://rcd.ucsb.edu/sites/default/files/2023-02/dls-n05-2022-dmptool-navy_0.pdf">
224224
</iframe>
225225
<ul>
226226
<li><p>Guidelines on developing your project data management plan using the DMP Tool: <em>Renata G Curty. (2023). DMP Recommendations (DCC Template). Zenodo.</em> <a href="https://doi.org/10.5281/zenodo.7566971" class="uri">https://doi.org/10.5281/zenodo.7566971</a></p></li>
@@ -327,6 +327,24 @@ <h2 class="anchored" data-anchor-id="further-reading-recommendations">Further Re
327327
// clear code selection
328328
e.clearSelection();
329329
});
330+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
331+
var mailtoRegex = new RegExp(/^mailto:/);
332+
var filterRegex = new RegExp("https:\/\/UCSB-Library-Research-Data-Services\.github\.io\/project-data-management\/");
333+
var isInternal = (href) => {
334+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
335+
}
336+
// Inspect non-navigation links and adorn them if external
337+
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)');
338+
for (var i=0; i<links.length; i++) {
339+
const link = links[i];
340+
if (!isInternal(link.href)) {
341+
// undo the damage that might have been done by quarto-nav.js in the case of
342+
// links that we want to consider external
343+
if (link.dataset.originalHref !== undefined) {
344+
link.href = link.dataset.originalHref;
345+
}
346+
}
347+
}
330348
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
331349
const config = {
332350
allowHTML: true,
@@ -361,7 +379,11 @@ <h2 class="anchored" data-anchor-id="further-reading-recommendations">Further Re
361379
try { href = new URL(href).hash; } catch {}
362380
const id = href.replace(/^#\/?/, "");
363381
const note = window.document.getElementById(id);
364-
return note.innerHTML;
382+
if (note) {
383+
return note.innerHTML;
384+
} else {
385+
return "";
386+
}
365387
});
366388
}
367389
const xrefs = window.document.querySelectorAll('a.quarto-xref');

preserve.html

Lines changed: 25 additions & 3 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.553">
66

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

@@ -113,7 +113,7 @@
113113
<div class="quarto-navbar-tools">
114114
<div class="dropdown">
115115
<a href="" title="" id="quarto-navigation-tool-dropdown-0" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" aria-expanded="false" aria-label=""><i class="bi bi-github"></i></a>
116-
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="quarto-navigation-tool-dropdown-0">
116+
<ul class="dropdown-menu" aria-labelledby="quarto-navigation-tool-dropdown-0">
117117
<li>
118118
<a class="dropdown-item quarto-navbar-tools-item" href="https://github.com/UCSB-Library-Research-Data-Services/project-data-management">
119119
Website Code
@@ -426,6 +426,24 @@ <h2 class="anchored" data-anchor-id="publication">Publication</h2>
426426
// clear code selection
427427
e.clearSelection();
428428
});
429+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
430+
var mailtoRegex = new RegExp(/^mailto:/);
431+
var filterRegex = new RegExp("https:\/\/UCSB-Library-Research-Data-Services\.github\.io\/project-data-management\/");
432+
var isInternal = (href) => {
433+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
434+
}
435+
// Inspect non-navigation links and adorn them if external
436+
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)');
437+
for (var i=0; i<links.length; i++) {
438+
const link = links[i];
439+
if (!isInternal(link.href)) {
440+
// undo the damage that might have been done by quarto-nav.js in the case of
441+
// links that we want to consider external
442+
if (link.dataset.originalHref !== undefined) {
443+
link.href = link.dataset.originalHref;
444+
}
445+
}
446+
}
429447
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
430448
const config = {
431449
allowHTML: true,
@@ -460,7 +478,11 @@ <h2 class="anchored" data-anchor-id="publication">Publication</h2>
460478
try { href = new URL(href).hash; } catch {}
461479
const id = href.replace(/^#\/?/, "");
462480
const note = window.document.getElementById(id);
463-
return note.innerHTML;
481+
if (note) {
482+
return note.innerHTML;
483+
} else {
484+
return "";
485+
}
464486
});
465487
}
466488
const xrefs = window.document.querySelectorAll('a.quarto-xref');

0 commit comments

Comments
 (0)