User Gareth - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T19:35:28Zhttp://stackoverflow.com/feeds/user/31582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1834159/overriding-a-rails-defaultscope1Overriding a Rails default_scopeGareth2009-12-02T16:36:52Z2009-12-02T16:54:29Z
<p>If I have an ActiveRecord::Base model with a default-scope:</p>
<pre><code>class Foo < ActiveRecord::Base
default_scope :conditions => ["bar = ?",bar]
end
</code></pre>
<p>Is there any way to do a <code>Foo.find</code> <em>without</em> using the <code>default_scope</code> conditions? In other words, can you override a default scope?</p>
<p>I would have thought that using 'default' in the name would suggest that it <strong>was</strong> overridable, otherwise it would be called something like <code>global_scope</code>, right?</p>
http://stackoverflow.com/questions/1732473/javascript-function-return-not-working/1732487#17324871Answer by Gareth for javascript function return not working.Gareth2009-11-13T23:15:19Z2009-11-13T23:15:19Z<p>Your sessionStatus() function never returns anything. It sets a function to run later, and <em>that</em> function returns something, but that's not anything to do with sessionStatus()</p>
http://stackoverflow.com/questions/1732328/wrong-value-when-casting-a-float24value-to-float53-in-sql-2005/1732461#17324611Answer by Gareth for Wrong value when casting a float(24)value to float(53) in SQL 2005Gareth2009-11-13T23:06:16Z2009-11-13T23:06:16Z<p>The number you see is as close as the computer can get within however many binary digits it has available to use.</p>
<p>If you try and write 1/3 in decimal, but you only have enough space for 8 digits, the closest you can get is <code>0.33333333</code>. That's still off by a quite a way, but if you had more decimal places you could get more accurate. This is exactly the same probably as the computer faces, but whereas each of your successive digits represents 1/10ths, 1/100ths, 1/1000ths, the computer works in 1/2, 1/4, 1/8, 1/16.</p>
http://stackoverflow.com/questions/1726404/transliteration-in-ruby/1726460#17264604Answer by Gareth for Transliteration in rubyGareth2009-11-13T00:57:31Z2009-11-13T13:20:13Z<p>Ruby has an <a href="http://ruby-doc.org/stdlib/libdoc/iconv/rdoc/index.html" rel="nofollow">Iconv</a> library in its stdlib which converts encodings in a very similar way to the usual <code>iconv</code> command</p>
http://stackoverflow.com/questions/1726073/is-it-something-bad-to-use-br/1726103#17261034Answer by Gareth for Is it something bad to use <BR />?Gareth2009-11-12T23:21:27Z2009-11-12T23:21:27Z<p>The main reason for not using <code><br></code> is that it's not <a href="http://en.wikipedia.org/wiki/Semantic%5FWeb" rel="nofollow">semantic</a>. If you want two items in different visual blocks, you probably want them in different logical blocks.</p>
<p>In most cases this means just using different elements, for example <code><p>Stuff</p><p>Other stuff</p></code>, and then using CSS to space the blocks out properly.</p>
<p>There are cases where <code><br></code> is semantically valid, i.e. cases where the line break is <em>part</em> of the data you're sending. This is really only limited to 2 use cases - poetry and mailing addresses.</p>
http://stackoverflow.com/questions/1672142/javascript-event-when-mouse-leaves-browser-window/1672258#16722580Answer by Gareth for Javascript event when mouse leaves browser windowGareth2009-11-04T07:48:35Z2009-11-04T07:48:35Z<p>Your problem comes from mouseout events being generated for elements <em>inside</em> the window, which then bubble up as described in the <a href="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-flow" rel="nofollow">W3C events spec</a>. You can check which element the event was actually fired on:</p>
<pre><code>function mouseoutFunction(event) {
event = event || window.event;
var sender = event.srcElement || event.target;
}
</code></pre>
http://stackoverflow.com/questions/1656090/overriding-instance-variable-arrays-operators-in-ruby/1656131#16561311Answer by Gareth for Overriding instance variable array's operators in RubyGareth2009-11-01T01:43:49Z2009-11-01T01:43:49Z<p>You can extend the metaclass of any individual object, without having to create a whole new class:</p>
<pre><code>>> i = []
=> []
>> class << i
>> def <<(obj)
>> puts "Adding "+obj.to_s
>> super
>> end
>> end
=> nil
>> i << "foo"
Adding foo
=> ["foo"]
</code></pre>
http://stackoverflow.com/questions/1591841/how-do-i-get-html-attribute-order-to-be-consistent-when-testing-in-javascript/1591879#15918797Answer by Gareth for How do I get html attribute order to be consistent when testing in Javascript.Gareth2009-10-20T00:32:15Z2009-10-20T00:32:15Z<p>The attributes in HTML elements are unordered, that is: the order is irrelevant. If your tests assume a specific order then they're doing it wrong really.</p>
http://stackoverflow.com/questions/1591644/create-a-wizard-that-works-with-multiple-resources/1591807#15918071Answer by Gareth for Create a wizard that works with multiple ResourcesGareth2009-10-20T00:12:07Z2009-10-20T00:12:07Z<p>It's important to understand the distinction between what REST provides and what REST doesn't care about.</p>
<ul>
<li><p>A RESTful service provides a minimal set of actions which a client can use (providing it knows the correct data format) to manipulate a class of resources</p>
<ul>
<li>For example, you should be able to POST to <code>/resourceA/12345</code> to edit that existing resource</li>
</ul></li>
<li><p>A RESTful service doesn't make any guarantees about which other URLs will return meaningful responses.</p>
<ul>
<li><p>One notable example is that REST doesn't specify that <code>/resourceA/12345/edit</code> will return an HTML form designed for editing that resource. That's a feature of the HTML application that simply provides a method of performing the POST described above.</p></li>
<li><p>Extending this theory, it's perfectly acceptable to have multiple edit forms which all POST to the defined RESTful URL. Since the controller's <code>edit</code> action will generally use <code>.attributes = ...</code> to mass-assign whatever it's passed, you can look at the attributes passed in, along with information about which HTML button was used to submit the form, to decide which page the user should see next.</p></li>
<li><p>It may be scary relying on one controller method to deal with multiple page's submissions, but with clever validation and selectively overwriting accessors, you can maintain a lot of control over how users access the app.</p></li>
<li><p>You should also be able to work out that this method doesn't restrict users to only sending attributes in the order presented in the form. Another RESTful client could in theory POST updates for <em>all</em> attributes associated with a resource, rather than just those presented by one page of your wizard. Assuming your model methods are robust enough everything can be made to Just Work.</p></li>
</ul></li>
</ul>
http://stackoverflow.com/questions/1585723/how-can-i-change-the-location-of-a-page-and-not-redirect-the-user/1585920#158592010Answer by Gareth for How can I change the location of a page and not redirect the user?Gareth2009-10-18T20:15:56Z2009-10-18T20:15:56Z<p>You mean like, I'm visiting <code>http://www.fakebank.example</code> and you want the address bar to display <code>http://www.yourbank.example</code>? I think there are obvious reasons this won't be possible.</p>
http://stackoverflow.com/questions/1517147/sorting-page-flow-for-hasmany-in-rails0Sorting page flow for has_many in RailsGareth2009-10-04T19:09:02Z2009-10-10T01:52:02Z
<p>I have a page flow allowing the user to choose an object ("<code>Player</code>") to add to a <code>has_many :players</code> association in another model.</p>
<pre><code> 1 => List existing players for object [Enter player name]
2 => List of matching players [Select player]
3 => Confirmation page [Press 'Add']
4 => Done
</code></pre>
<p>I want users to be able to choose "New Player" instead of selecting a player at step 2, in which case the user will go through the standard New Player process elsewhere on the site.</p>
<p>However, after that's done, the user should return to step 3 with the new player in place.</p>
<p>I don't know what the best way is to implement this. I don't want to duplicate the player creation code, but I don't want to dirty up the player creation code too much just for this case.</p>
<p>I also don't want to start sticking IDs in the session if I can help it. It's fine in simple cases but if the user ever has two windows/tabs then things start behaving badly.</p>
<p>What do you think?</p>
http://stackoverflow.com/questions/1520170/ruby-how-to-match-a-double-quote-in-a-regexp/1520434#15204340Answer by Gareth for Ruby: how to match a double quote in a regexpGareth2009-10-05T14:26:48Z2009-10-05T14:26:48Z<p>Sounds like the problem is with the shell.</p>
<p>Your error message is from Ruby, so it seems Ruby is receiving the <code><</code> as an argument. This means the shell isn't doing any redirection.</p>
<p>I don't have a Windows machine handy so I'd double check that you're getting the redirection right first. On first inspection I think the <code>< myfile.txt</code> should be <code><myfile.txt</code></p>
http://stackoverflow.com/questions/1391308/why-does-object-both-include-kernel-and-inherit-off-it-in-ruby/1391408#13914088Answer by Gareth for Why does Object both include Kernel and inherit off it in Ruby?Gareth2009-09-08T00:28:59Z2009-10-04T16:40:22Z<p><code>Object</code> does not inherit from <code>Kernel</code>, it is the final superclass (in Ruby 1.8). The result of the <a href="http://corelib.rubyonrails.org/classes/Module.html#M000790" rel="nofollow"><code>#ancestors</code></a> method comprises of superclasses <em>and</em> included modules. Specifically, in the order they are looked up for any particular call.</p>
http://stackoverflow.com/questions/1502804/populating-a-database-after-sign-up/1502943#15029430Answer by Gareth for Populating a database after "Sign Up"Gareth2009-10-01T09:42:48Z2009-10-01T09:42:48Z<p>Can you not just set defaults in your database?</p>
http://stackoverflow.com/questions/529556/xpath-find-elements-by-attribute-namespace4XPath - Find elements by attribute namespaceGareth2009-02-09T19:37:10Z2009-09-29T02:16:39Z
<p>I'm trying to use XPath to find all elements that have an element in a given namespace.</p>
<p>For example, in the following document I want to find the foo:bar and doodah elements</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<root xmlns:foo="http://foo.example.com">
<foo:bar quux="value">Content</foo:bar>
<widget>Content</widget>
<doodah foo:quux="value">Content</doodah>
</root>
</code></pre>
<p>I know I can use the following XPath expression to load all attributes from a given namespace</p>
<pre><code>"//@*[namespace-uri()='http://foo.example.com']"
</code></pre>
<p>However:</p>
<ul>
<li>This doesn't give me the elements, just the attributes and</li>
<li>where elements contain multiple attributes from that namespace, this XPath will return a result per-attribute rather than per-element</li>
</ul>
<p>Is it possible to get what I want, or do I just have to gather the attributes and calculate the unique set of elements they correspond to ?</p>
<p>EDIT: I was given the following answer by Dimitre Novatchev. I didn't realise that you could nest predicates inside predicates like this:</p>
<pre><code>"//*[@*[namespace-uri()='http://foo.example.com']]"
</code></pre>
<p>Specifically this says "Any element that has any attribute that has namespace-uri = '...'"</p>
http://stackoverflow.com/questions/1462855/how-do-i-make-object-a-fail-validation-when-its-has-a-object-b-fails-validation/1462994#14629941Answer by Gareth for How do I make object A fail validation when its has-a object B fails validationGareth2009-09-22T22:34:33Z2009-09-22T22:34:33Z<p>You can use <a href="http://api.rubyonrails.org/classes/ActiveRecord/Validations/ClassMethods.html#M002171" rel="nofollow"><code>validates_associated</code></a> for that</p>
http://stackoverflow.com/questions/1443210/updating-a-local-repository-with-changes-from-a-github-repository/1443228#14432282Answer by Gareth for Updating a local repository with changes from a Github repositoryGareth2009-09-18T08:31:07Z2009-09-18T08:31:07Z<pre><code>git fetch [remotename]
</code></pre>
<p>However you'll need to merge any changes into your local branches. If you're on a branch that's tracking a remote branch on Github, then</p>
<pre><code>git pull
</code></pre>
<p>will first do a fetch, and then merge in the tracked branch</p>
http://stackoverflow.com/questions/1395781/esoteric-js-question/1395808#13958080Answer by Gareth for Esoteric JS QuestionGareth2009-09-08T19:17:25Z2009-09-08T19:17:25Z<p>You can create an anonymous function which accepts a function as an argument, and immediately pass it another anonymous function:</p>
<pre><code>(function(fn) { })(function() { })
</code></pre>
<p>But I can't think of a single useful reason for doing that.</p>
http://stackoverflow.com/questions/1388018/jquery-attaching-an-event-to-multiple-elements-at-one-go/1388054#138805410Answer by Gareth for jQuery : Attaching an event to multiple elements at one goGareth2009-09-07T07:43:34Z2009-09-07T07:48:34Z<p>The <a href="http://docs.jquery.com/Traversing/add#expr" rel="nofollow">jQuery add method</a> is what you want:</p>
<blockquote>
<p>Adds more elements, matched by the given expression, to the set of matched elements</p>
</blockquote>
<pre><code>var a = $("#a");
var b = $("#b");
var combined = a.add(b)
</code></pre>
http://stackoverflow.com/questions/1352244/how-do-i-perform-an-additional-action-only-on-the-first-iteration-of-a-loop/1352268#13522687Answer by Gareth for How do I perform an additional action only on the first iteration of a loop?Gareth2009-08-29T20:12:11Z2009-08-29T20:12:11Z<p>Forgive me if I'm missing something, but why not just do the thing you want before the loop?</p>
<pre><code>dosomethingspecial();
foreach($arrayname as $value) {
dosomething();
}
</code></pre>
http://stackoverflow.com/questions/1290940/determine-document-order-from-nodes/1291065#12910653Answer by Gareth for Determine Document Order from NodesGareth2009-08-17T23:41:47Z2009-08-17T23:41:47Z<p>You can use the DOM function <a href="https://developer.mozilla.org/En/DOM/Node.compareDocumentPosition" rel="nofollow"><code>compareDocumentPosition</code></a> which will return different numbers based on the two nodes' relationships:</p>
<blockquote>
<pre><code>DOCUMENT_POSITION_DISCONNECTED = 0x01;
DOCUMENT_POSITION_PRECEDING = 0x02;
DOCUMENT_POSITION_FOLLOWING = 0x04;
DOCUMENT_POSITION_CONTAINS = 0x08;
DOCUMENT_POSITION_CONTAINED_BY = 0x10;
</code></pre>
</blockquote>
<p>Potentially the result could be the sum of more than one of these codes as the answer is a bitmask, but I can't imagine a situation where two of these conditions would be true at the same time. Also note that the "disconnected" result would be returned for instance with nodes that have been created but not added to the document tree yet</p>
http://stackoverflow.com/questions/1225059/how-can-i-calculate-the-sum-of-all-positive-integers-less-than-n/1225110#12251105Answer by Gareth for How can I calculate the sum of all positive integers less than n?Gareth2009-08-03T23:28:09Z2009-08-03T23:38:32Z<p>Do you need to solve it recursively? That's certainly not the nicest way to solve it:</p>
<blockquote>
<p>Sum the numbers 1 to 10</p>
</blockquote>
<pre><code> 1 + 2 + 3 + 4 + 5
+ 10 + 9 + 8 + 7 + 6
-- -- -- -- --
11 +11 +11 +11 +11 = 55
</code></pre>
<p>or, as it's summarised, <code>(n+1)(n/2)</code> -- with n=10, this is obviously <code>11 x 5</code></p>
http://stackoverflow.com/questions/1219124/getting-a-grasp-of-how-many-people-use-my-software/1219333#12193331Answer by Gareth for Getting a grasp of how many people use my softwareGareth2009-08-02T17:27:59Z2009-08-02T17:27:59Z<p>If you're selling to anywhere that might have a competent IT setup, like a university, then I wouldn't even think about a sneaky don't-tell-them route. If you do, you're lining yourself up for bad publicity as soon as someone's firewall spots the unexpected connections</p>
http://stackoverflow.com/questions/1216093/dynamic-regex-in-ruby/1216135#12161356Answer by Gareth for Dynamic Regex in RubyGareth2009-08-01T08:07:27Z2009-08-01T08:07:27Z<p>You're only missing one thing:</p>
<pre><code>>> Regexp.new "\w"
=> /w/
>> Regexp.new "\\w"
=> /\w/
</code></pre>
<p>Backslashes are escape characters in strings. If you want a literal backslash you have to double it.</p>
<pre><code>>> string = "[ALERT] Project: Revision ...123456 committed by Me <me@me.com>\n on 2009- 07-28 21:21:47\n\n Fixed typo\n"
=> "[ALERT] Project: Revision ...123456 committed by Me <me@me.com>\n on 2009- 07-28 21:21:47\n\n Fixed typo\n"
>> r = Regexp.new("[A-Za-z]+: Revision ...[\\w]+ committed by [A-Za-z\\s]+")
=> /[A-Za-z]+: Revision ...[\w]+ committed by [A-Za-z\s]+/
>> string[r]
=> "Project: Revision ...123456 committed by Me "
</code></pre>
<p>Typically, if you'd pasted the output from your "broken" lines, rather than just the input, you'd probably have spotted that the <code>w</code> and <code>s</code> weren't escaped properly</p>
http://stackoverflow.com/questions/1210861/how-do-i-split-a-string-in-ruby-maintaining-whitespaces-in-the-split/1210916#12109167Answer by Gareth for How do I split a string in ruby maintaining whitespaces in the splitGareth2009-07-31T06:15:10Z2009-07-31T06:15:10Z<pre><code>>> "hello\t World\nbla".scan /\S+\s*/
=> ["hello\t ", "World\n", "bla"]
</code></pre>
http://stackoverflow.com/questions/1166785/feed-reader-should-it-always-be-client-side/1166963#11669630Answer by Gareth for Feed Reader: Should It Always Be Client Side? Gareth2009-07-22T17:40:13Z2009-07-22T17:40:13Z<p>Google Reader is one example of an RSS reader that parses the RSS on the server. I can't see any reason why you'd have to do that processing on the client</p>
http://stackoverflow.com/questions/1166921/jquery-reference-by-id-supposed-to-return-an-array/1166955#11669551Answer by Gareth for Jquery - Reference by ID - Supposed to return an array?Gareth2009-07-22T17:37:31Z2009-07-22T17:37:31Z<p>You should bear in mind that it's not really an array, it's a jQuery object which, among other things, allows array-style access</p>
http://stackoverflow.com/questions/1118198/how-can-you-figure-out-the-highest-z-index-in-your-document/1118211#11182111Answer by Gareth for How can you figure out the highest z-index in your document?Gareth2009-07-13T08:05:22Z2009-07-13T08:05:22Z<p>The best way to solve this problem is, in my opinion, just to set yourself conventions for what kinds of <code>z-index</code>es are used for different kinds of elements. Then, you'll find the correct <code>z-index</code> to use by looking back at your documentation.</p>
http://stackoverflow.com/questions/1101888/is-there-any-reason-not-to-use-http-put-and-delete-in-a-web-application/1101921#11019211Answer by Gareth for Is there any reason not to use HTTP PUT and DELETE in a web application?Gareth2009-07-09T05:07:38Z2009-07-09T05:07:38Z<p>Quite simply, the <a href="http://www.w3.org/TR/html401/interact/forms.html#adef-method" rel="nofollow">HTML 4.01 <code>form</code> element</a> only allows the values "<code>POST</code>" and "<code>GET</code>" in its <code>method</code> attribute</p>
http://stackoverflow.com/questions/1078976/view-all-revision-numbers-that-made-changes-to-a-particular-file-in-mercurial/1079015#10790152Answer by Gareth for View all revision numbers that made changes to a particular file in MercurialGareth2009-07-03T11:49:32Z2009-07-03T11:49:32Z<p>With git, you can run</p>
<pre><code>git rev-list HEAD -- path/to/file
</code></pre>
<p>and you'll see a list of the commits which changed that file. Note that you can also run for example</p>
<pre><code>gitk --all path/to/file
</code></pre>
<p>to open gitk, only showing commits for that file</p>
http://stackoverflow.com/questions/1834159/overriding-a-rails-defaultscope/1834250#1834250Comment by Gareth on Overriding a Rails default_scopeGareth2009-12-03T00:45:48Z2009-12-03T00:45:48ZThanks for the link to the previous questionhttp://stackoverflow.com/questions/1529606/how-do-rails-association-methods-work/1553552#1553552Comment by Gareth on How do rails association methods work?Gareth2009-11-19T11:54:19Z2009-11-19T11:54:19ZRails doesn't actually know what "the last [scope] in the chain" is. In fact, no named scopes actually execute any SQL calls. It's only when you <i>do</i> something with the scope (for example .each if iterating, or .to_s as <code>puts</code> implicitely does) that the database it queried. http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732395#1732395Comment by Gareth on RegEx match open tags except XHTML self-contained tagsGareth2009-11-13T23:11:39Z2009-11-13T23:11:39Z<a href="foo" title="5>3"> Oops </a>http://stackoverflow.com/questions/1726073/is-it-something-bad-to-use-br/1726079#1726079Comment by Gareth on Is it something bad to use <BR />?Gareth2009-11-12T23:26:50Z2009-11-12T23:26:50ZYou can't just remove your <br>s and add CSS, because if you've removed your <br>s there's nothing <i>to</i> style. It's not incredibly helpful to say "remove your line breaks" without helping (literally) fill in the blankshttp://stackoverflow.com/questions/1695841/how-to-make-words-into-a-category-nlpComment by Gareth on How to make words into a category. (NLP)Gareth2009-11-08T11:13:33Z2009-11-08T11:13:33ZWhy "FOOD" and not "POULTRY"?http://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomain/1689058#1689058Comment by Gareth on Reading Javascript Cookies from a subdomain...Gareth2009-11-06T17:34:17Z2009-11-06T17:34:17Zyes, that is correct. There is no special syntaxhttp://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomainComment by Gareth on Reading Javascript Cookies from a subdomain...Gareth2009-11-06T17:29:17Z2009-11-06T17:29:17Zyou should use example.com, or the .example TLD, for sample URLs -- as suggested in RFC 2606 [<a href="http://www.faqs.org/rfcs/rfc2606.html]" rel="nofollow">faqs.org/rfcs/rfc2606.html]</a>http://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomain/1689058#1689058Comment by Gareth on Reading Javascript Cookies from a subdomain...Gareth2009-11-06T17:27:58Z2009-11-06T17:27:58ZAtes is saying that, unless the cookie has been set properly, with the domain prefixed by a period, you won't be able to read the cookie from a subdomainhttp://stackoverflow.com/questions/1617706/how-to-crowd-source-my-web-crawlingComment by Gareth on how to crowd source my web crawlingGareth2009-10-24T11:31:16Z2009-10-24T11:31:16ZWhy do you need to be so shady?http://stackoverflow.com/questions/1605170/jquery-traversing-form-elements/1605191#1605191Comment by Gareth on jQuery traversing form elementsGareth2009-10-22T05:50:02Z2009-10-22T05:50:02Zyou want class="otherHide" rather than class=".otherHide". The period is only used in the CSS selector to indicate you're looking for a class.http://stackoverflow.com/questions/1548181/what-are-the-issue-with-putting-markup-outside-body/1548184#1548184Comment by Gareth on What are the issue with putting markup outside <body> ?Gareth2009-10-10T15:22:03Z2009-10-10T15:22:03ZIf you're not producing a valid document, then behaviour across browsers is by definition undefined. Best to find a solution that's validhttp://stackoverflow.com/questions/1548079/single-sign-on-multiple-sub-domains/1548104#1548104Comment by Gareth on single sign on multiple sub domainsGareth2009-10-10T15:08:30Z2009-10-10T15:08:30ZRemember that this will only make the session cookie available to multiple subdomains. You haven't said whether the servers running the subdomains all have access to the same database, so there's no guarantee the session data will be transferrablehttp://stackoverflow.com/questions/1502751/creating-visible-redirect/1502784#1502784Comment by Gareth on Creating visible redirect?Gareth2009-10-01T09:34:57Z2009-10-01T09:34:57ZAll of the http-equiv meta tags have an equivalent HTTP header (as the name suggests). So a nicer solution, seeing as you're able to from PHP, is to set a 'Refresh: 2;url=<a href="http://example.com" rel="nofollow">example.com</a>' header, and not pollute your markuphttp://stackoverflow.com/questions/1481442/tell-if-webapp-launched-via-url-or-link-on-iphone-home-screen/1481494#1481494Comment by Gareth on Tell if WebApp launched via URL or link on iPhone home screenGareth2009-09-26T15:58:35Z2009-09-26T15:58:35ZI think the OP is talking about the user opening Safari from a bookmark saved to the user's home screen, not Webkit instances in non-Safari applicationshttp://stackoverflow.com/questions/1451145/fire-a-function-whose-name-is-in-a-stringComment by Gareth on fire a function whose name is in a stringGareth2009-09-20T16:15:54Z2009-09-20T16:15:54ZThe best solution would almost certainly be to find a way not to have the function name in a string