search for: getresponsehead

Displaying 15 results from an estimated 15 matches for "getresponsehead".

Did you mean: getresponseheader
2005 Sep 25
14
script.aculo.us 1.5 release candidate 1
So, the first script.aculo.us 1.5 release candidate is out! Important changes and fixes from 1.5_pre4 (for a detailed list, see the CHANGELOG file): * Droppables w/greedy and hoverclass are now reverted when dragged item is no longer over them, fixes #2184 * Let Effect.Highlight correctly parse IE colors, add String.prototype.parseColor() for this, fixes #2037 * Make scriptaculous.js work
2006 Jan 10
5
using dynamic element ids with visual_effect
...is a cart in the sidebar which updates when you add a product to it. As well as updating the div, it also highlights the most recently added link item. Right now, we do it with: <script language="JavaScript"> function flash_cart(request) { var id = request.getResponseHeader(''X-Item-Id''); new Effect.Highlight(''cart_item_'' + id, { startcolor: "#66bb66", endcolor: "#114411" }); } </script> <%= link_to_remote ''...
2006 Jan 05
8
AJAX to submit form, but reload the whole page
I''m using ROR 1.0 and the included prototype.js to do some AJAX stuff. I''m using the form_remote_tag to submit a login form using AJAX. So, any error/failed login will be displayed using AJAX. But, for successful login, I would want it to reload the wholepage, not just update the <DIV>. How can I achieve this? -- Posted via http://www.ruby-forum.com/.
2006 Jan 18
0
form_remote_tag and 302 redirects under IE6 bug
...t;, :complete => "complete(request)", :failure => "failure(request)", :html => {:id=>"commentform",:class=>"commentform"}, 302 => "document.location=request.getResponseHeader(''location'');" %> ##### end code #### This works fine under firefox, but the javascript assigned to the 302 handler never gets called in IE. No javascript errors are raised, and replacing the javascript with a simple alert(''foo''); ensures that the js n...
2006 Jan 24
0
Catching 302 link_to_remote
...th a 200. That 200, I can catch and issue a redirect (just for testing). Any ideas on where I go wrong? <%= link_to_remote("Link name", :url =>{ :controller => "hotlist", :action => "save" }, 302 => "document.location=request.getResponseHeader(''location'')") %> 200 => "alert(''Hello'')" Works Lighty log for one request Processing HotlistController#save (for 10.0.2.4 at 2006-01-23 23:04:09) [POST] Session ID: 730985b6fffc3a5fd8eb519e884a21c7 Parameters: {"action"=&g...
2006 Nov 01
3
Viewing returned header
I am trying to view a particular header from the request object when using Ajax.Updater var myAjax = new Ajax.Updater(''item'', url, {method: get, onFailure: failed}); function failed(request) { alert(request.header(''My-Header'')); } That doesn''t work even though the documentation seems to indicate it should. If I put an alert inside the
2005 Dec 07
5
InPlaceEditor update of page contents ?
Hi all ! InPlaceEditor refreshes only the element that was updated. Is there any way to make it update tons of other stuff ? I have a table where changing a value in it causes changes in most other cells (weight to percentage to money). Thanks for any help ! -- François Beausoleil http://blog.teksol.info/ _______________________________________________ Rails-spinoffs mailing list
2015 Aug 07
0
Wine release 1.7.49
...(1): ole32: Ignore high part of size in storage version 3 files. YongHao Hu (1): msvcp120/tests: Fix error test case of tr2_sys_Copy_file in FAT filesystem. Zhenbo Li (6): mshtml: Add IHTMLXMLHttpRequest::statusText property implementation. mshtml: Add IHTMLXMLHttpRequest::getResponseHeader() method implementation. mshtml: Add IHTMLXMLHttpRequest::getAllResponseHeaders() method implementation. mshtml: Add IHTMLOpinionElement::index property's getter implementation. mshtml: Add IHTMLSelectElement::size property implementation. mshtml: Fix error handler in...
2006 Mar 24
6
login forms , redirect_to and ajax-scaffold problems
Hi, I have a standard type authentication technique direct from AWDWR, so there is a before_filter :authorize_employee, :except => :login in my employees_controller.rb the authorize_employee is in application.rb def authorize_employee unless session[:employee_id] flash[:notice] = "Please log in" # save the URL the user requested so we can hop
2016 Mar 04
0
Wine release 1.9.5
...CHILD style is not set. user32: Added debug traces to SetParent. mshtml: Added HTMLXMLHttpRequestFactory DISPID_VALUE implementation. mshtml: Expose XMLHttpRequest constructor to scripts. mshtml/tests: Fixed tests on some IE versions. mshtml: Added IHTMLXMLHttpRequest::getResponseHeader implementation. ntdll: Moved RegisterTraceGuids[AW] implementation to ntdll. user32: Always enable owner window in EndDialog. user32: Ignore WM_CHILDACTIVATE on disabled windows in DefMDIChildProc. mshtml: Always return false in IHTMLDOMAttribute2::get_expando for detached...
2010 Apr 16
0
Wine release 1.1.43
...r Leslie-Hughes (1): msxml4: Add Schema interfaces. Anders Jonsson (1): wineboot: Update Swedish translation. Andrew Eikum (5): mshtml: Return success in HTTPChannel::SetRequestMethod. mshtml: Implement HTTPChannel::GetRequestSucceeded. mshtml: Implement HTTPChannel::GetResponseHeader. mshtml: Always load URLs without a base URL through Wine. shlwapi: Check for NULL string in UrlIs. Andr? Hentschel (5): winemaker: Fix manpage. winedump: Update manpage. server: Add German translation of the manpage. winemaker: Add German translation of the m...
2011 Aug 05
0
Wine release 1.3.26
...dd accept types to the request headers. winhttp: Add a default user agent header. winhttp: Set WINHTTP_FLAG_SECURE if the scheme is https. winhttp: Implement IWinHttpRequest::GetAllResponseHeaders. winhttp: Add some parameter checks. winhttp: Implement IWinHttpRequest::GetResponseHeader. winhttp: Implement IWinHttpRequest::SetRequestHeader. winhttp: Add support for sending data with a request. winhttp: Include the extra info part of the URL in the request. winhttp: Don't send any data if the verb is GET. msi: Store table and column names in the...
2006 Jun 28
12
Ajax.Updater
Hi, someone can help me, I am ot able to find the way how to user Ajax.updaterto test if the request give some positive or negative result. I am able only to return the result inside a div. An example is appreciated. _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...urn !m || (m[0] == '#{protocol}//#{domain}#{port}'.interpolate({ + protocol: location.protocol, + domain: document.domain, + port: location.port ? ':' + location.port : '' + })); + }, + getHeader: function(name) { try { - return this.transport.getResponseHeader(name); + return this.transport.getResponseHeader(name) || null; } catch (e) { return null } }, @@ -1391,7 +1412,8 @@ Ajax.Response = Class.create({ if (!json) return null; json = decodeURIComponent(escape(json)); try { - return json.evalJSON(this.request.options...
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server