This commit is contained in:
Erik C. Thauvin 2017-05-21 00:05:57 -07:00
commit bd8f23d7d6
268 changed files with 34908 additions and 0 deletions

23
www/project_tools.html Normal file
View file

@ -0,0 +1,23 @@
<script type="text/javascript">
function replaceLinks() {
try {
var tools = document.getElementById("projecttools");
var links = tools.getElementsByTagName("a");
for (i=0; i < links.length; i++) {
if (links[i].getAttribute("href").indexOf("ProjectIssues") > -1) {
links[i].setAttribute("href", "http://jira.opensymphony.com/browse/CACHE");
links[i].innerHTML="JIRA Issue Tracker";
}
if (links[i].getAttribute("href").indexOf("ProjectForumView") > -1) {
links[i].setAttribute("href", "http://forums.opensymphony.com/forum.jspa?forumID=4");
links[i].innerHTML="User Forum";
}
}
} catch (e) {}
}
window.onload=replaceLinks;
</script>
<div><a href="http://www.opensymphony.com">OpenSymphony</a></div>
<div><a href="http://www.opensymphony.com/oscache/wiki/Documentation.html">Documentation</a></div>
<div><a href="http://wiki.opensymphony.com/display/CACHE">Wiki</a></div>