Initial import from https://bitbucket.org/opensymphony/oscache/
This commit is contained in:
commit
bd8f23d7d6
268 changed files with 34908 additions and 0 deletions
6
www/index.html
Normal file
6
www/index.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
<html>
|
||||
<body>
|
||||
A caching solution that includes a JSP tag library and set of classes to perform fine grained dynamic caching of JSP content, servlet responses or arbitrary objects. It provides both in memory and persistent on disk caches, and can allow your site to have graceful error tolerance (eg if an error occurs like your db goes down, you can serve the cached content so people can still surf the site almost without knowing).
|
||||
<p>The OSCache Homepage is at <a href="http://www.opensymphony.com/oscache">www.opensymphony.com/oscache</a></p>
|
||||
</body>
|
||||
</html>
|
23
www/project_tools.html
Normal file
23
www/project_tools.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue