Searched refs:form (Results 51 - 75 of 133) sorted by relevance

123456

/forgerock/web-agents-v4/source/varnish/
H A Dagent.c258 NOTNULL(VRT_r_server_identity(req->ctx)), /* varnishd -i option; must be in the form: -i "http://agent.fqdn" */
384 /* special handler for x-www-form-urlencoded POST data */
385 if (strcasecmp(cont_type, "application/x-www-form-urlencoded") == 0) {
387 char *form = NULL; local
390 form_sz = am_asprintf(&form, "<html><head></head><body onload=\"document.postform.submit()\">"
391 "<form name=\"postform\" method=\"POST\" action=\"%s\">", ar->post_data_url);
392 if (form == NULL) {
413 form_sz = am_asprintf(&form,
415 form, values, eq);
417 form_sz = am_asprintf(&form,
[all...]
/forgerock/web-agents-v4/source/varnish3/
H A Dagent.c302 NOTNULL(VRT_r_server_identity(req->ctx)), /* varnishd -i option; must be in the form: -i "http://agent.fqdn" */
434 /* special handler for x-www-form-urlencoded POST data */
435 if (strcasecmp(cont_type, "application/x-www-form-urlencoded") == 0) {
437 char *form = NULL; local
440 form_sz = am_asprintf(&form, "<html><head></head><body onload=\"document.postform.submit()\">"
441 "<form name=\"postform\" method=\"POST\" action=\"%s\">", ar->post_data_url);
442 if (form == NULL) {
463 form_sz = am_asprintf(&form,
465 form, values, eq);
467 form_sz = am_asprintf(&form,
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/resources/css/config/
H A DadminStyle.less35 .form-group-header.fr-minimal-header {
42 .form-group {
249 .form-control-feedback {
253 .form-control {
298 .form-inline {
302 .form-group {
538 .form-control {
616 .form-group {
813 .form-control {
H A Dcorrelation.less21 #reconContainer .form-inline {
H A DworkflowView.less110 .form-horizontal .control-text {
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/src/main/java/org/forgerock/openam/oauth2/
H A DOAuth2Utils.java200 * into the generated form
225 * query If the content type is "application/x-www-form-urlencoded" then the
269 Form form = new Form(request.getEntity());
271 request.setEntity(form.getWebRepresentation());
272 result.putAll(form.getValuesMap());
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/rest/
H A DRestPermissionTest.java199 Form form = new Form();
200 form.add("privilege.json", privilege.toMinimalJSONObject());
206 .put(String.class, form);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOAuth2Utils.java204 * into the generated form
229 * query If the content type is "application/x-www-form-urlencoded" then the
273 Form form = new Form(request.getEntity());
275 request.setEntity(form.getWebRepresentation());
276 result.putAll(form.getValuesMap());
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/rest/
H A DRestPermissionTest.java199 Form form = new Form();
200 form.add("privilege.json", privilege.toMinimalJSONObject());
206 .put(String.class, form);
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/container/assets/
H A Dcontainer.css286 .yui-dialog form,
287 .yui-simple-dialog form {
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/container/assets/
H A Dcontainer.css286 .yui-dialog form,
287 .yui-simple-dialog form {
/forgerock/openam-v13/openam-restlet/src/test/java/org/forgerock/openam/rest/service/
H A DRestletRealmRouterTest.java217 Form form = request.getResourceRef().getQueryAsForm();
218 given(form.getFirstValue("realm")).willReturn("/" + realm);
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/css/
H A Dstyle2.css119 /* Most of this was acquired & adapted from http://www.sitepoint.com/article/fancy-form-design-css/ */
380 table.form {
408 form table {
413 form tr {
418 form td {
/forgerock/openam-v13/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/
H A DAMAccessAuditEventBuilder.java223 private Map<String, List<String>> getQueryParametersAsMap(Form form) { argument
225 queryParameters.putAll(form);
/forgerock/openidm-v4/openidm-ui/openidm-ui-enduser/src/main/resources/css/
H A Duser.less27 .form-group.no-bottom-margin {
/forgerock/openam/openam-restlet/src/test/java/org/forgerock/openam/rest/service/
H A DRestletRealmRouterTest.java208 Form form = request.getResourceRef().getQueryAsForm();
209 given(form.getFirstValue("realm")).willReturn("/" + realm);
/forgerock/openam/openam-server-only/src/main/webapp/assets/css/
H A Dstyle2.css119 /* Most of this was acquired & adapted from http://www.sitepoint.com/article/fancy-form-design-css/ */
380 table.form {
408 form table {
413 form tr {
418 form td {
/forgerock/openam/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/
H A DAMAccessAuditEventBuilder.java223 private Map<String, List<String>> getQueryParametersAsMap(Form form) { argument
225 queryParameters.putAll(form);
/forgerock/openidm-v4/openidm-workflow-activiti/src/main/java/org/forgerock/openidm/workflow/activiti/impl/
H A DProcessDefinitionResource.java59 import org.activiti.engine.form.StartFormData;
61 import org.activiti.engine.impl.form.DateFormType;
62 import org.activiti.engine.impl.form.DefaultStartFormHandler;
63 import org.activiti.engine.impl.form.EnumFormType;
64 import org.activiti.engine.impl.form.FormPropertyHandler;
242 * @return propertyList list of form properties
281 // add form data
/forgerock/web-agents-v4/source/iis/
H A Dagent.c1141 /* special handler for x-www-form-urlencoded POST data */
1142 if (_stricmp(cont_type, "application/x-www-form-urlencoded") == 0) {
1144 char *form = NULL; local
1147 form_sz = am_asprintf(&form, "<html><head></head><body onload=\"document.postform.submit()\">"
1148 "<form name=\"postform\" method=\"POST\" action=\"%s\">", rq->post_data_url);
1149 if (form == NULL) {
1169 form_sz = am_asprintf(&form,
1171 form, pair, eq);
1173 form_sz = am_asprintf(&form,
1175 form, pai
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/container/
H A Dcontainer-debug.js6303 * Dialog is an implementation of Panel that can be used to submit form
6307 * ways -- via an asynchronous Connection utility call, a simple form
6429 * @property form
6431 * <code>&#60;form&#62;</code> element.
6436 form: null,
6481 // Add form dialog config properties //
6484 * The method to use for posting the Dialog's form. Possible values
6485 * are "async", "form", and "manual".
6494 if (val != "form" && val != "async" && val != "none" &&
6582 * CustomEvent fired prior to form
[all...]
H A Dcontainer-min.js185 YAHOO.extend(Dialog,YAHOO.widget.Panel,{form:null,initDefaultConfig:function(){Dialog.superclass.initDefaultConfig.call(this);this.callback={success:null,failure:null,argument:null};this.cfg.addProperty(DEFAULT_CONFIG.POST_METHOD.key,{handler:this.configPostMethod,value:DEFAULT_CONFIG.POST_METHOD.value,validator:function(val){if(val!="form"&&val!="async"&&val!="none"&&val!="manual"){return false;}else{return true;}}});this.cfg.addProperty(DEFAULT_CONFIG.BUTTONS.key,{handler:this.configButtons,value:DEFAULT_CONFIG.BUTTONS.value});},initEvents:function(){Dialog.superclass.initEvents.call(this);var SIGNATURE=CustomEvent.LIST;this.beforeSubmitEvent=this.createEvent(EVENT_TYPES.BEFORE_SUBMIT);this.beforeSubmitEvent.signature=SIGNATURE;this.submitEvent=this.createEvent(EVENT_TYPES.SUBMIT);this.submitEvent.signature=SIGNATURE;this.manualSubmitEvent=this.createEvent(EVENT_TYPES.MANUAL_SUBMIT);this.manualSubmitEvent.signature=SIGNATURE;this.asyncSubmitEvent=this.createEvent(EVENT_TYPES.ASYNC_SUBMIT);this.asyncSubmitEvent.signature=SIGNATURE;this.formSubmitEvent=this.createEvent(EVENT_TYPES.FORM_SUBMIT);this.formSubmitEvent.signature=SIGNATURE;this.cancelEvent=this.createEvent(EVENT_TYPES.CANCEL);this.cancelEvent.signature=SIGNATURE;},init:function(el,userConfig){Dialog.superclass.init.call(this,el);this.beforeInitEvent.fire(Dialog);Dom.addClass(this.element,Dialog.CSS_DIALOG);this.cfg.setProperty("visible",false);if(userConfig){this.cfg.applyConfig(userConfig,true);}
186 this.showEvent.subscribe(this.focusFirst,this,true);this.beforeHideEvent.subscribe(this.blurButtons,this,true);this.subscribe("changeBody",this.registerForm);this.initEvent.fire(Dialog);},doSubmit:function(){var oForm=this.form,bUseFileUpload=false,bUseSecureFileUpload=false,aElements,nElements,i,sMethod;switch(this.cfg.getProperty("postmethod")){case"async":aElements=oForm.elements;nElements=aElements.length;if(nElements>0){i=nElements-1;do{if(aElements[i].type=="file"){bUseFileUpload=true;break;}}
189 sMethod=(oForm.getAttribute("method")||"POST").toUpperCase();Connect.setForm(oForm,bUseFileUpload,bUseSecureFileUpload);Connect.asyncRequest(sMethod,oForm.getAttribute("action"),this.callback);this.asyncSubmitEvent.fire();break;case"form":oForm.submit();this.formSubmitEvent.fire();break;case"none":case"manual":this.manualSubmitEvent.fire();break;}},registerForm:function(){var form=this.element.getElementsByTagName("form")[0],me=this,firstElement,lastElement;if(this.form){if(this.form==form&&Dom.isAncestor(this.element,this.form)){retur
[all...]
H A Dcontainer.js6273 * Dialog is an implementation of Panel that can be used to submit form
6277 * ways -- via an asynchronous Connection utility call, a simple form
6399 * @property form
6401 * <code>&#60;form&#62;</code> element.
6406 form: null,
6451 // Add form dialog config properties //
6454 * The method to use for posting the Dialog's form. Possible values
6455 * are "async", "form", and "manual".
6464 if (val != "form" && val != "async" && val != "none" &&
6552 * CustomEvent fired prior to form
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/container/
H A Dcontainer-debug.js6303 * Dialog is an implementation of Panel that can be used to submit form
6307 * ways -- via an asynchronous Connection utility call, a simple form
6429 * @property form
6431 * <code>&#60;form&#62;</code> element.
6436 form: null,
6481 // Add form dialog config properties //
6484 * The method to use for posting the Dialog's form. Possible values
6485 * are "async", "form", and "manual".
6494 if (val != "form" && val != "async" && val != "none" &&
6582 * CustomEvent fired prior to form
[all...]
H A Dcontainer-min.js185 YAHOO.extend(Dialog,YAHOO.widget.Panel,{form:null,initDefaultConfig:function(){Dialog.superclass.initDefaultConfig.call(this);this.callback={success:null,failure:null,argument:null};this.cfg.addProperty(DEFAULT_CONFIG.POST_METHOD.key,{handler:this.configPostMethod,value:DEFAULT_CONFIG.POST_METHOD.value,validator:function(val){if(val!="form"&&val!="async"&&val!="none"&&val!="manual"){return false;}else{return true;}}});this.cfg.addProperty(DEFAULT_CONFIG.BUTTONS.key,{handler:this.configButtons,value:DEFAULT_CONFIG.BUTTONS.value});},initEvents:function(){Dialog.superclass.initEvents.call(this);var SIGNATURE=CustomEvent.LIST;this.beforeSubmitEvent=this.createEvent(EVENT_TYPES.BEFORE_SUBMIT);this.beforeSubmitEvent.signature=SIGNATURE;this.submitEvent=this.createEvent(EVENT_TYPES.SUBMIT);this.submitEvent.signature=SIGNATURE;this.manualSubmitEvent=this.createEvent(EVENT_TYPES.MANUAL_SUBMIT);this.manualSubmitEvent.signature=SIGNATURE;this.asyncSubmitEvent=this.createEvent(EVENT_TYPES.ASYNC_SUBMIT);this.asyncSubmitEvent.signature=SIGNATURE;this.formSubmitEvent=this.createEvent(EVENT_TYPES.FORM_SUBMIT);this.formSubmitEvent.signature=SIGNATURE;this.cancelEvent=this.createEvent(EVENT_TYPES.CANCEL);this.cancelEvent.signature=SIGNATURE;},init:function(el,userConfig){Dialog.superclass.init.call(this,el);this.beforeInitEvent.fire(Dialog);Dom.addClass(this.element,Dialog.CSS_DIALOG);this.cfg.setProperty("visible",false);if(userConfig){this.cfg.applyConfig(userConfig,true);}
186 this.showEvent.subscribe(this.focusFirst,this,true);this.beforeHideEvent.subscribe(this.blurButtons,this,true);this.subscribe("changeBody",this.registerForm);this.initEvent.fire(Dialog);},doSubmit:function(){var oForm=this.form,bUseFileUpload=false,bUseSecureFileUpload=false,aElements,nElements,i,sMethod;switch(this.cfg.getProperty("postmethod")){case"async":aElements=oForm.elements;nElements=aElements.length;if(nElements>0){i=nElements-1;do{if(aElements[i].type=="file"){bUseFileUpload=true;break;}}
189 sMethod=(oForm.getAttribute("method")||"POST").toUpperCase();Connect.setForm(oForm,bUseFileUpload,bUseSecureFileUpload);Connect.asyncRequest(sMethod,oForm.getAttribute("action"),this.callback);this.asyncSubmitEvent.fire();break;case"form":oForm.submit();this.formSubmitEvent.fire();break;case"none":case"manual":this.manualSubmitEvent.fire();break;}},registerForm:function(){var form=this.element.getElementsByTagName("form")[0],me=this,firstElement,lastElement;if(this.form){if(this.form==form&&Dom.isAncestor(this.element,this.form)){retur
[all...]

Completed in 95 milliseconds

123456