-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.xml
More file actions
56 lines (49 loc) · 1.71 KB
/
example.xml
File metadata and controls
56 lines (49 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="utf-8"?>
<context xmlns="http://www.blisted.org/ns/joice/">
<!-- text/javascript;debug runs the IE-incompatible jit loader which keeps
track of the actual source location... -->
<script type="text/javascript" src="src/main/javascript/xmvc/ControllerScope.js"/>
<script type="text/javascript" src="src/main/javascript/xmvc/Transformer.js"/>
<script type="text/javascript" src="src/main/javascript/xmvc/Configuration.js"/>
<script type="text/javascript;debug" src="example.js"/>
<object id="baz" constructor="Baz">
<argument>
<array>
<value>1</value>
<value>2</value>
<value>3</value>
<value>4</value>
</array>
</argument>
</object>
<object id="bar" constructor="Bar">
<property name="message" value="${message}"/>
<property name="test">
<object>
<property name="member" value="And anonymous objects..."/>
</object>
</property>
</object>
<object id="foo" constructor="Foo">
<argument object="bar"/>
</object>
<object id="controller" constructor="Controller" initialization="eager">
<argument>
<xml>
<controller>
<node id="ping">
<action type="click" object="greeter" handler="hello">
<transformer type="xslt" path="//body" behavior="append"
src="example.xsl">
<param name="message" value="Hello, world"/>
</transformer>
</action>
</node>
<node path="//div[contains(@class, 'dialog')]/input[@type = 'submit']">
<action type="click" object="greeter" handler="goodbye"/>
</node>
</controller>
</xml>
</argument>
</object>
</context>