User Neil Middleton - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T09:52:33Zhttp://stackoverflow.com/feeds/user/4787http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1914120/getting-rid-of-amp-in-actionscript-20Getting rid of & in ActionScript 2Neil Middleton2009-12-16T11:34:34Z2009-12-16T11:54:03Z
<p>I have a flash 8 app that's reading an XML file. In the file are nodes containing the & character.</p>
<p>When these values are rendered they come out as "&amp;"</p>
<p>How do I stop this?</p>
http://stackoverflow.com/questions/1192843/grouped-select-in-rails0Grouped Select in RailsNeil Middleton2009-07-28T09:02:23Z2009-12-10T13:00:01Z
<p>Simple question really - how do I use the select(ActionView::Helpers::FormOptionsHelper) with grouped options?</p>
<p>I have got it working with a select_tag (ActionView::Helpers::FormTagHelper) but I would really like to have it using a select tag to match the rest of the form. Is this possible?</p>
<p>My options look like this:</p>
<pre><code>[
['Group 1', ["Item 1", "Item 2", "Item 3"]],
['Group 2',["Item 1", "Item 2", "Item 3", "Item 4"]]
]
</code></pre>
<p>whilst my view is currently:</p>
<pre><code>%tr#expense
%td
= f.text_field :value
= f.hidden_field :type, :value => mode
</code></pre>
http://stackoverflow.com/questions/1836267/cfmail-smtp-connection-limit/1836394#18363942Answer by Neil Middleton for CFMail SMTP connection limitNeil Middleton2009-12-02T22:42:10Z2009-12-02T22:42:10Z<p>Does "Mail Delivery Threads" on the Mail spool settings not do this?</p>
http://stackoverflow.com/questions/1593772/rails-rendering-a-new-object-as-an-edit0Rails rendering a new object as an edit?Neil Middleton2009-10-20T10:44:55Z2009-11-24T19:00:03Z
<p>I have an application where I'm creating a new object via a "new" action. Rails is using the correct controller action, and also rendering out the new form correctly.</p>
<p>However, the path for the form is coming up with an Id for an edit which is breaking things. The form tag is just:</p>
<pre><code><% form_for @issue do |f|
</code></pre>
<p>etc</p>
<p>Any ideas as to why this would be an edit form instead for a new one?</p>
<p>Controller looks like this:</p>
<pre><code>class IssuesController < ApplicationController
layout 'application'
def new
@issue = Issue.new
end
end
</code></pre>
<p>Routing is as follows:</p>
<pre><code>ActionController::Routing::Routes.draw do |map|
map.resources :issues
end
</code></pre>
http://stackoverflow.com/questions/1729540/how-best-to-expose-rails-methods-via-an-api1How best to expose Rails methods via an API?Neil Middleton2009-11-13T14:27:25Z2009-11-13T15:38:25Z
<p>Let's say I have a model foo, and my model has a publish! method that changes a few properties on that model and potentially a few others too.</p>
<p>Now, the Rails way suggests that I expose my model over rest and let the end user monkey with parameters.</p>
<p>What should I do if I want to expose my publish! method instead to protect my model? Is this even the best way of looking at this?</p>
http://stackoverflow.com/questions/70524/how-does-a-rails-developer-talk-to-flex-front-ends1How does a Rails developer talk to Flex front ends?Neil Middleton2008-09-16T08:58:58Z2009-11-11T12:56:27Z
<p>I'm looking at Rails development as a backend to a Flex application and am trying to figure out the communication layer between the Rails app and the Flash Player. All of the things I am finding suggest using SOAP web services to communicate.</p>
<p>However, Flash supports AMF which is nice and fast (and native). Is there any way of communicating over AMF from a Rails app, whilst supporting all the "nice" things about AMF (automatic type conversion, data push etc).</p>
http://stackoverflow.com/questions/1687866/unpacked-ruby-gems-and-environment-rb0Unpacked Ruby gems and environment.rbNeil Middleton2009-11-06T14:13:05Z2009-11-06T21:07:28Z
<p>Do I need to config.gem a gem that's already been unpacked?</p>
http://stackoverflow.com/questions/943855/empty-flot-charts0Empty Flot Charts?Neil Middleton2009-06-03T09:41:16Z2009-11-05T21:37:18Z
<p>I'm running the code below and getting an empty chart using Flot/jQuery. Ideally what I am after is a bar chart of the data. I'm looked and looked at this with no joy - does anyone have any ideas?</p>
<pre><code><div id="user_breakdown_placeholder" style="width:300px;height:300px"></div>
<script>
$(function () {
var d = [["Unassigned", 310],["Maynard Schumm", 274]];
var options = {};
$.plot($("#user_breakdown_placeholder"), d, options);
});
</script>
</code></pre>
http://stackoverflow.com/questions/1634349/escaping-a-string-in-ruby2escaping a string in RubyNeil Middleton2009-10-27T23:40:18Z2009-11-03T19:16:02Z
<p>I want to insert the following as the value for a variable in some Ruby:</p>
<pre><code>`~!@#$%^&*()_-+={}|[]\:";'<>?,./
</code></pre>
<p>Surrounding this in double quotes doesn't work, so is there a nice escape_until_the_end sort of thing available?</p>
http://stackoverflow.com/questions/1560922/creating-jira-issues-with-jira4r0Creating JIRA issues with Jira4RNeil Middleton2009-10-13T15:20:27Z2009-10-20T11:55:04Z
<p>I'm trying to write a small Rails app that will interface with Jira using the Jira4R gem. However, whilst I'm having no problem creating an issue, I'm having real trouble attaching a custom field to an issue.</p>
<p>Any ideas on how I would do this?</p>
<p>At the moment I'm creating the issue like:</p>
<pre><code>issue = Jira4R::V2::RemoteIssue.new
issue.project = "TEST"
issue.summary = params[:issue][:summary]
issue.description = params[:issue][:description]
issue.type = 6
issue = @jira.createIssue(issue)
</code></pre>
http://stackoverflow.com/questions/1560922/creating-jira-issues-with-jira4r/1594084#15940840Answer by Neil Middleton for Creating JIRA issues with Jira4RNeil Middleton2009-10-20T11:55:04Z2009-10-20T11:55:04Z<pre><code> issue = Jira4R::V2::RemoteIssue.new
issue.project = "TEST"
issue.summary = params[:issue][:summary]
issue.description = params[:issue][:description]
issue.type = 6
c = Jira4R::V2::RemoteCustomFieldValue.new
c.customfieldId = "customfield_10000"
c.values = current_user.full_name
issue.customFieldValues = [c]
issue = @jira.createIssue(issue)
</code></pre>
http://stackoverflow.com/questions/1591484/combining-two-rails-applications-into-one0Combining two Rails applications into oneNeil Middleton2009-10-19T22:27:43Z2009-10-20T01:33:07Z
<p>I have a couple of pre-existing applications which I need to run in "one" app. One is the application I want to use for authentication etc, whilst the other is another app that contains all of the business logic.</p>
<p>Both apps have pre-existing authentication, and both have fairly complex user models.</p>
<p>Is it possible to easily combine these so that if I log into one application and create a user, that same data is available in the other - or something similar?</p>
<p>What is the easiest way of doing this? Can a rails model extend a REST webservice?</p>
http://stackoverflow.com/questions/1571114/how-to-determine-how-much-load-a-rails-application-is-under-automagically2How to determine how much load a Rails application is under automagically?Neil Middleton2009-10-15T08:49:42Z2009-10-15T11:39:16Z
<p>We have a series of applications that we host on services such as Heroku which are able to scale up and down on demand.</p>
<p>What we would like to acheive is a management tool that determines how much load a specific application is under so it can auto scale the app on a needs basis.</p>
<p>What are the best ways of figuring out application load in a way that we can then easily act on this data?</p>
http://stackoverflow.com/questions/1555956/which-are-the-precious-rails-rubygems-that-railers-cant-live-without/1567220#15672201Answer by Neil Middleton for Which are the precious Rails RubyGems that Railers can't live without?Neil Middleton2009-10-14T15:49:53Z2009-10-14T15:49:53Z<ul>
<li><a href="http://github.com/newrelic/rpm" rel="nofollow">NewRelic RPM</a> </li>
<li><a href="http://www.hoptoadapp.com/" rel="nofollow">Hoptoad</a></li>
<li><a href="http://github.com/binarylogic/authlogic/" rel="nofollow">Authlogic</a></li>
<li><a href="http://github.com/nex3/haml/" rel="nofollow">Haml</a></li>
</ul>
http://stackoverflow.com/questions/1566393/rails-make-views-editable-by-end-users/1567198#15671980Answer by Neil Middleton for Rails: Make views editable by end-users?Neil Middleton2009-10-14T15:46:17Z2009-10-14T15:46:17Z<p>One option would be to use one of the many CMS's (<a href="http://browsercms.org" rel="nofollow">BrowserCMS</a> rocks) or use one of the I18n tools that give you an editor for your i18n files, and make sure all your text is pulled from a language file.</p>
http://stackoverflow.com/questions/1555625/how-to-determine-if-a-rails-object-is-markedfordestruction0How to determine if a Rails object is marked_for_destruction?Neil Middleton2009-10-12T16:37:46Z2009-10-13T16:23:55Z
<p>I have some objects which happen to be nested_attributes of something else.
When they are marked to be deleted, Rails creates a property "marked_for_destruction".
How do I read this var?</p>
<p>Sample Yaml dump:</p>
<pre><code>--- &id001 !ruby/object:LineItem
attributes:
name:Pay
created_at: 2009-10-12 16:30:51
updated_at: 2009-10-12 16:30:51
statement_id: "8"
amount: "234"
id: "33"
attributes_cache: {}
errors: !ruby/object:ActiveRecord::Errors
base: *id001
errors: {}
marked_for_destruction: true
</code></pre>
http://stackoverflow.com/questions/1555191/validating-a-rails-model-post-save0Validating a Rails model post-save?Neil Middleton2009-10-12T15:20:45Z2009-10-12T18:20:45Z
<p>I have a model with a couple of accepts_nested_attributes_for. There is a requirement that I have at least one of each of the nested attributes when saving and moving on.</p>
<p>However, validation occurs pre-save, so when I'm removing an item and moving on, it let's it through.</p>
<p>How can I validate that when I've saved, I have at least one item of each nested type there?</p>
http://stackoverflow.com/questions/1159107/rails-nested-resource-issue0Rails nested resource issueNeil Middleton2009-07-21T13:16:40Z2009-10-12T17:10:45Z
<p>I have a couple of resources, a grant_application, and a household which are related with a has_one</p>
<pre><code>class GrantApplication < ActiveRecord::Base
has_one :household, :dependent => :destroy
end
class Household < ActiveRecord::Base
belongs_to :grant_application
end
</code></pre>
<p>..and I also use the following route..</p>
<pre><code>map.resources :grant_applications do |grant|
grant.resource :household
end
</code></pre>
<p>However, I am having real problems when trying to create the form for /grant_applications/1/household/new</p>
<p>Using </p>
<pre><code><% form_for([:grant_application, @household]) do |f| %>
</code></pre>
<p>returns an error: </p>
<pre><code>undefined method 'grant_households_path' for #<ActionView::Base:0x23eda44>
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1555625/how-to-determine-if-a-rails-object-is-markedfordestruction/1555663#15556630Answer by Neil Middleton for How to determine if a Rails object is marked_for_destruction?Neil Middleton2009-10-12T16:46:26Z2009-10-12T16:46:26Z<pre><code>Object.marked_for_destruction?
</code></pre>
http://stackoverflow.com/questions/1546204/can-i-commercialise-a-agpl-product1Can I commercialise a AGPL product?Neil Middleton2009-10-09T21:43:39Z2009-10-10T00:30:48Z
<p>Is there anything from stopping me from taking a codebase licensed under the GPL/AGPL, modifying it, and then selling it as a hosted application for a monthly fee as long as I make my modifications available to anyone who asks?</p>
<p>At what point does a derivative work become a new work?</p>
http://stackoverflow.com/questions/1538212/changing-default-error-messages-in-rails2Changing default error messages in RailsNeil Middleton2009-10-08T14:34:18Z2009-10-08T14:37:00Z
<p>Our client has decided that they would like all blank AR error messages to be changed from "can't be blank" to "must be completed" throughout the entire app.</p>
<p>What's the easiest Rails'y way of doing this?</p>
http://stackoverflow.com/questions/127807/what-does-a-scrum-master-do-all-day7What does a scrum master do all day?Neil Middleton2008-09-24T15:17:36Z2009-10-01T17:32:58Z
<p>To quote wikipedia:</p>
<blockquote>
<p>Scrum is facilitated by a ScrumMaster, whose primary job is to remove impediments to the ability of the team to deliver the sprint goal. The ScrumMaster is not the leader of the team (as they are self-organizing) but acts as a buffer between the team and any distracting influences. The ScrumMaster ensures that the Scrum process is used as intended. The ScrumMaster is the enforcer of rules."</p>
</blockquote>
<p>Working on this basis, and the fact that most businesses are running 2-3 projects at a time, what actual work tasks does a SM do to fill a full time job? Or, is it not a full time job and that individual do other things such as development, sales etc?</p>
<p>Do any SM's out there have anything to share?</p>
http://stackoverflow.com/questions/1439838/making-generic-classes-rails-y0Making generic classes Rails-yNeil Middleton2009-09-17T16:14:42Z2009-09-17T18:17:55Z
<p>I have a simple class I want to include in my Rails app, but I want to still be able to access all the Rails niceness, e.g use the gems, helpers, routes etc etc as normal.</p>
<p>How can I do this? Is it the right thing to do?</p>
http://stackoverflow.com/questions/1400467/raising-an-activerecord-error-on-recordnotfound0Raising an ActiveRecord error on RecordNotFoundNeil Middleton2009-09-09T15:42:07Z2009-09-14T07:23:51Z
<p>Is there a way of doing a find_by_x that raises an exception if the record is not found?</p>
http://stackoverflow.com/questions/1189156/accessing-item-attributes-in-a-rails-form0Accessing item attributes in a Rails formNeil Middleton2009-07-27T16:20:06Z2009-07-27T18:04:37Z
<p>If I am inside a form block in Rails, e.g</p>
<pre><code>form_for @widget do |f|
end
</code></pre>
<p>and am thus able to do things such as f.text_field :attribute etc, how can I also find out what the value of different attributes are in order to carry out some display logic?</p>
<p>For instance, something like </p>
<pre><code>form_for @widget do |f|
f.text_field :some_property
f.checkbox :active if ????.active
end
</code></pre>
<p>How can I access the properties?</p>
http://stackoverflow.com/questions/1189156/accessing-item-attributes-in-a-rails-form/1189352#11893520Answer by Neil Middleton for Accessing item attributes in a Rails formNeil Middleton2009-07-27T16:56:32Z2009-07-27T16:56:32Z<p>f.object.active etc</p>
http://stackoverflow.com/questions/1172547/rails-nested-dynamic-objects0Rails Nested Dynamic Objects?Neil Middleton2009-07-23T15:21:45Z2009-07-23T18:17:15Z
<p>I have a model that has lots of instances of a child model (a widget has many parts). Each part has a label and a value.</p>
<p>What I am trying to achieve is when creating a new widget, I get a form listing all the potential parts and a field where I can enter the value. At the moment the list of potential parts is in an array in the Widget model.</p>
<p>How can I best acheive this so that when I load the page I get the built form, and when I re-visit that widget I get a populated version of the form?</p>
http://stackoverflow.com/questions/1162071/jquery-iterate-through-all-checked-boxes-and-remove-class/1162087#11620871Answer by Neil Middleton for Jquery Iterate Through All Checked Boxes and Remove ClassNeil Middleton2009-07-21T22:30:13Z2009-07-21T22:30:13Z<pre><code>$("input:checked").each(function() {
$(this).removeClass("new_message");
}
</code></pre>
<p>will remove the relevant class from the checkboxes themselves, so</p>
<pre><code>$(this).parent....
</code></pre>
<p>should work depending on what your HTML looks like</p>
http://stackoverflow.com/questions/1162066/coldfusion-datasource-not-found/1162078#11620780Answer by Neil Middleton for ColdFusion DataSource not foundNeil Middleton2009-07-21T22:27:03Z2009-07-21T22:27:03Z<p>What's the datasource name? You say you don't use [Name] - is it Resources?
Have you tried calling it something else?</p>
http://stackoverflow.com/questions/1161725/rails-not-finding-exception-notifier-plugin/1162063#11620630Answer by Neil Middleton for Rails not finding exception notifier pluginNeil Middleton2009-07-21T22:22:57Z2009-07-21T22:22:57Z<p>in environment.rb, after the initialize method add:</p>
<pre><code>require 'exception_notification'
</code></pre>
http://stackoverflow.com/questions/1836267/cfmail-smtp-connection-limit/1836394#1836394Comment by Neil Middleton on CFMail SMTP connection limitNeil Middleton2009-12-03T11:29:04Z2009-12-03T11:29:04ZIf you only have 5 threads, you can only have five connections as I understand it.http://stackoverflow.com/questions/1571114/how-to-determine-how-much-load-a-rails-application-is-under-automagically/1571770#1571770Comment by Neil Middleton on How to determine how much load a Rails application is under automagically?Neil Middleton2009-10-15T12:25:26Z2009-10-15T12:25:26ZI did see the NewRelic API, but it requires a Gold Subscription, which is incredibly costly for a deployment on Herokuhttp://stackoverflow.com/questions/1555191/validating-a-rails-model-post-save/1555584#1555584Comment by Neil Middleton on Validating a Rails model post-save?Neil Middleton2009-10-12T16:35:39Z2009-10-12T16:35:39ZI realise that, but I need it to happen before save - the parent object get's saved before the nested attributeshttp://stackoverflow.com/questions/1555191/validating-a-rails-model-post-saveComment by Neil Middleton on Validating a Rails model post-save?Neil Middleton2009-10-12T15:26:18Z2009-10-12T15:26:18Zerrors.add_to_basehttp://stackoverflow.com/questions/1192843/grouped-select-in-rails/1192862#1192862Comment by Neil Middleton on Grouped Select in RailsNeil Middleton2009-07-28T09:22:10Z2009-07-28T09:22:10ZThis is also fine, except that it doesn't work with a traditional select. I'm reticent to use select_tag, and it means I need to try and work out the name of the element on the fly.http://stackoverflow.com/questions/1192843/grouped-select-in-rails/1192862#1192862Comment by Neil Middleton on Grouped Select in RailsNeil Middleton2009-07-28T09:11:32Z2009-07-28T09:11:32ZDo you have an example of this in practice? I saw this in the docs, but cannot figure out how to get it working.http://stackoverflow.com/questions/1154269/how-to-best-secure-records-in-rails/1154307#1154307Comment by Neil Middleton on How to best secure records in Rails?Neil Middleton2009-07-20T16:39:13Z2009-07-20T16:39:13Z...and how do you handle administrators?http://stackoverflow.com/questions/1110900/non-greedy-searches-with-hpricot/1111569#1111569Comment by Neil Middleton on Non greedy searches with Hpricot?Neil Middleton2009-07-10T19:42:14Z2009-07-10T19:42:14ZI'm looking for all the direct children, and those children could be anything
http://stackoverflow.com/questions/943855/empty-flot-chartsComment by Neil Middleton on Empty Flot Charts?Neil Middleton2009-06-03T10:55:59Z2009-06-03T10:55:59ZFlot does not appear to support these type of chartshttp://stackoverflow.com/questions/859218/can-i-ssh-to-mysql-with-the-gui-toolsComment by Neil Middleton on Can I SSH to MySQL with the GUI tools?Neil Middleton2009-05-13T21:52:23Z2009-05-13T21:52:23ZThe MySQL tools available from the MySQL website - an Administrator and a Query Analyzerhttp://stackoverflow.com/questions/859218/can-i-ssh-to-mysql-with-the-gui-tools/859254#859254Comment by Neil Middleton on Can I SSH to MySQL with the GUI tools?Neil Middleton2009-05-13T21:51:26Z2009-05-13T21:51:26ZSo if my remote SSH port is 30000, my MySQL port is 3306 (inside the firewall) and I have 22 open on my machine I can use:
ssh -L 22:my_remote_address:3306 user@my_remote_address -p 30000
?http://stackoverflow.com/questions/852118/deploy-from-git-using-capistrano-without-a-hard-reset/852150#852150Comment by Neil Middleton on Deploy from Git using Capistrano without a hard reset?Neil Middleton2009-05-12T12:00:25Z2009-05-12T12:00:25ZAh yes, you might be right there. It may be that I need to make the uploads directory a 'shared' one.http://stackoverflow.com/questions/826809/problems-with-routing-a-rails-formfor/826835#826835Comment by Neil Middleton on Problems with routing a Rails form_forNeil Middleton2009-05-05T20:45:32Z2009-05-05T20:45:32ZAny reason for the ActionView hate? ;)
http://stackoverflow.com/questions/824857/rails-creating-a-select-tag-from-a-object-hash/824911#824911Comment by Neil Middleton on Rails - Creating a select tag from a object hashNeil Middleton2009-05-05T14:20:30Z2009-05-05T14:20:30ZSo, How would I then tell it the selected value - this doesn't appear to pick it up.http://stackoverflow.com/questions/808048/posting-a-form-from-rails-programatically/808064#808064Comment by Neil Middleton on Posting a form from Rails programaticallyNeil Middleton2009-05-01T13:34:48Z2009-05-01T13:34:48ZBecause I need to do some processing on the data before the third party