From 9327cd86b2c9f1db0108c97e630c6d5610e65b0d Mon Sep 17 00:00:00 2001 From: Rob Hudson Date: Thu, 11 Feb 2010 14:19:30 -0800 Subject: Added example project directory. Currently this allows for easy manual testing a few other Javascript libraries and whether the debug toolbar javascript conflicts with them. --- example/templates/admin/login.html | 34 ++++++++++++++++++++++++++++++++++ example/templates/index.html | 16 ++++++++++++++++ example/templates/jquery/index.html | 21 +++++++++++++++++++++ example/templates/mootools/index.html | 19 +++++++++++++++++++ example/templates/prototype/index.html | 20 ++++++++++++++++++++ 5 files changed, 110 insertions(+) create mode 100644 example/templates/admin/login.html create mode 100644 example/templates/index.html create mode 100644 example/templates/jquery/index.html create mode 100644 example/templates/mootools/index.html create mode 100644 example/templates/prototype/index.html (limited to 'example/templates') diff --git a/example/templates/admin/login.html b/example/templates/admin/login.html new file mode 100644 index 0000000..b15b767 --- /dev/null +++ b/example/templates/admin/login.html @@ -0,0 +1,34 @@ +{% extends "admin/base_site.html" %} +{% load i18n %} + +{% block extrastyle %}{% load adminmedia %}{{ block.super }}{% endblock %} + +{% block bodyclass %}login{% endblock %} + +{% block content_title %}{% endblock %} + +{% block breadcrumbs %}{% endblock %} + +{% block content %} +{% if error_message %} +

{{ error_message }}

+{% endif %} +
+
+
+ +
+
+ + +
+
+ +
+
+ + +
+{% endblock %} diff --git a/example/templates/index.html b/example/templates/index.html new file mode 100644 index 0000000..6fd3a92 --- /dev/null +++ b/example/templates/index.html @@ -0,0 +1,16 @@ + + + + Index of Tests + + + +

Index of Tests

+ + + + diff --git a/example/templates/jquery/index.html b/example/templates/jquery/index.html new file mode 100644 index 0000000..419f348 --- /dev/null +++ b/example/templates/jquery/index.html @@ -0,0 +1,21 @@ + + + + Old jQuery Test + + + + + +

jQuery Test

+

If you see this, jQuery is working.

+ + diff --git a/example/templates/mootools/index.html b/example/templates/mootools/index.html new file mode 100644 index 0000000..1dac10c --- /dev/null +++ b/example/templates/mootools/index.html @@ -0,0 +1,19 @@ + + + + MooTools Test + + + + + +

MooTools Test

+

If you see this, MooTools is working.

+ + diff --git a/example/templates/prototype/index.html b/example/templates/prototype/index.html new file mode 100644 index 0000000..c8fefc3 --- /dev/null +++ b/example/templates/prototype/index.html @@ -0,0 +1,20 @@ + + + + Prototype Test + + + + + +

Prototype Test

+

If you see this, Prototype is working.

+ + + -- cgit v1.2.3