Displaying 20 results from an estimated 800 matches similar to: "error messaging for a form without ActiveRecord model"
2008 Oct 25
7
Routing of result not clear in ActionMailer
Dear all,
I am trying to understand the following behaviour of the ActionMailer
in Rails 2.
I have an emailer_controller.rb
class EmailerController < ApplicationController
def send_mail
Emailer::deliver_contact_email(params[:email])
end
end
I have a model emailer.rb
class Emailer < ActionMailer::Base
def contact_email(email_params, sent_at = Time.now)
@recipients =
2010 Mar 17
3
[LLVMdev] CFG Manipulation is LLVM
Hi,
Is there any API within llvm that provides methods to access the CFG and
do some manipulations on the CFG.
Thanks,
Rohith.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100317/5536c443/attachment.html>
2010 Mar 26
0
[LLVMdev] CFG Manipulation is LLVM
Hi Rohith,
> I'm actually working on building a dependence graph . I'm not able
> to find the methods which llvm uses to build the CFG. Is it possible to
> use the same functions do build a dependence graph ( i Know the CFG
> nodes are basicblocks where as dependence graph nodes will be variables)?.
LLVM does not have explicit methods to build the CFG because it is
2010 May 02
2
[LLVMdev] Unreachable Executed error.
Hi,
I've written a pass that basically does some code transformations to
enable parallel execution. After the transformation llvm runs BitCode Writer
pass , which is aborting with Unreachable Executed error. What does this
error generally mean?.
Any pointers on how to go about debugging this.
Thanks,
Rohith.
-------------- next part --------------
An HTML attachment was scrubbed...
2006 Jun 22
4
rendering partials in layouts?
Hello all,
Forgive me if this is a really stupid question. How do you render
partials in a layout? It''s probably way easier than i believe it to be.
thanks!
--
Posted via http://www.ruby-forum.com/.
2006 Jul 19
7
Email Form for Contact Page
Can anyone point me to or provide me with code or a tutorial (preferably
a tutorial) for creating simple contact forms where the data is sent
over email to a specific email address. I have search all over the
internet and there doesn''t see to be anything anywhere.
Thanks In Advance,
Alex.
--
Posted via http://www.ruby-forum.com/.
2006 Jun 22
6
Capistrano with Local (not file:///) repository
I''m developing an rails app. The SVN repository resides on a (Win 2k)
server on my company''s local intranet. The repository is accessed via
http (Apache + mod_dav_svn). From this machine, it is not a problem to
get out onto the Internet. However, coming in from the Internet is not
possible (at least, not without a VPN connection).
Given this, is it possible to use
2010 Apr 18
2
[LLVMdev] Free Variables In a Loop.
Hi ,
I'm working on a project in which i need to find out all free variables
in a loop. I need to find all variables used inside a loop and that are not
declared(allocated) in the loop. I'm confused about what symbol tables to
use to get hold of such variables.
Thanks,
Rohith.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2010 May 02
0
[LLVMdev] Unreachable Executed error.
Run the verifier pass after your pass. The bitcode readers and
writers assume that the IR is well-formed, which yours may not be.
Reid
On Sun, May 2, 2010 at 1:08 AM, Rohith Goparaju <rgoparaj at umail.iu.edu> wrote:
> Hi,
>
> I've written a pass that basically does some code transformations to
> enable parallel execution. After the transformation llvm runs BitCode
2010 Apr 26
2
[LLVMdev] Creating a GEP instruction.
Hi,
I'm trying to create a GEP (inbounds) instruction . I was looking at the
createinboundsGEP method . I didnt get the inputiterator part. My question
how do i create a GEP instruction and what do i pass for the input iterator
arguments.
Thanks,
Rohith.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Aug 04
2
how to remove ID from stylesheet_link_tag?
When I use stylesheet_link_tag, the results come back with a timestamp
ID, like this:
<link href="/stylesheets/style.css?1154009736" media="screen"
rel="Stylesheet" type="text/css" />
I don''t want the query string and ID on the end, but I can''t see how to
disable this in the docs. How do I do this?
thanks,
jeff
--
Posted via
2010 Apr 19
0
[LLVMdev] Free Variables In a Loop.
Rohith Goparaju wrote:
> Hi ,
>
> I'm working on a project in which i need to find out all free
> variables in a loop. I need to find all variables used inside a loop
> and that are not declared(allocated) in the loop. I'm confused about
> what symbol tables to use to get hold of such variables.
When you say "variables," are you talking about LLVM virtual
2010 Apr 05
1
[LLVMdev] Moving Instructions.
Hi,
Is there a way in which i can move an instruction from one basicblock to
another?.(without giving the instruction a new name).
I'm actually trying to move the body of a given loop into a new function.
If i would be able to move basicblocks's that would be ideal. So is there a
way to move a basicblock into a function?.
Thanks,
Rohith.
-------------- next part --------------
An HTML
2010 Apr 18
2
[LLVMdev] Creating a Return Instruction.
Hi all,
I have to create a return instruction in a function. The function is of
type -- void * func (void *) . So i have to create a return instruction for
the function that should return a void pointer. But actually the function
will not return anything useful . it will be something like -- return void
* null. The problem i am facing is to create a return instruction the
Create function
2010 Apr 26
0
[LLVMdev] Creating a GEP instruction.
On Sun, Apr 25, 2010 at 5:15 PM, Rohith Goparaju <rgoparaj at umail.iu.edu> wrote:
> Hi,
>
> I'm trying to create a GEP (inbounds) instruction . I was looking at the
> createinboundsGEP method . I didnt get the inputiterator part. My question
> how do i create a GEP instruction and what do i pass for the input iterator
> arguments.
Generic answer to "how do I
2006 Jun 22
4
stylesheet linking and layouts
In my layout, I have something like (shortened for clarity):
<html>
<head>
<%= stylesheet_link_tag "index", :media => "all" %>
</head>
<body>
<div id="site-container">
... <cut for space>
<%= @content_for_layout %>
... <cut for space>
</div>
</body>
A view action has another stylesheet defined
2006 Jun 22
3
create pie chart
Hi,
I want to be able create a pie chart using rails, does anyone know of
any plugin''s taht could help me here?
Scott
--
Posted via http://www.ruby-forum.com/.
2006 Jun 22
2
str_replace PHP Function Equiv.
I''ve been searching for ages and not come up with anything on the
internet. I was wondering if there is a Rails equiv. for the PHP
function str_replace. For example;
variable_for_new_string("value_to_repace", "string_to_replace_with",
"string_to_perform_modification_to")
Thanks in advance for any help.
--
Posted via http://www.ruby-forum.com/.
2010 Apr 26
1
[LLVMdev] Creating a GEP instruction.
Thanks. The problem i'm facing is i want to get the address of the first
element of an array and i have also tried using the createInBoundsGEP which
takes the base pointer and the index value and a name. When i try passing
'0' as the index im running into problems.
Thanks,
Rohith.
On Sun, Apr 25, 2010 at 10:27 PM, Eli Friedman <eli.friedman at gmail.com>wrote:
> On Sun, Apr
2006 Jul 21
6
pulling information from LDAP server using Ruby on Rails
Hello, I am currently working on a project using Ruby on Rails. So far,
I have a well-populated mySQL database the RoR refers to and the basic
scaffolding functions implemented. I also designed views/layouts that
furthers the basic scaffolding interface. No problem and no big
accomplishment by any means.
Now, I want to pull user information from an already existing LDAP
server and put that