Skip to content
This repository was archived by the owner on Jul 18, 2022. It is now read-only.

Loggings and fixes #15

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
7139a31
code fixes
alkadi-mh Jun 1, 2021
dd1ce4f
timer fix
alkadi-mh Jun 1, 2021
c60080d
Merge pull request #1 from alkadi-mh/ben
benjbach Jun 1, 2021
15ac69c
visWeb
alkadi-mh Jun 2, 2021
d785388
Merge pull request #2 from alkadi-mh/ben
benjbach Jun 2, 2021
ec90cac
change geoservice
Jun 3, 2021
69ef579
Merge pull request #3 from alkadi-mh/ben
benjbach Jun 3, 2021
ccb2594
Update dataview.ts
alkadi-mh Jun 3, 2021
95d0ac6
remove cors header and switch to maptileer
Jun 3, 2021
8fd0d9b
Merge branch 'master' into ben
benjbach Jun 3, 2021
3afa6f4
Merge pull request #4 from alkadi-mh/ben
benjbach Jun 3, 2021
190b5db
fix show network button issue
Jun 3, 2021
30911be
fix show network button issue
Jun 3, 2021
0d97814
fix show network button issue
Jun 3, 2021
3e2b04b
fix importing issue
Jun 3, 2021
d574345
fix importing issue
Jun 3, 2021
591efc5
Merge pull request #5 from alkadi-mh/ben
benjbach Jun 3, 2021
837cb53
fix importing issue
Jun 3, 2021
19926b5
Merge pull request #6 from alkadi-mh/ben
benjbach Jun 3, 2021
947a3cd
mandtory logging, guide, and support form
alkadi-mh Jun 25, 2021
1e434ee
guide update
alkadi-mh Jun 25, 2021
a5a9959
mandtory consent
alkadi-mh Jun 28, 2021
1734cce
tour updates
alkadi-mh Jun 28, 2021
2ec68f7
Merge branch 'networkcube:master' into master
alkadi-mh Jul 23, 2021
6a9cb14
add simple error message to dataview that shows errors occurring duri…
benjbach Jul 26, 2021
457e59e
add simple error message to dataview that shows errors occurring duri…
benjbach Jul 27, 2021
0cd68f7
add simple error message to dataview that shows errors occurring duri…
benjbach Jul 27, 2021
70ce438
fix dragging and error messages
alkadi-mh Jul 27, 2021
b1dc60c
fix minor UI issue
benjbach Jul 27, 2021
38157d3
fix minor UI issue
benjbach Jul 27, 2021
89444ed
zoom/pan logs
alkadi-mh Aug 14, 2021
a565b5e
Delete package-lock.json
alkadi-mh Aug 14, 2021
e38eb87
logs update
alkadi-mh Aug 15, 2021
bb103d3
help logs
alkadi-mh Aug 16, 2021
25e8a6d
compulsory feedback email
alkadi-mh Sep 27, 2021
b3960f4
unify contact email
alkadi-mh Oct 14, 2021
46423e0
fix log
alkadi-mh Jan 17, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 73 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,41 @@
<link href="https://fonts.googleapis.com/css?family=Poiret+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">

<link rel="stylesheet" href="web/bookmarkLogConsent.css">
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src='web/bookmarkLogConsent.js'></script>

<script async src="https://api.countapi.xyz/hit/vistorian.online/e898e585-ec25-4479-bed6-61383fb3a90d"></script>
<script>
function acceptConsent(showToUser){
// To display consent form upon user's landing on the dataview page.
var urlTxt=window.location.pathname;
urlTxt=urlTxt.substring(urlTxt.lastIndexOf("/")+1,urlTxt.indexOf("."));
var landingConsentForm = document.getElementById("onLoadConsentForm");

if (showToUser){
var doneConsent = (parseInt(localStorage.getItem('VistorianTour')) == 0);
if (doneConsent)
return ;
landingConsentForm.style.display = "block";
}
else{
landingConsentForm.style.display = "none";
localStorage.setItem("acceptLogging", "true");
trace.event('log_9', 'start logging', 'webpage', urlTxt);
}
}
function updateConsentPref(){
if ((document.getElementById('chk_dontShowLandingConsent').checked))
localStorage.setItem('VistorianTour', '0');
}
</script>
</head>

<body onload="trace.event('log_2', 'index', 'webpage', 'load')">
<body onload="acceptConsent(true);trace.event('log_2', 'index', 'webpage', 'load')">
<!-- VS: Call to trace_test_130529 -->
<script type="text/javascript" src="./static/traces/trace_test_130529.js"></script>
<script src="./node_modules/jquery/dist/jquery.js" type="text/javascript"></script>

<div id="main">
Expand Down Expand Up @@ -89,7 +118,7 @@
</li>

<li>
<a href="https://vistorian.github.io/vistorianLab.html" class="menuicon" onclick="trace.event('com_2', 'index', 'vistorinaLab study', 'click')"><img src="./static/logos/VistorianLab.png"
<a href="https://vistorian.github.io/vistorianLab.html" target="_blank" class="menuicon" onclick="trace.event('com_2', 'index', 'vistorinaLab study', 'click')"><img src="./static/logos/VistorianLab.png"
class="menuicon" />Vistorian Lab</a>
</li>
<li>
Expand Down Expand Up @@ -289,7 +318,8 @@ <h2>Cite</h2>
<a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0">CC BY 3.0</a>
</div>
</p>
<a class="footer" href="mailto:[email protected]" target="_top">Contact Us</a> |
<a class="footer" href="mailto:[email protected]" target="_top">Contact Us</a>
<!-- [email protected] -->
<a class="footer" href="https://go.microsoft.com/fwlink/?LinkId=521839" title="privacy">Privacy &
Cookies</a> |
<a class="footer" href="https://go.microsoft.com/fwlink/?LinkID=760869" title="terms of use">Terms Of
Expand Down Expand Up @@ -327,4 +357,42 @@ <h2>Cite</h2>
});

</script>

<div class="container">

<!-- Consent Modal -->
<div class="modal" id="onLoadConsentForm">
<div class="modal-dialog modal-dialog-scrollable">
<div class="modal-content">

<!-- Modal Header -->
<div class="modal-header">
<h3 class="modal-title" style="color:#FF7F50;">Anonymous Activity Logging for Research Purposes</h3>
<button type="button" class="close" data-dismiss="modal" onclick="acceptConsent(false);">×</button>
</div>

<!-- Modal body -->
<div class="modal-body" style="text-align: justify;font-size: 18px;">
<p ><span>The Vistorian is a research prototype to build better visualizations for multivariate networks.</span></p>
<p ><span>By using The Vistorian, you agree that your interactions with the tool are being anonymously logged for research purposes at the University of Edinburgh. We will not log any information related to your data or browser settings. No cookies or third party software will be installed. For more information, please see <a href="https://vistorian.github.io/studyPhase1_activityLogging.html" target="_blank">here</a>.</span></p>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<label for="chk_dontShowConsent"> <input type="checkbox" id="chk_dontShowLandingConsent" onclick="updateConsentPref()"> Don't show consent form again.</label>

<a href="/static/logging_consent/Vistorian Tracing Consent form .pdf" download> <button type="button" class="btn btn-link" onclick="trace.event('log_7', 'consent', 'downloaded', document.location.pathname);">Download this Consent Form for your records</button></a>

<div >
<button type="button" class="btn btn-danger" style="align-items:center;width:200px;" data-dismiss="modal" onclick="acceptConsent(false);turnOnLogging()">OK</button>
</div>


</div>


</div>
</div>

</div>
</div>
</body>
Loading