search for: param_string

Displaying 10 results from an estimated 10 matches for "param_string".

2010 Feb 05
5
White screen after some time in WoW
My problem: After some time playing WoW (about 1-2 minutes) the whole screen turns white. Everything else seems to work perfectly, I still have sound and I still can interact with my character. I can even open a terminal (blindfolded) and type 'killall WoW.exe' to quit WoW and make the white screen go away. wine --version outputs 'wine-1.1.37' I use the propiertary nVidia drivers
2006 Apr 05
1
New AJAX function: remote_replace_with_partial() <-- write less code
...any number of params without having to write supportive actions in your controllers. This is a great tool for UI changes on the fly and cancel buttons Heres the code: application_helper file: def remote_replace_with_partial(link, options = {}, params = {}) ## For passing params ## param_string = String.new params.each {|key,value| param_string << "&#{key}=#{value}" } string = link_to_function(link, "update_page_element(''#{options [:update]}'', ''#{options[:controller]}'', ''#{options[:partial]}'', '...
2010 Sep 07
2
Caching
What is the best way to set up caching when GET parameters are involved? For example I don''t want both /index and /index? tags=example to be cached as index.html. Does that make sense? Thanks, Tom -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2009 May 08
0
Wine release 1.1.21
The Wine development release 1.1.21 is now available. What's new in this release (see below for details): - Beginnings of shader model 4 support. - Support for copying/pasting images from X11 applications. - A number of GDIPlus improvements. - Various listview fixes. - 64-bit support in winemaker. - Support for building on Mac OS X Snow Leopard. - Various bug fixes. The source
2012 Jan 09
1
[PATCH 1/2] generator: Rename java_structs to camel_structs to better reflect their purpose
This map was originally included just for the java bindings, but is generally useful to any binding which uses camel case by requirement or convention. --- generator/generator_haskell.ml | 4 ++-- generator/generator_java.ml | 10 +++++----- generator/generator_main.ml | 2 +- generator/generator_structs.ml | 12 +++++------- generator/generator_structs.mli | 8 ++++---- 5
2013 Jan 24
3
[REVIEW ONLY] Mountable patches
These 3 patches implement support for APIs which must accept a mountable, but don't update apis which must return mountables. Matt
2012 Aug 14
7
[PATCH 0/7] Add tar compress, numericowner, excludes flags.
https://bugzilla.redhat.com/show_bug.cgi?id=847880 https://bugzilla.redhat.com/show_bug.cgi?id=847881 This patch series adds various optional arguments to the tar-in and tar-out commands. Firstly (1/7) an optional "compress" flag is added to select compression. This makes the calls tgz-in/tgz-out/txz-in/txz-out deprecated, and expands the range of compression types available.
2013 Feb 07
12
[PATCH 01/12] generator: Add new Mountable argument type
...function - | String n | Device n | Pathname n | Dev_or_Path n + | String n | Device n | Mountable n | Pathname n | Dev_or_Path n | FileIn n | FileOut n | Key n | OptString n | BufferIn n -> @@ -232,7 +232,7 @@ PHP_FUNCTION (guestfs_last_error) let param_string = String.concat "" ( List.map ( function - | String n | Device n | Pathname n | Dev_or_Path n + | String n | Device n | Mountable n | Pathname n | Dev_or_Path n | FileIn n | FileOut n | BufferIn n | Key n -> "s" | Op...
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...- | StringList n - | DeviceList n - | FilenameList n -> + | StringList (_, n) -> pr " zval *z_%s;\n" n; pr " char **%s;\n" n; | Bool n -> @@ -330,12 +325,10 @@ PHP_FUNCTION (guestfs_last_error) let param_string = String.concat "" ( List.map ( function - | String n | Device n | Mountable n | Pathname n - | Dev_or_Path n | Mountable_or_Path n - | FileIn n | FileOut n | BufferIn n | Key n - | GUID n -> "s" + | String (_,...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.