Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
rivets
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
dacf10b9
authored
2013-09-16 23:30:19 -0700
by
Michael Richards
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Build 0.5.13.
1 parent
302b5fff
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
8 deletions
component.json
dist/rivets.js
dist/rivets.min.js
package.json
src/rivets.coffee
component.json
View file @
dacf10b
...
...
@@ -2,7 +2,7 @@
"name"
:
"rivets"
,
"repo"
:
"mikeric/rivets"
,
"description"
:
"Declarative data binding facility."
,
"version"
:
"0.5.1
2
"
,
"version"
:
"0.5.1
3
"
,
"keywords"
:
[
"data binding"
,
"templating"
],
"scripts"
:
[
"dist/rivets.js"
],
"main"
:
"dist/rivets.js"
,
...
...
dist/rivets.js
View file @
dacf10b
// Rivets.js
// version: 0.5.1
2
// version: 0.5.1
3
// author: Michael Richards
// license: MIT
(
function
()
{
var
Rivets
,
var
Rivets
,
jQuery
,
__bind
=
function
(
fn
,
me
){
return
function
(){
return
fn
.
apply
(
me
,
arguments
);
};
},
__slice
=
[].
slice
,
__hasProp
=
{}.
hasOwnProperty
,
...
...
@@ -12,6 +12,8 @@
Rivets
=
{};
jQuery
=
window
.
jQuery
||
window
.
Zepto
;
if
(
!
String
.
prototype
.
trim
)
{
String
.
prototype
.
trim
=
function
()
{
return
this
.
replace
(
/^
\s
+|
\s
+$/g
,
''
);
...
...
@@ -319,7 +321,7 @@
this
.
build
=
__bind
(
this
.
build
,
this
);
this
.
componentRegExp
=
__bind
(
this
.
componentRegExp
,
this
);
this
.
bindingRegExp
=
__bind
(
this
.
bindingRegExp
,
this
);
if
(
!
(
this
.
els
.
jquery
||
this
.
els
instanceof
Array
)
)
{
if
(
typeof
this
.
els
.
length
===
'undefined'
)
{
this
.
els
=
[
this
.
els
];
}
_ref
=
[
'config'
,
'binders'
,
'formatters'
];
...
...
dist/rivets.min.js
View file @
dacf10b
// Rivets.js
// version: 0.5.1
2
// version: 0.5.1
3
// author: Michael Richards
// license: MIT
!
function
(){
var
a
,
b
=
function
(
a
,
b
){
return
function
(){
return
a
.
apply
(
b
,
arguments
)}},
c
=
[].
slice
,
d
=
{}.
hasOwnProperty
,
e
=
function
(
a
,
b
){
function
c
(){
this
.
constructor
=
a
}
for
(
var
e
in
b
)
d
.
call
(
b
,
e
)
&&
(
a
[
e
]
=
b
[
e
]);
return
c
.
prototype
=
b
.
prototype
,
a
.
prototype
=
new
c
,
a
.
__super__
=
b
.
prototype
,
a
},
f
=
[].
indexOf
||
function
(
a
){
for
(
var
b
=
0
,
c
=
this
.
length
;
c
>
b
;
b
++
)
if
(
b
in
this
&&
this
[
b
]
===
a
)
return
b
;
return
-
1
};
a
=
{},
String
.
prototype
.
trim
||
(
String
.
prototype
.
trim
=
function
(){
return
this
.
replace
(
/^
\s
+|
\s
+$/g
,
""
)}),
a
.
Binding
=
function
(){
function
d
(
a
,
c
,
d
,
e
,
f
,
g
){
var
h
,
i
,
j
,
k
;
if
(
this
.
view
=
a
,
this
.
el
=
c
,
this
.
type
=
d
,
this
.
key
=
e
,
this
.
keypath
=
f
,
this
.
options
=
null
!=
g
?
g
:{},
this
.
update
=
b
(
this
.
update
,
this
),
this
.
unbind
=
b
(
this
.
unbind
,
this
),
this
.
bind
=
b
(
this
.
bind
,
this
),
this
.
publish
=
b
(
this
.
publish
,
this
),
this
.
sync
=
b
(
this
.
sync
,
this
),
this
.
set
=
b
(
this
.
set
,
this
),
this
.
eventHandler
=
b
(
this
.
eventHandler
,
this
),
this
.
formattedValue
=
b
(
this
.
formattedValue
,
this
),
!
(
this
.
binder
=
this
.
view
.
binders
[
d
])){
k
=
this
.
view
.
binders
;
for
(
h
in
k
)
j
=
k
[
h
],
"*"
!==
h
&&-
1
!==
h
.
indexOf
(
"*"
)
&&
(
i
=
new
RegExp
(
"^"
+
h
.
replace
(
"*"
,
".+"
)
+
"$"
),
i
.
test
(
d
)
&&
(
this
.
binder
=
j
,
this
.
args
=
new
RegExp
(
"^"
+
h
.
replace
(
"*"
,
"(.+)"
)
+
"$"
).
exec
(
d
),
this
.
args
.
shift
()))}
this
.
binder
||
(
this
.
binder
=
this
.
view
.
binders
[
"*"
]),
this
.
binder
instanceof
Function
&&
(
this
.
binder
=
{
routine
:
this
.
binder
}),
this
.
formatters
=
this
.
options
.
formatters
||
[],
this
.
model
=
this
.
key
?
this
.
view
.
models
[
this
.
key
]:
this
.
view
.
models
}
return
d
.
prototype
.
formattedValue
=
function
(
a
){
var
b
,
d
,
e
,
f
,
g
,
h
;
for
(
h
=
this
.
formatters
,
f
=
0
,
g
=
h
.
length
;
g
>
f
;
f
++
)
d
=
h
[
f
],
b
=
d
.
split
(
/
\s
+/
),
e
=
b
.
shift
(),
d
=
this
.
model
[
e
]
instanceof
Function
?
this
.
model
[
e
]:
this
.
view
.
formatters
[
e
],(
null
!=
d
?
d
.
read
:
void
0
)
instanceof
Function
?
a
=
d
.
read
.
apply
(
d
,[
a
].
concat
(
c
.
call
(
b
))):
d
instanceof
Function
&&
(
a
=
d
.
apply
(
null
,[
a
].
concat
(
c
.
call
(
b
))));
return
a
},
d
.
prototype
.
eventHandler
=
function
(
a
){
var
b
,
c
;
return
c
=
(
b
=
this
).
view
.
config
.
handler
,
function
(
d
){
return
c
.
call
(
a
,
this
,
d
,
b
)}},
d
.
prototype
.
set
=
function
(
a
){
var
b
;
return
a
=
a
instanceof
Function
&&!
this
.
binder
[
"function"
]?
this
.
formattedValue
(
a
.
call
(
this
.
model
)):
this
.
formattedValue
(
a
),
null
!=
(
b
=
this
.
binder
.
routine
)?
b
.
call
(
this
,
this
.
el
,
a
):
void
0
},
d
.
prototype
.
sync
=
function
(){
return
this
.
set
(
this
.
options
.
bypass
?
this
.
model
[
this
.
keypath
]:
this
.
view
.
config
.
adapter
.
read
(
this
.
model
,
this
.
keypath
))},
d
.
prototype
.
publish
=
function
(){
var
b
,
d
,
e
,
f
,
g
,
h
,
i
,
j
,
k
;
for
(
f
=
a
.
Util
.
getInputValue
(
this
.
el
),
i
=
this
.
formatters
.
slice
(
0
).
reverse
(),
g
=
0
,
h
=
i
.
length
;
h
>
g
;
g
++
)
d
=
i
[
g
],
b
=
d
.
split
(
/
\s
+/
),
e
=
b
.
shift
(),(
null
!=
(
j
=
this
.
view
.
formatters
[
e
])?
j
.
publish
:
void
0
)
&&
(
f
=
(
k
=
this
.
view
.
formatters
[
e
]).
publish
.
apply
(
k
,[
f
].
concat
(
c
.
call
(
b
))));
return
this
.
view
.
config
.
adapter
.
publish
(
this
.
model
,
this
.
keypath
,
f
)},
d
.
prototype
.
bind
=
function
(){
var
a
,
b
,
c
,
d
,
e
,
f
,
g
,
h
,
i
;
if
(
null
!=
(
f
=
this
.
binder
.
bind
)
&&
f
.
call
(
this
,
this
.
el
),
this
.
options
.
bypass
?
this
.
sync
():(
this
.
view
.
config
.
adapter
.
subscribe
(
this
.
model
,
this
.
keypath
,
this
.
sync
),
this
.
view
.
config
.
preloadData
&&
this
.
sync
()),
null
!=
(
g
=
this
.
options
.
dependencies
)?
g
.
length
:
void
0
){
for
(
h
=
this
.
options
.
dependencies
,
i
=
[],
d
=
0
,
e
=
h
.
length
;
e
>
d
;
d
++
)
a
=
h
[
d
],
/^
\.
/
.
test
(
a
)?(
c
=
this
.
model
,
b
=
a
.
substr
(
1
)):(
a
=
a
.
split
(
"."
),
c
=
this
.
view
.
models
[
a
.
shift
()],
b
=
a
.
join
(
"."
)),
i
.
push
(
this
.
view
.
config
.
adapter
.
subscribe
(
c
,
b
,
this
.
sync
));
return
i
}},
d
.
prototype
.
unbind
=
function
(){
var
a
,
b
,
c
,
d
,
e
,
f
,
g
,
h
,
i
;
if
(
null
!=
(
f
=
this
.
binder
.
unbind
)
&&
f
.
call
(
this
,
this
.
el
),
this
.
options
.
bypass
||
this
.
view
.
config
.
adapter
.
unsubscribe
(
this
.
model
,
this
.
keypath
,
this
.
sync
),
null
!=
(
g
=
this
.
options
.
dependencies
)?
g
.
length
:
void
0
){
for
(
h
=
this
.
options
.
dependencies
,
i
=
[],
d
=
0
,
e
=
h
.
length
;
e
>
d
;
d
++
)
a
=
h
[
d
],
/^
\.
/
.
test
(
a
)?(
c
=
this
.
model
,
b
=
a
.
substr
(
1
)):(
a
=
a
.
split
(
"."
),
c
=
this
.
view
.
models
[
a
.
shift
()],
b
=
a
.
join
(
"."
)),
i
.
push
(
this
.
view
.
config
.
adapter
.
unsubscribe
(
c
,
b
,
this
.
sync
));
return
i
}},
d
.
prototype
.
update
=
function
(
a
){
var
b
;
return
null
==
a
&&
(
a
=
{}),
this
.
key
?
a
[
this
.
key
]
&&
(
this
.
options
.
bypass
||
this
.
view
.
config
.
adapter
.
unsubscribe
(
this
.
model
,
this
.
keypath
,
this
.
sync
),
this
.
model
=
a
[
this
.
key
],
this
.
options
.
bypass
?
this
.
sync
():(
this
.
view
.
config
.
adapter
.
subscribe
(
this
.
model
,
this
.
keypath
,
this
.
sync
),
this
.
view
.
config
.
preloadData
&&
this
.
sync
())):
this
.
sync
(),
null
!=
(
b
=
this
.
binder
.
update
)?
b
.
call
(
this
,
a
):
void
0
},
d
}(),
a
.
ComponentBinding
=
function
(
c
){
function
d
(
c
,
d
,
e
){
var
g
,
h
,
i
,
j
,
k
;
for
(
this
.
view
=
c
,
this
.
el
=
d
,
this
.
type
=
e
,
this
.
unbind
=
b
(
this
.
unbind
,
this
),
this
.
bind
=
b
(
this
.
bind
,
this
),
this
.
update
=
b
(
this
.
update
,
this
),
this
.
locals
=
b
(
this
.
locals
,
this
),
this
.
component
=
a
.
components
[
this
.
type
],
this
.
attributes
=
{},
this
.
inflections
=
{},
j
=
this
.
el
.
attributes
||
[],
h
=
0
,
i
=
j
.
length
;
i
>
h
;
h
++
)
g
=
j
[
h
],
k
=
g
.
name
,
f
.
call
(
this
.
component
.
attributes
,
k
)
>=
0
?
this
.
attributes
[
g
.
name
]
=
g
.
value
:
this
.
inflections
[
g
.
name
]
=
g
.
value
}
return
e
(
d
,
c
),
d
.
prototype
.
sync
=
function
(){},
d
.
prototype
.
locals
=
function
(
a
){
var
b
,
c
,
d
,
e
,
f
,
g
,
h
,
i
,
j
;
null
==
a
&&
(
a
=
this
.
view
.
models
),
f
=
{},
i
=
this
.
inflections
;
for
(
c
in
i
)
for
(
b
=
i
[
c
],
j
=
b
.
split
(
"."
),
g
=
0
,
h
=
j
.
length
;
h
>
g
;
g
++
)
e
=
j
[
g
],
f
[
c
]
=
(
f
[
c
]
||
a
)[
e
];
for
(
c
in
a
)
d
=
a
[
c
],
null
==
f
[
c
]
&&
(
f
[
c
]
=
d
);
return
f
},
d
.
prototype
.
update
=
function
(
a
){
var
b
;
return
null
!=
(
b
=
this
.
componentView
)?
b
.
update
(
this
.
locals
(
a
)):
void
0
},
d
.
prototype
.
bind
=
function
(){
var
b
,
c
;
return
null
!=
this
.
componentView
?
null
!=
(
c
=
this
.
componentView
)?
c
.
bind
():
void
0
:(
b
=
this
.
component
.
build
.
call
(
this
.
attributes
),(
this
.
componentView
=
new
a
.
View
(
b
,
this
.
locals
(),
this
.
view
.
options
)).
bind
(),
this
.
el
.
parentNode
.
replaceChild
(
b
,
this
.
el
))},
d
.
prototype
.
unbind
=
function
(){
var
a
;
return
null
!=
(
a
=
this
.
componentView
)?
a
.
unbind
():
void
0
},
d
}(
a
.
Binding
),
a
.
TextBinding
=
function
(
a
){
function
c
(
a
,
c
,
d
,
e
,
f
,
g
){
this
.
view
=
a
,
this
.
el
=
c
,
this
.
type
=
d
,
this
.
key
=
e
,
this
.
keypath
=
f
,
this
.
options
=
null
!=
g
?
g
:{},
this
.
sync
=
b
(
this
.
sync
,
this
),
this
.
formatters
=
this
.
options
.
formatters
||
[],
this
.
model
=
this
.
key
?
this
.
view
.
models
[
this
.
key
]:
this
.
view
.
models
}
return
e
(
c
,
a
),
c
.
prototype
.
binder
=
{
routine
:
function
(
a
,
b
){
return
a
.
data
=
null
!=
b
?
b
:
""
}},
c
.
prototype
.
sync
=
function
(){
return
c
.
__super__
.
sync
.
apply
(
this
,
arguments
)},
c
}(
a
.
Binding
),
a
.
View
=
function
(){
function
d
(
c
,
d
,
e
){
var
f
,
g
,
h
,
i
,
j
,
k
,
l
,
m
,
n
;
for
(
this
.
els
=
c
,
this
.
models
=
d
,
this
.
options
=
null
!=
e
?
e
:{},
this
.
update
=
b
(
this
.
update
,
this
),
this
.
publish
=
b
(
this
.
publish
,
this
),
this
.
sync
=
b
(
this
.
sync
,
this
),
this
.
unbind
=
b
(
this
.
unbind
,
this
),
this
.
bind
=
b
(
this
.
bind
,
this
),
this
.
select
=
b
(
this
.
select
,
this
),
this
.
build
=
b
(
this
.
build
,
this
),
this
.
componentRegExp
=
b
(
this
.
componentRegExp
,
this
),
this
.
bindingRegExp
=
b
(
this
.
bindingRegExp
,
this
),
this
.
els
.
jquery
||
this
.
els
instanceof
Array
||
(
this
.
els
=
[
this
.
els
]),
l
=
[
"config"
,
"binders"
,
"formatters"
],
j
=
0
,
k
=
l
.
length
;
k
>
j
;
j
++
){
if
(
g
=
l
[
j
],
this
[
g
]
=
{},
this
.
options
[
g
]){
m
=
this
.
options
[
g
];
for
(
f
in
m
)
h
=
m
[
f
],
this
[
g
][
f
]
=
h
}
n
=
a
[
g
];
for
(
f
in
n
)
h
=
n
[
f
],
null
==
(
i
=
this
[
g
])[
f
]
&&
(
i
[
f
]
=
h
)}
this
.
build
()}
return
d
.
prototype
.
bindingRegExp
=
function
(){
var
a
;
return
a
=
this
.
config
.
prefix
,
a
?
new
RegExp
(
"^data-"
+
a
+
"-"
):
/^data-/
},
d
.
prototype
.
componentRegExp
=
function
(){
var
a
,
b
;
return
new
RegExp
(
"^"
+
(
null
!=
(
a
=
null
!=
(
b
=
this
.
config
.
prefix
)?
b
.
toUpperCase
():
void
0
)?
a
:
"RV"
)
+
"-"
)},
d
.
prototype
.
build
=
function
(){
var
b
,
d
,
e
,
g
,
h
,
i
,
j
,
k
,
l
,
m
=
this
;
for
(
this
.
bindings
=
[],
i
=
[],
b
=
this
.
bindingRegExp
(),
e
=
this
.
componentRegExp
(),
d
=
function
(
b
,
c
,
d
,
e
){
var
f
,
g
,
h
,
i
,
j
,
k
,
l
,
n
,
o
,
p
;
return
k
=
{},
o
=
function
(){
var
a
,
b
,
c
,
d
;
for
(
c
=
e
.
split
(
"|"
),
d
=
[],
a
=
0
,
b
=
c
.
length
;
b
>
a
;
a
++
)
n
=
c
[
a
],
d
.
push
(
n
.
trim
());
return
d
}(),
f
=
function
(){
var
a
,
b
,
c
,
d
;
for
(
c
=
o
.
shift
().
split
(
"<"
),
d
=
[],
a
=
0
,
b
=
c
.
length
;
b
>
a
;
a
++
)
g
=
c
[
a
],
d
.
push
(
g
.
trim
());
return
d
}(),
l
=
f
.
shift
(),
p
=
l
.
split
(
/
\.
|:/
),
k
.
formatters
=
o
,
k
.
bypass
=-
1
!==
l
.
indexOf
(
":"
),
p
[
0
]?
i
=
p
.
shift
():(
i
=
null
,
p
.
shift
()),
j
=
p
.
join
(
"."
),(
h
=
f
.
shift
())
&&
(
k
.
dependencies
=
h
.
split
(
/
\s
+/
)),
m
.
bindings
.
push
(
new
a
[
b
](
m
,
c
,
d
,
i
,
j
,
k
))},
h
=
function
(
g
){
var
j
,
k
,
l
,
n
,
o
,
p
,
q
,
r
,
s
,
t
,
u
,
v
,
w
,
x
,
y
,
z
,
A
,
B
,
C
,
D
,
E
,
F
,
G
,
H
,
I
,
J
,
K
,
L
,
M
,
N
,
O
,
P
;
if
(
f
.
call
(
i
,
g
)
<
0
){
if
(
g
.
nodeType
===
Node
.
TEXT_NODE
){
if
(
r
=
a
.
TextTemplateParser
,(
o
=
m
.
config
.
templateDelimiters
)
&&
(
x
=
r
.
parse
(
g
.
data
,
o
)).
length
&&
(
1
!==
x
.
length
||
x
[
0
].
type
!==
r
.
types
.
text
))
for
(
u
=
x
[
0
],
t
=
2
<=
x
.
length
?
c
.
call
(
x
,
1
):[],
g
.
data
=
u
.
value
,
0
===
u
.
type
?
g
.
data
=
u
.
value
:
d
(
"TextBinding"
,
g
,
null
,
u
.
value
),
A
=
0
,
E
=
t
.
length
;
E
>
A
;
A
++
)
w
=
t
[
A
],
v
=
document
.
createTextNode
(
w
.
value
),
g
.
parentNode
.
appendChild
(
v
),
1
===
w
.
type
&&
d
(
"TextBinding"
,
v
,
null
,
w
.
value
)}
else
if
(
e
.
test
(
g
.
tagName
))
y
=
g
.
tagName
.
replace
(
e
,
""
).
toLowerCase
(),
m
.
bindings
.
push
(
new
a
.
ComponentBinding
(
m
,
g
,
y
));
else
if
(
null
!=
g
.
attributes
){
for
(
K
=
g
.
attributes
,
B
=
0
,
F
=
K
.
length
;
F
>
B
;
B
++
)
if
(
j
=
K
[
B
],
b
.
test
(
j
.
name
)){
if
(
y
=
j
.
name
.
replace
(
b
,
""
),
!
(
l
=
m
.
binders
[
y
])){
L
=
m
.
binders
;
for
(
p
in
L
)
z
=
L
[
p
],
"*"
!==
p
&&-
1
!==
p
.
indexOf
(
"*"
)
&&
(
s
=
new
RegExp
(
"^"
+
p
.
replace
(
"*"
,
".+"
)
+
"$"
),
s
.
test
(
y
)
&&
(
l
=
z
))}
if
(
l
||
(
l
=
m
.
binders
[
"*"
]),
l
.
block
){
for
(
M
=
g
.
childNodes
,
C
=
0
,
G
=
M
.
length
;
G
>
C
;
C
++
)
q
=
M
[
C
],
i
.
push
(
q
);
k
=
[
j
]}}
for
(
N
=
k
||
g
.
attributes
,
D
=
0
,
H
=
N
.
length
;
H
>
D
;
D
++
)
j
=
N
[
D
],
b
.
test
(
j
.
name
)
&&
(
y
=
j
.
name
.
replace
(
b
,
""
),
d
(
"Binding"
,
g
,
y
,
j
.
value
))}
for
(
O
=
g
.
childNodes
,
P
=
[],
J
=
0
,
I
=
O
.
length
;
I
>
J
;
J
++
)
n
=
O
[
J
],
P
.
push
(
h
(
n
));
return
P
}},
l
=
this
.
els
,
j
=
0
,
k
=
l
.
length
;
k
>
j
;
j
++
)
g
=
l
[
j
],
h
(
g
)},
d
.
prototype
.
select
=
function
(
a
){
var
b
,
c
,
d
,
e
,
f
;
for
(
e
=
this
.
bindings
,
f
=
[],
c
=
0
,
d
=
e
.
length
;
d
>
c
;
c
++
)
b
=
e
[
c
],
a
(
b
)
&&
f
.
push
(
b
);
return
f
},
d
.
prototype
.
bind
=
function
(){
var
a
,
b
,
c
,
d
,
e
;
for
(
d
=
this
.
bindings
,
e
=
[],
b
=
0
,
c
=
d
.
length
;
c
>
b
;
b
++
)
a
=
d
[
b
],
e
.
push
(
a
.
bind
());
return
e
},
d
.
prototype
.
unbind
=
function
(){
var
a
,
b
,
c
,
d
,
e
;
for
(
d
=
this
.
bindings
,
e
=
[],
b
=
0
,
c
=
d
.
length
;
c
>
b
;
b
++
)
a
=
d
[
b
],
e
.
push
(
a
.
unbind
());
return
e
},
d
.
prototype
.
sync
=
function
(){
var
a
,
b
,
c
,
d
,
e
;
for
(
d
=
this
.
bindings
,
e
=
[],
b
=
0
,
c
=
d
.
length
;
c
>
b
;
b
++
)
a
=
d
[
b
],
e
.
push
(
a
.
sync
());
return
e
},
d
.
prototype
.
publish
=
function
(){
var
a
,
b
,
c
,
d
,
e
;
for
(
d
=
this
.
select
(
function
(
a
){
return
a
.
binder
.
publishes
}),
e
=
[],
b
=
0
,
c
=
d
.
length
;
c
>
b
;
b
++
)
a
=
d
[
b
],
e
.
push
(
a
.
publish
());
return
e
},
d
.
prototype
.
update
=
function
(
a
){
var
b
,
c
,
d
,
e
,
f
,
g
,
h
;
null
==
a
&&
(
a
=
{});
for
(
c
in
a
)
d
=
a
[
c
],
this
.
models
[
c
]
=
d
;
for
(
g
=
this
.
bindings
,
h
=
[],
e
=
0
,
f
=
g
.
length
;
f
>
e
;
e
++
)
b
=
g
[
e
],
h
.
push
(
b
.
update
(
a
));
return
h
},
d
}(),
a
.
TextTemplateParser
=
function
(){
function
a
(){}
return
a
.
types
=
{
text
:
0
,
binding
:
1
},
a
.
parse
=
function
(
a
,
b
){
var
c
,
d
,
e
,
f
,
g
,
h
,
i
;
for
(
h
=
[],
f
=
a
.
length
,
c
=
0
,
d
=
0
;
f
>
d
;){
if
(
c
=
a
.
indexOf
(
b
[
0
],
d
),
0
>
c
){
h
.
push
({
type
:
this
.
types
.
text
,
value
:
a
.
slice
(
d
)});
break
}
if
(
c
>
0
&&
c
>
d
&&
h
.
push
({
type
:
this
.
types
.
text
,
value
:
a
.
slice
(
d
,
c
)}),
d
=
c
+
2
,
c
=
a
.
indexOf
(
b
[
1
],
d
),
0
>
c
){
g
=
a
.
slice
(
d
-
2
),
e
=
h
[
h
.
length
-
1
],(
null
!=
e
?
e
.
type
:
void
0
)
===
this
.
types
.
text
?
e
.
value
+=
g
:
h
.
push
({
type
:
this
.
types
.
text
,
value
:
g
});
break
}
i
=
a
.
slice
(
d
,
c
).
trim
(),
h
.
push
({
type
:
this
.
types
.
binding
,
value
:
i
}),
d
=
c
+
2
}
return
h
},
a
}(),
a
.
Util
=
{
bindEvent
:
function
(
a
,
b
,
c
){
return
null
!=
window
.
jQuery
?(
a
=
jQuery
(
a
),
null
!=
a
.
on
?
a
.
on
(
b
,
c
):
a
.
bind
(
b
,
c
)):
null
!=
window
.
addEventListener
?
a
.
addEventListener
(
b
,
c
,
!
1
):(
b
=
"on"
+
b
,
a
.
attachEvent
(
b
,
c
))},
unbindEvent
:
function
(
a
,
b
,
c
){
return
null
!=
window
.
jQuery
?(
a
=
jQuery
(
a
),
null
!=
a
.
off
?
a
.
off
(
b
,
c
):
a
.
unbind
(
b
,
c
)):
null
!=
window
.
removeEventListener
?
a
.
removeEventListener
(
b
,
c
,
!
1
):(
b
=
"on"
+
b
,
a
.
detachEvent
(
b
,
c
))},
getInputValue
:
function
(
a
){
var
b
,
c
,
d
,
e
;
if
(
null
!=
window
.
jQuery
)
switch
(
a
=
jQuery
(
a
),
a
[
0
].
type
){
case
"checkbox"
:
return
a
.
is
(
":checked"
);
default
:
return
a
.
val
()}
else
switch
(
a
.
type
){
case
"checkbox"
:
return
a
.
checked
;
case
"select-multiple"
:
for
(
e
=
[],
c
=
0
,
d
=
a
.
length
;
d
>
c
;
c
++
)
b
=
a
[
c
],
b
.
selected
&&
e
.
push
(
b
.
value
);
return
e
;
default
:
return
a
.
value
}}},
a
.
binders
=
{
enabled
:
function
(
a
,
b
){
return
a
.
disabled
=!
b
},
disabled
:
function
(
a
,
b
){
return
a
.
disabled
=!!
b
},
checked
:{
publishes
:
!
0
,
bind
:
function
(
b
){
return
a
.
Util
.
bindEvent
(
b
,
"change"
,
this
.
publish
)},
unbind
:
function
(
b
){
return
a
.
Util
.
unbindEvent
(
b
,
"change"
,
this
.
publish
)},
routine
:
function
(
a
,
b
){
var
c
;
return
a
.
checked
=
"radio"
===
a
.
type
?(
null
!=
(
c
=
a
.
value
)?
c
.
toString
():
void
0
)
===
(
null
!=
b
?
b
.
toString
():
void
0
):
!!
b
}},
unchecked
:{
publishes
:
!
0
,
bind
:
function
(
b
){
return
a
.
Util
.
bindEvent
(
b
,
"change"
,
this
.
publish
)},
unbind
:
function
(
b
){
return
a
.
Util
.
unbindEvent
(
b
,
"change"
,
this
.
publish
)},
routine
:
function
(
a
,
b
){
var
c
;
return
a
.
checked
=
"radio"
===
a
.
type
?(
null
!=
(
c
=
a
.
value
)?
c
.
toString
():
void
0
)
!==
(
null
!=
b
?
b
.
toString
():
void
0
):
!
b
}},
show
:
function
(
a
,
b
){
return
a
.
style
.
display
=
b
?
""
:
"none"
},
hide
:
function
(
a
,
b
){
return
a
.
style
.
display
=
b
?
"none"
:
""
},
html
:
function
(
a
,
b
){
return
a
.
innerHTML
=
null
!=
b
?
b
:
""
},
value
:{
publishes
:
!
0
,
bind
:
function
(
b
){
return
a
.
Util
.
bindEvent
(
b
,
"change"
,
this
.
publish
)},
unbind
:
function
(
b
){
return
a
.
Util
.
unbindEvent
(
b
,
"change"
,
this
.
publish
)},
routine
:
function
(
a
,
b
){
var
c
,
d
,
e
,
g
,
h
,
i
,
j
;
if
(
null
!=
window
.
jQuery
){
if
(
a
=
jQuery
(
a
),(
null
!=
b
?
b
.
toString
():
void
0
)
!==
(
null
!=
(
g
=
a
.
val
())?
g
.
toString
():
void
0
))
return
a
.
val
(
null
!=
b
?
b
:
""
)}
else
if
(
"select-multiple"
===
a
.
type
){
if
(
null
!=
b
){
for
(
j
=
[],
d
=
0
,
e
=
a
.
length
;
e
>
d
;
d
++
)
c
=
a
[
d
],
j
.
push
(
c
.
selected
=
(
h
=
c
.
value
,
f
.
call
(
b
,
h
)
>=
0
));
return
j
}}
else
if
((
null
!=
b
?
b
.
toString
():
void
0
)
!==
(
null
!=
(
i
=
a
.
value
)?
i
.
toString
():
void
0
))
return
a
.
value
=
null
!=
b
?
b
:
""
}},
text
:
function
(
a
,
b
){
return
null
!=
a
.
innerText
?
a
.
innerText
=
null
!=
b
?
b
:
""
:
a
.
textContent
=
null
!=
b
?
b
:
""
},
"if"
:{
block
:
!
0
,
bind
:
function
(
a
){
var
b
,
c
;
return
null
==
this
.
marker
?(
b
=
[
"data"
,
this
.
view
.
config
.
prefix
,
this
.
type
].
join
(
"-"
).
replace
(
"--"
,
"-"
),
c
=
a
.
getAttribute
(
b
),
this
.
marker
=
document
.
createComment
(
" rivets: "
+
this
.
type
+
" "
+
c
+
" "
),
a
.
removeAttribute
(
b
),
a
.
parentNode
.
insertBefore
(
this
.
marker
,
a
),
a
.
parentNode
.
removeChild
(
a
)):
void
0
},
unbind
:
function
(){
var
a
;
return
null
!=
(
a
=
this
.
nested
)?
a
.
unbind
():
void
0
},
routine
:
function
(
b
,
c
){
var
d
,
e
,
f
,
g
,
h
;
if
(
!!
c
==
(
null
==
this
.
nested
)){
if
(
c
){
f
=
{},
h
=
this
.
view
.
models
;
for
(
d
in
h
)
e
=
h
[
d
],
f
[
d
]
=
e
;
return
g
=
{
binders
:
this
.
view
.
options
.
binders
,
formatters
:
this
.
view
.
options
.
formatters
,
config
:
this
.
view
.
options
.
config
},(
this
.
nested
=
new
a
.
View
(
b
,
f
,
g
)).
bind
(),
this
.
marker
.
parentNode
.
insertBefore
(
b
,
this
.
marker
.
nextSibling
)}
return
b
.
parentNode
.
removeChild
(
b
),
this
.
nested
.
unbind
(),
delete
this
.
nested
}},
update
:
function
(
a
){
var
b
;
return
null
!=
(
b
=
this
.
nested
)?
b
.
update
(
a
):
void
0
}},
unless
:{
block
:
!
0
,
bind
:
function
(
b
){
return
a
.
binders
[
"if"
].
bind
.
call
(
this
,
b
)},
unbind
:
function
(){
return
a
.
binders
[
"if"
].
unbind
.
call
(
this
)},
routine
:
function
(
b
,
c
){
return
a
.
binders
[
"if"
].
routine
.
call
(
this
,
b
,
!
c
)},
update
:
function
(
b
){
return
a
.
binders
[
"if"
].
update
.
call
(
this
,
b
)}},
"on-*"
:{
"function"
:
!
0
,
unbind
:
function
(
b
){
return
this
.
handler
?
a
.
Util
.
unbindEvent
(
b
,
this
.
args
[
0
],
this
.
handler
):
void
0
},
routine
:
function
(
b
,
c
){
return
this
.
handler
&&
a
.
Util
.
unbindEvent
(
b
,
this
.
args
[
0
],
this
.
handler
),
a
.
Util
.
bindEvent
(
b
,
this
.
args
[
0
],
this
.
handler
=
this
.
eventHandler
(
c
))}},
"each-*"
:{
block
:
!
0
,
bind
:
function
(
a
){
var
b
;
return
null
==
this
.
marker
?(
b
=
[
"data"
,
this
.
view
.
config
.
prefix
,
this
.
type
].
join
(
"-"
).
replace
(
"--"
,
"-"
),
this
.
marker
=
document
.
createComment
(
" rivets: "
+
this
.
type
+
" "
),
this
.
iterated
=
[],
a
.
removeAttribute
(
b
),
a
.
parentNode
.
insertBefore
(
this
.
marker
,
a
),
a
.
parentNode
.
removeChild
(
a
)):
void
0
},
unbind
:
function
(){
var
a
,
b
,
c
,
d
,
e
;
if
(
null
!=
this
.
iterated
){
for
(
d
=
this
.
iterated
,
e
=
[],
b
=
0
,
c
=
d
.
length
;
c
>
b
;
b
++
)
a
=
d
[
b
],
e
.
push
(
a
.
unbind
());
return
e
}},
routine
:
function
(
b
,
c
){
var
d
,
e
,
f
,
g
,
h
,
i
,
j
,
k
,
l
,
m
,
n
,
o
,
p
,
q
,
r
,
s
,
t
,
u
,
v
,
w
;
if
(
j
=
this
.
args
[
0
],
c
=
c
||
[],
this
.
iterated
.
length
>
c
.
length
)
for
(
t
=
Array
(
this
.
iterated
.
length
-
c
.
length
),
p
=
0
,
r
=
t
.
length
;
r
>
p
;
p
++
)
e
=
t
[
p
],
o
=
this
.
iterated
.
pop
(),
o
.
unbind
(),
this
.
marker
.
parentNode
.
removeChild
(
o
.
els
[
0
]);
for
(
w
=
[],
f
=
q
=
0
,
s
=
c
.
length
;
s
>
q
;
f
=++
q
)
if
(
i
=
c
[
f
],
d
=
{},
d
[
j
]
=
i
,
null
==
this
.
iterated
[
f
]){
u
=
this
.
view
.
models
;
for
(
h
in
u
)
i
=
u
[
h
],
null
==
d
[
h
]
&&
(
d
[
h
]
=
i
);
l
=
this
.
iterated
.
length
?
this
.
iterated
[
this
.
iterated
.
length
-
1
].
els
[
0
]:
this
.
marker
,
k
=
{
binders
:
this
.
view
.
options
.
binders
,
formatters
:
this
.
view
.
options
.
formatters
,
config
:{}},
v
=
this
.
view
.
options
.
config
;
for
(
g
in
v
)
n
=
v
[
g
],
k
.
config
[
g
]
=
n
;
k
.
config
.
preloadData
=!
0
,
m
=
b
.
cloneNode
(
!
0
),
o
=
new
a
.
View
(
m
,
d
,
k
),
o
.
bind
(),
this
.
iterated
.
push
(
o
),
w
.
push
(
this
.
marker
.
parentNode
.
insertBefore
(
m
,
l
.
nextSibling
))}
else
this
.
iterated
[
f
].
models
[
j
]
!==
i
?
w
.
push
(
this
.
iterated
[
f
].
update
(
d
)):
w
.
push
(
void
0
);
return
w
},
update
:
function
(
a
){
var
b
,
c
,
d
,
e
,
f
,
g
,
h
,
i
;
b
=
{};
for
(
c
in
a
)
d
=
a
[
c
],
c
!==
this
.
args
[
0
]
&&
(
b
[
c
]
=
d
);
for
(
h
=
this
.
iterated
,
i
=
[],
f
=
0
,
g
=
h
.
length
;
g
>
f
;
f
++
)
e
=
h
[
f
],
i
.
push
(
e
.
update
(
b
));
return
i
}},
"class-*"
:
function
(
a
,
b
){
var
c
;
return
c
=
" "
+
a
.
className
+
" "
,
!
b
==
(
-
1
!==
c
.
indexOf
(
" "
+
this
.
args
[
0
]
+
" "
))?
a
.
className
=
b
?
""
+
a
.
className
+
" "
+
this
.
args
[
0
]:
c
.
replace
(
" "
+
this
.
args
[
0
]
+
" "
,
" "
).
trim
():
void
0
},
"*"
:
function
(
a
,
b
){
return
b
?
a
.
setAttribute
(
this
.
type
,
b
):
a
.
removeAttribute
(
this
.
type
)}},
a
.
components
=
{},
a
.
config
=
{
preloadData
:
!
0
,
handler
:
function
(
a
,
b
,
c
){
return
this
.
call
(
a
,
b
,
c
.
view
.
models
)}},
a
.
formatters
=
{},
a
.
factory
=
function
(
b
){
return
b
.
_
=
a
,
b
.
binders
=
a
.
binders
,
b
.
components
=
a
.
components
,
b
.
formatters
=
a
.
formatters
,
b
.
config
=
a
.
config
,
b
.
configure
=
function
(
b
){
var
c
,
d
;
null
==
b
&&
(
b
=
{});
for
(
c
in
b
)
d
=
b
[
c
],
a
.
config
[
c
]
=
d
},
b
.
bind
=
function
(
b
,
c
,
d
){
var
e
;
return
null
==
c
&&
(
c
=
{}),
null
==
d
&&
(
d
=
{}),
e
=
new
a
.
View
(
b
,
c
,
d
),
e
.
bind
(),
e
}},
"object"
==
typeof
exports
?
a
.
factory
(
exports
):
"function"
==
typeof
define
&&
define
.
amd
?
define
([
"exports"
],
function
(
b
){
return
a
.
factory
(
this
.
rivets
=
b
),
b
}):
a
.
factory
(
this
.
rivets
=
{})}.
call
(
this
);
\ No newline at end of file
!
function
(){
var
a
,
b
,
c
=
function
(
a
,
b
){
return
function
(){
return
a
.
apply
(
b
,
arguments
)}},
d
=
[].
slice
,
e
=
{}.
hasOwnProperty
,
f
=
function
(
a
,
b
){
function
c
(){
this
.
constructor
=
a
}
for
(
var
d
in
b
)
e
.
call
(
b
,
d
)
&&
(
a
[
d
]
=
b
[
d
]);
return
c
.
prototype
=
b
.
prototype
,
a
.
prototype
=
new
c
,
a
.
__super__
=
b
.
prototype
,
a
},
g
=
[].
indexOf
||
function
(
a
){
for
(
var
b
=
0
,
c
=
this
.
length
;
c
>
b
;
b
++
)
if
(
b
in
this
&&
this
[
b
]
===
a
)
return
b
;
return
-
1
};
a
=
{},
b
=
window
.
jQuery
||
window
.
Zepto
,
String
.
prototype
.
trim
||
(
String
.
prototype
.
trim
=
function
(){
return
this
.
replace
(
/^
\s
+|
\s
+$/g
,
""
)}),
a
.
Binding
=
function
(){
function
b
(
a
,
b
,
d
,
e
,
f
,
g
){
var
h
,
i
,
j
,
k
;
if
(
this
.
view
=
a
,
this
.
el
=
b
,
this
.
type
=
d
,
this
.
key
=
e
,
this
.
keypath
=
f
,
this
.
options
=
null
!=
g
?
g
:{},
this
.
update
=
c
(
this
.
update
,
this
),
this
.
unbind
=
c
(
this
.
unbind
,
this
),
this
.
bind
=
c
(
this
.
bind
,
this
),
this
.
publish
=
c
(
this
.
publish
,
this
),
this
.
sync
=
c
(
this
.
sync
,
this
),
this
.
set
=
c
(
this
.
set
,
this
),
this
.
eventHandler
=
c
(
this
.
eventHandler
,
this
),
this
.
formattedValue
=
c
(
this
.
formattedValue
,
this
),
!
(
this
.
binder
=
this
.
view
.
binders
[
d
])){
k
=
this
.
view
.
binders
;
for
(
h
in
k
)
j
=
k
[
h
],
"*"
!==
h
&&-
1
!==
h
.
indexOf
(
"*"
)
&&
(
i
=
new
RegExp
(
"^"
+
h
.
replace
(
"*"
,
".+"
)
+
"$"
),
i
.
test
(
d
)
&&
(
this
.
binder
=
j
,
this
.
args
=
new
RegExp
(
"^"
+
h
.
replace
(
"*"
,
"(.+)"
)
+
"$"
).
exec
(
d
),
this
.
args
.
shift
()))}
this
.
binder
||
(
this
.
binder
=
this
.
view
.
binders
[
"*"
]),
this
.
binder
instanceof
Function
&&
(
this
.
binder
=
{
routine
:
this
.
binder
}),
this
.
formatters
=
this
.
options
.
formatters
||
[],
this
.
model
=
this
.
key
?
this
.
view
.
models
[
this
.
key
]:
this
.
view
.
models
}
return
b
.
prototype
.
formattedValue
=
function
(
a
){
var
b
,
c
,
e
,
f
,
g
,
h
;
for
(
h
=
this
.
formatters
,
f
=
0
,
g
=
h
.
length
;
g
>
f
;
f
++
)
c
=
h
[
f
],
b
=
c
.
split
(
/
\s
+/
),
e
=
b
.
shift
(),
c
=
this
.
model
[
e
]
instanceof
Function
?
this
.
model
[
e
]:
this
.
view
.
formatters
[
e
],(
null
!=
c
?
c
.
read
:
void
0
)
instanceof
Function
?
a
=
c
.
read
.
apply
(
c
,[
a
].
concat
(
d
.
call
(
b
))):
c
instanceof
Function
&&
(
a
=
c
.
apply
(
null
,[
a
].
concat
(
d
.
call
(
b
))));
return
a
},
b
.
prototype
.
eventHandler
=
function
(
a
){
var
b
,
c
;
return
c
=
(
b
=
this
).
view
.
config
.
handler
,
function
(
d
){
return
c
.
call
(
a
,
this
,
d
,
b
)}},
b
.
prototype
.
set
=
function
(
a
){
var
b
;
return
a
=
a
instanceof
Function
&&!
this
.
binder
[
"function"
]?
this
.
formattedValue
(
a
.
call
(
this
.
model
)):
this
.
formattedValue
(
a
),
null
!=
(
b
=
this
.
binder
.
routine
)?
b
.
call
(
this
,
this
.
el
,
a
):
void
0
},
b
.
prototype
.
sync
=
function
(){
return
this
.
set
(
this
.
options
.
bypass
?
this
.
model
[
this
.
keypath
]:
this
.
view
.
config
.
adapter
.
read
(
this
.
model
,
this
.
keypath
))},
b
.
prototype
.
publish
=
function
(){
var
b
,
c
,
e
,
f
,
g
,
h
,
i
,
j
,
k
;
for
(
f
=
a
.
Util
.
getInputValue
(
this
.
el
),
i
=
this
.
formatters
.
slice
(
0
).
reverse
(),
g
=
0
,
h
=
i
.
length
;
h
>
g
;
g
++
)
c
=
i
[
g
],
b
=
c
.
split
(
/
\s
+/
),
e
=
b
.
shift
(),(
null
!=
(
j
=
this
.
view
.
formatters
[
e
])?
j
.
publish
:
void
0
)
&&
(
f
=
(
k
=
this
.
view
.
formatters
[
e
]).
publish
.
apply
(
k
,[
f
].
concat
(
d
.
call
(
b
))));
return
this
.
view
.
config
.
adapter
.
publish
(
this
.
model
,
this
.
keypath
,
f
)},
b
.
prototype
.
bind
=
function
(){
var
a
,
b
,
c
,
d
,
e
,
f
,
g
,
h
,
i
;
if
(
null
!=
(
f
=
this
.
binder
.
bind
)
&&
f
.
call
(
this
,
this
.
el
),
this
.
options
.
bypass
?
this
.
sync
():(
this
.
view
.
config
.
adapter
.
subscribe
(
this
.
model
,
this
.
keypath
,
this
.
sync
),
this
.
view
.
config
.
preloadData
&&
this
.
sync
()),
null
!=
(
g
=
this
.
options
.
dependencies
)?
g
.
length
:
void
0
){
for
(
h
=
this
.
options
.
dependencies
,
i
=
[],
d
=
0
,
e
=
h
.
length
;
e
>
d
;
d
++
)
a
=
h
[
d
],
/^
\.
/
.
test
(
a
)?(
c
=
this
.
model
,
b
=
a
.
substr
(
1
)):(
a
=
a
.
split
(
"."
),
c
=
this
.
view
.
models
[
a
.
shift
()],
b
=
a
.
join
(
"."
)),
i
.
push
(
this
.
view
.
config
.
adapter
.
subscribe
(
c
,
b
,
this
.
sync
));
return
i
}},
b
.
prototype
.
unbind
=
function
(){
var
a
,
b
,
c
,
d
,
e
,
f
,
g
,
h
,
i
;
if
(
null
!=
(
f
=
this
.
binder
.
unbind
)
&&
f
.
call
(
this
,
this
.
el
),
this
.
options
.
bypass
||
this
.
view
.
config
.
adapter
.
unsubscribe
(
this
.
model
,
this
.
keypath
,
this
.
sync
),
null
!=
(
g
=
this
.
options
.
dependencies
)?
g
.
length
:
void
0
){
for
(
h
=
this
.
options
.
dependencies
,
i
=
[],
d
=
0
,
e
=
h
.
length
;
e
>
d
;
d
++
)
a
=
h
[
d
],
/^
\.
/
.
test
(
a
)?(
c
=
this
.
model
,
b
=
a
.
substr
(
1
)):(
a
=
a
.
split
(
"."
),
c
=
this
.
view
.
models
[
a
.
shift
()],
b
=
a
.
join
(
"."
)),
i
.
push
(
this
.
view
.
config
.
adapter
.
unsubscribe
(
c
,
b
,
this
.
sync
));
return
i
}},
b
.
prototype
.
update
=
function
(
a
){
var
b
;
return
null
==
a
&&
(
a
=
{}),
this
.
key
?
a
[
this
.
key
]
&&
(
this
.
options
.
bypass
||
this
.
view
.
config
.
adapter
.
unsubscribe
(
this
.
model
,
this
.
keypath
,
this
.
sync
),
this
.
model
=
a
[
this
.
key
],
this
.
options
.
bypass
?
this
.
sync
():(
this
.
view
.
config
.
adapter
.
subscribe
(
this
.
model
,
this
.
keypath
,
this
.
sync
),
this
.
view
.
config
.
preloadData
&&
this
.
sync
())):
this
.
sync
(),
null
!=
(
b
=
this
.
binder
.
update
)?
b
.
call
(
this
,
a
):
void
0
},
b
}(),
a
.
ComponentBinding
=
function
(
b
){
function
d
(
b
,
d
,
e
){
var
f
,
h
,
i
,
j
,
k
;
for
(
this
.
view
=
b
,
this
.
el
=
d
,
this
.
type
=
e
,
this
.
unbind
=
c
(
this
.
unbind
,
this
),
this
.
bind
=
c
(
this
.
bind
,
this
),
this
.
update
=
c
(
this
.
update
,
this
),
this
.
locals
=
c
(
this
.
locals
,
this
),
this
.
component
=
a
.
components
[
this
.
type
],
this
.
attributes
=
{},
this
.
inflections
=
{},
j
=
this
.
el
.
attributes
||
[],
h
=
0
,
i
=
j
.
length
;
i
>
h
;
h
++
)
f
=
j
[
h
],
k
=
f
.
name
,
g
.
call
(
this
.
component
.
attributes
,
k
)
>=
0
?
this
.
attributes
[
f
.
name
]
=
f
.
value
:
this
.
inflections
[
f
.
name
]
=
f
.
value
}
return
f
(
d
,
b
),
d
.
prototype
.
sync
=
function
(){},
d
.
prototype
.
locals
=
function
(
a
){
var
b
,
c
,
d
,
e
,
f
,
g
,
h
,
i
,
j
;
null
==
a
&&
(
a
=
this
.
view
.
models
),
f
=
{},
i
=
this
.
inflections
;
for
(
c
in
i
)
for
(
b
=
i
[
c
],
j
=
b
.
split
(
"."
),
g
=
0
,
h
=
j
.
length
;
h
>
g
;
g
++
)
e
=
j
[
g
],
f
[
c
]
=
(
f
[
c
]
||
a
)[
e
];
for
(
c
in
a
)
d
=
a
[
c
],
null
==
f
[
c
]
&&
(
f
[
c
]
=
d
);
return
f
},
d
.
prototype
.
update
=
function
(
a
){
var
b
;
return
null
!=
(
b
=
this
.
componentView
)?
b
.
update
(
this
.
locals
(
a
)):
void
0
},
d
.
prototype
.
bind
=
function
(){
var
b
,
c
;
return
null
!=
this
.
componentView
?
null
!=
(
c
=
this
.
componentView
)?
c
.
bind
():
void
0
:(
b
=
this
.
component
.
build
.
call
(
this
.
attributes
),(
this
.
componentView
=
new
a
.
View
(
b
,
this
.
locals
(),
this
.
view
.
options
)).
bind
(),
this
.
el
.
parentNode
.
replaceChild
(
b
,
this
.
el
))},
d
.
prototype
.
unbind
=
function
(){
var
a
;
return
null
!=
(
a
=
this
.
componentView
)?
a
.
unbind
():
void
0
},
d
}(
a
.
Binding
),
a
.
TextBinding
=
function
(
a
){
function
b
(
a
,
b
,
d
,
e
,
f
,
g
){
this
.
view
=
a
,
this
.
el
=
b
,
this
.
type
=
d
,
this
.
key
=
e
,
this
.
keypath
=
f
,
this
.
options
=
null
!=
g
?
g
:{},
this
.
sync
=
c
(
this
.
sync
,
this
),
this
.
formatters
=
this
.
options
.
formatters
||
[],
this
.
model
=
this
.
key
?
this
.
view
.
models
[
this
.
key
]:
this
.
view
.
models
}
return
f
(
b
,
a
),
b
.
prototype
.
binder
=
{
routine
:
function
(
a
,
b
){
return
a
.
data
=
null
!=
b
?
b
:
""
}},
b
.
prototype
.
sync
=
function
(){
return
b
.
__super__
.
sync
.
apply
(
this
,
arguments
)},
b
}(
a
.
Binding
),
a
.
View
=
function
(){
function
b
(
b
,
d
,
e
){
var
f
,
g
,
h
,
i
,
j
,
k
,
l
,
m
,
n
;
for
(
this
.
els
=
b
,
this
.
models
=
d
,
this
.
options
=
null
!=
e
?
e
:{},
this
.
update
=
c
(
this
.
update
,
this
),
this
.
publish
=
c
(
this
.
publish
,
this
),
this
.
sync
=
c
(
this
.
sync
,
this
),
this
.
unbind
=
c
(
this
.
unbind
,
this
),
this
.
bind
=
c
(
this
.
bind
,
this
),
this
.
select
=
c
(
this
.
select
,
this
),
this
.
build
=
c
(
this
.
build
,
this
),
this
.
componentRegExp
=
c
(
this
.
componentRegExp
,
this
),
this
.
bindingRegExp
=
c
(
this
.
bindingRegExp
,
this
),
"undefined"
==
typeof
this
.
els
.
length
&&
(
this
.
els
=
[
this
.
els
]),
l
=
[
"config"
,
"binders"
,
"formatters"
],
j
=
0
,
k
=
l
.
length
;
k
>
j
;
j
++
){
if
(
g
=
l
[
j
],
this
[
g
]
=
{},
this
.
options
[
g
]){
m
=
this
.
options
[
g
];
for
(
f
in
m
)
h
=
m
[
f
],
this
[
g
][
f
]
=
h
}
n
=
a
[
g
];
for
(
f
in
n
)
h
=
n
[
f
],
null
==
(
i
=
this
[
g
])[
f
]
&&
(
i
[
f
]
=
h
)}
this
.
build
()}
return
b
.
prototype
.
bindingRegExp
=
function
(){
var
a
;
return
a
=
this
.
config
.
prefix
,
a
?
new
RegExp
(
"^data-"
+
a
+
"-"
):
/^data-/
},
b
.
prototype
.
componentRegExp
=
function
(){
var
a
,
b
;
return
new
RegExp
(
"^"
+
(
null
!=
(
a
=
null
!=
(
b
=
this
.
config
.
prefix
)?
b
.
toUpperCase
():
void
0
)?
a
:
"RV"
)
+
"-"
)},
b
.
prototype
.
build
=
function
(){
var
b
,
c
,
e
,
f
,
h
,
i
,
j
,
k
,
l
,
m
=
this
;
for
(
this
.
bindings
=
[],
i
=
[],
b
=
this
.
bindingRegExp
(),
e
=
this
.
componentRegExp
(),
c
=
function
(
b
,
c
,
d
,
e
){
var
f
,
g
,
h
,
i
,
j
,
k
,
l
,
n
,
o
,
p
;
return
k
=
{},
o
=
function
(){
var
a
,
b
,
c
,
d
;
for
(
c
=
e
.
split
(
"|"
),
d
=
[],
a
=
0
,
b
=
c
.
length
;
b
>
a
;
a
++
)
n
=
c
[
a
],
d
.
push
(
n
.
trim
());
return
d
}(),
f
=
function
(){
var
a
,
b
,
c
,
d
;
for
(
c
=
o
.
shift
().
split
(
"<"
),
d
=
[],
a
=
0
,
b
=
c
.
length
;
b
>
a
;
a
++
)
g
=
c
[
a
],
d
.
push
(
g
.
trim
());
return
d
}(),
l
=
f
.
shift
(),
p
=
l
.
split
(
/
\.
|:/
),
k
.
formatters
=
o
,
k
.
bypass
=-
1
!==
l
.
indexOf
(
":"
),
p
[
0
]?
i
=
p
.
shift
():(
i
=
null
,
p
.
shift
()),
j
=
p
.
join
(
"."
),(
h
=
f
.
shift
())
&&
(
k
.
dependencies
=
h
.
split
(
/
\s
+/
)),
m
.
bindings
.
push
(
new
a
[
b
](
m
,
c
,
d
,
i
,
j
,
k
))},
h
=
function
(
f
){
var
j
,
k
,
l
,
n
,
o
,
p
,
q
,
r
,
s
,
t
,
u
,
v
,
w
,
x
,
y
,
z
,
A
,
B
,
C
,
D
,
E
,
F
,
G
,
H
,
I
,
J
,
K
,
L
,
M
,
N
,
O
,
P
;
if
(
g
.
call
(
i
,
f
)
<
0
){
if
(
f
.
nodeType
===
Node
.
TEXT_NODE
){
if
(
r
=
a
.
TextTemplateParser
,(
o
=
m
.
config
.
templateDelimiters
)
&&
(
x
=
r
.
parse
(
f
.
data
,
o
)).
length
&&
(
1
!==
x
.
length
||
x
[
0
].
type
!==
r
.
types
.
text
))
for
(
u
=
x
[
0
],
t
=
2
<=
x
.
length
?
d
.
call
(
x
,
1
):[],
f
.
data
=
u
.
value
,
0
===
u
.
type
?
f
.
data
=
u
.
value
:
c
(
"TextBinding"
,
f
,
null
,
u
.
value
),
A
=
0
,
E
=
t
.
length
;
E
>
A
;
A
++
)
w
=
t
[
A
],
v
=
document
.
createTextNode
(
w
.
value
),
f
.
parentNode
.
appendChild
(
v
),
1
===
w
.
type
&&
c
(
"TextBinding"
,
v
,
null
,
w
.
value
)}
else
if
(
e
.
test
(
f
.
tagName
))
y
=
f
.
tagName
.
replace
(
e
,
""
).
toLowerCase
(),
m
.
bindings
.
push
(
new
a
.
ComponentBinding
(
m
,
f
,
y
));
else
if
(
null
!=
f
.
attributes
){
for
(
K
=
f
.
attributes
,
B
=
0
,
F
=
K
.
length
;
F
>
B
;
B
++
)
if
(
j
=
K
[
B
],
b
.
test
(
j
.
name
)){
if
(
y
=
j
.
name
.
replace
(
b
,
""
),
!
(
l
=
m
.
binders
[
y
])){
L
=
m
.
binders
;
for
(
p
in
L
)
z
=
L
[
p
],
"*"
!==
p
&&-
1
!==
p
.
indexOf
(
"*"
)
&&
(
s
=
new
RegExp
(
"^"
+
p
.
replace
(
"*"
,
".+"
)
+
"$"
),
s
.
test
(
y
)
&&
(
l
=
z
))}
if
(
l
||
(
l
=
m
.
binders
[
"*"
]),
l
.
block
){
for
(
M
=
f
.
childNodes
,
C
=
0
,
G
=
M
.
length
;
G
>
C
;
C
++
)
q
=
M
[
C
],
i
.
push
(
q
);
k
=
[
j
]}}
for
(
N
=
k
||
f
.
attributes
,
D
=
0
,
H
=
N
.
length
;
H
>
D
;
D
++
)
j
=
N
[
D
],
b
.
test
(
j
.
name
)
&&
(
y
=
j
.
name
.
replace
(
b
,
""
),
c
(
"Binding"
,
f
,
y
,
j
.
value
))}
for
(
O
=
f
.
childNodes
,
P
=
[],
J
=
0
,
I
=
O
.
length
;
I
>
J
;
J
++
)
n
=
O
[
J
],
P
.
push
(
h
(
n
));
return
P
}},
l
=
this
.
els
,
j
=
0
,
k
=
l
.
length
;
k
>
j
;
j
++
)
f
=
l
[
j
],
h
(
f
)},
b
.
prototype
.
select
=
function
(
a
){
var
b
,
c
,
d
,
e
,
f
;
for
(
e
=
this
.
bindings
,
f
=
[],
c
=
0
,
d
=
e
.
length
;
d
>
c
;
c
++
)
b
=
e
[
c
],
a
(
b
)
&&
f
.
push
(
b
);
return
f
},
b
.
prototype
.
bind
=
function
(){
var
a
,
b
,
c
,
d
,
e
;
for
(
d
=
this
.
bindings
,
e
=
[],
b
=
0
,
c
=
d
.
length
;
c
>
b
;
b
++
)
a
=
d
[
b
],
e
.
push
(
a
.
bind
());
return
e
},
b
.
prototype
.
unbind
=
function
(){
var
a
,
b
,
c
,
d
,
e
;
for
(
d
=
this
.
bindings
,
e
=
[],
b
=
0
,
c
=
d
.
length
;
c
>
b
;
b
++
)
a
=
d
[
b
],
e
.
push
(
a
.
unbind
());
return
e
},
b
.
prototype
.
sync
=
function
(){
var
a
,
b
,
c
,
d
,
e
;
for
(
d
=
this
.
bindings
,
e
=
[],
b
=
0
,
c
=
d
.
length
;
c
>
b
;
b
++
)
a
=
d
[
b
],
e
.
push
(
a
.
sync
());
return
e
},
b
.
prototype
.
publish
=
function
(){
var
a
,
b
,
c
,
d
,
e
;
for
(
d
=
this
.
select
(
function
(
a
){
return
a
.
binder
.
publishes
}),
e
=
[],
b
=
0
,
c
=
d
.
length
;
c
>
b
;
b
++
)
a
=
d
[
b
],
e
.
push
(
a
.
publish
());
return
e
},
b
.
prototype
.
update
=
function
(
a
){
var
b
,
c
,
d
,
e
,
f
,
g
,
h
;
null
==
a
&&
(
a
=
{});
for
(
c
in
a
)
d
=
a
[
c
],
this
.
models
[
c
]
=
d
;
for
(
g
=
this
.
bindings
,
h
=
[],
e
=
0
,
f
=
g
.
length
;
f
>
e
;
e
++
)
b
=
g
[
e
],
h
.
push
(
b
.
update
(
a
));
return
h
},
b
}(),
a
.
TextTemplateParser
=
function
(){
function
a
(){}
return
a
.
types
=
{
text
:
0
,
binding
:
1
},
a
.
parse
=
function
(
a
,
b
){
var
c
,
d
,
e
,
f
,
g
,
h
,
i
;
for
(
h
=
[],
f
=
a
.
length
,
c
=
0
,
d
=
0
;
f
>
d
;){
if
(
c
=
a
.
indexOf
(
b
[
0
],
d
),
0
>
c
){
h
.
push
({
type
:
this
.
types
.
text
,
value
:
a
.
slice
(
d
)});
break
}
if
(
c
>
0
&&
c
>
d
&&
h
.
push
({
type
:
this
.
types
.
text
,
value
:
a
.
slice
(
d
,
c
)}),
d
=
c
+
2
,
c
=
a
.
indexOf
(
b
[
1
],
d
),
0
>
c
){
g
=
a
.
slice
(
d
-
2
),
e
=
h
[
h
.
length
-
1
],(
null
!=
e
?
e
.
type
:
void
0
)
===
this
.
types
.
text
?
e
.
value
+=
g
:
h
.
push
({
type
:
this
.
types
.
text
,
value
:
g
});
break
}
i
=
a
.
slice
(
d
,
c
).
trim
(),
h
.
push
({
type
:
this
.
types
.
binding
,
value
:
i
}),
d
=
c
+
2
}
return
h
},
a
}(),
a
.
Util
=
{
bindEvent
:
function
(
a
,
c
,
d
){
return
null
!=
window
.
jQuery
?(
a
=
b
(
a
),
null
!=
a
.
on
?
a
.
on
(
c
,
d
):
a
.
bind
(
c
,
d
)):
null
!=
window
.
addEventListener
?
a
.
addEventListener
(
c
,
d
,
!
1
):(
c
=
"on"
+
c
,
a
.
attachEvent
(
c
,
d
))},
unbindEvent
:
function
(
a
,
c
,
d
){
return
null
!=
window
.
jQuery
?(
a
=
b
(
a
),
null
!=
a
.
off
?
a
.
off
(
c
,
d
):
a
.
unbind
(
c
,
d
)):
null
!=
window
.
removeEventListener
?
a
.
removeEventListener
(
c
,
d
,
!
1
):(
c
=
"on"
+
c
,
a
.
detachEvent
(
c
,
d
))},
getInputValue
:
function
(
a
){
var
c
,
d
,
e
,
f
;
if
(
null
!=
window
.
jQuery
)
switch
(
a
=
b
(
a
),
a
[
0
].
type
){
case
"checkbox"
:
return
a
.
is
(
":checked"
);
default
:
return
a
.
val
()}
else
switch
(
a
.
type
){
case
"checkbox"
:
return
a
.
checked
;
case
"select-multiple"
:
for
(
f
=
[],
d
=
0
,
e
=
a
.
length
;
e
>
d
;
d
++
)
c
=
a
[
d
],
c
.
selected
&&
f
.
push
(
c
.
value
);
return
f
;
default
:
return
a
.
value
}}},
a
.
binders
=
{
enabled
:
function
(
a
,
b
){
return
a
.
disabled
=!
b
},
disabled
:
function
(
a
,
b
){
return
a
.
disabled
=!!
b
},
checked
:{
publishes
:
!
0
,
bind
:
function
(
b
){
return
a
.
Util
.
bindEvent
(
b
,
"change"
,
this
.
publish
)},
unbind
:
function
(
b
){
return
a
.
Util
.
unbindEvent
(
b
,
"change"
,
this
.
publish
)},
routine
:
function
(
a
,
b
){
var
c
;
return
a
.
checked
=
"radio"
===
a
.
type
?(
null
!=
(
c
=
a
.
value
)?
c
.
toString
():
void
0
)
===
(
null
!=
b
?
b
.
toString
():
void
0
):
!!
b
}},
unchecked
:{
publishes
:
!
0
,
bind
:
function
(
b
){
return
a
.
Util
.
bindEvent
(
b
,
"change"
,
this
.
publish
)},
unbind
:
function
(
b
){
return
a
.
Util
.
unbindEvent
(
b
,
"change"
,
this
.
publish
)},
routine
:
function
(
a
,
b
){
var
c
;
return
a
.
checked
=
"radio"
===
a
.
type
?(
null
!=
(
c
=
a
.
value
)?
c
.
toString
():
void
0
)
!==
(
null
!=
b
?
b
.
toString
():
void
0
):
!
b
}},
show
:
function
(
a
,
b
){
return
a
.
style
.
display
=
b
?
""
:
"none"
},
hide
:
function
(
a
,
b
){
return
a
.
style
.
display
=
b
?
"none"
:
""
},
html
:
function
(
a
,
b
){
return
a
.
innerHTML
=
null
!=
b
?
b
:
""
},
value
:{
publishes
:
!
0
,
bind
:
function
(
b
){
return
a
.
Util
.
bindEvent
(
b
,
"change"
,
this
.
publish
)},
unbind
:
function
(
b
){
return
a
.
Util
.
unbindEvent
(
b
,
"change"
,
this
.
publish
)},
routine
:
function
(
a
,
c
){
var
d
,
e
,
f
,
h
,
i
,
j
,
k
;
if
(
null
!=
window
.
jQuery
){
if
(
a
=
b
(
a
),(
null
!=
c
?
c
.
toString
():
void
0
)
!==
(
null
!=
(
h
=
a
.
val
())?
h
.
toString
():
void
0
))
return
a
.
val
(
null
!=
c
?
c
:
""
)}
else
if
(
"select-multiple"
===
a
.
type
){
if
(
null
!=
c
){
for
(
k
=
[],
e
=
0
,
f
=
a
.
length
;
f
>
e
;
e
++
)
d
=
a
[
e
],
k
.
push
(
d
.
selected
=
(
i
=
d
.
value
,
g
.
call
(
c
,
i
)
>=
0
));
return
k
}}
else
if
((
null
!=
c
?
c
.
toString
():
void
0
)
!==
(
null
!=
(
j
=
a
.
value
)?
j
.
toString
():
void
0
))
return
a
.
value
=
null
!=
c
?
c
:
""
}},
text
:
function
(
a
,
b
){
return
null
!=
a
.
innerText
?
a
.
innerText
=
null
!=
b
?
b
:
""
:
a
.
textContent
=
null
!=
b
?
b
:
""
},
"if"
:{
block
:
!
0
,
bind
:
function
(
a
){
var
b
,
c
;
return
null
==
this
.
marker
?(
b
=
[
"data"
,
this
.
view
.
config
.
prefix
,
this
.
type
].
join
(
"-"
).
replace
(
"--"
,
"-"
),
c
=
a
.
getAttribute
(
b
),
this
.
marker
=
document
.
createComment
(
" rivets: "
+
this
.
type
+
" "
+
c
+
" "
),
a
.
removeAttribute
(
b
),
a
.
parentNode
.
insertBefore
(
this
.
marker
,
a
),
a
.
parentNode
.
removeChild
(
a
)):
void
0
},
unbind
:
function
(){
var
a
;
return
null
!=
(
a
=
this
.
nested
)?
a
.
unbind
():
void
0
},
routine
:
function
(
b
,
c
){
var
d
,
e
,
f
,
g
,
h
;
if
(
!!
c
==
(
null
==
this
.
nested
)){
if
(
c
){
f
=
{},
h
=
this
.
view
.
models
;
for
(
d
in
h
)
e
=
h
[
d
],
f
[
d
]
=
e
;
return
g
=
{
binders
:
this
.
view
.
options
.
binders
,
formatters
:
this
.
view
.
options
.
formatters
,
config
:
this
.
view
.
options
.
config
},(
this
.
nested
=
new
a
.
View
(
b
,
f
,
g
)).
bind
(),
this
.
marker
.
parentNode
.
insertBefore
(
b
,
this
.
marker
.
nextSibling
)}
return
b
.
parentNode
.
removeChild
(
b
),
this
.
nested
.
unbind
(),
delete
this
.
nested
}},
update
:
function
(
a
){
var
b
;
return
null
!=
(
b
=
this
.
nested
)?
b
.
update
(
a
):
void
0
}},
unless
:{
block
:
!
0
,
bind
:
function
(
b
){
return
a
.
binders
[
"if"
].
bind
.
call
(
this
,
b
)},
unbind
:
function
(){
return
a
.
binders
[
"if"
].
unbind
.
call
(
this
)},
routine
:
function
(
b
,
c
){
return
a
.
binders
[
"if"
].
routine
.
call
(
this
,
b
,
!
c
)},
update
:
function
(
b
){
return
a
.
binders
[
"if"
].
update
.
call
(
this
,
b
)}},
"on-*"
:{
"function"
:
!
0
,
unbind
:
function
(
b
){
return
this
.
handler
?
a
.
Util
.
unbindEvent
(
b
,
this
.
args
[
0
],
this
.
handler
):
void
0
},
routine
:
function
(
b
,
c
){
return
this
.
handler
&&
a
.
Util
.
unbindEvent
(
b
,
this
.
args
[
0
],
this
.
handler
),
a
.
Util
.
bindEvent
(
b
,
this
.
args
[
0
],
this
.
handler
=
this
.
eventHandler
(
c
))}},
"each-*"
:{
block
:
!
0
,
bind
:
function
(
a
){
var
b
;
return
null
==
this
.
marker
?(
b
=
[
"data"
,
this
.
view
.
config
.
prefix
,
this
.
type
].
join
(
"-"
).
replace
(
"--"
,
"-"
),
this
.
marker
=
document
.
createComment
(
" rivets: "
+
this
.
type
+
" "
),
this
.
iterated
=
[],
a
.
removeAttribute
(
b
),
a
.
parentNode
.
insertBefore
(
this
.
marker
,
a
),
a
.
parentNode
.
removeChild
(
a
)):
void
0
},
unbind
:
function
(){
var
a
,
b
,
c
,
d
,
e
;
if
(
null
!=
this
.
iterated
){
for
(
d
=
this
.
iterated
,
e
=
[],
b
=
0
,
c
=
d
.
length
;
c
>
b
;
b
++
)
a
=
d
[
b
],
e
.
push
(
a
.
unbind
());
return
e
}},
routine
:
function
(
b
,
c
){
var
d
,
e
,
f
,
g
,
h
,
i
,
j
,
k
,
l
,
m
,
n
,
o
,
p
,
q
,
r
,
s
,
t
,
u
,
v
,
w
;
if
(
j
=
this
.
args
[
0
],
c
=
c
||
[],
this
.
iterated
.
length
>
c
.
length
)
for
(
t
=
Array
(
this
.
iterated
.
length
-
c
.
length
),
p
=
0
,
r
=
t
.
length
;
r
>
p
;
p
++
)
e
=
t
[
p
],
o
=
this
.
iterated
.
pop
(),
o
.
unbind
(),
this
.
marker
.
parentNode
.
removeChild
(
o
.
els
[
0
]);
for
(
w
=
[],
f
=
q
=
0
,
s
=
c
.
length
;
s
>
q
;
f
=++
q
)
if
(
i
=
c
[
f
],
d
=
{},
d
[
j
]
=
i
,
null
==
this
.
iterated
[
f
]){
u
=
this
.
view
.
models
;
for
(
h
in
u
)
i
=
u
[
h
],
null
==
d
[
h
]
&&
(
d
[
h
]
=
i
);
l
=
this
.
iterated
.
length
?
this
.
iterated
[
this
.
iterated
.
length
-
1
].
els
[
0
]:
this
.
marker
,
k
=
{
binders
:
this
.
view
.
options
.
binders
,
formatters
:
this
.
view
.
options
.
formatters
,
config
:{}},
v
=
this
.
view
.
options
.
config
;
for
(
g
in
v
)
n
=
v
[
g
],
k
.
config
[
g
]
=
n
;
k
.
config
.
preloadData
=!
0
,
m
=
b
.
cloneNode
(
!
0
),
o
=
new
a
.
View
(
m
,
d
,
k
),
o
.
bind
(),
this
.
iterated
.
push
(
o
),
w
.
push
(
this
.
marker
.
parentNode
.
insertBefore
(
m
,
l
.
nextSibling
))}
else
this
.
iterated
[
f
].
models
[
j
]
!==
i
?
w
.
push
(
this
.
iterated
[
f
].
update
(
d
)):
w
.
push
(
void
0
);
return
w
},
update
:
function
(
a
){
var
b
,
c
,
d
,
e
,
f
,
g
,
h
,
i
;
b
=
{};
for
(
c
in
a
)
d
=
a
[
c
],
c
!==
this
.
args
[
0
]
&&
(
b
[
c
]
=
d
);
for
(
h
=
this
.
iterated
,
i
=
[],
f
=
0
,
g
=
h
.
length
;
g
>
f
;
f
++
)
e
=
h
[
f
],
i
.
push
(
e
.
update
(
b
));
return
i
}},
"class-*"
:
function
(
a
,
b
){
var
c
;
return
c
=
" "
+
a
.
className
+
" "
,
!
b
==
(
-
1
!==
c
.
indexOf
(
" "
+
this
.
args
[
0
]
+
" "
))?
a
.
className
=
b
?
""
+
a
.
className
+
" "
+
this
.
args
[
0
]:
c
.
replace
(
" "
+
this
.
args
[
0
]
+
" "
,
" "
).
trim
():
void
0
},
"*"
:
function
(
a
,
b
){
return
b
?
a
.
setAttribute
(
this
.
type
,
b
):
a
.
removeAttribute
(
this
.
type
)}},
a
.
components
=
{},
a
.
config
=
{
preloadData
:
!
0
,
handler
:
function
(
a
,
b
,
c
){
return
this
.
call
(
a
,
b
,
c
.
view
.
models
)}},
a
.
formatters
=
{},
a
.
factory
=
function
(
b
){
return
b
.
_
=
a
,
b
.
binders
=
a
.
binders
,
b
.
components
=
a
.
components
,
b
.
formatters
=
a
.
formatters
,
b
.
config
=
a
.
config
,
b
.
configure
=
function
(
b
){
var
c
,
d
;
null
==
b
&&
(
b
=
{});
for
(
c
in
b
)
d
=
b
[
c
],
a
.
config
[
c
]
=
d
},
b
.
bind
=
function
(
b
,
c
,
d
){
var
e
;
return
null
==
c
&&
(
c
=
{}),
null
==
d
&&
(
d
=
{}),
e
=
new
a
.
View
(
b
,
c
,
d
),
e
.
bind
(),
e
}},
"object"
==
typeof
exports
?
a
.
factory
(
exports
):
"function"
==
typeof
define
&&
define
.
amd
?
define
([
"exports"
],
function
(
b
){
return
a
.
factory
(
this
.
rivets
=
b
),
b
}):
a
.
factory
(
this
.
rivets
=
{})}.
call
(
this
);
\ No newline at end of file
...
...
package.json
View file @
dacf10b
{
"name"
:
"rivets"
,
"description"
:
"Declarative data binding facility."
,
"version"
:
"0.5.1
2
"
,
"version"
:
"0.5.1
3
"
,
"author"
:
"Michael Richards"
,
"url"
:
"http://rivetsjs.com"
,
"main"
:
"./dist/rivets.js"
,
...
...
src/rivets.coffee
View file @
dacf10b
# Rivets.js
# =========
# > version: 0.5.1
2
# > version: 0.5.1
3
# > author: Michael Richards
# > license: MIT
# >
...
...
Please
register
or
sign in
to post a comment