From 2974c81672cbc1179f0eea085379ab14bc206216 Mon Sep 17 00:00:00 2001
From: Anthony Grimes
Date: Tue, 29 Nov 2011 08:08:00 -0600
Subject: [PATCH 01/44] Use jQuery's 'trim' function so that things work on IE
8. Fixes #20.
---
resources/public/javascript/tryclojure.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/resources/public/javascript/tryclojure.js b/resources/public/javascript/tryclojure.js
index dec3762..4e04303 100644
--- a/resources/public/javascript/tryclojure.js
+++ b/resources/public/javascript/tryclojure.js
@@ -125,7 +125,7 @@ function onValidate(input) {
}
function onHandle(line, report) {
- var input = line.trim();
+ var input = $.trim(line);
// handle commands
if (doCommand(input, report)) return;
From bc0a0b870aa6cc8eecb92adf640335625abca8aa Mon Sep 17 00:00:00 2001
From: Anthony Grimes
Date: Tue, 29 Nov 2011 08:37:09 -0600
Subject: [PATCH 02/44] Move to a more traditional web app layout.
---
project.clj | 2 +-
src/tryclojure/models/eval.clj | 41 +++++++++++
src/tryclojure/server.clj | 18 +++++
src/tryclojure/views/eval.clj | 16 +++++
src/tryclojure/{core.clj => views/home.clj} | 78 +--------------------
src/tryclojure/views/tutorial.clj | 5 ++
6 files changed, 84 insertions(+), 76 deletions(-)
create mode 100644 src/tryclojure/models/eval.clj
create mode 100644 src/tryclojure/server.clj
create mode 100644 src/tryclojure/views/eval.clj
rename src/tryclojure/{core.clj => views/home.clj} (63%)
create mode 100644 src/tryclojure/views/tutorial.clj
diff --git a/project.clj b/project.clj
index 2120500..c7974b4 100644
--- a/project.clj
+++ b/project.clj
@@ -8,6 +8,6 @@
;; this line to .cake/config: jvm.opts = -Djava.security.policy=example.policy
:jvm-opts ["-Djava.security.policy=example.policy""-Xmx80M"]
:hooks [leiningen.fetch-js]
- :main tryclojure.core)
+ :main tryclojure.server)
diff --git a/src/tryclojure/models/eval.clj b/src/tryclojure/models/eval.clj
new file mode 100644
index 0000000..da9b1f1
--- /dev/null
+++ b/src/tryclojure/models/eval.clj
@@ -0,0 +1,41 @@
+(ns tryclojure.models.eval
+ (:use [clojail.testers :only [secure-tester-without-def]]
+ [clojail.core :only [sandbox]]
+ [clojure.stacktrace :only [root-cause]])
+ (:require [noir.session :as session])
+ (:import java.io.StringWriter
+ java.util.concurrent.TimeoutException))
+
+(defn eval-form [form sbox]
+ (with-open [out (StringWriter.)]
+ (let [result (sbox form {#'*out* out})]
+ {:expr form
+ :result [out result]})))
+
+(defn eval-string [expr sbox]
+ (let [form (binding [*read-eval* false] (read-string expr))]
+ (eval-form form sbox)))
+
+(def try-clojure-tester
+ (into secure-tester-without-def
+ #{'tryclojure.core}))
+
+(defn make-sandbox []
+ (sandbox try-clojure-tester
+ :timeout 2000
+ :init '(do (use '[clojure.repl :only [doc]])
+ (future (Thread/sleep 600000)
+ (-> *ns* .getName remove-ns)))))
+
+(defn find-sb [old]
+ (if-let [sb (get old "sb")]
+ old
+ (assoc old "sb" (make-sandbox))))
+
+(defn eval-request [expr]
+ (try
+ (eval-string expr (get (session/swap! find-sb) "sb"))
+ (catch TimeoutException _
+ {:error true :message "Execution Timed Out!"})
+ (catch Exception e
+ {:error true :message (str (root-cause e))})))
\ No newline at end of file
diff --git a/src/tryclojure/server.clj b/src/tryclojure/server.clj
new file mode 100644
index 0000000..a606a15
--- /dev/null
+++ b/src/tryclojure/server.clj
@@ -0,0 +1,18 @@
+(ns tryclojure.server
+ (:use [ring.middleware.file :only [wrap-file]])
+ (:require [noir.server :as server]))
+
+(server/add-middleware wrap-file (System/getProperty "user.dir"))
+(server/load-views "src/tryclojure/views")
+
+(defn to-port [s]
+ (when-let [port s] (Long. port)))
+
+(defn tryclj [& [port]]
+ (server/start
+ (or (to-port port)
+ (to-port (System/getenv "PORT")) ;; For deploying to Heroku
+ 8801)
+ {:session-cookie-attrs {:max-age 600}}))
+
+(defn -main [& args] (tryclj (first args)))
\ No newline at end of file
diff --git a/src/tryclojure/views/eval.clj b/src/tryclojure/views/eval.clj
new file mode 100644
index 0000000..782e40e
--- /dev/null
+++ b/src/tryclojure/views/eval.clj
@@ -0,0 +1,16 @@
+(ns tryclojure.views.eval
+ (:use [noir.core :only [defpage]]
+ [noir.response :only [json]]
+ [tryclojure.models.eval :only [eval-request]]))
+
+(defpage "/eval.json" {:keys [expr jsonp]}
+ (update-in
+ (json
+ (let [{:keys [expr result error message] :as res} (eval-request expr)]
+ (if error
+ res
+ (let [[out res] result]
+ {:expr (pr-str expr)
+ :result (str out (pr-str res))}))))
+ [:body]
+ #(if jsonp (str jsonp "(" % ")") %)))
\ No newline at end of file
diff --git a/src/tryclojure/core.clj b/src/tryclojure/views/home.clj
similarity index 63%
rename from src/tryclojure/core.clj
rename to src/tryclojure/views/home.clj
index 4932813..db6f1a4 100644
--- a/src/tryclojure/core.clj
+++ b/src/tryclojure/views/home.clj
@@ -1,15 +1,6 @@
-(ns tryclojure.core
- (:use [hiccup form-helpers page-helpers]
- ring.middleware.file
- noir.core
- [noir.response :only [json]]
- [clojure.stacktrace :only [root-cause]]
- [clojail.core :only [sandbox eagerly-consume]]
- [clojail.testers :only [secure-tester-without-def]])
- (:require [noir.server :as server]
- [noir.session :as session])
- (:import java.io.StringWriter
- java.util.concurrent.TimeoutException))
+(ns tryclojure.views.home
+ (:use [noir.core :only [defpartial defpage]]
+ [hiccup form-helpers page-helpers]))
(defpartial links []
(unordered-list
@@ -104,66 +95,3 @@
(defpage "/links" []
(links))
-
-(defpage [:post "/tutorial"] {n :n}
- (slurp (str "resources/public/tutorial/page" n ".html")))
-
-(defn eval-form [form sbox]
- (with-open [out (java.io.StringWriter.)]
- (let [result (sbox form {#'*out* out})]
- {:expr form
- :result [out result]})))
-
-(defn eval-string [expr sbox]
- (let [form (binding [*read-eval* false] (read-string expr))]
- (eval-form form sbox)))
-
-(def try-clojure-tester
- (into secure-tester-without-def
- #{'tryclojure.core}))
-
-(defn make-sandbox []
- (sandbox try-clojure-tester
- :timeout 2000
- :init '(do (use '[clojure.repl :only [doc]])
- (future (Thread/sleep 600000)
- (-> *ns* .getName remove-ns)))))
-
-(defn find-sb [old]
- (if-let [sb (get old "sb")]
- old
- (assoc old "sb" (make-sandbox))))
-
-(defn eval-request [expr]
- (try
- (eval-string expr (get (session/swap! find-sb) "sb"))
- (catch TimeoutException _
- {:error true :message "Execution Timed Out!"})
- (catch Exception e
- {:error true :message (str (root-cause e))})))
-
-(defpage "/eval.json" {:keys [expr jsonp]}
- (update-in
- (json
- (let [{:keys [expr result error message] :as res} (eval-request expr)]
- (if error
- res
- (let [[out res] result]
- {:expr (pr-str expr)
- :result (str out (pr-str res))}))))
- [:body]
- #(if jsonp (str jsonp "(" % ")") %)))
-
-(server/add-middleware wrap-file (System/getProperty "user.dir"))
-
-(defn to-port [s]
- (when-let [port s] (Long. port)))
-
-(defn tryclj [& [port]]
- (server/start
- (or (to-port port)
- (to-port (System/getenv "PORT")) ;; For deploying to Heroku
- 8801)
- {:session-cookie-attrs {:max-age 600}}))
-
-(defn -main [& args] (tryclj (first args)))
\ No newline at end of file
diff --git a/src/tryclojure/views/tutorial.clj b/src/tryclojure/views/tutorial.clj
new file mode 100644
index 0000000..69538ad
--- /dev/null
+++ b/src/tryclojure/views/tutorial.clj
@@ -0,0 +1,5 @@
+(ns tryclojure.views.tutorial
+ (:use [noir.core :only [defpage]]))
+
+(defpage [:post "/tutorial"] {n :n}
+ (slurp (str "resources/public/tutorial/page" n ".html")))
\ No newline at end of file
From a44c152f50f6834d4737e8d395e4a45c13a4bcab Mon Sep 17 00:00:00 2001
From: Anthony Grimes
Date: Tue, 29 Nov 2011 08:37:41 -0600
Subject: [PATCH 03/44] This used to be used more than once, but not anymore.
---
src/tryclojure/views/home.clj | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/tryclojure/views/home.clj b/src/tryclojure/views/home.clj
index db6f1a4..d1da94b 100644
--- a/src/tryclojure/views/home.clj
+++ b/src/tryclojure/views/home.clj
@@ -12,8 +12,6 @@
(link-to "http://disclojure.org" "Disclojure")
(link-to "http://planet.clojure.in" "Planet Clojure")]))
-(def github-link (link-to "http://github.com/Raynes/tryclojure" "github"))
-
(defpartial about-html []
[:p.bottom
"Please note that this REPL is sandboxed, so you wont be able to do everything in it "
@@ -26,7 +24,7 @@
"It'll be in an entirely new namespace/sandbox."]
[:p.bottom
"You can find the site's source and such on its "
- github-link
+ (link-to "http://github.com/Raynes/tryclojure" "github")
" page."]
[:p.bottom
"TryClojure is written in Clojure and JavaScript (JQuery), powered by "
From 006cb693e8ce3a35d2eb598990870cb64617c871 Mon Sep 17 00:00:00 2001
From: Anthony Grimes
Date: Tue, 29 Nov 2011 09:57:58 -0600
Subject: [PATCH 04/44] Add some eval tests.
---
test/tryclojure/core_test.clj | 6 ------
test/tryclojure/eval_test.clj | 18 ++++++++++++++++++
2 files changed, 18 insertions(+), 6 deletions(-)
delete mode 100644 test/tryclojure/core_test.clj
create mode 100644 test/tryclojure/eval_test.clj
diff --git a/test/tryclojure/core_test.clj b/test/tryclojure/core_test.clj
deleted file mode 100644
index d91e716..0000000
--- a/test/tryclojure/core_test.clj
+++ /dev/null
@@ -1,6 +0,0 @@
-(ns tryclojure.core-test
- (:use [tryclojure.core] :reload-all)
- (:use [clojure.test]))
-
-(deftest replace-me ;; FIXME: write
- (is false))
diff --git a/test/tryclojure/eval_test.clj b/test/tryclojure/eval_test.clj
new file mode 100644
index 0000000..041ae6c
--- /dev/null
+++ b/test/tryclojure/eval_test.clj
@@ -0,0 +1,18 @@
+(ns tryclojure.eval-test
+ (:use tryclojure.models.eval
+ clojure.test)
+ (:require noir.session))
+
+(def sb (make-sandbox))
+
+(deftest eval-form-test
+ (let [form "(do (println 10) (+ 3 3))"
+ result (eval-string form sb)]
+ (is (= "10\n" (-> result :result first str)))
+ (is (= "6" (-> result :result second str)))
+ (is (= (read-string form) (-> result :expr)))))
+
+(alter-var-root #'noir.session/*noir-session* (constantly (atom {})))
+
+(deftest eval-request-test
+ (is (= "Execution Timed Out!" (:message (eval-request "(while true)")))))
\ No newline at end of file
From 8e132f046391b1c5fb2a383154f02ccf2f4a35ad Mon Sep 17 00:00:00 2001
From: Anthony Grimes
Date: Tue, 29 Nov 2011 10:06:38 -0600
Subject: [PATCH 05/44] Use jsonp from noir.response.
---
src/tryclojure/views/eval.clj | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/tryclojure/views/eval.clj b/src/tryclojure/views/eval.clj
index 782e40e..8010a34 100644
--- a/src/tryclojure/views/eval.clj
+++ b/src/tryclojure/views/eval.clj
@@ -1,16 +1,16 @@
(ns tryclojure.views.eval
(:use [noir.core :only [defpage]]
- [noir.response :only [json]]
- [tryclojure.models.eval :only [eval-request]]))
+ [tryclojure.models.eval :only [eval-request]])
+ (:require [noir.response :as resp]))
(defpage "/eval.json" {:keys [expr jsonp]}
- (update-in
- (json
- (let [{:keys [expr result error message] :as res} (eval-request expr)]
- (if error
- res
- (let [[out res] result]
- {:expr (pr-str expr)
- :result (str out (pr-str res))}))))
- [:body]
- #(if jsonp (str jsonp "(" % ")") %)))
\ No newline at end of file
+ (let [{:keys [expr result error message] :as res} (eval-request expr)
+ data (if error
+ res
+ (let [[out res] result]
+ {:expr (pr-str expr)
+ :result (str out (pr-str res))}))]
+
+ (if jsonp
+ (resp/jsonp jsonp data)
+ (resp/json data))))
\ No newline at end of file
From e271f59f20dd80c07357a6d44dcab8c5d0096b4d Mon Sep 17 00:00:00 2001
From: Anthony Grimes
Date: Tue, 29 Nov 2011 10:06:53 -0600
Subject: [PATCH 06/44] Add a .travis.yml file.
---
.travis.yml | 1 +
1 file changed, 1 insertion(+)
create mode 100644 .travis.yml
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..4f42080
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1 @@
+language: clojure
\ No newline at end of file
From b9d2d30f953620e45938d611c3e4c2838e089e71 Mon Sep 17 00:00:00 2001
From: Michael Kopinsky '(1 2 3 4)
Sets: #{1 2 3 4}
Vectors and lists are sequential and ordered collections. You'll see vectors used much more than lists.
- Maps are typical hash-maps. Unordered collections indexed by keys. The keys can be any object. Here,
+ Maps are typical hash-maps - unordered collections indexed by keys. The keys can be any object. Here,
we've used a keyword, :foo as a key. Keywords make excellent keys. We also used a number.
Sets are mathematical sets.
Tested on:
+=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, +CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, +g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, +text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, +setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return hl[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= +h[3];l=0;for(m=h.length;l =0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== +"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, +h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l ";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& +q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML=""; +if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); +(function(){var g=s.createElement("div");g.innerHTML="";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: +function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q =0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f
0)for(var j=d;j 0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= +{},i;if(f&&a.length){e=0;for(var o=a.length;e -1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== +"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", +d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? +a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== +1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/"+d+">"},F={option:[1,""],legend:[1,""],thead:[1," ","
"],tr:[2,"","
"],td:[3,""],col:[2,"
"," "],area:[1,""],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div
"," ",""];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= +c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, +wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, +prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, +this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); +return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, +""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); +return this}else{e=0;for(var j=d.length;e 0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", +""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]===" "&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= +c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? +c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= +function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= +Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, +"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= +a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= +a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/