Skip to content

Commit

Permalink
Merge branch 'dev' into DDS-1861-Fix-the-Files-endpoints-according-to…
Browse files Browse the repository at this point in the history
…-the-OpenApi-standard
  • Loading branch information
rv0lt authored Mar 13, 2024
2 parents 845f776 + 6a4c104 commit db50f17
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
1 change: 1 addition & 0 deletions SPRINTLOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,3 +373,4 @@ _Nothing merged in CLI during this sprint_
# 2024-03-11 - 2024-03-22

- Fix the files endpoints according to the openAPI standards, providing new endpoint version that co-exists with the current one ([#1505](https://github.com/ScilifelabDataCentre/dds_web/pull/1505))
- Added email to troubleshouting webpage, with obfuscation ([#1520](https://github.com/ScilifelabDataCentre/dds_web/pull/1520))
28 changes: 26 additions & 2 deletions dds_web/templates/troubleshooting.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,32 @@ <h4>Did the troubleshooting document not help?</h4>
</ol>
<br>
<h4>Does the issue persist and / or the provided information not help?</h4>
<p>If you're a data producer, using the DDS for data deliveries to your users: contact the Data Centre.</p>
<p>If you're a data recipient, using the DDS to download your data from a data producing SciLifeLab unit: contact the SciLifeLab unit responsible for delivering the data to you.</p>
<p>If you're a <b> data producer </b>, using the DDS for data deliveries to your users: contact the
<!--
email obfuscation:
- the address is split into parts and concatenated in the JavaScript function
A honeypot email is used to lure scrappers and bots away from the real email address
question?: Doesnt this explanation defeat the purpose of obfuscation?
If this does not work, another more elabore solution is:
https://gist.github.com/aggrolite/5138710
-->
<script language="JavaScript"> <!--
(function funct() {

var a = "@"
, pre = "delivery"
, post = "scilifelab."
, dom = "se"
, e = pre + a + post + dom
, l = "<a href=mailto:{[email protected]}>Data Centre.</a>".replace(/{.+?(})/g, e)
;
document.write(l);
})();
// --> </script> <noscript>Data Centre.</noscript> <!-- no JavaScript just display the text -->
</p>
<p>If you're a <b> data recipient </b>, using the DDS to download your data from a data producing SciLifeLab unit: contact the SciLifeLab unit responsible for delivering the data to you.</p>
<p>Please <strong>provide the following information</strong>:</p>
<ul>
<li>Did the error / issue occurr in the web interface or the CLI?</li>
Expand Down

0 comments on commit db50f17

Please sign in to comment.