Searched refs:document (Results 76 - 100 of 361) sorted by relevance

1234567891011>>

/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/imageloader/
H A Dimageloader-experimental.js218 var scrollTop = (document.compatMode != 'CSS1Compat') ? document.body.scrollTop : document.documentElement.scrollTop;
221 var scrollLeft = (document.compatMode != 'CSS1Compat') ? document.body.scrollLeft : document.documentElement.scrollLeft;
330 var el = document.getElementById(this.domId);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DBaseIDImpl.java65 Document document = XMLUtils.toDOMDocument(xml, SAML2SDKUtils.debug);
66 if (document != null) {
67 Element rootElement = document.getDocumentElement();
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DStatusMessageImpl.java71 Document document = XMLUtils.toDOMDocument(xml, XACMLSDKUtils.debug);
72 if (document != null) {
73 Element rootElement = document.getDocumentElement();
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/js/
H A DAjaxUtils.js128 document.getElementById(name).style.left = x + 'px';
129 document.getElementById(name).style.top = y + 'px';
219 // while the users pass from document to their main folder.
269 var scriptElement = document.createElement("script");
285 document.getElementById(divId).innerHTML = jsCache[url];
290 document.getElementById(divId).innerHTML = 'Loading content - please wait';
301 ajax_tooltipObj = document.createElement('DIV');
304 document.body.appendChild(ajax_tooltipObj);
307 var leftDiv = document.createElement('DIV'); /* Create arrow div */
312 var contentDiv = document
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/js/
H A DAjaxUtils.js128 document.getElementById(name).style.left = x + 'px';
129 document.getElementById(name).style.top = y + 'px';
219 // while the users pass from document to their main folder.
269 var scriptElement = document.createElement("script");
285 document.getElementById(divId).innerHTML = jsCache[url];
290 document.getElementById(divId).innerHTML = 'Loading content - please wait';
301 ajax_tooltipObj = document.createElement('DIV');
304 document.body.appendChild(ajax_tooltipObj);
307 var leftDiv = document.createElement('DIV'); /* Create arrow div */
312 var contentDiv = document
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsConsoleServiceConfig.java77 Document document = null;
81 document = documentBuilder.parse(is);
86 return document;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DBaseIDImpl.java65 Document document = XMLUtils.toDOMDocument(xml, SAML2SDKUtils.debug);
66 if (document != null) {
67 Element rootElement = document.getDocumentElement();
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DStatusMessageImpl.java71 Document document = XMLUtils.toDOMDocument(xml, XACMLSDKUtils.debug);
72 if (document != null) {
73 Element rootElement = document.getDocumentElement();
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/dom/
H A Ddom-debug.js64 if (document.defaultView && document.defaultView.getComputedStyle) { // W3C DOM method
72 var computed = document.defaultView.getComputedStyle(el, '');
79 } else if (document.documentElement.currentStyle && isIE) { // IE method
88 try { // make sure its in the document
157 return document.getElementById(el);
217 // has to be part of document to have pageXY
219 this.getStyle(el, 'display') == 'none') && el != document.body) {
393 this.getStyle(el, 'display') == 'none') && el != document.body) {
438 root = (root) ? Y.Dom.get(root) : null || document;
[all...]
H A Ddom-min.js12 return re;};if(document.defaultView&&document.defaultView.getComputedStyle){getStyle=function(el,property){var value=null;if(property=='float'){property='cssFloat';}
13 var computed=document.defaultView.getComputedStyle(el,'');if(computed){value=computed[toCamel(property)];}
14 return el.style[property]||value;};}else if(document.documentElement.currentStyle&&isIE){getStyle=function(el,property){switch(toCamel(property)){case'opacity':var val=100;try{val=el.filters['DXImageTransform.Microsoft.Alpha'].opacity;}catch(e){try{val=el.filters('alpha').opacity;}catch(e){}}
20 if(YAHOO.lang.isString(el)){return document.getElementById(el);}
23 return el;},getStyle:function(el,property){property=toCamel(property);var f=function(element){return getStyle(element,property);};return Y.Dom.batch(el,f,Y.Dom,true);},setStyle:function(el,property,val){property=toCamel(property);var f=function(element){setStyle(element,property,val);};Y.Dom.batch(el,f,Y.Dom,true);},getXY:function(el){var f=function(el){if((el.parentNode===null||el.offsetParent===null||this.getStyle(el,'display')=='none')&&el!=document.body){return false;}
37 if(!noRetry){var newXY=this.getXY(el);if((pos[0]!==null&&newXY[0]!=pos[0])||(pos[1]!==null&&newXY[1]!=pos[1])){this.setXY(el,pos,true);}}};Y.Dom.batch(el,f,Y.Dom,true);},setX:function(el,x){Y.Dom.setXY(el,[x,null]);},setY:function(el,y){Y.Dom.setXY(el,[null,y]);},getRegion:function(el){var f=function(el){if((el.parentNode===null||el.offsetParent===null||this.getStyle(el,'display')=='none')&&el!=document.body){return false;}
38 var region=Y.Region.getRegion(el);return region;};return Y.Dom.batch(el,f,Y.Dom,true);},getClientWidth:function(){return Y.Dom.getViewportWidth();},getClientHeight:function(){return Y.Dom.getViewportHeight();},getElementsByClassName:function(className,tag,root,apply){tag=tag||'*';root=(root)?Y.Dom.get(root):null||document;if(!root){return[];}
51 return false;};return Y.Dom.batch(needle,f,Y.Dom,true);},inDocument:function(el){var f=function(el){if(isSafari){while(el=el.parentNode){if(el==document.documentElement){return true;}}
53 return this.isAncestor(document
[all...]
H A Ddom.js64 if (document.defaultView && document.defaultView.getComputedStyle) { // W3C DOM method
72 var computed = document.defaultView.getComputedStyle(el, '');
79 } else if (document.documentElement.currentStyle && isIE) { // IE method
88 try { // make sure its in the document
155 return document.getElementById(el);
214 // has to be part of document to have pageXY
216 this.getStyle(el, 'display') == 'none') && el != document.body) {
386 this.getStyle(el, 'display') == 'none') && el != document.body) {
429 root = (root) ? Y.Dom.get(root) : null || document;
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/com_sun_web_ui/js/
H A DfocusCookie.js68 elements = eval("document." + this.form + ".elements");
70 elements = document.links;
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/test/qunit/managedobjects/
H A DmanagedObjectsTest.js49 $(document).one("shown.bs.modal", function (e) {
50 $(document).one("hidden.bs.modal", function (e) {
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/dom/
H A Ddom-debug.js64 if (document.defaultView && document.defaultView.getComputedStyle) { // W3C DOM method
72 var computed = document.defaultView.getComputedStyle(el, '');
79 } else if (document.documentElement.currentStyle && isIE) { // IE method
88 try { // make sure its in the document
157 return document.getElementById(el);
217 // has to be part of document to have pageXY
219 this.getStyle(el, 'display') == 'none') && el != document.body) {
393 this.getStyle(el, 'display') == 'none') && el != document.body) {
438 root = (root) ? Y.Dom.get(root) : null || document;
[all...]
H A Ddom-min.js12 return re;};if(document.defaultView&&document.defaultView.getComputedStyle){getStyle=function(el,property){var value=null;if(property=='float'){property='cssFloat';}
13 var computed=document.defaultView.getComputedStyle(el,'');if(computed){value=computed[toCamel(property)];}
14 return el.style[property]||value;};}else if(document.documentElement.currentStyle&&isIE){getStyle=function(el,property){switch(toCamel(property)){case'opacity':var val=100;try{val=el.filters['DXImageTransform.Microsoft.Alpha'].opacity;}catch(e){try{val=el.filters('alpha').opacity;}catch(e){}}
20 if(YAHOO.lang.isString(el)){return document.getElementById(el);}
23 return el;},getStyle:function(el,property){property=toCamel(property);var f=function(element){return getStyle(element,property);};return Y.Dom.batch(el,f,Y.Dom,true);},setStyle:function(el,property,val){property=toCamel(property);var f=function(element){setStyle(element,property,val);};Y.Dom.batch(el,f,Y.Dom,true);},getXY:function(el){var f=function(el){if((el.parentNode===null||el.offsetParent===null||this.getStyle(el,'display')=='none')&&el!=document.body){return false;}
37 if(!noRetry){var newXY=this.getXY(el);if((pos[0]!==null&&newXY[0]!=pos[0])||(pos[1]!==null&&newXY[1]!=pos[1])){this.setXY(el,pos,true);}}};Y.Dom.batch(el,f,Y.Dom,true);},setX:function(el,x){Y.Dom.setXY(el,[x,null]);},setY:function(el,y){Y.Dom.setXY(el,[null,y]);},getRegion:function(el){var f=function(el){if((el.parentNode===null||el.offsetParent===null||this.getStyle(el,'display')=='none')&&el!=document.body){return false;}
38 var region=Y.Region.getRegion(el);return region;};return Y.Dom.batch(el,f,Y.Dom,true);},getClientWidth:function(){return Y.Dom.getViewportWidth();},getClientHeight:function(){return Y.Dom.getViewportHeight();},getElementsByClassName:function(className,tag,root,apply){tag=tag||'*';root=(root)?Y.Dom.get(root):null||document;if(!root){return[];}
51 return false;};return Y.Dom.batch(needle,f,Y.Dom,true);},inDocument:function(el){var f=function(el){if(isSafari){while(el=el.parentNode){if(el==document.documentElement){return true;}}
53 return this.isAncestor(document
[all...]
H A Ddom.js64 if (document.defaultView && document.defaultView.getComputedStyle) { // W3C DOM method
72 var computed = document.defaultView.getComputedStyle(el, '');
79 } else if (document.documentElement.currentStyle && isIE) { // IE method
88 try { // make sure its in the document
155 return document.getElementById(el);
214 // has to be part of document to have pageXY
216 this.getStyle(el, 'display') == 'none') && el != document.body) {
386 this.getStyle(el, 'display') == 'none') && el != document.body) {
429 root = (root) ? Y.Dom.get(root) : null || document;
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/com_sun_web_ui/js/
H A DfocusCookie.js68 elements = eval("document." + this.form + ".elements");
70 elements = document.links;
/forgerock/openidm-v4/openidm-repo-orientdb/src/test/java/org/forgerock/openidm/repo/orientdb/impl/
H A DDBHelperTest.java29 import com.orientechnologies.orient.core.db.document.ODatabaseDocumentTx;
30 import com.orientechnologies.orient.core.db.document.ODatabaseDocumentPool;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/xmlsig/
H A DXMLSignatureManager.java136 * Sign the XML document using enveloped signatures.
140 * @throws XMLSignatureException if the document could not be signed
149 * Sign the XML document using enveloped signatures.
154 * @throws XMLSignatureException if the document could not be signed
192 * Sign part of the XML document referred by the supplied id attribute using
199 * @throws XMLSignatureException if the document could not be signed
210 * Sign part of the XML document referred by the supplied id attribute
218 * @throws XMLSignatureException if the document could not be signed
230 * Sign part of the XML document referred by the supplied id attribute
242 * @throws XMLSignatureException if the document coul
608 verifyXMLSignature(org.w3c.dom.Document document) argument
621 verifyXMLSignature(org.w3c.dom.Document document, java.lang.String certAlias) argument
637 verifyXMLSignature(org.w3c.dom.Document document, java.security.cert.Certificate cert) argument
739 verifyXMLSignature(String wsfVersion, String certAlias, org.w3c.dom.Document document) argument
755 verifyWSSSignature(org.w3c.dom.Document document, java.lang.String certAlias) argument
769 verifyWSSSignature(org.w3c.dom.Document document, java.security.Key key) argument
787 verifyWSSSignature(org.w3c.dom.Document document, java.security.Key key, String certAlias, String encryptAlias) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/xmlsig/
H A DXMLSignatureManager.java135 * Sign the XML document using enveloped signatures.
139 * @throws XMLSignatureException if the document could not be signed
148 * Sign the XML document using enveloped signatures.
153 * @throws XMLSignatureException if the document could not be signed
191 * Sign part of the XML document referred by the supplied id attribute using
198 * @throws XMLSignatureException if the document could not be signed
209 * Sign part of the XML document referred by the supplied id attribute
217 * @throws XMLSignatureException if the document could not be signed
229 * Sign part of the XML document referred by the supplied id attribute
241 * @throws XMLSignatureException if the document coul
607 verifyXMLSignature(org.w3c.dom.Document document) argument
620 verifyXMLSignature(org.w3c.dom.Document document, java.lang.String certAlias) argument
636 verifyXMLSignature(org.w3c.dom.Document document, java.security.cert.Certificate cert) argument
738 verifyXMLSignature(String wsfVersion, String certAlias, org.w3c.dom.Document document) argument
754 verifyWSSSignature(org.w3c.dom.Document document, java.lang.String certAlias) argument
768 verifyWSSSignature(org.w3c.dom.Document document, java.security.Key key) argument
786 verifyWSSSignature(org.w3c.dom.Document document, java.security.Key key, String certAlias, String encryptAlias) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/share/
H A DSessionRequestParser.java41 * XML document and returns the <code>SessionRequest</code> object
46 * document.
53 Document document; field in class:SessionRequestParser
60 * @param xmlDoc XML document to be parsed
63 document = xmlDoc;
72 document = XMLUtils.toDOMDocument(xmlString, debug);
76 * Parses the session request document. Please see file
83 if (document == null) {
88 // get document element
89 Element elem = document
[all...]
H A DSessionResponseParser.java41 * XML document and returns the <code>SessionResponse</code> object
48 * XML document
55 Document document; field in class:SessionResponseParser
59 * @param xmlDoc response document to be parsed
62 document = xmlDoc;
71 document = XMLUtils
83 if (document == null) {
86 // get document element
87 Element elem = document.getDocumentElement();
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/logger/
H A Dlogger-debug.js946 this._elContainer = document.body.appendChild(document.createElement("div"));
977 document.body.style += '';
1001 this._elHd = this._elContainer.appendChild(document.createElement("div"));
1005 this._elCollapse = this._elHd.appendChild(document.createElement("div"));
1008 this._btnCollapse = document.createElement("input");
1018 this._title = this._elHd.appendChild(document.createElement("h4"));
1039 this._elConsole = this._elContainer.appendChild(document.createElement("div"));
1068 this._elFt = this._elContainer.appendChild(document.createElement("div"));
1071 this._elBtns = this._elFt.appendChild(document
[all...]
H A Dlogger-min.js25 else{this._elContainer=document.body.appendChild(document.createElement("div"));YAHOO.util.Dom.addClass(this._elContainer,"yui-log");YAHOO.util.Dom.addClass(this._elContainer,"yui-log-container");var containerStyle=this._elContainer.style;if(this.width){containerStyle.width=this.width;}
31 if(navigator.userAgent.toLowerCase().indexOf("opera")!=-1){document.body.style+='';}}};YAHOO.widget.LogReader.prototype._initHeaderEl=function(){var oSelf=this;if(this._elHd){YAHOO.util.Event.purgeElement(this._elHd,true);this._elHd.innerHTML="";}
32 this._elHd=this._elContainer.appendChild(document.createElement("div"));this._elHd.id="yui-log-hd"+this._sName;this._elHd.className="yui-log-hd";this._elCollapse=this._elHd.appendChild(document.createElement("div"));this._elCollapse.className="yui-log-btns";this._btnCollapse=document.createElement("input");this._btnCollapse.type="button";this._btnCollapse.className="yui-log-button";this._btnCollapse.value="Collapse";this._btnCollapse=this._elCollapse.appendChild(this._btnCollapse);YAHOO.util.Event.addListener(oSelf._btnCollapse,'click',oSelf._onClickCollapseBtn,oSelf);this._title=this._elHd.appendChild(document.createElement("h4"));this._title.innerHTML="Logger Console";};YAHOO.widget.LogReader.prototype._initConsoleEl=function(){if(this._elConsole){YAHOO.util.Event.purgeElement(this._elConsole,true);this._elConsole.innerHTML="";}
33 this._elConsole=this._elContainer.appendChild(document.createElement("div"));this._elConsole.className="yui-log-bd";if(this.height){this._elConsole.style.height=this.height;}};YAHOO.widget.LogReader.prototype._initFooterEl=function(){var oSelf=this;if(this.footerEnabled){if(this._elFt){YAHOO.util.Event.purgeElement(this._elFt,true);this._elFt.innerHTML="";}
34 this._elFt=this._elContainer.appendChild(document.createElement("div"));this._elFt.className="yui-log-ft";this._elBtns=this._elFt.appendChild(document
[all...]
H A Dlogger.js946 this._elContainer = document.body.appendChild(document.createElement("div"));
977 document.body.style += '';
1001 this._elHd = this._elContainer.appendChild(document.createElement("div"));
1005 this._elCollapse = this._elHd.appendChild(document.createElement("div"));
1008 this._btnCollapse = document.createElement("input");
1018 this._title = this._elHd.appendChild(document.createElement("h4"));
1039 this._elConsole = this._elContainer.appendChild(document.createElement("div"));
1068 this._elFt = this._elContainer.appendChild(document.createElement("div"));
1071 this._elBtns = this._elFt.appendChild(document
[all...]

Completed in 89 milliseconds

1234567891011>>