|
1 <?xml version="1.0"?> |
|
2 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
|
3 <window |
|
4 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
|
5 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
|
6 xmlns:xbl="http://www.mozilla.org/xbl" |
|
7 xmlns:html="http://www.w3.org/1999/xhtml" |
|
8 > |
|
9 <bindings xmlns="http://www.mozilla.org/xbl"> |
|
10 <binding id="serverpost_base"> |
|
11 <implementation> |
|
12 <method name="getSuccessfulControls"> |
|
13 <parameter name="aNode"/> |
|
14 <body><![CDATA[ |
|
15 dump("<html:input type="file"/> has not been tested yet! This may not work!!!\n"); |
|
16 ]]></body> |
|
17 </method> |
|
18 |
|
19 <method name='finalizeAndSubmit'> |
|
20 <body> |
|
21 return true; |
|
22 </body> |
|
23 </method> |
|
24 </implementation> |
|
25 </binding> |
|
26 </bindings> |
|
27 |
|
28 <html:style type="text/css"><![CDATA[ |
|
29 @namespace xbl url("http://www.mozilla.org/xbl"); |
|
30 @namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
|
31 |
|
32 xbl|bindings { |
|
33 display: none; |
|
34 } |
|
35 |
|
36 xul|serverpost { |
|
37 -moz-binding: url("#serverpost_base"); |
|
38 } |
|
39 |
|
40 ]]></html:style> |
|
41 |
|
42 <serverpost/> |
|
43 <serverpost/> |
|
44 </window> |