search for: wholename

Displaying 20 results from an estimated 20 matches for "wholename".

Did you mean: rolename
2006 Feb 27
2
Ajax - from there to here
Trying to use Amy Hoy''s ajaxariffic auto_complete methodology and I am getting really close to the end. This is fairly complicated but I will simplify as best I can. My view code is simple... <%= text_field_with_auto_complete ''client'', ''wholename'' %> # wholename is not a column in ''clients'' but rather represents an aggregation of 3 fields...first_name, middle_initial, last_name my controller code does the necessary part to display the ''auto_complete'' listing... def auto_complete_for_clien...
2008 Feb 07
3
replacement for IMAP_EMPTYTRASH=Trash:7
While running dovecot on debian etch using version 1.0.rc15-2etch3, i wonder the following: If i read the config files correctly, dovecot seems to have no equivalent of courier's IMAP_EMPTYTRASH=Trash:7 setting. Therefore, i wrote a script that dives into the user's directories and their maildirs. It looks like this: ============================================= #!/bin/bash for pad1
2006 Feb 06
3
linked table confusion
...:client has_one :case_manager client.rb belongs_to :case_manager has_many :placements case_manager.rb has_many :clients has_many :placements I am trying to create a view file for placements. I can pull columns from clients table in this view by using... <%= @placement.client.wholename %> but if I use <% @placement.case_manager.wholename %> I get error... RuntimeError: ERROR C42703 Mcolumn case_managers.placement_id does not exist Fparse_func.c L1359 Runknown_attribute: SELECT * FROM case_managers WHERE (case_managers.placement_id = 4) LIMIT 1 which make...
2006 Feb 08
0
foreign table references...a new twist
...s). The main object is the ''placement_id'' (there''s only 1). If I have a looped structure, I can make this work but it repeats the placement record 1 time for each referral_note... <% for referral_note in @referral_notes %> <%=h (referral_note.placement.client.wholename) %> <%=h (referral_note.note_date) %> <% end %> but if I take the first line out of the loop... <%=h (referral_note.placement.client.wholename) %> <% for referral_note in @referral_notes %> <%=h (referral_note.note_date) %> <% end %> it errors - not hav...
2016 Feb 03
6
delete directories with find and exclude other directories
Hi all, I'm attempting to delete some directories and I want to be able to exclude a directory called 'logs' from being deleted. This is my basic find operation (without the exclusion) # find . -type d |tail -10 ./d20160124-1120-df8mfb/deployments ./d20160124-1120-df8mfb/releases ./d20160131-16993-vazqg5 ./d20160131-16993-vazqg5/metadata ./d20160131-16993-vazqg5/deployments
2006 Feb 03
9
Because I''m very slow - trying to use console
I can''t see how to use variables so I am using console to test things out... clients table - a column named first_name My very brief console session... >> clients = Client.find_by_sql("select * from clients where first_name = FN") ActiveRecord::StatementInvalid: RuntimeError: ERROR C42703 Mcolumn "fn" does not exist Fparse_expr.c L1034
2010 Feb 05
4
2 Asterisk Boxes, Single Voicemail
Searching through the archives, I couldn't find an answer for this... I have two asterisk systems, (system A and system B), and would like to use a single voicemail system. Phones on system B are SIP phones, registered at system B. Can the message-waiting indicator be activated on a SIP phone registered to system B, if the voicemail resides on system A? If so, how? Thanks, folks.
2006 Feb 26
2
auto_complete on steroids
I am trying to get more out of auto_complete than it apparently was designed to deliver. My problems seem to be two fold. 1 - I use aggregations on names... :first_name, :middle_initial, :last_name and then aggregate them using a composed_of :wholename thing auto_complete_for seems to be wired to only use table columns directly and gags on the aggregate form. 2 - foreign table columns - auto_complete_for seems to be unusable for obtaining matching values from a column in another table but I haven''t fully explored this since I was tryin...
2016 Apr 22
2
Unexpected values obtained when reading in data using ncdf and ncdf4
...R using the ncdf and ncdf4 libraries. The nc files are too large to attach an example (but if someone is interested in helping out I could send a file privately via an online drive), but the code is basic: for(i in 1:length(thesenames[,1])){ data <- nc_open(paste(INDIR, thesenames[i,c("wholename")], sep=""), write=F) d.vars <- names(data$var) d.size <- (data$var[[length(d.vars)]])$size # Obtaining longitude and latitude values d.lon <- as.vector(ncvar_get(data, varid="lon", start=c(1,1), count=c(d.size[1],d.size[2]))) d.lat <- as.vector(...
2006 Feb 21
8
Validations continued
I simply can''t figure this out. I have been reading and re-reading Agile book and wiki.rubyonrails.org - all sorts of validation methods and still, it doesn''t work. Controller code def create @client = Client.new(params[:client]) if @client.save! flash[:notice] = ''Client was successfully created.'' redirect_to :action =>
2016 Apr 22
0
Unexpected values obtained when reading in data using ncdf and ncdf4
...etails -- what operating system are you running on, what version of R and the netcdf library are you using? If you make the files available to me I can take a look. Regards, --Dave Pierce ? > for(i in 1:length(thesenames[,1])){ > data <- nc_open(paste(INDIR, thesenames[i,c("wholename")], sep=""), > write=F) > d.vars <- names(data$var) > d.size <- (data$var[[length(d.vars)]])$size > > # Obtaining longitude and latitude values > d.lon <- as.vector(ncvar_get(data, varid="lon", start=c(1,1), > count=c(d.size[1],d.si...
2010 Jan 01
1
Occasional but consistent trouble with --filter
...the whole /srv/vhome/ dir, since I'm attempting to complete the second phase of this server migration: all the non mail related stuff had already been transferred and now is probably more recent on the new server than on the old one... Also note that the following command: find /srv -type d -wholename '/srv/vhome/*/users/*/.mail' do selects the right directories to migrate and only them. Thanks, Giampaolo
2006 Feb 02
12
basic ''find'' question
...t; <%= submit_tag ''Find'' %> <%= end_form_tag %> Which I presume calls list2.rhtml which has... <% odd_or_even = 0 for client in @clients odd_or_even = 1 - odd_or_even %> then a table/row/cell definitions and then list the clients <td><%=h (client.wholename) %> <% end %> and within my clients_controller.rb I have def list2 @clients = Client.find(:first, :conditions => "first_name = ''Elliot''") @client_pages, @clients = paginate :clients, :per_page => 10 end but it lists ALL clients and not...
2009 Jun 03
4
[OT] Simple Shell Script (while loop)
Hey Guys, I can not find the corrent syntax for what I am trying to acheive with a while loop. Having said that I'm not exactly sure what you would call it so I have been googling with no success probably for that reason. I am just working with some sub directories except there is one I don't want to use so I have a while loop like the following; if we stubmle into the sub directory I
2006 Feb 08
6
can''t get date_select to work
Hi, I render a couple of date_select fields, the HTML looks fine, I can see the values submitted back to the server, but AR doesn''t pick them up from the hash in Booking.new(params[''booking'']). I''ve got a ''booking'' object with parameters product, startdate and enddate. HTML snippets: <select
2007 Jul 20
2
[PATCH 1/7] lguest: documentation pt I: Preparation
...Preparation Guest Drivers Launcher Host Switcher Mastery; do echo "{==- $$f -==}"; make -s $$f; done; echo "{==-==}" +Preparation Preparation! Guest Drivers Launcher Host Switcher Mastery: + @sh ../../Documentation/lguest/extract $(PREFIX) `find ../../* -name '*.[chS]' -wholename '*lguest*'` =================================================================== --- /dev/null +++ b/drivers/lguest/README @@ -0,0 +1,47 @@ +Welcome, friend reader, to lguest. + +Lguest is an adventure, with you, the reader, as Hero. I can't think of many +5000-line projects which offer...
2007 Jul 20
2
[PATCH 1/7] lguest: documentation pt I: Preparation
...Preparation Guest Drivers Launcher Host Switcher Mastery; do echo "{==- $$f -==}"; make -s $$f; done; echo "{==-==}" +Preparation Preparation! Guest Drivers Launcher Host Switcher Mastery: + @sh ../../Documentation/lguest/extract $(PREFIX) `find ../../* -name '*.[chS]' -wholename '*lguest*'` =================================================================== --- /dev/null +++ b/drivers/lguest/README @@ -0,0 +1,47 @@ +Welcome, friend reader, to lguest. + +Lguest is an adventure, with you, the reader, as Hero. I can't think of many +5000-line projects which offer...
2007 Jun 07
2
[PATCH 1/7] lguest documentation: infrastructure and Chapter I
...Preparation Guest Drivers Launcher Host Switcher Mastery; do echo "{==- $$f -==}"; make -s $$f; done; echo "{==-==}" +Preparation Preparation! Guest Drivers Launcher Host Switcher Mastery: + @sh ../../Documentation/lguest/extract $(PREFIX) `find ../../* -name '*.[chS]' -wholename '*lguest*'` =================================================================== --- /dev/null +++ b/drivers/lguest/README @@ -0,0 +1,47 @@ +Welcome, friend reader, to lguest. + +Lguest is an adventure, with you, the reader, as Hero. I can't think of many +5000-line projects which offer...
2007 Jun 07
2
[PATCH 1/7] lguest documentation: infrastructure and Chapter I
...Preparation Guest Drivers Launcher Host Switcher Mastery; do echo "{==- $$f -==}"; make -s $$f; done; echo "{==-==}" +Preparation Preparation! Guest Drivers Launcher Host Switcher Mastery: + @sh ../../Documentation/lguest/extract $(PREFIX) `find ../../* -name '*.[chS]' -wholename '*lguest*'` =================================================================== --- /dev/null +++ b/drivers/lguest/README @@ -0,0 +1,47 @@ +Welcome, friend reader, to lguest. + +Lguest is an adventure, with you, the reader, as Hero. I can't think of many +5000-line projects which offer...
2012 Dec 13
7
HVM bug: system crashes after offline online a vcpu
Hi Konrad I encountered a bug when trying to bring offline a cpu then online it again in HVM. As I''m not very familiar with HVM stuffs I cannot come up with a quick fix. The HVM DomU is configured with 4 vcpus. After booting into command prompt, I do following operations. # echo 0 > /sys/devices/system/cpu/cpu3/online # echo 1 > /sys/devices/system/cpu/cpu3/online With