Displaying 4 results from an estimated 4 matches for "badfont".
Did you mean:
bad_font
2006 Jul 17
6
3 newbie questions
hey all,
I have 3 tables like this:
Images (id,name)
Tags (id,name)
ImagesTags(imageid,tagid)
in my image model I do a "has_and_belongs_to_many :tags" but to make
it work I need to rename ImagesTags(imageid,tagid) to
Images_Tags(image_id,tag_id). My question is that given that I can''t
rename the table, is there any way to make it work with the original
names?
Second question:
2006 Jun 13
8
Joins or relationships ?
I have a table called Post (not the actual name) where users input various
piece of information, Most of the input is done by dynamic select''s (drop
downs).
As an example:
User would choose
Field: Input: Values that go into
Post table
Category Full Time 2
Length 45 Days 4
State
2008 Nov 05
0
[ANNOUNCE] libX11 1.1.99.2
...e and keysym updates, this
release candidate brings support for Generic Events (XGE), and makes use
of libxcb's new socket handoff mechanism.
The shortlog from 1.1.5 follows.
Adam Jackson (2):
Bug #14898: Don't abuse the sprintf() implementation.
Fix the previous patch for the BadFont case.
Alan Coopersmith (3):
Strip whitespace from end of lines in source files
Rework code to choose local connection types and fallback to others
Sun bug #6739431: double free in _X11TransConnectDisplay()
Chris Ball (1):
Remove configure check for xcb-xlib.
Daniel Stone...
2006 May 21
6
Is there a way to call helper methods in a controller?
Hi,
Is there a way to call helper methods in a controller?
I want to do something like this in my controller
Class MyController < Action....
def my_method
string = link_to "some_url", :controller => "home", :action => "command"
end
end
link_to is an ActionView helper method and it seems that I couldn''t access
the method in the controller