Author: gotcha
Date: Sat Dec  8 16:27:20 2007
New Revision: 49560

Modified:
   
kukit/kss.core/branch/finish-closures/kss/core/plugins/core/demo/parameterfunction/forms.kss
Log:
replace deprecated executeCommand

Modified: 
kukit/kss.core/branch/finish-closures/kss/core/plugins/core/demo/parameterfunction/forms.kss
==============================================================================
--- 
kukit/kss.core/branch/finish-closures/kss/core/plugins/core/demo/parameterfunction/forms.kss
        (original)
+++ 
kukit/kss.core/branch/finish-closures/kss/core/plugins/core/demo/parameterfunction/forms.kss
        Sat Dec  8 16:27:20 2007
@@ -1,56 +1,48 @@
 #text:click {
-    action-client: executeCommand;
-    executeCommand-name: replaceInnerHTML;
-    executeCommand-selector: "#target";
-    executeCommand-html: currentFormVar();
+    action-client: replaceInnerHTML;
+    replaceInnerHTML-kssSelector: "#target";
+    replaceInnerHTML-html: currentFormVar();
 } 
 
 #text-by-name:click {
-    action-client: executeCommand;
-    executeCommand-name: replaceInnerHTML;
-    executeCommand-selector: "#target";
-    executeCommand-html: currentFormVar(text-by-name);
+    action-client: replaceInnerHTML;
+    replaceInnerHTML-kssSelector: "#target";
+    replaceInnerHTML-html: currentFormVar(text-by-name);
 } 
 
 #text-by-kssname:click {
-    action-client: executeCommand;
-    executeCommand-name: replaceInnerHTML;
-    executeCommand-selector: "#target";
-    executeCommand-html: currentFormVar(kssAttr(key1, true));
+    action-client: replaceInnerHTML;
+    replaceInnerHTML-kssSelector: "#target";
+    replaceInnerHTML-html: currentFormVar(kssAttr(key1, true));
 }
 #textarea:click {
-    action-client: executeCommand;
-    executeCommand-name: replaceInnerHTML;
-    executeCommand-selector: "#target";
-    executeCommand-html: currentFormVar();
+    action-client: replaceInnerHTML;
+    replaceInnerHTML-kssSelector: "#target";
+    replaceInnerHTML-html: currentFormVar();
 } 
 
 #textarea-by-name:click {
-    action-client: executeCommand;
-    executeCommand-name: replaceInnerHTML;
-    executeCommand-selector: "#target";
-    executeCommand-html: currentFormVar("textarea-by-name");
+    action-client: replaceInnerHTML;
+    replaceInnerHTML-kssSelector: "#target";
+    replaceInnerHTML-html: currentFormVar("textarea-by-name");
 } 
 
 #radio1:click {
-    action-client: executeCommand;
-    executeCommand-name: replaceInnerHTML;
-    executeCommand-selector: "#target";
-    executeCommand-html: currentFormVar();
+    action-client: replaceInnerHTML;
+    replaceInnerHTML-kssSelector: "#target";
+    replaceInnerHTML-html: currentFormVar();
 } 
 
 #radio2:click {
-    action-client: executeCommand;
-    executeCommand-name: replaceInnerHTML;
-    executeCommand-selector: "#target";
-    executeCommand-html: currentFormVar();
+    action-client: replaceInnerHTML;
+    replaceInnerHTML-kssSelector: "#target";
+    replaceInnerHTML-html: currentFormVar();
 } 
 
 #radio-by-name:click {
-    action-client: executeCommand;
-    executeCommand-name: replaceInnerHTML;
-    executeCommand-selector: "#target";
-    executeCommand-html: currentFormVar(radio-by-name);
+    action-client: replaceInnerHTML;
+    replaceInnerHTML-kssSelector: "#target";
+    replaceInnerHTML-html: currentFormVar(radio-by-name);
 } 
 
 #fullform-simple:click {
@@ -79,10 +71,9 @@
 }
 
 #single-select:click {
-    action-client: executeCommand;
-    executeCommand-name: replaceInnerHTML;
-    executeCommand-selector: "#target";
-    executeCommand-html: currentFormVar(single-select);
+    action-client: replaceInnerHTML;
+    replaceInnerHTML-kssSelector: "#target";
+    replaceInnerHTML-html: currentFormVar(single-select);
 } 
 
 #multiple-select:click {
_______________________________________________
Kukit-checkins mailing list
[email protected]
http://codespeak.net/mailman/listinfo/kukit-checkins

Reply via email to