Displaying 13 results from an estimated 13 matches for "aantix".
Did you mean:
antix
2012 Sep 15
10
Versioning of Views; Our Approach
...g that if the version file
extensions aren''t utilized, the end user (especially beginners) will not
know that the functionality exists.
Our end goal is to merge and submit a pull request for Rails core.
Would love to hear everyone''s thoughts.
Jim Jones
http://www.github.com/aantix
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-core/-/9POep66BvoMJ.
To post to this group, send email to rubyonrails-core@googlegroups.com.
To...
2005 Oct 15
1
Base directory for apps
Is there any way to specify a root project directory other than the
default ''rails_apps'' subdirectory?
We have a few Rails projects on different drives that cannot be moved.
We''re using Windows, so symlinks are out of the question.
Thanks.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Aug 18
1
How can I utilize this library within my Rails app?
How would I go about referencing the graphs that Scruffy generates
within my Rails app?
http://ibrasten.com/articles/2006/08/14/scruffy-0-2-0
Jim
--
Posted via http://www.ruby-forum.com/.
2006 Jul 05
1
Process incoming SOAP requests?
We currently have a SOAP server that processes incoming requests. I''d
like to rewrite this system (maintaining the same SOAP interfaces)
utilizing RoR. What is the easiest way to go about this?
Thanks.
--
Posted via http://www.ruby-forum.com/.
2006 Apr 28
1
lib directory cached?
I am testing my app on a shared host account on Site5.
The app is in development mode and all changes for the most part take
place immediately. The only exception are the classes that I have
developed and placed in my lib/ directory.
I can make a change to my class, run my app, have it behave in the
previous manner, go to bed, come back the next morning, and the changes
will have taken
2006 Mar 20
0
sortable_element behavior change from 0.13
Originally when I implemented my app, I had a series of sortable
elements that could be dragged around to be reordered. To drag around,
I would click and hold down the mouse button and move the element to the
desired position.
After updating the dragdrop.js library, now I just click on the element
(which selects it) move my mouse pointer to the desired position
(without having to hold the
2006 Feb 22
0
Failover with Rails?
Is it possible to change database settings programmatically?
What I am looking for is if there''s a situation where a Find(), or
Create() fails, I would like to be able to redirect Rails to a different
db connection.
I know that this is something that could be accomplished at the OS
level, but because of certain constraints, I need to be able to do this
at the application level.
2006 Jan 02
0
PHP Integration
I have a 3rd party membership system (PHP based) that handles all of my
subscription duties. The system can protect a directory in one of two
ways either via .htaccess or a php include file.
The following rules are generated for a protected directory''s .htaccess
file:
########### START #####################
Options +FollowSymLinks
RewriteEngine On
## allow access for product #5
2006 Jan 05
1
sortable_element not recognizing newly added <li> elements
I have a user defined list of items. Using the sortable_element
function, I can manipulate the ordering of this list fine by dragging
each component around.
When I dynamically add another <li> item to this list, the newly added
item is _not_ "draggable" like its other siblings.
Using the sortable_element function, how do I make it aware of newly
added list items? Here is my
2006 Jan 17
0
:afterFinish not getting called?
I am attempting to remove an element in the :afterFinish callback of the
"Squish" effect. This is what my call looks like.
<%= link_to_remote ("X",
:url => { :action => "deleteIt",
:id => wc_line.attributes[''id''],
:exercise_id => wc_line.attributes[''exercise_id''] },
2006 May 14
0
RJS Template not getting called
I have a shared account on Site5.com running Rails v1.0. I installed
the RJS template plugin within my project.
My controller function gets called, but my corresponding RJS template
does not get called. The following is output (any thoughts?):
ActionController::MissingTemplate (Missing template
./../config/../app/views//workout/addjournalentry.rhtml):
2006 Apr 07
3
Inline editing of datetime and dropdown select objects?
I don''t believe that Rails has support for the inline editing of
datetime objects or dropdown combo boxes.
Does anyone have a helper function or two that would allow me to do such
a thing?
--
Posted via http://www.ruby-forum.com/.
2006 Mar 16
4
Table Relationships Problems.
I have the following tables setup:
locations
:id
:name
systemmessages
:id
:name
systemmessage_validtimes
:id
:name
:systemmessage_id
:location_id
:start
:end
The systemmessage_validtimes has a ''has_many'' relationship with
systemmessages, meaning that there could be many valid times for each
system message.
@systemMessage = Systemmessage.find(1)
E.g. I