search for: rhml

Displaying 13 results from an estimated 13 matches for "rhml".

Did you mean: rhel
2013 Jun 05
2
combining two different matrizes
...sidual[i:j,15] ? ?#?berschussrenditen ? ?ex=x-rf ? ?erm=rm-rf ? ?#Regression ? ?reg <- lm(ex~erm+smb+hml) ? ?reglist[[i]] <- coef(reg) ? ? #Berechnung Residuum ? ?? ?#Residual Berechnung ? ?? ?rx = residual[(j-5):j,a] ? ?? ?rrm = residual[(j-5):j,12] ? ?? ?rsmb = residual[(j-5):j,13] ? ?? ?rhml = residual[(j-5):j,14] ? ?? ?rrf = residual[(j-5):j,15] ? ?? ?rex = rx-rrf ? ?? ?rerm = rrm-rrf ? ?? ?#Berechnung ? ?? ?res <- sum(rex-(reglist[[i]][2]*rerm+reglist[[i]][3]*rsmb+reglist[[i]][4]*rhml))/sd(rex-(reglist[[i]][2]*rerm+reglist[[i]][3]*rsmb+reglist[[i]][4]*rhml)) ? ?? ?reglist[[i]] &...
2006 Jan 17
4
textarea problem with accentued chars
Hello, I have a problem with accentued characters return from a textarea I have 3 simple files to show example ( below ). index.rhml : If I put "?nial" inside the textarea, then submit to :action => post post.rhml : wrote ?nial 195 "\303\251nial" // params[:comment][:message] return => ?nial params[:comment][:message][1] return => 195 ! ( 195 is not "?" , http://www.ascii...
2005 May 03
5
CentOS 4 - problem with remote X application
Hello i have a problem on CentOS 4 with starting remote x application on remote CentOS 3 od Solaris 9 boxes. The problem is: When I run it from CentOS 3 it's OK form CentOS 4 I cannot find a bad word in logs ... My local machine stoping firewall [root at klima-pc ~]# service iptables stop [root at klima-pc ~]# iptables-save [root at klima-pc ~]# SELinux is OFF I am connecting by ssh
2006 Apr 29
11
Multiple actions from one form - possible?
Hello * Obviously the rhtml below does not work, but it should be apparent what I try to achieve - I would like to give the user the choice to submit a form either to action1 or action2 but I cannot figure out how?! It would be great if someone could give some assistance. Thanks a lot, Alex <%= start_form_tag :action1 => ''save'', :action2 =>
2006 Mar 23
0
Newbie - populating select list from db - BUMP :)
...the same problem with a select with some values from db: the following select in test.rhtml: <%= select(:listSetting, :code, @listSettings) %> where @listSettings = ListSetting.find(:all, :order => "code").map {|u| [u.code, u.id] } i have an observer_field defined in test.rhml as below: <%= observe_field("listSetting_code", :update => "values_span", :url => {:action => :listSetting_code} ) %> which will observe the select object and run the code from ListSetting_code method from controller. the log after cha...
2005 Dec 24
2
Common menu
Hi, I''m releasing my first rails application and I''d like to have a common menu in all my templates. Do I have to include an rhtml from .rb or other rhtml ? Some sample code pls ? Regards, Fabian
2008 Apr 23
0
reload render partial in production mode
Hi Rails Guru, I have a partial view _rss.rhml that is updated with a cronjob every 15 minutes by parsing a remote rss feeds. On my main web site I read the _rss.rhtml file on the side bar. But because production mode caches rhtml files, my sidebar for the _rss.rhtml doesn''t get updated accordingly. How do I force the sidebar on the pa...
2006 Aug 14
2
(no subject)
I have the following code that generates a rhtml page, <%= start_form_tag :action => ''create'' %> <%= render :partial => ''form'' %> <%= submit_tag "Create" %> <%= end_form_tag %> <%= link_to ''Back'', :action => ''list'' %> ...I am trying to put a "Browse" button to
2006 Mar 11
0
Ruby-GetText-Package-1.3.0
...ocalization support. * Use GetText function(_() N_() etc) in template. * ISO-2022-JP charset is used when language is "ja"(Japanese). * Localization templates support. * ActionController::Base.render_text is overrided to find localized templates such as foo_ja.rhml, foo_ja_JP.rhtml. * @params["lang"] is treated as cgi["lang"] * Use N_() as localized messages of validates_* instead of _(). * Translates ActiveRecord::Column.human_name values automatically. * Fix memory leak, other bugs. Thanks to: Albert Ramstedt, Yugui, drawnboy...
2007 Sep 20
2
Rendering a partial from within that partial
...not being re-rendered upon submission to reveal the changes to this data.What might I do to fix this? show.rhtml <%= javascript_include_tag :defaults %> <ul id="name_list"><%= render :partial => ''names'', :object => @person %></ul> _names.rhml (lists the names of ''Person''. Clicking on a name reveals a form to edit that name) <% for name in @person.current_names %> <%= link_to_function (name.full_name, :onclick => "Element.show(''edit_name_#{claimantname.id}'')" %><br> <...
2006 Mar 22
4
Newbie - populating select list from db
Can''t seem to find an example of this anywhere - how do I populate a select list in a form from a database? I have a form to create a new task. The task is for a client, so there should be a select list populated from my clients table. I thought this would work: <%= select ''task'', ''client_id'', Client.find_all, "id", "name"
2006 Jun 07
3
ActionController::UNKnownAction (No action responded to crea
Hello All, I''ve developed RoR on windowsXP have deployed that on Linux. Everythings works fine when working on windows. Things are fine on Linux too untill I try to create new entry. I tried but couldn''t find any relevent information why it should happen only to this "specific" create action. I''m saying this because different create on other forms are
2006 Mar 08
19
Creating multiple rows with one form
Hello. I''ve been trying this out for the past two days and I can''t seem to get it. I''m going to have a page where you can upload x amount of images at once. Lets say 10 images need to be uploaded, all with a caption. I''d like to have a browse button to choose the file, then the caption. Now, if I put 10 of them in one form, fill them all out and submit, I get