summaryrefslogtreecommitdiffstats
path: root/funcweb
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-07-12 00:33:11 +0300
committermakkalot <makkalot@gmail.com>2008-07-12 00:33:11 +0300
commitf349efa2e19a4af0327a790c7235c129f01bf9ec (patch)
tree9edb492ac44ec47adad442e188c9767b9a6de876 /funcweb
parent77ca0bbfebe9d53254186b6388aa98eb0957cacf (diff)
downloadfunc-f349efa2e19a4af0327a790c7235c129f01bf9ec.tar.gz
func-f349efa2e19a4af0327a790c7235c129f01bf9ec.tar.xz
func-f349efa2e19a4af0327a790c7235c129f01bf9ec.zip
delete some template files we wont use :)
Diffstat (limited to 'funcweb')
-rw-r--r--funcweb/funcweb/templates/method.html22
-rw-r--r--funcweb/funcweb/templates/method_args.html1
-rw-r--r--funcweb/funcweb/templates/minion.html16
-rw-r--r--funcweb/funcweb/templates/minions.html10
-rw-r--r--funcweb/funcweb/templates/run.html9
5 files changed, 0 insertions, 58 deletions
diff --git a/funcweb/funcweb/templates/method.html b/funcweb/funcweb/templates/method.html
deleted file mode 100644
index a629da8..0000000
--- a/funcweb/funcweb/templates/method.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:py="http://genshi.edgewall.org/"
- xmlns:xi="http://www.w3.org/2001/XInclude">
-
-
-<body>
- <div class="method">
- ${minion}.${module}.${method}
-
- <form action="" method="GET" onsubmit="myj('#results').hide().load('/run/${minion}/${module}/${method}/').show('slow'); return false;">
- <input type="text" name="arguments" id="methodargs" class="methodargs"/>
- </form>
- <div class="results" id="results" />
-
- </div>
-</body>
-</html>
-
-
-
-
diff --git a/funcweb/funcweb/templates/method_args.html b/funcweb/funcweb/templates/method_args.html
deleted file mode 100644
index 8b13789..0000000
--- a/funcweb/funcweb/templates/method_args.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/funcweb/funcweb/templates/minion.html b/funcweb/funcweb/templates/minion.html
deleted file mode 100644
index 7b725ba..0000000
--- a/funcweb/funcweb/templates/minion.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:py="http://genshi.edgewall.org/"
- xmlns:xi="http://www.w3.org/2001/XInclude">
-
-<body>
- <div id="modules" class="modules">
- <ul py:for="minion, mods in modules.items()">
- <h2>${minion[:13]}</h2>
- <li py:for="module in mods">
- <a href="#" onclick="myj('#col5').hide();myj('#col3').hide().load('/funcweb/minion/${minion}/${module}').show('slow');">${module}</a>
- </li>
- </ul>
- </div>
-</body>
-</html>
diff --git a/funcweb/funcweb/templates/minions.html b/funcweb/funcweb/templates/minions.html
deleted file mode 100644
index bcc8f1f..0000000
--- a/funcweb/funcweb/templates/minions.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:py="http://genshi.edgewall.org/"
- xmlns:xi="http://www.w3.org/2001/XInclude">
- <xi:include href="master.html"/>
- <head/>
-<body>
- </body>
-</html>
-
diff --git a/funcweb/funcweb/templates/run.html b/funcweb/funcweb/templates/run.html
deleted file mode 100644
index 7ae047b..0000000
--- a/funcweb/funcweb/templates/run.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:py="http://genshi.edgewall.org/"
- xmlns:xi="http://www.w3.org/2001/XInclude">
- <body>
-
- ${results.values()[0]}
-</body>
-</html>