Skip to content

Commit 900c70c

Browse files
committed
no layout testing and boxlang updates
1 parent c3fcc2c commit 900c70c

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
"BOXLANG_DEBUG":true
3131
},
3232
"scripts":{
33-
"onServerInitialInstall":"install bx-mail,bx-pdf,bx-mysql,bx-compat-cfml,bx-esapi,bx-orm@be --noSave"
33+
"onServerInitialInstall":"install bx-mail,bx-pdf,bx-mysql,bx-compat-cfml,bx-esapi,bx-orm --noSave"
3434
}
3535
}

[email protected]

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"app":{
3-
"cfengine":"boxlang@be",
3+
"cfengine":"boxlang@1",
44
"serverHomeDirectory":".engine/boxlang"
55
},
66
"name":"coldbox-boxlang",
@@ -29,6 +29,6 @@
2929
"BOXLANG_DEBUG":true
3030
},
3131
"scripts":{
32-
"onServerInitialInstall":"install bx-mail,bx-pdf,bx-mysql,bx-esapi,bx-orm@be --noSave"
32+
"onServerInitialInstall":"install bx-mail,bx-pdf,bx-mysql,bx-esapi,bx-orm --noSave"
3333
}
3434
}

test-harness/handlers/nolayout.cfc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ component{
44
event.noLayout();
55
}
66

7+
function index( event, rc, prc ) {
8+
login( event, rc, prc );
9+
}
10+
711
function login( event, rc, prc ) {
8-
event.setView( "nolayout/login" );
12+
event.noLayout().setView( "nolayout/login" );
913
}
1014

1115
}

test-harness/modules_app/Inception/modules_app/inception-app1/handlers/Home.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
component {
55

66
function index( event, rc, prc ){
7-
event.setView( "home/index" );
7+
event.noLayout().setView( "home/index" );
88
}
99

1010
}

0 commit comments

Comments
 (0)