Changeset 230
- Timestamp:
- 08/03/06 00:23:12 (2 years ago)
- Files:
-
- trunk/build/manifests/jelix-dev.mn (modified) (1 diff)
- trunk/lib/jelix-www/xul/jxbl.css (modified) (1 diff)
- trunk/lib/jelix-www/xul/jxbl.xml (modified) (2 diffs)
- trunk/lib/jelix/docs/workflow_action.sxd (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/manifests/jelix-dev.mn
r209 r230 138 138 cmdline.php.tpl 139 139 140 cd lib/jelix/docs 141 workflow_action.sxd 142 140 143 cd lib/jelix/docs/ns 141 144 dao.rng trunk/lib/jelix-www/xul/jxbl.css
r199 r230 10 10 -moz-binding: url("jxbl.xml#remotetreecriterion"); 11 11 } 12 13 14 15 xul|command#foo { -moz-binding:url("jxbl.xml#task") }trunk/lib/jelix-www/xul/jxbl.xml
r199 r230 53 53 if(value !== null){ 54 54 if(query != '') query+='&'; 55 query += node.getAttribute('name') +'='+ value;55 query += node.getAttribute('name') +'='+encodeURIComponent(value); 56 56 } 57 57 node=tw.nextNode(); … … 87 87 88 88 </binding> 89 <binding id="task">90 <content><children/></content>91 <implementation>92 <constructor><![CDATA[93 alert("ouai");94 ]]>95 </constructor>96 <method name="show">97 <body><![CDATA[98 alert(this.firstChild.getAttribute('label'));99 ]]></body>100 </method>101 </implementation>102 <handlers>103 <handler event="command">104 this.show();105 </handler>106 </handlers>107 108 </binding>109 110 </bindings>
