Author: reebalazs Date: Mon Oct 1 16:06:38 2007 New Revision: 47075 Modified: kukit/kss.core/trunk/kss/core/browser/kukitresponse.pt Log: base2 followup: further simplify kukit payload All is in the same kukit namespace, no namespace quirks are needed
Modified: kukit/kss.core/trunk/kss/core/browser/kukitresponse.pt ============================================================================== --- kukit/kss.core/trunk/kss/core/browser/kukitresponse.pt (original) +++ kukit/kss.core/trunk/kss/core/browser/kukitresponse.pt Mon Oct 1 16:06:38 2007 @@ -1,19 +1,19 @@ <?xml version="1.0" ?> -<root xmlns:kukit="http://www.kukit.org/commands/1.0" +<kukit xmlns="http://www.kukit.org/commands/1.0" xmlns:tal="http://xml.zope.org/namespaces/tal" xmlns:metal="http://xml.zope.org/namespaces/metal"> -<kukit:commands> -<kukit:command tal:repeat="command context" +<commands> +<command tal:repeat="command context" selector="div#demo" name="setHtmlAsChild" selectorType="" tal:attributes="selector python: command.getSelector(); name python: command.getName(); selectorType python: command.getSelectorType()"> - <kukit:param tal:repeat="param python: command.params" name="html" + <param tal:repeat="param python: command.params" name="html" tal:attributes="name python: param.name" tal:content="structure python: param.content"> <![CDATA[<h1 xmlns="http://www.w3.org/1999/xhtml">it worked</h1>]]> - </kukit:param> -</kukit:command> -</kukit:commands> -</root> + </param> +</command> +</commands> +</kukit> _______________________________________________ Kukit-checkins mailing list [email protected] http://codespeak.net/mailman/listinfo/kukit-checkins
