Namespacing some rails helper methods: image_path

Hi everyone,

What do you all think about namespacing, or renaming, some of the helper methods? Specifically, anything ending in _path, like

  image_path   stylesheet_path

Or, we could just rename them..?

"image_path" is a major hassle for those of us who'd like to use Image as a model name and end up with something kludgy like Asset or Picture, neither of which feel right.

Courtenay

What do you all think about namespacing, or renaming, some of the helper methods? Specifically, anything ending in _path, like

  image_path   stylesheet_path

Or, we could just rename them..?

If you can come up with a better name for them, I think it's a good idea. Avoiding strange clashes with routes is boudn to help new users track stuff down. To get the patch applied we'd need two, one against trunk, and another against stable with the new names, and deprecation for the old stuff.