Displaying 20 results from an estimated 800 matches similar to: "deploying in local machine"
2008 Apr 16
12
how to accomplish pagination in RoR
Hi Folks,
I am just trying to get started up in RoR, I have done a simple
application of add, edit, delete....
I am now trying to accomplish pagination in RoR, I referred a few
tutorials, however none of the examples that i tried from there,
seemed to work error free..... I have heard that lots of things have
deprecated in RoR, can someone please post me a detailed report of how
i can
2008 Apr 11
2
issues on Net:HTTP
in cotroller:
@url=URI.parse(''http://google.com.sg/webhp'')
@res = Net::HTTP.get_response(@clarifyurl)
in view: <%=@res.body>
this page displayed as
301 Moved
The document has moved here
what''s wrong with my code, I want to get the correct reponse HTML
content from google.
--~--~---------~--~----~------------~-------~--~----~
You received this message
2008 Apr 12
12
sqlite3.dll problem
Hi I''m triying to begin developing in ruby on rails, and I''ve instaled
all the components but there is a problem with the file sqlite3.dll.
When I try to execute my first example in my web browser apears an alert
that says sqlite3.dll is not found.
I''m working on windows XP with firefox and the server is WEBrick.
If someone knows how can I resolve the problem please
2008 Apr 11
7
Net::SMTPAuthenticationError
Hey guys,
I want to send an email via ROR and I have put this code at the very end
in the config/environment.rb file-
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.logger = nil
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.smtp_settings = {
:address => "[my smtp server]",
:port => 25,
:domain
2008 Apr 15
1
How to call a java applet in rails application?
HI,
I have a applet file named "Scanner.class" which will scan and upload
image to the web server from Scanners.
I have couple of doubts in accessing that applet file.
1. How to call this applet from rhtml file, and where should i place
this file.
2. I also use some external jar files which i imported in my applet
file, where should i place these jars?
Thanks,
Ratnavel
--
Posted
2008 Apr 22
2
error after sending email.(conection refused- connect(2))
hi all,
in my application if the user forget the login details then they
can go to a page where they can enter their mail id and the login
details''ll be mailed them to that mail id.after mailing them the user''ll
be redirected to the login page.
but after entering the mail id and clicking the button im
getting error like
Errno::ECONNREFUSED in
2008 Apr 03
3
somebody help me to get previous page url in RoR
hi all,
im having a view page called "edit" and im having a back button
in it.im using this edit view page in many place of my application.i
want to go back to the page which calls this "edit" page no matter what
that page is.so somebody please help me to get the previous page url in
ruby on rails.waiting for the response.
regards,
karthik.
--
Posted via
2008 Apr 10
3
New to ruby, Need help
I''m attempting to make a simple program, just combine two images and
output a .jpg file. Here''s what I have:
class PicController < ApplicationController
require ''RMagick''
def index
im1 = Magick::Image.read(''1.jpg'') {self.size = "81x81"}.first
im2 = Magick::Image.read(''2-1.jpg'').first
result = im1.composite(im2,
2008 Apr 16
10
Is Phusion Passenger (mod_rails) good for single app servers
There is a lot of hype over mod_rails, but from my understanding it is
more geared for servers with a number of apps on it. The reason it
seems that way is how it frees up the memory if an app is stagnant for
an extended period. The freeing up of the memory may not be an issue if
the application gets a continuous traffic flow.
I have a site that I will be putting up in a couple days and am
2008 Dec 03
4
[LLVMdev] Identifying backedges
Hi,
How do I find out if a branch instruction belongs to an if-else or a loop i.e it is a backedge.
Thanks,
Bhavani
2008 Nov 15
3
[LLVMdev] How do I get the result of an instruction?
Hi all,
I probably have a stupid question but I could not find out so please help me out here. I can use getOperand to get the operands of an instruction. Similarly, How do I get the result of an instruction?
Thanks,
Bhavani
2008 Oct 27
3
[LLVMdev] Is it possible to use EE within optimization pass?
Thanks John! My pass is registered only in 1 cpp file. It registers and executes fine without the EE.
I only get the Pass registered multiple times error when I try to link to the EE by using LINK_COMPONENTS=engine in the Makefile. Without that line in the Makefile, my pass gets registered fine but it is not able to create EE(Error reading Symbol). So, how do I link LLVMExecutionEngine.o without
2008 Oct 27
2
[LLVMdev] Is it possible to use EE within optimization pass?
I realize my questions may not have been so clear. To give more details. I am writing a fuction pass. I want to interpret some of the instructions within the function pass. In order to do so, I need to create an EE object within the function pass. Now, If I compile and execute using opt. I get an error(Error loading symbol) at the line where I am creating EE.
opt: symbol lookup error:
2008 Nov 17
1
[LLVMdev] Assertion `InReg && "Value not in map!"' failed
Thanks Nick! ok. I ran through the verifier and this is the issue:
verifying... Instruction does not dominate all uses!
%tmp3 = add i32 %b, %a ; <i32> [#uses=2]
store i32 %tmp3, i32* %0, align 4
Broken module found, compilation aborted!
add is existing instruction in function. store is the instruction I have added to the function. How do I fix this now :(?
Thanks,
Bhavani
--- On Mon,
2008 Oct 27
0
[LLVMdev] Is it possible to use EE within optimization pass?
bhavani krishnan wrote:
> Thanks John! My pass is registered only in 1 cpp file. It registers and executes fine without the EE.
>
> I only get the Pass registered multiple times error when I try to link to the EE by using LINK_COMPONENTS=engine in the Makefile. Without that line in the Makefile, my pass gets registered fine but it is not able to create EE(Error reading Symbol). So, how do
2008 Nov 17
1
[LLVMdev] Assertion `InReg && "Value not in map!"' failed
Ah! I get it now. Thanks a lot !
I changed it to BitCastInst(AI,VoidPtrTy,"",j);
And now I am getting the following error :(. I have been stuck with this error before also. I know I am missing out something silly. What is the cause of this error and Please let me know how to fix it.
/home/bhavani/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1130: llvm::SDOperand
2008 Oct 27
2
[LLVMdev] Is it possible to use EE within optimization pass?
Hi all,
I am repeating my question from yesterday coz I need to find a solution to this ASAP.
How do I link the executionengine to an optimization pass. If I use LINK_COMPONENTS=engine in the Makefile, I get the Pass registered multiple times error. And if i dont use anything, it is not able to load the EE. It gives error loading symbol error. So,
1. Is it possible to use the EE within an
2008 Dec 03
0
[LLVMdev] Identifying backedges
Bhavani,
A simple way that I'm not sure is 100% guaranteed to work is if the
branch is to an earlier or later basic block.
Micah
-----Original Message-----
From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
On Behalf Of bhavani krishnan
Sent: Wednesday, December 03, 2008 3:20 PM
To: Nick Lewycky; LLVM Developers Mailing List
Subject: [LLVMdev] Identifying
2008 Oct 27
0
[LLVMdev] Is it possible to use EE within optimization pass?
bhavani krishnan wrote:
> I realize my questions may not have been so clear. To give more details. I am writing a fuction pass. I want to interpret some of the instructions within the function pass. In order to do so, I need to create an EE object within the function pass. Now, If I compile and execute using opt. I get an error(Error loading symbol) at the line where I am creating EE.
>
2008 Nov 16
0
[LLVMdev] How do I get the result of an instruction?
bhavani krishnan wrote:
> Hi all,
>
> I probably have a stupid question but I could not find out so please help me out here. I can use getOperand to get the operands of an instruction. Similarly, How do I get the result of an instruction?
>
The instruction itself is its result.
For example, if I wanted to generate code that does a getlemeneptr
instruction (GEP) and then uses the