search for: shai

Displaying 20 results from an estimated 89 matches for "shai".

Did you mean: sha1
2006 May 14
3
hi all
...y excited to enter this new world(solely for me of course, kind of late) of rubyonrails.If anyone has any patience or just plain kindness to help me on my first steps (leaps?) , I would greatly appreciate any links, references, tips, hellos, or whatever else is offered. Thanks ahead of time, Shai Rosenfeld Octava I -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060514/79f53c28/attachment.html
2006 May 28
8
a newbie question, if possible to help
...39;' redirect_to :action => ''list'' else Page.find(params[:id]).destroy redirect_to :action => ''list'' end ------------------ why isn''t this working? any help will be greatly appreciated. thanks ahead of time, shai rosenfeld -- Posted via http://www.ruby-forum.com/.
2007 Feb 05
3
rsync 3.0.0cvs timeout
...[generator] Feb 5 09:57:43 fileserver rsyncd[11590]: rsync error: error in rsync protocol data stream (code 12) at io.c(549) [generator=3.0.0cvs] --- end of the /var/log/syslog of the server side --- If I go back to version 2.6.9 on the client side, this timeout problem goes away. Any ideas why? Shai -------------- next part -------------- HTML attachment scrubbed and removed
2008 Feb 11
3
[PATCH 1/5] Change vsmp compile dependency
Change Makefile so vsmp_64.o object is dependent on PARAVIRT, rather than X86_VSMP Signed-off-by: Glauber Costa <gcosta@redhat.com> Signed-off-by: Ravikiran Thirumalai <kiran@scalemp.com> Acked-by: Shai Fultheim <shai@scalemp.com> --- arch/x86/kernel/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index 21dc1a0..71a92a2 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile @@ -52,7 +52,7 @@...
2006 Jun 28
6
select_tag
in my controller @cursos = Curso.find_all in my view i''m trying to do a select_tag with the results @cursos, using a helper select_tag "name" options_for_select(@cursos) --------> not works select_tag "name" @cursos --------> not works how to do it, using the helper? tks -- Posted via http://www.ruby-forum.com/.
2006 Jun 13
3
acts_as_tree problem accessing parent object
i have a model called certification_types that i''ve declared as acts_as_tree. I have a model called certification that belongs_to :certification_type . class CertificationController < ApplicationController ..... def summary_list @certifications = Certification.find(:all, :order=>''date'') end end summary_list.rhtml <% for certification in
2006 May 30
2
Hi , Anyone From Singapore?
Hi All , I been trying out RoR and reading the mailing list for sometimes and wondering if anyone of you guys from Singapore ? I am thinking of a meetup or something for RoR fans here. If you are , pls contact me by my email ? Thank you very much. regards billy PS : Apology for sending non-ruby question email in the list.
2007 Mar 19
3
jQuery Users...
Any jQuery users out there? I would like to learn more about incorporating jQuery with Rails as the performance seems to be the best of any library I''ve seen and it is great in separating the JScript from the HTML. Any suggestions on where to get started? I''ve read this (http://b.lesseverything.com/2006/12/31/making-jquery-and- prototype-play-nice-in-rails) but was looking into
2000 Apr 05
2
My first R-program
...e, inputData$width1, inputData$width2); inputData$pValue <- list(pVal); write.table(inputData, file = "pValLamaScore.out", row.names = FALSE, col.names = FALSE, sep = "\t"); The error seems to be in, in its inability to recognize my self-made function (pValCalculator). Shai -- Shai Shen-Orr Crown Human Genome Center and Bioinformatics Unit, Weizmann Institute of Science Home page and more contact info: http://bioinfo.weizmann.ac.il/~lvssso -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www...
2006 Jun 01
3
how can i redirect a person after a login
...'t figure out how to redirect to the page he requested... my loggin system is this: APPLICATION CONTROLLER: def secure redirect_to :controller => ''login'' unless @session[:admin] == 1 end ------------------- in my LOGIN CONTROLLER: def authenticate pswd = [ ''shai'', ''octava''] @input = [ "#{params[:user][:name]}", "#{params[:user][:password]}" ] if pswd == @input @session[:admin] = 1 flash[:notice] = ''successful entry.'' redirect_to :controller => ''m...
2006 Jul 18
5
Newbie RoR question
I am currently working on a small database project to track company assets. Right now my Database consists of 3 tables. 1 for the equipment, 1 for the users info, and 1 for the type of equipment. I have all 3 databases working on a model test site using RoR. Where i am having trouble is getting the databases to talk together. I can''t find this answer anywhere else. My main table
2010 Dec 02
4
rules with multiple users/groups
...ased on users. This is supported in the shorewall-rules file, However it seems that each rule can only be associated with one user or group. Does this mean that I cannot have a rule apply to several users which belong to several groups? Will creating duplicate rules for each user work? Thanks Shai ------------------------------------------------------------------------------ Increase Visibility of Your 3D Game App & Earn a Chance To Win $500! Tap into the largest installed PC base & get more eyes on your game by optimizing for Intel(R) Graphics Technology. Get started today with the...
2007 Jul 24
4
How to pull the title and url from an iframe?
I have an iframe in which the user can browse. When they hit the ''add this page'' button i need to retrieve the url and the title of the page currently shown in the iframe. Does anyone know how to do this? Do i need to assign a variable name to my iframe? (currently it just sits in my template as a bit of html) -- Posted via http://www.ruby-forum.com/.
2006 Jul 10
2
Formatting of dates in a text_field
When displaying a date field using a text_field object, is it possible to specify how the date will be formatted? <%= text_field ''item'', ''created_at'', {:class=>"text-input", :size=>18, :disabled=> true} produces 2006-07-07 12:00:00 I would like to reformat it to something like 07/07/2006 12:00pm -- Posted via
2006 Jul 13
2
partial_counter
Hi, i was wondering if there was any conventional way to find out (via the partialname_counter, or any other way) which partial is the last in a set of partials ( render :partial => ''name'', :collection => ''@somethings'') so that i can display some kind of variable in the last partial. there''s got to be some neat way to do this? (like setting
2006 Jun 22
4
Filter on variable
Hi all, I have a question about filtering on a variable. If I have the following code in my controller to select a list of users > @allusers = User.find(:all, > :conditions => [''team_id = ?'', @params["id"], > :order => ''created_at'') Is there an easy way to find out all users who
2007 Jan 21
2
using rsync 3.0.0 CVS version
...m" is just what I need. But ran into a problem... When I start the rsync, either with the rsync protocol or rsh, i found that it'll start doing the rsync and just halt after a few hundred MBs or even up to a couple GBs. I was never able to finish an rsync. Anyone else had this problem? Shai -------------- next part -------------- HTML attachment scrubbed and removed
2002 May 23
1
alternate data streams problem
hi all, I'm running into a strange problem: I'm running a samba 2.2.3a server on a linux machine. one win2k client is saving a directory full of pictures to this server but all pictures files (jpg, tif...) are saved as three files, two of the as the alternate data streams files of the original. it looks like this: Pb060009.jpg (the original file)
2007 Jan 29
3
rsync: mkstemp "/20070129_1012/.status.csv.IWS933" (in test) failed: No such file or directory (2)
Hi, --- + rsync -av --timeout 120 /home/20070129_1012/status.csv --port 5873 fileserver::test/20070129_1012/status.csv building file list ... done status.csv rsync: mkstemp "/20070129_1012/.status.csv.IWS933" (in test) failed: No such file or directory (2) sent 347 bytes received 38 bytes 770.00 bytes/sec total size is 228 speedup is 0.59 rsync error: some files could not be
2006 Jul 10
2
backups/version controll/source controll
...#39;'d be changing my application periodicly, but keeping a current version on the net, and one back on my local host server) but something that fits in with rails apps. does this kind of thing exist, or should i just go with a regular back-up program i find off the net? thanks in advance, shai -- Posted via http://www.ruby-forum.com/.