User Neil Middleton - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T09:52:33Z http://stackoverflow.com/feeds/user/4787 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1914120/getting-rid-of-amp-in-actionscript-2 0 Getting rid of &amp; in ActionScript 2 Neil Middleton 2009-12-16T11:34:34Z 2009-12-16T11:54:03Z <p>I have a flash 8 app that's reading an XML file. In the file are nodes containing the &amp; character.</p> <p>When these values are rendered they come out as "&amp;amp;"</p> <p>How do I stop this?</p> http://stackoverflow.com/questions/1192843/grouped-select-in-rails 0 Grouped Select in Rails Neil Middleton 2009-07-28T09:02:23Z 2009-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 =&gt; mode </code></pre> http://stackoverflow.com/questions/1836267/cfmail-smtp-connection-limit/1836394#1836394 2 Answer by Neil Middleton for CFMail SMTP connection limit Neil Middleton 2009-12-02T22:42:10Z 2009-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-edit 0 Rails rendering a new object as an edit? Neil Middleton 2009-10-20T10:44:55Z 2009-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>&lt;% 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 &lt; 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-api 1 How best to expose Rails methods via an API? Neil Middleton 2009-11-13T14:27:25Z 2009-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-ends 1 How does a Rails developer talk to Flex front ends? Neil Middleton 2008-09-16T08:58:58Z 2009-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-rb 0 Unpacked Ruby gems and environment.rb Neil Middleton 2009-11-06T14:13:05Z 2009-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-charts 0 Empty Flot Charts? Neil Middleton 2009-06-03T09:41:16Z 2009-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>&lt;div id="user_breakdown_placeholder" style="width:300px;height:300px"&gt;&lt;/div&gt; &lt;script&gt; $(function () { var d = [["Unassigned", 310],["Maynard Schumm", 274]]; var options = {}; $.plot($("#user_breakdown_placeholder"), d, options); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1634349/escaping-a-string-in-ruby 2 escaping a string in Ruby Neil Middleton 2009-10-27T23:40:18Z 2009-11-03T19:16:02Z <p>I want to insert the following as the value for a variable in some Ruby:</p> <pre><code>`~!@#$%^&amp;*()_-+={}|[]\:";'&lt;&gt;?,./ </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-jira4r 0 Creating JIRA issues with Jira4R Neil Middleton 2009-10-13T15:20:27Z 2009-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#1594084 0 Answer by Neil Middleton for Creating JIRA issues with Jira4R Neil Middleton 2009-10-20T11:55:04Z 2009-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-one 0 Combining two Rails applications into one Neil Middleton 2009-10-19T22:27:43Z 2009-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-automagically 2 How to determine how much load a Rails application is under automagically? Neil Middleton 2009-10-15T08:49:42Z 2009-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#1567220 1 Answer by Neil Middleton for Which are the precious Rails RubyGems that Railers can't live without? Neil Middleton 2009-10-14T15:49:53Z 2009-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#1567198 0 Answer by Neil Middleton for Rails: Make views editable by end-users? Neil Middleton 2009-10-14T15:46:17Z 2009-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-markedfordestruction 0 How to determine if a Rails object is marked_for_destruction? Neil Middleton 2009-10-12T16:37:46Z 2009-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>--- &amp;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-save 0 Validating a Rails model post-save? Neil Middleton 2009-10-12T15:20:45Z 2009-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-issue 0 Rails nested resource issue Neil Middleton 2009-07-21T13:16:40Z 2009-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 &lt; ActiveRecord::Base has_one :household, :dependent =&gt; :destroy end class Household &lt; 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>&lt;% form_for([:grant_application, @household]) do |f| %&gt; </code></pre> <p>returns an error: </p> <pre><code>undefined method 'grant_households_path' for #&lt;ActionView::Base:0x23eda44&gt; </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/1555625/how-to-determine-if-a-rails-object-is-markedfordestruction/1555663#1555663 0 Answer by Neil Middleton for How to determine if a Rails object is marked_for_destruction? Neil Middleton 2009-10-12T16:46:26Z 2009-10-12T16:46:26Z <pre><code>Object.marked_for_destruction? </code></pre> http://stackoverflow.com/questions/1546204/can-i-commercialise-a-agpl-product 1 Can I commercialise a AGPL product? Neil Middleton 2009-10-09T21:43:39Z 2009-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-rails 2 Changing default error messages in Rails Neil Middleton 2009-10-08T14:34:18Z 2009-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-day 7 What does a scrum master do all day? Neil Middleton 2008-09-24T15:17:36Z 2009-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-y 0 Making generic classes Rails-y Neil Middleton 2009-09-17T16:14:42Z 2009-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-recordnotfound 0 Raising an ActiveRecord error on RecordNotFound Neil Middleton 2009-09-09T15:42:07Z 2009-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-form 0 Accessing item attributes in a Rails form Neil Middleton 2009-07-27T16:20:06Z 2009-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#1189352 0 Answer by Neil Middleton for Accessing item attributes in a Rails form Neil Middleton 2009-07-27T16:56:32Z 2009-07-27T16:56:32Z <p>f.object.active etc</p> http://stackoverflow.com/questions/1172547/rails-nested-dynamic-objects 0 Rails Nested Dynamic Objects? Neil Middleton 2009-07-23T15:21:45Z 2009-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#1162087 1 Answer by Neil Middleton for Jquery Iterate Through All Checked Boxes and Remove Class Neil Middleton 2009-07-21T22:30:13Z 2009-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#1162078 0 Answer by Neil Middleton for ColdFusion DataSource not found Neil Middleton 2009-07-21T22:27:03Z 2009-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#1162063 0 Answer by Neil Middleton for Rails not finding exception notifier plugin Neil Middleton 2009-07-21T22:22:57Z 2009-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#1836394 Comment by Neil Middleton on CFMail SMTP connection limit Neil Middleton 2009-12-03T11:29:04Z 2009-12-03T11:29:04Z If 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#1571770 Comment by Neil Middleton on How to determine how much load a Rails application is under automagically? Neil Middleton 2009-10-15T12:25:26Z 2009-10-15T12:25:26Z I did see the NewRelic API, but it requires a Gold Subscription, which is incredibly costly for a deployment on Heroku http://stackoverflow.com/questions/1555191/validating-a-rails-model-post-save/1555584#1555584 Comment by Neil Middleton on Validating a Rails model post-save? Neil Middleton 2009-10-12T16:35:39Z 2009-10-12T16:35:39Z I realise that, but I need it to happen before save - the parent object get's saved before the nested attributes http://stackoverflow.com/questions/1555191/validating-a-rails-model-post-save Comment by Neil Middleton on Validating a Rails model post-save? Neil Middleton 2009-10-12T15:26:18Z 2009-10-12T15:26:18Z errors.add_to_base http://stackoverflow.com/questions/1192843/grouped-select-in-rails/1192862#1192862 Comment by Neil Middleton on Grouped Select in Rails Neil Middleton 2009-07-28T09:22:10Z 2009-07-28T09:22:10Z This 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#1192862 Comment by Neil Middleton on Grouped Select in Rails Neil Middleton 2009-07-28T09:11:32Z 2009-07-28T09:11:32Z Do 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#1154307 Comment by Neil Middleton on How to best secure records in Rails? Neil Middleton 2009-07-20T16:39:13Z 2009-07-20T16:39:13Z ...and how do you handle administrators? http://stackoverflow.com/questions/1110900/non-greedy-searches-with-hpricot/1111569#1111569 Comment by Neil Middleton on Non greedy searches with Hpricot? Neil Middleton 2009-07-10T19:42:14Z 2009-07-10T19:42:14Z I'm looking for all the direct children, and those children could be anything http://stackoverflow.com/questions/943855/empty-flot-charts Comment by Neil Middleton on Empty Flot Charts? Neil Middleton 2009-06-03T10:55:59Z 2009-06-03T10:55:59Z Flot does not appear to support these type of charts http://stackoverflow.com/questions/859218/can-i-ssh-to-mysql-with-the-gui-tools Comment by Neil Middleton on Can I SSH to MySQL with the GUI tools? Neil Middleton 2009-05-13T21:52:23Z 2009-05-13T21:52:23Z The MySQL tools available from the MySQL website - an Administrator and a Query Analyzer http://stackoverflow.com/questions/859218/can-i-ssh-to-mysql-with-the-gui-tools/859254#859254 Comment by Neil Middleton on Can I SSH to MySQL with the GUI tools? Neil Middleton 2009-05-13T21:51:26Z 2009-05-13T21:51:26Z So 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#852150 Comment by Neil Middleton on Deploy from Git using Capistrano without a hard reset? Neil Middleton 2009-05-12T12:00:25Z 2009-05-12T12:00:25Z Ah 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#826835 Comment by Neil Middleton on Problems with routing a Rails form_for Neil Middleton 2009-05-05T20:45:32Z 2009-05-05T20:45:32Z Any reason for the ActionView hate? ;) http://stackoverflow.com/questions/824857/rails-creating-a-select-tag-from-a-object-hash/824911#824911 Comment by Neil Middleton on Rails - Creating a select tag from a object hash Neil Middleton 2009-05-05T14:20:30Z 2009-05-05T14:20:30Z So, 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#808064 Comment by Neil Middleton on Posting a form from Rails programatically Neil Middleton 2009-05-01T13:34:48Z 2009-05-01T13:34:48Z Because I need to do some processing on the data before the third party