I have copied the content of output-release into modules support directory, but the WebForm doesn't load by complaining about require is not defined.
The new module is also registered in http://localhost/cs/cs.exe/app/config
Do we need to copy the entire content of lib directory that comes as part of development.
<link rel="icon" type="image/vnd.microsoft.icon" href="http://localhost/img16/csui/themes/carbonfiber/image/favicon.ico?v=1282.1139.49043964">
<link rel="stylesheet" href="http://localhost/img16/csui/themes/carbonfiber/theme.css?v=1282.1139.49043964">
<script src="http://localhost/img16/csui/bundles/csui-loader.js?v=1282.1139.49043964" data-csui-path="http://localhost/img16/csui"></script>
<script src="http://localhost/cs/cs.exe/app/config?locale=en-US"></script>
<script>
// This would be generated by the server
require.config({
config: {
'csui/utils/contexts/factories/connector': {
connection: {
//url: 'http://murdock.opentext.com/alpha/cs.exe/api/v1',
//supportPath: '/alphasupport'
//url: 'http://vmfp-oclipse.opentext.net/carbonfibre/cs/api/v1',
//supportPath: '/carbonfibresupport'
url: '//localhost/cs/cs.exe/api/v1',
supportPath: '/img16'
}
}
}
});
</script>
<script>
require([
'csui/pages/signin/signin.page.view',
'hello.page.mock.js'
], function (SignInPageView, mock) {
mock.enable();
var signInPageView = new SignInPageView();
signInPageView.render();
});
</script>