diff --git a/README.md b/README.md index e2c9ce4..1960771 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Repository for rstWeb, a browser based annotation interface for Rhetorical Structure Theory -URL: https://corpling.uis.georgetown.edu/rstweb/info/ +URL: https://gucorpling.org/rstweb/info/ ![rstWeb interface](./gh-site/rstweb_structurer.png) diff --git a/rstWeb_user_guide.pdf b/rstWeb_user_guide.pdf index 8affd3a..b883dcc 100644 Binary files a/rstWeb_user_guide.pdf and b/rstWeb_user_guide.pdf differ diff --git a/script/admin.js b/script/admin.js index d331a56..24e9863 100644 --- a/script/admin.js +++ b/script/admin.js @@ -287,7 +287,7 @@ function update_assignments(){ if (document.getElementById("assigned_user_sel").options[i].text == user){ docs = document.getElementById("assigned_user_sel").options[i].value.substring(0, document.getElementById("assigned_user_sel").options[i].value.length-1).trim().split(";"); for (doc in docs){ - sanitized = docs[doc].replace("(","").replace(")","").replace("<","").replace(">","").replace(";",""); // May not contain <>(); to avoid XSS attacks + sanitized = docs[doc].replace(/\(/g,"").replace(/\)/g,"").replace(//g,"").replace(/;/g,""); // May not contain <>(); to avoid XSS attacks doc_sel.append(''); } } diff --git a/templates/control/about.html b/templates/control/about.html index 846af56..c245421 100644 --- a/templates/control/about.html +++ b/templates/control/about.html @@ -4,7 +4,7 @@