-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathdrive.html
More file actions
57 lines (54 loc) · 2.25 KB
/
drive.html
File metadata and controls
57 lines (54 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
permalink: /drive
layout: page
title: "Shared Drive"
---
<h3>BetterInformatics Drive Shutdown</h3>
<p>
BetterInformatics Google Drive is shutting down in spring 2024.
</p>
<p>
Please migrate any files that you find useful on the Drive to
BetterInformatics File Collection:
<a href="https://files.betterinformatics.com">files.betterinformatics.com</a>
</p>
<div id="only-show-if-trying-to-access-item">
<p>
With that in mind, you can still access the files you're after <a id="temp-drive-link" href="https://drive.google.com/open?id=">here</a>.
<br />
Individual files should be publicly accessible without Google sign-in.
Contact admins if you have any issues.
</p>
</div>
<div id="only-show-if-trying-to-access-root-folder" style="display:none">
<p>
With that in mind, you can still access the Drive to view or migrate old
documents. As a technical limitation of the Google Drive, you must go
through a manual registration process (this is one of the reasons we are
no longer using Drive), please email
<a href="mailto:admin@betterinformatics.com">admin@betterinformatics.com</a> following these steps:
</p>
<ol>
<li>write "Better Informatics: please add me as a contributor to Google Drive" as your subject,</li>
<li>send the email from your university email address, so we know you are a student, and</li>
<li>include the email address of your Google account, so that you actually get access to the Drive.</li>
</ol>
<p>
Once you are a member, please <a href="https://drive.google.com/open?id=0AIKEqWfeWuQQUk9PVA">
click here to access the Shared Drive
</a>.
</p>
</div>
<script>
(() => {
const a = document.querySelector("#temp-drive-link");
const urlParams = new URLSearchParams(window.location.search);
const next = urlParams.get('next') || '0AIKEqWfeWuQQUk9PVA';
a.href += `${next}`;
if (next === '0AIKEqWfeWuQQUk9PVA') {
// they are trying to access the root folder.
document.getElementById('only-show-if-trying-to-access-root-folder').style.display = 'block';
document.getElementById('only-show-if-trying-to-access-item').style.display = 'none';
}
})()
</script>