|
2 | 2 | <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head> |
3 | 3 |
|
4 | 4 | <meta charset="utf-8"> |
5 | | -<meta name="generator" content="quarto-1.4.550"> |
| 5 | +<meta name="generator" content="quarto-1.4.553"> |
6 | 6 |
|
7 | 7 | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> |
8 | 8 |
|
|
113 | 113 | <div class="quarto-navbar-tools"> |
114 | 114 | <div class="dropdown"> |
115 | 115 | <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"> |
117 | 117 | <li> |
118 | 118 | <a class="dropdown-item quarto-navbar-tools-item" href="https://github.com/UCSB-Library-Research-Data-Services/project-data-management"> |
119 | 119 | Website Code |
@@ -174,7 +174,7 @@ <h1 class="title">Data Management Plan</h1> |
174 | 174 | <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> |
175 | 175 | <div class="quarto-figure quarto-figure-left"> |
176 | 176 | <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> |
178 | 178 | <figcaption>source: <a href="https://www.gida-global.org/care" class="uri">https://www.gida-global.org/care</a></figcaption> |
179 | 179 | </figure> |
180 | 180 | </div> |
@@ -218,9 +218,9 @@ <h2 class="anchored" data-anchor-id="developing-your-data-management-plan-dmp">D |
218 | 218 | <h2 class="anchored" data-anchor-id="data-management-plan-tool">Data Management Plan Tool</h2> |
219 | 219 | <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> |
220 | 220 | <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> |
222 | 222 | </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"> |
224 | 224 | </iframe> |
225 | 225 | <ul> |
226 | 226 | <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 |
327 | 327 | // clear code selection |
328 | 328 | e.clearSelection(); |
329 | 329 | }); |
| 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 | + } |
330 | 348 | function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { |
331 | 349 | const config = { |
332 | 350 | allowHTML: true, |
@@ -361,7 +379,11 @@ <h2 class="anchored" data-anchor-id="further-reading-recommendations">Further Re |
361 | 379 | try { href = new URL(href).hash; } catch {} |
362 | 380 | const id = href.replace(/^#\/?/, ""); |
363 | 381 | const note = window.document.getElementById(id); |
364 | | - return note.innerHTML; |
| 382 | + if (note) { |
| 383 | + return note.innerHTML; |
| 384 | + } else { |
| 385 | + return ""; |
| 386 | + } |
365 | 387 | }); |
366 | 388 | } |
367 | 389 | const xrefs = window.document.querySelectorAll('a.quarto-xref'); |
|
0 commit comments