From efbf45747bcd9e48ed1f98e7c39201a4e017c759 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Tue, 22 Nov 2011 02:05:41 -0500 Subject: [PATCH] removed erroneous cloning --- .../hot-cross-buns/hot-cross-buns.rkt | 25 +++++++++++++++++++ web-world/examples/hot-cross-buns/index.html | 9 +++++++ web-world/js-impl.js | 13 ++++++++-- 3 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 web-world/examples/hot-cross-buns/hot-cross-buns.rkt create mode 100644 web-world/examples/hot-cross-buns/index.html diff --git a/web-world/examples/hot-cross-buns/hot-cross-buns.rkt b/web-world/examples/hot-cross-buns/hot-cross-buns.rkt new file mode 100644 index 0000000..a904f7b --- /dev/null +++ b/web-world/examples/hot-cross-buns/hot-cross-buns.rkt @@ -0,0 +1,25 @@ +#lang planet dyoo/whalesong/cs019 + +(define-resource index.html) + +(define base-view (->view index.html)) + +(define view-with-buttons + (foldl (lambda (name a-view) + (view-bind (view-focus a-view name) + "click" + (lambda (world a-view) + (begin + (printf "here: ~s\n" (view-attr + a-view + "checked")) + world)))) + base-view + '("hot" "cross" "buns"))) + +(define (draw w v) + v) + +(big-bang '() + (initial-view view-with-buttons) + (to-draw draw)) \ No newline at end of file diff --git a/web-world/examples/hot-cross-buns/index.html b/web-world/examples/hot-cross-buns/index.html new file mode 100644 index 0000000..0a387d3 --- /dev/null +++ b/web-world/examples/hot-cross-buns/index.html @@ -0,0 +1,9 @@ + +Hot Cross Buns + +Hot +Cross +Buns + +
+ diff --git a/web-world/js-impl.js b/web-world/js-impl.js index 4432f2f..ee8c070 100644 --- a/web-world/js-impl.js +++ b/web-world/js-impl.js @@ -44,6 +44,15 @@ var shallowCloneNode = function(node) { var result = node.cloneNode(false); + var i; + // copy over the attributes as well + if (node.attributes) { + for (i = 0; i < node.attributes.length; i++) { + console.log('copying: ', node.attributes[i]); + $(result).attr(node.attributes[i].name, + node.attributes[i].value); + } + } $(result).data($(node).data()); return result; }; @@ -204,7 +213,7 @@ }; MockView.prototype.getAttr = function(name) { - return this.cursor.node[0].getAttribute(name); + return $(this.cursor.node[0]).attr(name); }; @@ -594,7 +603,7 @@ $(document.head).append($(this.top).children("title").clone(true)); $(document.head).append($(this.top).children("link").clone(true)); - $(top).append($(this.top).clone(true)); + $(top).append($(this.top)); // The snip here is meant to accomodate weirdness with canvas dom // elements. cloning a canvas doesn't preserve how it draws.