search for: search_name

Displaying 8 results from an estimated 8 matches for "search_name".

2006 Mar 22
1
RJS - Still not working in IE
...t the second page.replace_html seems to do nothing. My environment is: Rails 1.0 + RJS Plugin Updated Javascripts to Scriptaculous 1.5.3 (for evalScripts support) Monkeypatched in_place_editor to support evalScripts This is the complete contents of the .rjs: page.replace_html ''current_search_name_editor'', :partial =>"search_name" page.replace_html ''search_pane'', :partial => "search" My view contains: ... <div class="SearchName" id="current_search_name_editor"> <%= render :partial => "search_name&q...
2009 Jul 29
6
Doubt in nil object with ajax
hi this is my htnl <html> <head> <%= javascript_include_tag :defaults %> </head> <body> <%= form_tag nil, { :id => ''search_form'' } %> <%= text_field ''recipe'', ''name'' %> <%= end_form_tag %> <div id="recipe"> </div> <%= observe_form :search_form, :frequency =>
2006 Mar 18
9
RJS - not working in IE
I searched thru all the postings about RJS, and I didn''t find one person who complained of problems specific to IE, but that''s what I''ve got. My environment is: Rails 1.0 + RJS Plugin Updated Javascripts to Scriptaculous 1.5.3 (for evalScripts support) Monkeypatched in_place_editor to support evalScripts I have just started using RJS, and I have two .rjs templates.
2007 Aug 14
0
problem searching dynamic strings with acts_as_ferret
Hi Jens, I am using acts_as_ferret and multi_search method in it, when I search for Cass I get the result, but I want to get Cass even if I type Cas or Ca or just C. How can we use the LIKE operator for this serach in acts_as_ferret? I am listing the method here: def search_names @users = User.available_users @user = User.find(session[:user_id]) @query = params[:query] || '''' @total, @users = User.multi_search(@query, [ WorkProfile ], :page => (params[:page]||1)) @pages = pages_for(@total) unless @query.blank? @results = User....
2014 Apr 30
3
[PATCH 2/2] Fix handling of passwords in URLs
...ic int parse (const char *arg, char **path_ret, char **protocol_ret, char ***server_ret, char **username_ret); +static int parse (const char *arg, char **path_ret, char **protocol_ret, char ***server_ret, char **username_ret, char **password_ret); static char *query_get (xmlURIPtr uri, const char *search_name); static int make_server (xmlURIPtr uri, const char *socket, char ***ret); @@ -45,10 +45,11 @@ parse_uri (const char *arg, struct uri *uri_ret) char *protocol = NULL; char **server = NULL; char *username = NULL; + char *password = NULL; /* Does it look like a URI? */ if (is_uri...
2015 Feb 02
1
RFC: Handle query strings for http and https (RHBZ#1092583)
...ath_ret, char **protocol_ret, char ***server_ret, char **username_ret, char **password_ret); +static int parse (const char *arg, char **path_ret, char **protocol_ret, char ***server_ret, char **username_ret, char **password_ret, char **query_ret); static char *query_get (xmlURIPtr uri, const char *search_name); static int make_server (xmlURIPtr uri, const char *socket, char ***ret); @@ -46,10 +46,11 @@ parse_uri (const char *arg, struct uri *uri_ret) char **server = NULL; char *username = NULL; char *password = NULL; + char *query = NULL; /* Does it look like a URI? */ if (is_uri (a...
2013 Aug 24
67
[PATCH 00/67] Proposed patches for libguestfs 1.22.6.
In the kernel and qemu communities it is routine for patches that will be backported to stable branches to be posted for review. I'm proposing we do the same for libguestfs stable branches. All of the attached have been tested with 'make check-release'. Rich.
2012 Feb 28
8
getting error:undefined method 'current'
...;'current'' for 852:Fixnum'', the error coming for following line <%if @expert_pagination.current.previous%> <a href="#" class="darkgray1" onclick="paginate_exp(<%=@expert_pagination.current.previous.number%>,escape(''<%=@search_name%>''));"> <img border="0" src="/images/left_arrow.gif" align="absmiddle"></a> <%else%> <%end%> can anyone know why it is coming ? i am using Ruby 1.8.6,rails :2.3.11 and gem 1.6.2 -- Sachin -- You received this mes...