Displaying 20 results from an estimated 1100 matches similar to: "good practice or waste of time?"
2012 Jun 25
0
[LLVMdev] [PATCH] cindex.py using find_library
On 06/25/2012 12:50 AM, Mihai Basa wrote:
> Hello all,
>
> Is there a reason why the library location code in cindex py does not
> use find_library() to locate libclang, like in the attached patch?
>
> Without it there were problems locating a versioned libclang.so.1 file
> on Debian, for example.
Hi Mihai,
as this is a clang related question, I move your mail to the clang
2003 Oct 20
3
Call Waiting on SIP phones
Hi All,
This is the first time I'm submitting a patch, and I hope it fixes more than
it breaks. I'm putting it here, since John Todd mentioned a while ago about
the heavy load Mark and crew have at Digium (doing such good work), so I
thought all of us could test this first, and if ok submit for inclusion in
CVS later if appropriate.
This is an extension to work done earlier (sorry I
2006 Jun 11
2
Finding a record and showing it -- how?
I''d like to prompt a user for the value of a Name field, then display
the record. Rails tells me that it cannot do a find without an ID. I
guess it must be that I''m not passing back properly the data from the
view to the controller.
Thanks for the help
joshi
The find_user.rhtml view:
<div class="find-name-form">
<fieldset>
<legend>Enter User
2006 Nov 16
2
test unit approach?
I''m just getting back to looking at backgroundrb after a long hiatus
since June. I''m looking at creating some workers but I''m a bit stuck
as to how I should write tests for them. What''s the recommended
approach for unit testing of workers?
The project will ultimately be used by a Rails app but I''m
comfortable developing the worker code as a
2006 May 21
12
TDD for Rails book?
It seems like half the people on this list are writing a book on Ruby
or Rails. For all the hints I''ve seen strewn across the list I have
yet to see one that will focus on test-driven development for either
Ruby or for Rails.
If anyone is looking for a topic, please consider this. I''ve been
trying to wrap my brain around the TDD process, but its way of
thinking is
2012 Jun 24
2
[LLVMdev] [PATCH] cindex.py using find_library
Hello all,
Is there a reason why the library location code in cindex py does not use
find_library() to locate libclang, like in the attached patch?
Without it there were problems locating a versioned libclang.so.1 file on
Debian, for example.
Cheers,
Mihai
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Apr 19
4
Another DRY question
I have some code working that lists only items from a particular user.
The code in my list action finds the user and then conditionally lists
only his/her items:
def list
user = User.find(session[:user])
user_id = user.id
@product_pages, @products = paginate :products, :per_page => 10,
:conditions =>[''user_id = ?'',
user.id]
2006 May 20
10
HOW TO create a new record and its associated objects within the SAME PAGE
hi,
can''t find any good tutorial or advice to deal with the creation of a
new record and it''s associated objects within the same page.
do i have to use ajax just to add custom form fields that will be
handled by the controller for associated objects creation.?
do i have to use ajax to add associated objects to the unsaved but
allready in session parent object?
what''s
2006 Feb 14
2
Inline list editing with RJS: best practices
I wanted to get the community opinion on the best way to use partials and
inline list (<li>) editing.
I have a very common scenario where a list is rendered:
--- index.rhtml ---
<ul>
<%= render :partial => ''item'', @collection => @items %>
</ul>
--- _item.rhtml (simplified) ---
<li id="item_<%= item.id %>">
<div
2006 May 19
2
update_attributes
My application is so far mostly built from scaffold.
When I edit an existing record (I''ve turned off validation) the update
method is called. I get this error:
NoMethodError in <module>/<controller>#update
You have a nil object when you didn''t expect it!
You might have expected an instance of Array.
The error occured while evaluating nil.+
I get the same error when
2015 Jun 23
2
[LLVMdev] [cfe-dev] LLVM 3.7 release plans
> > - Using CMake for the release binaries. I think I promised we'd do
> > this for 3.7. I haven't actually started looking at this yet, but I'm
> > still optimistic.
>
> I'm absolutely in agreement with this. Most of us already use CMake
> for development, a lot of the buildbots are based on it and I think we
> all agree that autoconf is deprecated.
2006 Nov 22
3
RESTful web service design question
I''m working on a Rails app that needs to expose a RESTful web service. I''m curious to know some of the best practices as it relates to RESTful API design.
Let''s say I have a set of related objects on the server side. I''ll use the venerable subscribers, subscriptions and magazines example to lay it out.
class Subscriber < AR
has_many :subscriptions
2006 Jun 16
2
need help mocking out a method
I''m trying to test a controller method''s error handling. To do so I
need to mock out a method that normally returns a unique number so
that it returns a duplicate number several times in a row thereby
triggering the error handling. However, I can''t get the mock working.
Here''s the test code along with the error (all from test/functional/
2003 Sep 03
8
Asterisk Jitters
Hi,
Every time I dial into my asterisk box i hear nothing but asterisk
jittering.
The following is an example of what I get on the asterisk CLI
Thanks
*CLI> DEBUG[81926]: File chan_sip.c, Line 3826 (check_user): Setting NAT
on RTP
to 0
DEBUG[81926]: File chan_sip.c, Line 4807 (handle_request): Check for res
DEBUG[81926]: File chan_sip.c, Line 952 (find_user): Call from user
2006 Nov 18
1
ActiveResource sample code?
I''d like to play around a bit with ActiveResource for consuming a web
service. Does anyone have sample code they would be willing to share?
I''ve googled all around and have come up empty except for simple (non-
working) examples given in the RailsConf keynote and some associated
blog entries.
Thanks!
cr
--~--~---------~--~----~------------~-------~--~----~
You received
2006 Jul 27
7
WebService
Hi all!
how do I make a WebService using rails?
thaks !
--
Cordialmente,
Carlos J?nior <junior@boanoitebh.com>
(31) 9244-6543
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060727/f52d1e1c/attachment.html
2006 May 18
2
How to debug the rendering in Rails?
Hi,
I have some controller code like this:
def mailing_lists
@ml = MailingList.find_by_identifier(@params[:id])
@messages = @ml.messages
@headers["Content-Type"] = "application/atom+xml"
@response.headers[''Last-Modified''] =
@messages.last.created_on.httpdateunless @
messages.empty?
minTime =
2020 Oct 08
2
Re: Building libvirt library without libvirtd or virsh
On Thu, Oct 08, 2020 at 09:38:22AM +0200, Martin Kletzander wrote:
> On Wed, Oct 07, 2020 at 04:50:26PM -0700, Román González wrote:
> > Hello there,
> >
> > I'm trying to play with musl and libvirt to see if I'm able to build a
> > libvirt client binary without dynamic lib dependencies. I have two
> > questions:
> >
> > 1) to your knowledge,
2006 Aug 07
9
[OT] Rails is built into OS X 10.5
This coming out of WWDC. Pretty cool to see this kind of thing happen.
--
J "Brien" | HybridIndie Productions | http://hybridindie.com |
hybridindie@gmail.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060807/380ae29c/attachment.html
2006 Jun 06
4
no view involved...
The canonical example of using BackgrounDRb involves updating a
progress bar on some user''s web page. Therefore, the long running
background process has some affiliation with a view.
How can backgroundrb be used for long running processes that are NOT
associated with a controller/view? Is this even possible? I
understand the nature of Rails is such that it does "just in