Searched defs:defaults (Results 1 - 25 of 44) sorted by relevance

12

/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/libs/
H A Djsoneditor-0.7.22-custom.js218 options = $extend({},JSONEditor.defaults.options,options||{});
232 var theme_class = JSONEditor.defaults.themes[this.options.theme || JSONEditor.defaults.theme];
233 if(!theme_class) throw "Unknown theme " + (this.options.theme || JSONEditor.defaults.theme);
242 var icon_class = JSONEditor.defaults.iconlibs[this.options.iconlib || JSONEditor.defaults.iconlib];
248 this.translate = this.options.translate || JSONEditor.defaults.translate;
385 $each(JSONEditor.defaults.resolvers,function(i,resolver) {
388 if(JSONEditor.defaults.editors[tmp]) {
396 if(!JSONEditor.defaults
[all...]
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/libs/
H A Djsoneditor-0.7.23-custom.js7 !function(){var a;!function(){var b=!1,c=/xyz/.test(function(){window.postMessage("xyz")})?/\b_super\b/:/.*/;return a=function(){},a.extend=function(a){function d(){!b&&this.init&&this.init.apply(this,arguments)}var e=this.prototype;b=!0;var f=new this;b=!1;for(var g in a)f[g]="function"==typeof a[g]&&"function"==typeof e[g]&&c.test(a[g])?function(a,b){return function(){var c=this._super;this._super=e[a];var d=b.apply(this,arguments);return this._super=c,d}}(g,a[g]):a[g];return d.prototype=f,d.prototype.constructor=d,d.extend=arguments.callee,d},a}(),function(){function a(a,b){b=b||{bubbles:!1,cancelable:!1,detail:void 0};var c=document.createEvent("CustomEvent");return c.initCustomEvent(a,b.bubbles,b.cancelable,b.detail),c}a.prototype=window.Event.prototype,window.CustomEvent=a}(),function(){for(var a=0,b=["ms","moz","webkit","o"],c=0;c<b.length&&!window.requestAnimationFrame;++c)window.requestAnimationFrame=window[b[c]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[b[c]+"CancelAnimationFrame"]||window[b[c]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(window.requestAnimationFrame=function(b,c){var d=(new Date).getTime(),e=Math.max(0,16-(d-a)),f=window.setTimeout(function(){b(d+e)},e);return a=d+e,f}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(a){clearTimeout(a)})}(),function(){Array.isArray||(Array.isArray=function(a){return"[object Array]"===Object.prototype.toString.call(a)})}();var b=function(a){return"object"!=typeof a||a.nodeType||null!==a&&a===a.window?!1:a.constructor&&!Object.prototype.hasOwnProperty.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},c=function(a){var d,e,f;for(e=1;e<arguments.length;e++){d=arguments[e];for(f in d)d.hasOwnProperty(f)&&(d[f]&&b(d[f])?(a.hasOwnProperty(f)||(a[f]={}),c(a[f],d[f])):a[f]=d[f])}return a},d=function(a){return!isNaN(parseFloat(a))&&isFinite(a)},e=function(a,b){if(a&&"object"==typeof a){var c;if(Array.isArray(a)||"number"==typeof a.length&&a.length>0&&a.length-1 in a){for(c=0;c<a.length;c++)if(b(c,a[c])===!1)return}else if(Object.keys){var d=Object.keys(a);for(c=0;c<d.length;c++)if(b(d[c],a[d[c]])===!1)return}else for(c in a)if(a.hasOwnProperty(c)&&b(c,a[c])===!1)return}},f=function(a,b){var c=document.createEvent("HTMLEvents");c.initEvent(b,!0,!0),a.dispatchEvent(c)},g=function(a,b){if(!(a instanceof Element))throw new Error("element should be an instance of Element");b=c({},g.defaults.options,b||{}),this.element=a,this.options=b,this.init()};g.prototype={constructor:g,init:function(){var a=this;this.ready=!1;var b=g.defaults.themes[this.options.theme||g.defaults.theme];if(!b)throw"Unknown theme "+(this.options.theme||g.defaults.theme);this.schema=this.options.schema,this.theme=new b,this.template=this.options.template,this.refs=this.options.refs||{},this.uuid=0,this.__data={};var c=g.defaults.iconlibs[this.options.iconlib||g.defaults.iconlib];c&&(this.iconlib=new c),this.root_container=this.theme.getContainer(),this.element.appendChild(this.root_container),this.translate=this.options.translate||g.defaults.translate,this._loadExternalRefs(this.schema,function(){a._getDefinitions(a.schema),a.validator=new g.Validator(a);var b=a.getEditorClass(a.schema);a.root=a.createEditor(b,{jsoneditor:a,schema:a.schema,required:!0,container:a.root_container}),a.root.preBuild(),a.root.build(),a.root.postBuild(),a.options.startval&&a.root.setValue(a.options.startval),a.validation_results=a.validator.validate(a.root.getValue()),a.root.showValidationErrors(a.validation_results),a.ready=!0,window.requestAnimationFrame(function(){a.ready&&(a.validation_results=a.validator.validate(a.root.getValue()),a.root.showValidationErrors(a.validation_results),a.trigger("ready"),a.trigger("change"))})})},getValue:function(){if(!this.ready)throw"JSON Editor not ready yet. Listen for 'ready' event before getting the value";return this.syncModelWithView(),this.root.getValue()},setValue:function(a){if(!this.ready)throw"JSON Editor not ready yet. Listen for 'ready' event before setting the value";return this.root.setValue(a),this},validate:function(a){if(!this.ready)throw"JSON Editor not ready yet. Listen for 'ready' event before validating";return this.syncModelWithView(),this.validation_results=this.validator.validate(this.root.getValue()),this.root.showValidationErrors(this.validation_results),1===arguments.length?this.validator.validate(a):this.validation_results},destroy:function(){this.destroyed||this.ready&&(this.schema=null,this.options=null,this.root.destroy(),this.root=null,this.root_container=null,this.validator=null,this.validation_results=null,this.theme=null,this.iconlib=null,this.template=null,this.__data=null,this.ready=!1,this.element.innerHTML="",this.destroyed=!0)},on:function(a,b){return this.callbacks=this.callbacks||{},this.callbacks[a]=this.callbacks[a]||[],this.callbacks[a].push(b),this},off:function(a,b){if(a&&b){this.callbacks=this.callbacks||{},this.callbacks[a]=this.callbacks[a]||[];for(var c=[],d=0;d<this.callbacks[a].length;d++)this.callbacks[a][d]!==b&&c.push(this.callbacks[a][d]);this.callbacks[a]=c}else a?(this.callbacks=this.callbacks||{},this.callbacks[a]=[]):this.callbacks={};return this},trigger:function(a){if(this.callbacks&&this.callbacks[a]&&this.callbacks[a].length)for(var b=0;b<this.callbacks[a].length;b++)this.callbacks[a][b]();return this},setOption:function(a,b){if("show_errors"!==a)throw"Option "+a+" must be set during instantiation and cannot be changed later";return this.options.show_errors=b,this.onChange(),this},getEditorClass:function(a){var b;if(a=this.expandSchema(a),e(g.defaults.resolvers,function(c,d){var e=d(a);return e&&g.defaults.editors[e]?(b=e,!1):void 0}),!b)throw"Unknown editor for schema "+JSON.stringify(a);if(!g.defaults
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DCaseInsensitiveProperties.java76 public CaseInsensitiveProperties(Properties defaults) { argument
77 super(defaults);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DCaseInsensitiveProperties.java76 public CaseInsensitiveProperties(Properties defaults) { argument
77 super(defaults);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/password/ui/model/
H A DPWResetQuestionModelImpl.java331 Set defaults = getDefaultQuestions(realm);
336 set, defaults, realm);
437 * @param defaults administrator configured default questions
441 private Map getQuestionsAnswers(Set set, Set defaults, String orgDN) { argument
463 if (defaults.contains(question)) {
469 if (defaults.contains(question)) {
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMClientRegistration.java334 private Map<String, String> getTranslations(Locale locale, Set<String> configured, Set<String> defaults) { argument
338 if (configured.isEmpty() && defaults.isEmpty()) {
349 MultiValueMap<String, String[]> defaultTranslations = splitPipeDelimited(defaults, null);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/password/ui/model/
H A DPWResetQuestionModelImpl.java331 Set defaults = getDefaultQuestions(realm);
336 set, defaults, realm);
437 * @param defaults administrator configured default questions
441 private Map getQuestionsAnswers(Set set, Set defaults, String orgDN) { argument
463 if (defaults.contains(question)) {
469 if (defaults.contains(question)) {
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMClientRegistration.java306 private Map<String, String> getTranslations(Locale locale, Set<String> configured, Set<String> defaults) { argument
310 if (configured.isEmpty() && defaults.isEmpty()) {
321 MultiValueMap<String, String[]> defaultTranslations = splitPipeDelimited(defaults, null);
/forgerock/opendj2/ext/xalan-j/
H A Dserializer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xml/ org/apache/xml/serializer/ ...
H A DxercesImpl.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/forgerock/opendj-b2.6/ext/xalan-j/
H A Dserializer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xml/ org/apache/xml/serializer/ ...
H A DxercesImpl.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/forgerock/opendj2.6.2/ext/xalan-j/
H A Dserializer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xml/ org/apache/xml/serializer/ ...
H A DxercesImpl.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/forgerock/opendj2-jel-hg/ext/xalan-j/
H A Dserializer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xml/ org/apache/xml/serializer/ ...
/forgerock/opendj2-hg/ext/xalan-j/
H A Dserializer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xml/ org/apache/xml/serializer/ ...
/forgerock/opendj-v3/opendj-server-legacy/ext/xalan-j/
H A Dserializer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xml/ org/apache/xml/serializer/ ...
/forgerock/opendj-b2.6/ext/svnkit/
H A Dsqljet.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2/ext/svnkit/lib/
H A Dsqljet-1.1.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2.6.2/ext/svnkit/
H A Dsqljet.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2-hg/ext/svnkit/lib/
H A Dsqljet-1.1.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2/ext/checkstyle/
H A Dcheckstyle-all-4.1.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ...
/forgerock/opendj-b2.6/ext/checkstyle/
H A Dcheckstyle-all-4.1.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ...
/forgerock/opendj2.6.2/ext/checkstyle/
H A Dcheckstyle-all-4.1.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ...
/forgerock/opendj2-jel-hg/ext/checkstyle/
H A Dcheckstyle-all-4.1.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ...

Completed in 127 milliseconds

12