User Phil - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T01:07:11Zhttp://stackoverflow.com/feeds/user/28376http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1767143/mongomapper-and-migrations/1772302#17723021Answer by Phil for MongoMapper and migrationsPhil2009-11-20T18:09:00Z2009-11-20T18:09:00Z<p>MongoDB is a schema-less database. That's why there are no migrations. In the database itself, it doesn't matter whether the objects have the key :some_key or the key :some_other_key at any time.</p>
<p>MongoMapper tries to enforce some restrictions on this, but since the database is so flexible, you will have to maintain those restrictions yourself. If you need a key on every object, make sure you run a script to update those keys on pre-existing objects, or handle the case of an object that doesn't have that key as you come across them.</p>
<p>I am fairly new to MongoDB myself, but as far as I can see, due to the flexibility of the schema-less db this is how you will need to handle it.</p>
http://stackoverflow.com/questions/1716965/ruby-and-nil-object/1717028#17170282Answer by Phil for Ruby and Nil ObjectPhil2009-11-11T18:03:29Z2009-11-11T18:03:29Z<p>Locals takes a hash of local variables, like so:</p>
<pre><code><%= render :partial => "houses/index", :locals => { :houses => @houses } %>
</code></pre>
<p>Also, when you pass in a local variable to a partial, you should use it as a local variable rather than an instance variable within the partial, as so:</p>
<pre><code><% houses.each do |house| %>
# do stuff with each house
<% end %>
</code></pre>
http://stackoverflow.com/questions/1689133/javascript-show-layer-on-page-load/1689159#16891598Answer by Phil for Javascript show layer on page loadPhil2009-11-06T17:39:15Z2009-11-06T17:39:15Z<p>You want</p>
<pre><code>$("#friendslist").show()
</code></pre>
<p>instead of</p>
<pre><code>$("#friendslist").Show()
</code></pre>
<p>(note, lower case 's' in 'show')</p>
http://stackoverflow.com/questions/1651496/get-form-using-jquery-and-send-it-to-a-javascript-function/1651530#16515301Answer by Phil for Get form using jQuery and send it to a javascript functionPhil2009-10-30T18:26:50Z2009-10-30T18:26:50Z<p>Rather than performing your validation on the click of the submit button, you should really perform the validation when a user submits the form (as they may do so by pressing enter within a text field as well as clicking the submit button). This makes it easy to pass the form to the javascript function too, as follows:</p>
<pre><code>$('form').submit(function(){ old_validation_function(this); })
</code></pre>
<p><code>this</code> is the form object that has been submitted.</p>
http://stackoverflow.com/questions/1649086/detect-rotation-of-android-phone-in-the-browser-with-javascript7Detect rotation of Android phone in the browser with javascriptPhil2009-10-30T10:43:20Z2009-10-30T17:21:49Z
<p>I know that in Safari on an iPhone you can detect the screens orientation and change of orientation by listening for the <code>onorientationchange</code> event and querying <code>window.orientation</code> for the angle.</p>
<p>Is this possible in the browser on Android phones?</p>
<p><strong>Update</strong></p>
<p>To be clear, I am asking whether the rotation of an android device can be detected by JavaScript running on a standard web page. It is possible on an iPhone and I wondered whether it could be done for Dndroid phones.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1596136/share-session-data-between-rails-and-php1Share session data between Rails and PHPPhil2009-10-20T17:28:41Z2009-10-30T10:45:28Z
<p>I have a Rails application that uses ActiveRecordStore for sessions. I need a PHP application running on a subdomain to share the session.</p>
<p>I have updated the environment to allow session cookies to be accessed across subdomains, but I don't know what the php application will have to do to access the session data. Please could someone help me out with the next steps?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1596136/share-session-data-between-rails-and-php/1649097#16490970Answer by Phil for Share session data between Rails and PHPPhil2009-10-30T10:45:28Z2009-10-30T10:45:28Z<p>Thanks for the answers guys. Eventually I decided against sharing the sessions themselves, instead opting to share a hashed cookie which both applications could use to verify a user was signed in.</p>
http://stackoverflow.com/questions/1577987/what-are-the-merits-of-using-tt-i-b-big-and-small-tags/1578110#15781102Answer by Phil for What are the merits of using tt, i, b, big, and small tags?Phil2009-10-16T13:41:18Z2009-10-16T13:41:18Z<p>small, b and i all have new/better definitions in the <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/text-level-semantics.html" rel="nofollow">HTML5 spec</a> and will have greater meaning in the future.</p>
<p>Other people like to use b or i elements to denote purely visual markup, for example in the <a href="http://www.html.it/articoli/nifty/index.html" rel="nofollow">Nifty corners</a> technique for adding rounded corners to boxes</p>
http://stackoverflow.com/questions/1570966/xpath-find-specific-link-in-page/1570989#15709893Answer by Phil for xpath find specific link in pagePhil2009-10-15T08:19:09Z2009-10-15T08:19:09Z<p>You're trying to get the href of the span there. I think you want</p>
<pre><code>$links = $xpath->query("//a[span/text()='Send to a friend']/@href");
</code></pre>
http://stackoverflow.com/questions/1565457/is-it-possible-to-have-an-opacified-background-layer-which-doesnt-opacify-its-ch/1565613#15656130Answer by Phil for Is it possible to have an opacified background layer which doesn't opacify its children ?Phil2009-10-14T11:04:31Z2009-10-14T11:04:31Z<p>I would use a transparent png as a background image for modern browsers and a filter in IE6, as described in this article: <a href="http://www.unintentionallyblank.co.uk/2007/05/07/cross-browser-background-transparency-with-css/" rel="nofollow">Cross Browser Background Transparency With CSS</a> </p>
http://stackoverflow.com/questions/1564859/whats-the-limit-for-the-size-of-iphone-apps/1564921#15649214Answer by Phil for What's the limit for the size of iPhone apps?Phil2009-10-14T08:07:12Z2009-10-14T08:07:12Z<p>Reading around, there are reports that the absolute maximum size for an application is 2GB (<a href="http://discussions.apple.com/thread.jspa?threadID=1605342" rel="nofollow">http://discussions.apple.com/thread.jspa?threadID=1605342</a>).</p>
<p>Other than that, if your app is over 10MB, users will only be able to download it over a wifi connection, having the impact that users won't be able to download your application easily when they are out and about.</p>
http://stackoverflow.com/questions/1538320/get-element-by-id-via-regex-jquery/1538370#15383702Answer by Phil for Get element by id via regex jQueryPhil2009-10-08T14:57:33Z2009-10-09T14:52:14Z<p>How about</p>
<pre><code>var selId = "[id*=" + namespace + "_service_selected_]";
$j(selId).click(function(){
...
</code></pre>
<p>I think you've got confused with too many quotation marks!</p>
http://stackoverflow.com/questions/1538243/in-jquery-if-you-remove-an-element-will-any-events-on-it-be-removed/1538290#15382903Answer by Phil for In jQuery if you remove an element will any events on it be removed?Phil2009-10-08T14:45:05Z2009-10-08T14:47:22Z<p>I haven't tested it, but I believe that removing an element will unbind its event handlers. I come to this conclusion from the <a href="http://api.jquery.com/" rel="nofollow">jQuery API documentation</a> (search for remove) which states that if you want to move an element from one part of the DOM to another that:</p>
<pre><code>$("#foo").remove().appendTo("#bar");
</code></pre>
<p>should be written as</p>
<pre><code>$("#foo").appendTo("#bar");
</code></pre>
<p>to avoid losing the event handlers.</p>
http://stackoverflow.com/questions/1504992/anyone-can-suggest-a-jquery-lightbox-plugin-that-allow-embedded-html-and-is-easy/1505096#15050961Answer by Phil for Anyone can suggest a jquery lightbox plugin that allow embedded html and is easy to custom CSS? Phil2009-10-01T16:42:00Z2009-10-01T16:42:00Z<p>I like using <a href="http://colorpowered.com/colorbox/" rel="nofollow">Colorbox</a> at the moment. I find it very customizable and it allows everything you want, plus more.</p>
http://stackoverflow.com/questions/1201618/ie7-complaining-about-label-id-in-javascript/1201646#12016462Answer by Phil for IE7 complaining about label ID in javascriptPhil2009-07-29T16:57:20Z2009-07-29T16:57:20Z<p>"text1" is the id of the input, but you haven't declared that the text1 variable in the JavaScript refers to that.</p>
<p>Perhaps this will work for you:</p>
<pre><code><button id="button1" onclick="checkName(document.getElementById('text1').value,'')">BUTTON</button>
</code></pre>
<p>It uses document.getElementById to retrieve the input before trying to find its value.</p>
http://stackoverflow.com/questions/1108587/howto-style-unordered-list-to-display-list-items-in-rounded-corner-box/1108616#11086162Answer by Phil for Howto style unordered list to display list items in rounded corner boxPhil2009-07-10T09:29:26Z2009-07-10T09:29:26Z<p>Here's a pretty good example of rounded corners using CSS3: <a href="http://www.css3.info/preview/rounded-border/" rel="nofollow">CSS3 Rounded corners</a></p>
<p>This will only work in Firefox and Safari though.</p>
http://stackoverflow.com/questions/1098269/how-to-prevent-checkbox-check-when-clicking-on-link-inside-label/1098352#10983520Answer by Phil for how to prevent checkbox check when clicking on link inside labelPhil2009-07-08T14:12:11Z2009-07-08T14:12:11Z<p>I have a similar situation, but the link actually opens a new window when clicked. This doesn't check/uncheck the box. I believe it is because the click doesn't bubble up through the link to the label.</p>
<p>So, to extend this, if you want the link to open in the same page, you could make it open using a click handler and preventing the click on the link from bubbling, like so:</p>
<pre><code>$('label a').click(function(ev) { ev.preventDefault(); window.location.href = $(this).attr('href'); }
</code></pre>
<p>(It's untested and not the nicest use of JS, but it should solve your issue)</p>
http://stackoverflow.com/questions/1091322/how-to-fade-to-display-inline-block/1091396#10913961Answer by Phil for How to fade to display: inline-blockPhil2009-07-07T09:53:51Z2009-07-07T09:53:51Z<p>You could use jQuery's <a href="http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback" rel="nofollow">animate</a> function to change the opacity yourself, leaving the display unaffected.</p>
http://stackoverflow.com/questions/1091333/how-to-avoid-this-yslow-this-page-has-5-external-stylesheets-try-combining/1091385#10913853Answer by Phil for How to avoid this? Yslow -> "This page has 5 external stylesheets. Try combining them into one."Phil2009-07-07T09:50:47Z2009-07-07T09:50:47Z<p>You could, instead of swapping stylesheets, combine the stylesheets into one and change the colours with a class on the body instead. This is easier to describe with an example:</p>
<p>Say you currently have</p>
<p>red.css</p>
<pre><code>body { color:red; }
</code></pre>
<p>green.css</p>
<pre><code>body { color:green; }
</code></pre>
<p>and you swap between them with JavaScript.</p>
<p>Why not change that to:</p>
<p>colors.css</p>
<pre><code>body.red { color:red; }
body.green { color:green; }
</code></pre>
<p>and swap the class on the body with JavaScript. Then you only have one CSS file and the JavaScript is much simpler too.</p>
http://stackoverflow.com/questions/806000/css-semi-transparent-background-but-not-text/806186#8061860Answer by Phil for CSS: semi-transparent background, but not textPhil2009-04-30T09:52:06Z2009-04-30T09:52:06Z<p><a href="http://www.unintentionallyblank.co.uk/2007/05/07/cross-browser-background-transparency-with-css/" rel="nofollow">I wrote about this a while back</a>, bizarrely IE6 will allow you to make the background transparent and keep the text on top fully opaque, for the other browsers I then suggest using a transparent png.</p>
http://stackoverflow.com/questions/511232/what-is-the-best-css-trick-to-reduce-how-much-html-you-need/511686#5116862Answer by Phil for What is the best CSS trick to reduce how much HTML you need?Phil2009-02-04T14:53:57Z2009-02-04T14:53:57Z<p>Since the debate has sparked up again recently, here's the difference between using divs and tables for a 3 column layout:</p>
<pre><code><table>
<tbody>
<tr>
<td>Column 1</td>
<td>Column 2</td>
<td>Column 3</td>
</tr>
</tbody>
</table>
</code></pre>
<p>Compared to:</p>
<pre><code><div>Column 1</div>
<div>Column 2</div>
<div>Column 3</div>
</code></pre>
<p>and the CSS</p>
<pre><code>div { float:left; width:33%; }
</code></pre>
http://stackoverflow.com/questions/319552/replacing-header-text-with-an-image/319581#3195811Answer by Phil for Replacing header text with an imagePhil2008-11-26T02:26:25Z2008-11-26T02:26:25Z<p>I used to think the Leahy/Langridge method was the best, however as I have used it more and more I have found the Phark method to be both easier to implement, just as effective and more useful, as you can have links within the headers as well (something I never got working before).</p>
<p>Both of those require no extra markup and I don't think (<a href="http://groups.google.com/group/Google_Webmaster_Help-Indexing/msg/07ff235c6aeae4ef" rel="nofollow">if Google's Matt Cutts is to be believed</a>) there is much, if any, bad effects on SEO (ie Google won't penalise you for hiding text as long as it doesn't appear spammy).</p>
<p>Both don't work, or take extra work to make work, in IE5, but I don't know of anyone who supports that anymore.</p>
<p>So I would recommend the Phark (or Phark Revisited, which works best) method.</p>
http://stackoverflow.com/questions/306583/jquery-this-selector-and-children/306892#30689214Answer by Phil for jQuery $(this) selector and children?Phil2008-11-20T21:23:15Z2008-11-20T21:23:15Z<p>You could also use</p>
<pre><code>$(this).find('img');
</code></pre>
<p>which would return all <code>img</code>s that are descendants of the <code>div</code></p>
http://stackoverflow.com/questions/303939/contextual-selectors-in-css2/304122#3041224Answer by Phil for Contextual Selectors in CSS2Phil2008-11-20T01:57:36Z2008-11-20T01:57:36Z<p>That syntax is correct, but the example may have changed for a couple of reasons.</p>
<p>Firstly it is not best practice to name classes by the description of what they do. In the case of <code>.reddish h1</code>, the example CSS shows that it is to be coloured red. However, if in a later design change the <code>h1</code> should in fact be blue then</p>
<pre><code>.reddish h1 { color: blue; }
</code></pre>
<p>makes little sense. You should name your classes by their function or purpose on the page and not by what style they are supposed to represent.</p>
<p>Secondly, it isn't advised to use keywords for colours, as the colour you receive is down to browser interpretation. Instead, of 'red' you should use the hexcode '#ff0000' to get an accurate colour in all browsers. (red may not be the best example here, but there are some strange colour keywords out there).</p>
<p>While neither of these things is that bad, they both could add up to why the example had changed in the spec.</p>
http://stackoverflow.com/questions/304055/do-you-generate-nicely-formatted-html/304106#3041066Answer by Phil for Do you generate nicely formatted HTML?Phil2008-11-20T01:49:59Z2008-11-20T01:49:59Z<p>I make sure that my HTML is properly formatted in the template files. This allows for easy editing of the code and debugging.</p>
<p>However, by the time the files have been put together and output to the browser, the indentation can go right off, this doesn't matter, since Firebug (and the IE developer toolbar, to some extent) is perfectly good at formatting it for me. And when I need to go and change something, the file I come to change it in matches that indentation and formatting as it was written nicely.</p>
<p>Basically, I do everything I can to keep my and others' jobs easy, without worrying too much to how the server actually spits out my code.</p>
http://stackoverflow.com/questions/291391/jquery-referencing-the-calling-objectthis-when-the-bind-click-event-is-for-a-c/291434#2914340Answer by Phil for jQuery: Referencing the calling object(this) when the bind/click event is for a classPhil2008-11-14T21:08:34Z2008-11-14T21:08:34Z<p>I believe that this is because the function attached to the success event doesn't know what 'this' is as it is run independently of the object you're calling it within. (I'm not explaining it very well, but I think it's to do with closures.)</p>
<p>I think if you added the following line before the $.ajax call:</p>
<pre><code>var _this = this;
</code></pre>
<p>and then in the success function used that variable:</p>
<pre><code> success:
function(request) {
_this.html(request); // populate select box
}
</code></pre>
<p>it may well work</p>
http://stackoverflow.com/questions/289751/turn-off-caching-for-javascript-files-on-firefox/289939#28993912Answer by Phil for Turn off caching for JavaScript files on FirefoxPhil2008-11-14T12:35:55Z2008-11-14T12:35:55Z<p>The <a href="https://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow">Web Developer Toolbar</a> has an option to disable caching which makes it very easy to turn it on and off when you need it.</p>
http://stackoverflow.com/questions/272457/does-noscript-get-acknowledged-by-javascript-enabled-browsers/272471#2724711Answer by Phil for Does noscript get acknowledged by javascript enabled browsers?Phil2008-11-07T15:39:40Z2008-11-07T15:39:40Z<p>Why do you need the noscript element? If you are just going to remove or replace it with different elements when the javascript runs, then the div is acting as like a noscript element would anyway.</p>
http://stackoverflow.com/questions/272360/does-opacity0-have-exactly-the-same-effect-as-visibilityhidden/272371#2723712Answer by Phil for Does opacity:0 have exactly the same effect as visibility:hiddenPhil2008-11-07T15:12:33Z2008-11-07T15:12:33Z<p>I'm not entirely sure of this, but I think screen readers don't read things that are set to visibility hidden, but they may read things regardless of their opacity.</p>
<p>That's the only difference I can think of.</p>
http://stackoverflow.com/questions/266777/javascript-and-accessibility/267258#2672582Answer by Phil for Javascript and AccessibilityPhil2008-11-06T00:19:29Z2008-11-06T00:19:29Z<p>Progressive enhancement is certainly one route but unobtrusiveness is not the be all and end all of JavaScript accessibility as screen readers tend to use browsers as a basis for their work. Since those browsers support JavaScript, scripts on your page will still run. This is a particular problem with AJAX as clicking on one part of the page could change another part of the page that the screen reader isn't aware of.</p>
<p>As AJAX matures, however, methods of making it accessible are emerging. Look into the <a href="http://www.w3.org/WAI/intro/aria" rel="nofollow">WAI-ARIA</a> for modern methods of making AJAX accessible, and <a href="http://code.google.com/p/google-axsjax/" rel="nofollow">Google's AxsJAX</a> for a good way of implementing it.</p>
<p><hr /></p>
http://stackoverflow.com/questions/1798158/how-to-set-specified-gem-version-for-ruby-app/1798223#1798223Comment by Phil on How to set specified gem version for Ruby app?Phil2009-11-25T16:58:08Z2009-11-25T16:58:08Z@Damien It's not necessarily a rails app.
@Dan Do you not have to require the gem after setting the version?http://stackoverflow.com/questions/1649086/detect-rotation-of-android-phone-in-the-browser-with-javascript/1651191#1651191Comment by Phil on Detect rotation of Android phone in the browser with javascriptPhil2009-11-05T10:19:47Z2009-11-05T10:19:47ZThat's a little harsh. I'm interested to know so that I can show different content based on the orientation of the screen, this could be up to 4 different pages, requiring the browser to know whether it had been rotated by 0, 90, 180 and 270 degrees. This is all possible, in JavaScript, on the iPhone and is why I am asking.http://stackoverflow.com/questions/1649086/detect-rotation-of-android-phone-in-the-browser-with-javascript/1651191#1651191Comment by Phil on Detect rotation of Android phone in the browser with javascriptPhil2009-11-03T11:44:52Z2009-11-03T11:44:52ZI've just realised that this method doesn't give me the orientation of the phone. I will know whether it is portrait or landscape, but not if it is upside down or has been turned to the left or to the right.
Any further ideas?http://stackoverflow.com/questions/1651496/get-form-using-jquery-and-send-it-to-a-javascript-function/1651530#1651530Comment by Phil on Get form using jQuery and send it to a javascript functionPhil2009-10-31T01:43:54Z2009-10-31T01:43:54ZYou can cancel the form submission if validation fails this way. But you can't validate the form if it is submitted in any other way than clicking the submit button if you just use the click handler.http://stackoverflow.com/questions/1649086/detect-rotation-of-android-phone-in-the-browser-with-javascript/1651191#1651191Comment by Phil on Detect rotation of Android phone in the browser with javascriptPhil2009-10-30T18:01:17Z2009-10-30T18:01:17ZThat's a good idea, I'll try that (and ask my friend with the Android phone to test!)http://stackoverflow.com/questions/1649086/detect-rotation-of-android-phone-in-the-browser-with-javascript/1650000#1650000Comment by Phil on Detect rotation of Android phone in the browser with javascriptPhil2009-10-30T15:17:28Z2009-10-30T15:17:28ZThanks, but those articles only cover Android applications. I am asking whether JavaScript on a web page can detect the rotation like an iPhone can.http://stackoverflow.com/questions/1649568/css-background-image-being-downloaded-more-than-onceComment by Phil on CSS background image being downloaded more than oncePhil2009-10-30T12:41:14Z2009-10-30T12:41:14ZWow, that is strange. It acts as expected in FF 3.0.15 too, seems there must have been a change of behaviour between the versions. I can't think of any reason why though.http://stackoverflow.com/questions/1538320/get-element-by-id-via-regex-jquery/1541316#1541316Comment by Phil on Get element by id via regex jQueryPhil2009-10-09T14:54:51Z2009-10-09T14:54:51ZNice analysis! Wonder if I can shave some ms off my time!http://stackoverflow.com/questions/1538320/get-element-by-id-via-regex-jquery/1538370#1538370Comment by Phil on Get element by id via regex jQueryPhil2009-10-09T14:52:29Z2009-10-09T14:52:29ZThanks Brian, edited.http://stackoverflow.com/questions/1459188/does-the-jquery-scroll-event-only-fire-for-windowComment by Phil on Does the jQuery scroll event only fire for $(window) ?Phil2009-09-22T10:46:22Z2009-09-22T10:46:22ZAh... my ul didn't actually have overflow auto, though it appeared to (scroll bars were there and everything). How very strange.http://stackoverflow.com/questions/1097459/is-it-impossible-to-separate-javascript-from-htmlComment by Phil on Is it impossible to separate javascript from HTML?Phil2009-07-08T11:56:00Z2009-07-08T11:56:00ZWhat is the purpose of the id being passed to the update function? I may be able to suggest something with a little more information.http://stackoverflow.com/questions/1091333/how-to-avoid-this-yslow-this-page-has-5-external-stylesheets-try-combining/1091385#1091385Comment by Phil on How to avoid this? Yslow -> "This page has 5 external stylesheets. Try combining them into one."Phil2009-07-07T13:01:24Z2009-07-07T13:01:24ZDisgruntledGoat is right, I just put a very simple example there.
I agree with David Dorward too though, YSlow is just a tool and isn't the law. NickFitz sums it up nicely in saying that that is what alternate stylesheets are for too. My method will allow you to swap entire layouts with just a change of body class, but it has its downsides too.http://stackoverflow.com/questions/511232/what-is-the-best-css-trick-to-reduce-how-much-html-you-need/511686#511686Comment by Phil on What is the best CSS trick to reduce how much HTML you need?Phil2009-02-04T17:02:44Z2009-02-04T17:02:44ZWhilst I realise the debate was old, it has flared back up again recently, due to 37signals bringing it up.
Thanks annakata, I should have pointed out that this is for layout and not a table of data, in which a table should obviously be usedhttp://stackoverflow.com/questions/272457/does-noscript-get-acknowledged-by-javascript-enabled-browsers/272471#272471Comment by Phil on Does noscript get acknowledged by javascript enabled browsers?Phil2008-11-07T15:56:59Z2008-11-07T15:56:59Zexactly my point, thanks kouPhaxhttp://stackoverflow.com/questions/272360/does-opacity0-have-exactly-the-same-effect-as-visibilityhidden/272371#272371Comment by Phil on Does opacity:0 have exactly the same effect as visibility:hiddenPhil2008-11-07T15:23:44Z2008-11-07T15:23:44ZThe elements would be in the DOM regardless of CSS style, I mean that blind users using screen reader software may have text in the opacity:0 element read to them, whereas they wouldn't if the same element had visibility:hidden. It's an accessibility concern really, as the result is different.