Skip to content

Commit

Permalink
Merge pull request #93 from amir-zeldes/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
amir-zeldes authored Aug 19, 2022
2 parents d4bc5ad + 4e28d8c commit 81fe10c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Binary file modified rstWeb_user_guide.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion script/admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,"").replace(/;/g,""); // May not contain <>(); to avoid XSS attacks
doc_sel.append('<option value="' + sanitized + '">' + sanitized + '</option>');
}
}
Expand Down
2 changes: 1 addition & 1 deletion templates/control/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h2>About rstWeb</h2><button class="help_mini" onclick='hide_about();'>X</button

<tr><td><img src="img/rstweb_logo.png" height="75px" alt="rstWeb"/></td><td><h1>rstWeb</h1>
Version **version**</td></tr>
<tr><td colspan="2" class="website">Website: <a href="http://corpling.uis.georgetown.edu/rstweb/info/" target="_new">http://corpling.uis.georgetown.edu/rstweb/info/</a></td></tr>
<tr><td colspan="2" class="website">Website: <a href="http://gucorpling.org/rstweb/info/" target="_new">http://gucorpling.org/rstweb/info/</a></td></tr>
<tr><td colspan="2" class="copyright">&copy; Amir Zeldes 2015-2019</td></tr>

</table>
Expand Down
2 changes: 1 addition & 1 deletion templates/control/quick.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ <h2>About rstWeb</h2><button class="help_mini" onclick='hide_about();'>X</button

<tr><td><img src="img/rstweb_logo.png" height="75px" alt="rstWeb"/></td><td><h1>rstWeb</h1>
Version 3.0.0</td></tr>
<tr><td colspan="2" class="website">Website: <a href="http://corpling.uis.georgetown.edu/rstweb/info/" target="_new">http://corpling.uis.georgetown.edu/rstweb/info/</a></td></tr>
<tr><td colspan="2" class="website">Website: <a href="http://gucorpling.org/rstweb/info/" target="_new">http://gucorpling.org/rstweb/info/</a></td></tr>
<tr><td colspan="2" class="copyright">&copy; Amir Zeldes 2015-2021</td></tr>

</table>
Expand Down

0 comments on commit 81fe10c

Please sign in to comment.