This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Overload the view loader.. | |
View.prototype._loadTemplate = function(){ | |
var localView = this; | |
// summary: | |
// load view HTML template and dependencies. | |
// tags: | |
// private | |
// | |
var tpl = this.template; | |
var deps = this.dependencies?this.dependencies:[]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.test.web.controllers; | |
import java.io.ByteArrayInputStream; | |
import java.io.ByteArrayOutputStream; | |
import java.io.ObjectInput; | |
import java.io.ObjectInputStream; | |
import java.io.ObjectOutput; | |
import java.io.ObjectOutputStream; | |
import java.net.URLEncoder; | |
import java.security.MessageDigest; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define([ | |
'intern', | |
'dojo/Deferred', | |
"dojo/aspect", | |
'./MockManager', | |
], function ( | |
intern, | |
Deferred, | |
aspect, | |
MockManager |