Displaying 4 results from an estimated 4 matches for "_xyz".
Did you mean:
_xyzw
2006 Nov 16
0
helpers not rendered in views?
...rg/tracker/index.php?
func=detail&aid=6713&group_id=797&atid=3150
I''m not sure if this is true of all helper methods but it is for the
following. In this case the forn_remote_tag is rendered as an empty
line.
Apprently helpers are not rendered in view tests...
template _xyz:
<div>
<% form_remote_tag :update => "some_div", :url => {:action
=> :something } %>
<textarea style="width: 100%" rows="2">Enter text here.</textarea>
<% end_form_tag %>
</div>
failing spec:
specify "Form is...
2006 Feb 18
5
Model methods and partial view templates
I have a method in a controller that invokes a
render :partial => ''some_partial_view''
In that view, I''m trying to access a method defined in a model, like
this;
<% for view in @an_array %>
<% local_var = view.some_method() %>
<% another_var = view.a_column_name %>
etc..
I am getting an undefined method error but the model is accessible
2005 Nov 28
3
Mini-HOWTO: Fixing rsync on Tiger (Mac OS X 10.4.x)
[Now the horse has left the barn, I decided to finally implement that
backup system I'd been thinking about for ages. Disk crashes can be
great motivators]
[Web-location for the living version of this document:
http://www.lartmaker.nl/rsync/]
Goal:
Producing a working network backup / cloning system for Mac OS X
systems. The system can be used for local backups as well, for
example to
2009 Dec 31
1
[PATCH] Autogenerate uureg opcode macros
...#define _XW(v) ureg_writemask((v), TGSI_WRITEMASK_X | TGSI_WRITEMASK_W)
+#define _YZ(v) ureg_writemask((v), TGSI_WRITEMASK_Y | TGSI_WRITEMASK_Z)
+#define _YW(v) ureg_writemask((v), TGSI_WRITEMASK_Y | TGSI_WRITEMASK_W)
+#define _ZW(v) ureg_writemask((v), TGSI_WRITEMASK_Z | TGSI_WRITEMASK_W)
+#define _XYZ(v) ureg_writemask((v), TGSI_WRITEMASK_X | TGSI_WRITEMASK_Y | TGSI_WRITEMASK_Z)
+#define _XYW(v) ureg_writemask((v), TGSI_WRITEMASK_X | TGSI_WRITEMASK_Y | TGSI_WRITEMASK_W)
+#define _XZW(v) ureg_writemask((v), TGSI_WRITEMASK_Y | TGSI_WRITEMASK_Z | TGSI_WRITEMASK_W)
+#define _YZW(v) ureg_writemask((v...