aboutsummaryrefslogtreecommitdiffstats
path: root/example/templates
diff options
context:
space:
mode:
Diffstat (limited to 'example/templates')
-rw-r--r--example/templates/index.html7
-rw-r--r--example/templates/jquery/index.html4
-rw-r--r--example/templates/mootools/index.html2
-rw-r--r--example/templates/prototype/index.html2
4 files changed, 7 insertions, 8 deletions
diff --git a/example/templates/index.html b/example/templates/index.html
index d7d8a2b..fd771e8 100644
--- a/example/templates/index.html
+++ b/example/templates/index.html
@@ -5,13 +5,12 @@
<title>Index of Tests</title>
</head>
<body>
-
<h1>Index of Tests</h1>
{% cache 10 index_cache %}
<ul>
- <li><a href="/jquery/index/">jQuery 1.2.6</a></li>
- <li><a href="/mootools/index/">MooTools 1.2.4</a></li>
- <li><a href="/prototype/index/">Prototype 1.6.1</a></li>
+ <li><a href="/jquery/">jQuery 2.0.3</a></li>
+ <li><a href="/mootools/">MooTools 1.4.5</a></li>
+ <li><a href="/prototype/">Prototype 1.7.1.0</a></li>
</ul>
{% endcache %}
</body>
diff --git a/example/templates/jquery/index.html b/example/templates/jquery/index.html
index 9cab242..20665c2 100644
--- a/example/templates/jquery/index.html
+++ b/example/templates/jquery/index.html
@@ -1,12 +1,12 @@
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
- <title>Old jQuery Test</title>
+ <title>jQuery Test</title>
<style>
.hide {display:none;}
#v {font-weight:bold;}
</style>
- <script type="text/javascript" charset="utf-8" src="{{ STATIC_URL }}/js/jquery.js"></script>
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('p.hide').show();
diff --git a/example/templates/mootools/index.html b/example/templates/mootools/index.html
index dde019d..047ea97 100644
--- a/example/templates/mootools/index.html
+++ b/example/templates/mootools/index.html
@@ -5,7 +5,7 @@
<style>
.hide {display:none;}
</style>
- <script type="text/javascript" charset="utf-8" src="{{ STATIC_URL }}/js/mootools.js"></script>
+ <script src="//ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools-yui-compressed.js"></script>
<script type="text/javascript">
window.addEvent('domready', function() {
$$('p.hide').setStyle('display', 'block');
diff --git a/example/templates/prototype/index.html b/example/templates/prototype/index.html
index bf3d0a5..b9a0ec8 100644
--- a/example/templates/prototype/index.html
+++ b/example/templates/prototype/index.html
@@ -5,7 +5,7 @@
<style>
.hide {display:none;}
</style>
- <script type="text/javascript" charset="utf-8" src="{{ STATIC_URL }}/js/prototype.js"></script>
+ <script src="//ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js"></script>
<script type="text/javascript">
document.observe('dom:loaded', function() {
$('showme').removeClassName('hide');