summaryrefslogtreecommitdiffstats
path: root/trunk/infrastructure/ace/www/dev.html
diff options
context:
space:
mode:
authorEgil Moeller <egil.moller@freecode.no>2010-03-22 00:16:53 +0100
committerEgil Moeller <egil.moller@freecode.no>2010-03-22 00:16:53 +0100
commitfc00cfedd6c25d1634a1e0d28a7b7bc5f42e1cd7 (patch)
tree928419d6bfe794865e4b8f0634bd792f795c4b8a /trunk/infrastructure/ace/www/dev.html
parent0fdab3db005c4fa31fb8306b573c0b35073d3e56 (diff)
parentd56b9b3b82cdebcaeb00eec0fcb4326ad21adaa8 (diff)
downloadetherpad-fc00cfedd6c25d1634a1e0d28a7b7bc5f42e1cd7.tar.gz
etherpad-fc00cfedd6c25d1634a1e0d28a7b7bc5f42e1cd7.tar.bz2
etherpad-fc00cfedd6c25d1634a1e0d28a7b7bc5f42e1cd7.zip
Merge branch 'master' into plugin-framework
Diffstat (limited to 'trunk/infrastructure/ace/www/dev.html')
-rw-r--r--trunk/infrastructure/ace/www/dev.html39
1 files changed, 0 insertions, 39 deletions
diff --git a/trunk/infrastructure/ace/www/dev.html b/trunk/infrastructure/ace/www/dev.html
deleted file mode 100644
index 0a9768e..0000000
--- a/trunk/infrastructure/ace/www/dev.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!DOCTYPE html PUBLIC
- "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html debug="true">
- <head>
- <script src="jquery-1.2.1.js"></script>
- <script src="ace2_common.js"></script>
- <script src="ace2_outer.js"></script>
- <script src="firebug/firebug.js"></script>
- <script>
-function updateHTMLDisplay(html) {
- $("#htmldisplay").html(html);
-}
-
-function addMessage(str) {
- var li = document.createElement("li");
- li.innerHTML = str;
- $("#messages").prepend(li);
-}
- </script>
- <style>
- #devstuff {
- background-color: #ddd;
- padding: 1em;
- }
- #iframecontainer iframe { width: 500px; height: 300px; }
- </style>
- </head>
- <body>
- <div id="iframecontainer"><!-- --></div>
- <hr>
- <div id="devstuff">
- <p><input type="text" id="cmdinput" size="100">
- <button onclick="$('#cmdresult').html(htmlPrettyEscape(String(eval($('#cmdinput').get(0).value))))">Execute</button></p>
- <p id="cmdresult"><!-- --></p>
- <p id="htmldisplay"><!-- --></p>
- <ul id="messages"><!-- --></ul>
- </div>
- </body>
-</html>