Displaying 2 results from an estimated 2 matches for "_comp".
Did you mean:
comp
2006 May 01
0
Same .rhtml and partial in mailer and non-mailer contexts
...aform.find(params[:id])
render :template => "mailer/cma.text.html.rhtml", :id => @cmaform
end
However, when I did this, the partial called by the template couldn''t be
found. So I modified the render(:partial ... ) call in my temmplate to
set the path to the partial _comp.rhtml as follows:
<%= render(:partial => "mailer/comp", :object => @cmacomp,
:locals => {:cmacomp => @cmacomp}) %>
This worked with my preview, but it does not work with the
Mailer.deliver method. The error message is the somewhat unhelpful ""No
rhtml...
2011 Dec 20
0
sedf: remove useless tracing printk and harmonize comments style.
...;
- /* cur now contains the element, before which we''ll enqueue. */
- PRINT(3,"\tlist_add to %p\n",cur->prev);
+ /* cur now contains the element, before which we''ll enqueue */
list_add(element, cur->prev);
}
@@ -303,30 +263,26 @@ static int name##_comp(struct list_head*
return 1; \
}
-/* adds a domain to the queue of processes which wait for the beginning of the
- next period; this list is therefore sortet by this time, which is simply
- absol. deadline - period
+/* Adds a doma...