User James A. Rosen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T04:47:25Zhttp://stackoverflow.com/feeds/user/1190http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1836012/how-do-i-delay-a-jquery-animation-until-after-others-finish1How do I delay a jQuery animation until after others finish?James A. Rosen2009-12-02T21:41:21Z2009-12-03T01:24:09Z
<p>I have a function that does some fairly extensive DOM manipulation, and I want to show a "Loading..." spinner while the function runs:</p>
<pre><code>function showFoos() {
$('#spinner').show();
bigHairyDOMManipulation();
$('#spinner').hide();
}
function bigHairyDOMManipulation() {
for (var i=0; i < arrayOfFoos.length; i++){
buildFooBox(arrayOfFoos[i], i);
}
}
function buildFooBox(foo, index) {
$('#foos').append(
$('<li />').append(...)
.append(...)
...
);
}
</code></pre>
<p>Unfortunately, all of the <code>append()</code> calls return quickly, so even though the view isn't ready, the function is done and the spinner hides.</p>
<p>I can't think of a good way of chaining all of those appends together into one chain, so I can't just tack the <code>show()</code> on the front and the <code>hide()</code> on the end.</p>
<p>Is there another way to force the <code>hide()</code> call to wait for all the other manipulation to occur?</p>
http://stackoverflow.com/questions/1836000/how-to-validate-a-models-date-attribute-against-a-specific-range-evaluated-at-r/1836795#18367950Answer by James A. Rosen for How to validate a model's date attribute against a specific range (evaluated at run time)James A. Rosen2009-12-03T00:06:23Z2009-12-03T00:06:23Z<p>A different solution is to rely on the fact that <code>validates_inclusion_of</code> only requires an <code>:in</code> object that responds to <code>include?</code>. Build a delayed-evaluated range as follows:</p>
<pre><code>class DelayedEvalRange
def initialize(&range_block)
@range_block = range_block
end
def include?(x)
@range_block.call.include?(x)
end
end
class FirstModel
validates_inclusion_of :dated_on, :in => (DelayedEvalRange.new() { ((5.years.ago)..(5.years.from_now)) })
end
</code></pre>
http://stackoverflow.com/questions/1836000/how-to-validate-a-models-date-attribute-against-a-specific-range-evaluated-at-r/1836107#18361071Answer by James A. Rosen for How to validate a model's date attribute against a specific range (evaluated at run time)James A. Rosen2009-12-02T21:57:01Z2009-12-03T00:01:43Z<p>If the validation is the same for each class, the answer is fairly simple: put a validation method in a module and mix it in to each model, then use <code>validate</code> to add the validation:</p>
<pre><code># in lib/validates_dated_on_around_now
module ValidatesDatedOnAroundNow
protected
def validate_dated_around_now
# make sure dated_on isn't more than five years in the past or future
self.errors.add(:dated_on, "is not valid") unless ((5.years.ago)..(5.years.from_now)).include?(self.dated_on)
end
end
class FirstModel
include ValidatesDatedOnAroundNow
validate :validate_dated_around_now
end
class SecondModel
include ValidatesDatedOnAroundNow
validate :validate_dated_around_now
end
</code></pre>
<p>If you want different ranges for each model, you probably want something more like this:</p>
<pre><code>module ValidatesDateOnWithin
def validates_dated_on_within(&range_lambda)
validates_each :dated_on do |record, attr, value|
range = range_lambda.call
record.errors.add(attr_name, :inclusion, :value => value) unless range.include?(value)
end
end
end
class FirstModel
extend ValidatesDatedOnWithin
validates_dated_on_within { ((5.years.ago)..(5.years.from_now)) }
end
class SecondModel
extend ValidatesDatedOnWithin
validates_dated_on_within { ((2.years.ago)..(2.years.from_now)) }
end
</code></pre>
http://stackoverflow.com/questions/1835915/array-to-hash-of-key-value-pairs-in-ruby/1836073#18360734Answer by James A. Rosen for Array to hash of key value pairs in rubyJames A. Rosen2009-12-02T21:52:27Z2009-12-02T21:52:27Z<p>You can do it in one line with <code>inject</code>:</p>
<pre><code>a = [{:id => 1, :name => 'first'}, {:id => 2, :name => 'second'}, {:id => 3, :name => 'third'}]
a.inject({}) { |sum, h| sum.merge({ h[:name] => h[:id]}) }
# => {"third" => 3, "second" => 2, "first" => 1}
</code></pre>
http://stackoverflow.com/questions/1828228/why-does-jquery-insist-my-plain-text-is-not-well-formed1Why does jQuery insist my plain text is not "well-formed"?James A. Rosen2009-12-01T19:12:35Z2009-12-01T19:43:57Z
<p>I'm making an AJAX call to retrieve some plain text:</p>
<pre><code>$.ajax({
url: "programData.txt",
type: "GET",
dataType: "text",
cache: false,
success: processData
});
</code></pre>
<p>When I make the request, though, I get the following error:</p>
<blockquote>
<p>Error: not well-formed
Source File: file:///projects/foo/programData.txt?_=1259694590361
Line: 1, Column: 2</p>
</blockquote>
<p>Why is jQuery trying to process my plain text and how do I get it to stop?</p>
http://stackoverflow.com/questions/1826713/how-do-i-fix-phonegap-build-errors0How do I fix PhoneGap build errors?James A. Rosen2009-12-01T14:56:13Z2009-12-01T16:17:59Z
<p>I am trying to build a <a href="http://phonegap.com/" rel="nofollow">PhoneGap</a>-based iPhone application, but I keep getting the following two errors:</p>
<pre><code>./build-phonegap.sh: line 6: ./configure: No such file or directory
cp: lib/iphone/phonegap-min.js: No such file or directory
</code></pre>
<p>I built and installed the latest version of PhoneGap from the source on GitHub. I have checked to make sure that the <code>PHONEGAPLIB</code> variable is indeed set in XCode.</p>
<p>Where do I get the files listed? Where do I put them (to what are those paths relative)? And why aren't they already there?</p>
<p><strong>Later</strong></p>
<p>It seems the problem was that the project had been created with one version of PhoneGap (one that doesn't reference an external <code>lib</code> directory), but I was trying to run it with a newer one. Recreating the project with my latest version and copying over the <code>www</code> directory fixed the problem.</p>
http://stackoverflow.com/questions/1791639/regular-expression-in-ruby-to-convert-uppercase-title-into-lowercase/1791922#17919222Answer by James A. Rosen for Regular expression in Ruby to convert uppercase title into lowercaseJames A. Rosen2009-11-24T18:15:36Z2009-11-24T18:15:36Z<p>If you're using Rails (really all you need is ActiveSupport, which is part of Rails), you can use <code>titleize</code>:</p>
<pre><code>"MY STRING HERE".titlize
# => "My String Here"
</code></pre>
http://stackoverflow.com/questions/1781322/how-do-i-render-all-comments-in-a-rails-view/1791039#17910390Answer by James A. Rosen for How do I render all Comments in a Rails view?James A. Rosen2009-11-24T16:02:44Z2009-11-24T16:02:44Z<p>I tend to use a helper for this:</p>
<pre><code># in app/helpers/application_helper.rb:
def sidebar_comments(force_refresh = false)
@sidebar_comments = nil if force_refresh
@sidebar_comments ||= Comment.find(:all, :order => 'created_at DESC', :limit => 10)
# or ||= Comment.recent.limited(10) if you are using nifty named scopes
end
# in app/views/layouts/application.html.erb:
<div id='sidebar'>
<ul id='recent_comments'>
<% sidebar_comments.each do |c| %>
<li class='comment'>
<blockquote cite="<%= comment_path(c) -%>"><%= c.text -%></blockquote>
</li>
<% end %>
</ul>
</div>
</code></pre>
http://stackoverflow.com/questions/1789865/why-cant-i-call-javac-using-the-backquotes-backticks-approach-in-ruby/1790635#17906351Answer by James A. Rosen for Why can't I call javac using the Backquotes/Backticks approach in Ruby?James A. Rosen2009-11-24T15:01:08Z2009-11-24T15:01:08Z<p>It seems that Ruby on Windows doesn't like the</p>
<pre><code>`command -with-args`
</code></pre>
<p>syntax. You might try</p>
<pre><code>%x[javac -help]
</code></pre>
<p>or</p>
<pre><code>%x[javac #{source_file}]
</code></pre>
http://stackoverflow.com/questions/352646/how-can-i-set-globals-to-jslint-to-ignore-for-a-whole-set-of-files0How can I set globals to JSLint to ignore for a whole set of files?James A. Rosen2008-12-09T13:04:48Z2009-11-23T13:42:34Z
<p>I'd like to run JSLint4Java as part of my build process. I have about 1000 JS files in a library, and don't really want to add a</p>
<pre><code>/*globals foo, bar, baz */
</code></pre>
<p>header to each of them -- especially since many of them are from an external library (Dojo). If I don't add the header, though, JSLint complains about the same five globals on nearly every single file. Is there a way to tell JSLint to ignore them? Some things I've thought of so far:</p>
<ol>
<li><p>Some sort of AntFileMap task that creates a virtual directory hierarchy that's an exact copy of another hierarchy, but has a filter applied to each file (in this case, prepend with a <code>/*globals */</code> header).</p></li>
<li><p>Hack JSLint4Java to accept a set of <code>globals</code> which it prepends as a comment to the beginning of every file it processes.</p></li>
</ol>
<p>I've never seen anything like (1). (2) seems relatively easy, but I'd prefer to use original tools if possible. Any better suggestions?</p>
http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming125What's the most egregious pop culture perversion of programming?James A. Rosen2008-10-06T16:35:35Z2009-11-19T08:15:39Z
<p>I'm thinking along the lines of the virtual world representation in <a href="http://www.imdb.com/title/tt0113243/" rel="nofollow">Hackers</a>.</p>
http://stackoverflow.com/questions/727537/how-do-i-automate-a-last-modified-text-field-in-an-rsm-diagram0How do I automate a "last modified" text field in an RSM diagram?James A. Rosen2009-04-07T20:51:19Z2009-11-18T04:42:43Z
<p>My team is using Rational Software Modeler to build some UML diagrams. Each diagram has a little text box stating a human-readable title, the last-modified date, and some other information about the diagram.</p>
<p>Is there a way to automatically keep the last-modified date up to date? A macro, perhaps? Or some sort of plugin to Eclipse?</p>
http://stackoverflow.com/questions/1742030/how-do-i-do-distributed-uml-development-ala-foss0How do I do distributed UML development (à la FOSS)?James A. Rosen2009-11-16T12:54:01Z2009-11-18T04:15:51Z
<p>I have a UML project (built in IBM's Rational System Architect/Modeler, so stored in their XML format) that has grown quite large. Additionally, it now contains several pieces that other groups would like to re-use. I come from a software development (especially FOSS) background, and am trying to understand how to use that as an analogy here. The problem I am grappling with is similar to the <a href="http://en.wikipedia.org/wiki/Fragile%5Fbase%5Fclass" rel="nofollow">Fragile Base Class</a> problem.</p>
<p>Let me start with how it works in an object-oriented (say, Java or Ruby) FOSS ecosystem:</p>
<ol>
<li>Group 1 publishes some "core" package, say "<code>net/smtp</code> version 1.0"</li>
<li>Group 2 includes Group 1's <code>net/smtp</code> 1.0 package in the vendor library of their software project</li>
<li>At some point, Group 1 creates a new 2.0 branch of <code>net/smtp</code> that breaks backwards compatibility (say, it removes an old class or method, or moves a class from one package to another). They tell users of the 1.0 version that it will be deprecated in one year.</li>
<li>Group 2, when they have the time, updates to <code>net/smtp</code> 2.0. When they drop in the new package, their compiler (or test suite, for Ruby) tells them about the incompatibility. They do have to make some manual changes, but all of the changes are in the code, in plain text, a medium with which they are quite familiar. Plus, they can often use their IDE's (or text editor's) "global-search-and-replace" function once they figure out what the fixes are.</li>
</ol>
<p>When we try to apply this model to UML in RSA, we run into some problems. RSA supports some fairly powerful refactorings, but they seem to only work if you have write access to <em>all</em> of the pieces. If I rename a class in one package, RSA can rename the references, but only at the same time. It's very difficult to look at the underlying source (the XML) and figure out what's broken. To fix such a problem in the RSA editor itself means tons of clicking on things -- there is no good equivalent of "global-search-and-replace," at least not after an incomplete refactor.</p>
<p>They real sticking point seems to be that RSA assumes that you want to do all your editing using their GUI, but that makes certain operations prohibitively difficult.</p>
<p>Does anyone have examples of open-source UML projects that have overcome this problem? What strategies do they use for communicating changes?</p>
http://stackoverflow.com/questions/1489083/how-do-i-prevent-a-builder-template-from-escaping-a-url-in-an-attribute-value0How do I prevent a Builder template from escaping a URL in an attribute value?James A. Rosen2009-09-28T20:04:56Z2009-11-11T11:00:05Z
<p>I have a Rails Builder template:</p>
<pre><code># in app/views/foos/index.xml.builder:
xml.Module do |mod|
...
mod.Content :type => 'url',
:href => foos_url(:bar => 'baz',
:yoo => 'hoo')
end
</code></pre>
<p>(It creates the XML for an OpenSocial Module file, but that's not important.)</p>
<p>The problem is that the rendered XML looks like this:</p>
<pre><code><Module>
...
<Content type="url" href="http://myapp.com/foos?bar=baz&amp;amp;yoo=hoo"/>
</Module>
</code></pre>
<p>That URL suffix should be "<code>bar=baz&yoo=hoo</code>." How do I keep Builder from escaping the amerpsand?</p>
<p><strong>Later</strong></p>
<p>Perhaps the URL suffix should be "<code>bar=baz&amp;yoo=hoo</code>" in the source for XML-validity rules, but certainly it shouldn't be <em>double</em>-escaped, should it?</p>
http://stackoverflow.com/questions/1709314/rails-ruby-how-to-rescue-actionviewtemplateerror/1711774#17117741Answer by James A. Rosen for rails/ruby - how to rescue ActionView::TemplateErrorJames A. Rosen2009-11-10T22:42:29Z2009-11-10T22:42:29Z<p>Along the lines of <a href="http://stackoverflow.com/questions/1709314/rails-ruby-how-to-rescue-actionviewtemplateerror/1709377#1709377">flyfishr64's answer</a>, there's also the lovely <a href="http://getexceptional.com/" rel="nofollow">Exceptional</a></p>
http://stackoverflow.com/questions/1180474/what-is-the-maximum-value-for-a-compound-couchdb-key2What is the maximum value for a compound CouchDB key?James A. Rosen2009-07-24T22:25:19Z2009-11-10T18:45:24Z
<p>I'm using what seems to be a common trick for creating a join view:</p>
<pre><code>// a Customer has many Orders; show them together in one view:
function(doc) {
if (doc.Type == "customer") {
emit([doc._id, 0], doc);
} else if (doc.Type == "order") {
emit([doc.customer_id, 1], doc);
}
}
</code></pre>
<p>I know I can use the following query to get a single <code>customer</code> and all related <code>Order</code>s:</p>
<pre><code>?startkey=["some_customer_id"]&endkey=["some_customer_id", 2]
</code></pre>
<p>But now I've tied my query <em>very</em> closely to my view code. Is there a value I can put where I put my "<code>2</code>" to more clearly say, "I want <em>everything</em> tied to this Customer"? I think I've seen</p>
<pre><code>?startkey=["some_customer_id"]&endkey=["some_customer_id", {}]
</code></pre>
<p>But I'm not sure that <code>{}</code> is <em>certain</em> to sort <em>after</em> everything else.</p>
<p>Credit to <a href="http://www.cmlenz.net/archives/2007/10/couchdb-joins" rel="nofollow">cmlenz</a> for the join method.</p>
<p>Further clarification from the <a href="http://wiki.apache.org/couchdb/View%5Fcollation" rel="nofollow">CouchDB wiki page on collation</a>:</p>
<blockquote>
<p>The query <code>startkey=["foo"]&endkey=["foo",{}]</code> will match most array keys with "foo" in the first element, such as <code>["foo","bar"]</code> and <code>["foo",["bar","baz"]]</code>. However it will not match <code>["foo",{"an":"object"}]</code></p>
</blockquote>
<p>So <code>{}</code> is <em>late</em> in the sort order, but definitely not <em>last</em>.</p>
http://stackoverflow.com/questions/1704018/why-would-the-netldap-gem-prevent-tests-from-running/1705031#17050311Answer by James A. Rosen for Why would the Net::LDAP gem prevent tests from running?James A. Rosen2009-11-10T01:03:01Z2009-11-10T01:03:01Z<p>Is <code>rake</code> running in the same Ruby environment as <code>gem</code>? Did you specify the correct <code>lib</code> directory?</p>
<pre><code>config.gem 'ruby-net-ldap', :version => '0.0.4', :lib => 'net/ldap'
</code></pre>
http://stackoverflow.com/questions/1645007/how-can-i-encrypt-coredata-contents-on-an-iphone1How can I encrypt CoreData contents on an iPhoneJames A. Rosen2009-10-29T16:39:17Z2009-11-09T01:17:09Z
<p>I have some information I'd like to store statically encrypted on an iPhone application. I'm new to iPhone development, some I'm not terribly familiar with CoreData and how it integrates with the views. I have the data as JSON, though I can easily put it into a SQLITE3 database or any other backing data format. I'll take whatever is easiest (a) to encrypt and (b) to integrate with the iPhone view layer.</p>
<p>The user will need to enter the password to decrypt the data each time the app is launched. The purpose of the encryption is to keep the data from being accessible if the user loses the phone.</p>
<p>For speed reasons, I would prefer to encrypt and decrypt the entire file at once rather than encrypting each individual field in each row of the database.</p>
<p>Note: this <em>isn't</em> the same idea as <a href="http://stackoverflow.com/questions/929744/encrypting-sqlite-database-file-in-iphone-os">Question 929744</a>, in which the purpose is to keep the user from messing with or seeing the data. The data should be perfectly transparent when in use.</p>
<p>Also note: I'm willing to use <a href="http://www.mobileorchard.com/tutorial-iphone-sqlite-encryption-with-sqlcipher/" rel="nofollow">SQLCipher</a> to store the data, but would prefer to use things that already exist on the iPhone/CoreData framework rather than go through the lengthy build/integration process involved.</p>
http://stackoverflow.com/questions/1689111/how-do-i-combine-font-face-and-media-declarations1How do I combine @font-face and @media declarations?James A. Rosen2009-11-06T17:33:23Z2009-11-06T18:20:00Z
<p>I'd like to build a common typography stylesheet with a very small number of selectors. As such, I'd far prefer to use <code>@media</code> sections for the various versions rather than create different files, each with only a few lines of content.</p>
<p>I'd also like to add some <code>@font-face</code> declarations, but I'd prefer not to force mobile users to download the fonts given their limited bandwidth.</p>
<p>Can I put the <code>@font-face</code> declaration within the <code>@media</code> block or do they have to both be top-level? If the latter, how can I tell the mobile browsers they don't need to bother downloading the font?</p>
http://stackoverflow.com/questions/1687236/how-to-use-common-namedscope-for-all-activerecord-models/1688058#16880581Answer by James A. Rosen for How to use common named_scope for all ActiveRecord modelsJames A. Rosen2009-11-06T14:47:07Z2009-11-06T14:47:07Z<p>There's also <a href="http://github.com/thoughtbot/pacecar" rel="nofollow">Thoughtbot's Pacecar</a>, which adds a bunch of very common named scopes to every model. It might come with what you're looking for. If you need something custom, though, <a href="http://stackoverflow.com/questions/1687236/how-to-use-common-namedscope-for-all-models/1687438#1687438">Casper Fabricius</a> has the right idea.</p>
http://stackoverflow.com/questions/1684023/how-do-i-install-a-development-iphone-app-on-my-phone-for-testing0How do I install a development iPhone app on my phone for testing?James A. Rosen2009-11-05T22:15:25Z2009-11-06T00:02:08Z
<p>I have an iPhone application built as an <code>.ipa</code> file. I also have my device registered on my Apple Developer Connection account. I downloaded the <code>.mobileprovision</code> and dragged both it and the <code>.ipa</code> into iTunes. The app shows up fine in iTunes. When I try to sync, though, I get</p>
<blockquote>
<p>The application "FUBAR" was not installed on the iPhone "My Phone" because the application signature is not valid.</p>
</blockquote>
<p>What am I missing?</p>
http://stackoverflow.com/questions/1646789/how-do-i-do-a-view-transition-in-an-iphone-app-without-allowing-back0How do I do a View Transition in an iPhone app without allowing back?James A. Rosen2009-10-29T21:49:34Z2009-10-29T22:31:12Z
<p>This is a <strong>total noob question</strong>.</p>
<p>I have a starting view -- it's very simple: just some text and a button. When the user clicks the button, I want to go to the real "meat" of the application, which is a Navigation/Table View. How do I connect the button on the <code>IntroViewController</code> to a transition to the <code>RootViewController</code>? I don't want to make the <code>IntroViewController</code> a full Navigation controller and <code>push</code> the new view because that lets the user go back. I'm looking for some combination of code snippets and Interface Builder instructions.</p>
http://stackoverflow.com/questions/243701/how-can-i-see-the-sql-activerecord-generates7How can I see the SQL ActiveRecord generates?James A. Rosen2008-10-28T15:18:57Z2009-10-27T23:24:48Z
<p>I'd like to check a few queries generated by ActiveRecord, but I don't need to actually run them. Is there a way to get at the query before it returns its result?</p>
http://stackoverflow.com/questions/1623628/does-it-make-sense-to-create-a-ruby-gem-that-consists-of-only-rails-template-part/1627706#16277060Answer by James A. Rosen for Does it make sense to create a Ruby gem that consists of only Rails template partials?James A. Rosen2009-10-26T22:31:29Z2009-10-26T22:31:29Z<p>You <em>can</em> easily add partials and other HAML, Builder, or ERB views. The following structure should work:</p>
<pre><code># in my_gem/rails/init.rb
ActionController::Base.append_view_path(File.expand_path(File.join(File.dirname(__FILE__), '..', 'views')))
# in my_gem/views/my_gem/_some_partial.html.erb
This is a partial from MyGem!
# in your_rails_app/views/some_controller/some_view.html.erb:
<%= render :partial => '/my_gem/some_partial' -%>
</code></pre>
<p>That doesn't directly answer your question about static files, though. Often the best bet is a generator that copies the CSS, JS, and other files to your public directory. Alternatively, you could use a <code>StaticFilesController</code> and put the static files in that views directory.</p>
http://stackoverflow.com/questions/829904/whats-the-difference-between-a-stereotype-and-a-class-inheritance-in-uml2What's the difference between a stereotype and a class inheritance in UML?James A. Rosen2009-05-06T14:32:53Z2009-10-24T13:13:15Z
<p>I'm confused about the difference between something being a "stereotype" and being a "superclass" in UML.</p>
<p>Let's say I want to create a diagram involving a "<code>WidgetMaker</code>." <code>WidgetMaker</code> is clearly an <code>Actor</code> so the UML standard is to stereotype it actor:</p>
<pre><code><<Actor>> WidgetMaker
</code></pre>
<p>But I grew up programming in the Java/Ruby/C++ world. In that world, the relationship is:</p>
<pre><code>class Actor
end
class WidgetMaker < Actor
end
</code></pre>
<p>That looks like this in UML:</p>
<pre><code> Actor
^
|
WidgetMaker
</code></pre>
<p>So my question is: why does UML have stereotypes at all when you can just as easily model those concepts using class inheritance, which it <em>also</em> has.</p>
<p>Once we have more "kinds" of actors, the question becomes even murkier:</p>
<pre><code> Actor
^
|
------------------------
| | |
Person Robot Group
^
|
WidgetMaker
</code></pre>
<p>versus</p>
<pre><code><<Actor>> <<Person>> WidgetMaker
</code></pre>
http://stackoverflow.com/questions/1610331/paperclip-gravatar/1614665#16146650Answer by James A. Rosen for paperclip + gravatarJames A. Rosen2009-10-23T16:49:37Z2009-10-23T16:49:37Z<p>If you continue to have trouble, you could try the <a href="http://github.com/gcnovus/avatar" rel="nofollow">Avatar</a> gem, which supports a chain of different Avatar methods, including both Paperclip and Gravatar.</p>
<p>NB: this is a bit of a shameless plug, since I wrote the thing.</p>
http://stackoverflow.com/questions/350753/how-can-i-limit-git-log-or-svn-log-to-revisions-that-regard-one-particular-file1How can I limit git log (or svn log) to revisions that regard one particular file?James A. Rosen2008-12-08T20:21:27Z2009-10-22T15:35:47Z
<p>I'd like to see a series of diffs for a file. I'd settle for simply the log listing restricted to only those entries that modified the file.</p>
http://stackoverflow.com/questions/929952/how-do-i-tell-libxml-ruby-about-external-entity-files1How do I tell libxml-ruby about external entity files?James A. Rosen2009-05-30T15:33:24Z2009-10-19T22:00:02Z
<p>I'm trying to validate using <a href="http://libxml.rubyforge.org/rdoc/classes/LibXML/XML/Dtd.html" rel="nofollow">libxml-ruby's <code>DTD#validate</code></a>, but I keep getting the following warnings:</p>
<pre><code>Warning: failed to load external entity "xhtml-lat1.ent" at :29.
Warning: failed to load external entity "xhtml-symbol.ent" at :34.
Warning: failed to load external entity "xhtml-special.ent" at :39.
</code></pre>
<p>I wouldn't mind, except I use things like <code>&hellip;</code>, which are defined in those, causing my XHTML to appear to be invalid.</p>
<p>How do I tell the DTD about those extra files? I tried running from a directory containing the <code>.dtd</code> file and all of the <code>.ent</code>s, but that doesn't help.</p>
http://stackoverflow.com/questions/1575358/class-variables-in-rails-views/1576035#15760350Answer by James A. Rosen for Class variables in rails views?James A. Rosen2009-10-16T01:34:55Z2009-10-16T01:34:55Z<p>The more common approach is to wrap the class variable in a helper method:</p>
<pre><code># in /app/controllers/foo_controller.rb:
class FooController < ApplicationController
@@bar = 'baz'
def my_action
end
helper_method :bar
def bar
@@bar
end
end
# in /app/views/foo/my_action.html.erb:
It might be a class variable, or it might not, but bar is "<%= bar -%>."
</code></pre>
http://stackoverflow.com/questions/1555006/how-do-i-tell-rubys-openssl-library-to-ignore-a-self-signed-certificate-error0How do I tell Ruby's OpenSSL library to ignore a self-signed certificate error?James A. Rosen2009-10-12T14:48:09Z2009-10-16T01:12:31Z
<p>I'm trying to use Ruby's SOAP support as follows:</p>
<pre><code>SERVICE_URL = 'https://...'
...
def create_driver
::SOAP::WSDLDriverFactory.new(SERVICE_URL).create_rpc_driver
driver.options['protocol.http.ssl_config.verify_mode'] = OpenSSL::SSL::VERIFY_NONE
driver.options['protocol.http.ssl_config.client_cert'] = @certificate_path
driver
end
</code></pre>
<p>but the call to <code>new(SERVICE_URL)</code> blows up with "<code>OpenSSL::SSL::SSLError: certificate verify failed</code>." How do I do the equivalent of <code>driver.options['protocol.http.ssl_config.verify_mode'] = OpenSSL::SSL::VERIFY_NONE</code> for the first call to retrieve the WSDL itself?</p>
http://stackoverflow.com/questions/1836000/how-to-validate-a-models-date-attribute-against-a-specific-range-evaluated-at-r/1836107#1836107Comment by James A. Rosen on How to validate a model's date attribute against a specific range (evaluated at run time)James A. Rosen2009-12-03T00:07:07Z2009-12-03T00:07:07ZI updated this solution to match the updated use case more closely, but I far prefer my other solution.http://stackoverflow.com/questions/1836012/how-do-i-delay-a-jquery-animation-until-after-others-finish/1836051#1836051Comment by James A. Rosen on How do I delay a jQuery animation until after others finish?James A. Rosen2009-12-02T22:10:40Z2009-12-02T22:10:40ZThis is a nasty hack, but it's ingenious! I'll use it if nothing else works.http://stackoverflow.com/questions/1836012/how-do-i-delay-a-jquery-animation-until-after-others-finishComment by James A. Rosen on How do I delay a jQuery animation until after others finish?James A. Rosen2009-12-02T22:09:24Z2009-12-02T22:09:24Z@Crescent Fresh: The <code>show()</code> and <code>hide()</code> calls are animations, are they not?http://stackoverflow.com/questions/1835915/array-to-hash-of-key-value-pairs-in-rubyComment by James A. Rosen on Array to hash of key value pairs in rubyJames A. Rosen2009-12-02T21:52:44Z2009-12-02T21:52:44ZYou sure can; see my answer using <code>inject</code>.http://stackoverflow.com/questions/1828228/why-does-jquery-insist-my-plain-text-is-not-well-formed/1828248#1828248Comment by James A. Rosen on Why does jQuery insist my plain text is not "well-formed"?James A. Rosen2009-12-01T19:23:41Z2009-12-01T19:23:41ZIndeed, I was trying it over <code>file://</code> access. Moving to Apache fixed the problem.http://stackoverflow.com/questions/1826713/how-do-i-fix-phonegap-build-errorsComment by James A. Rosen on How do I fix PhoneGap build errors?James A. Rosen2009-12-01T15:50:22Z2009-12-01T15:50:22Zthere is no <code>lib</code> directory in my project or in the folder that <code>PHONEGAPLIB</code> points to. Where should it be? And where would it come from?http://stackoverflow.com/questions/1789865/why-cant-i-call-javac-using-the-backquotes-backticks-approach-in-rubyComment by James A. Rosen on Why can't I call javac using the Backquotes/Backticks approach in Ruby?James A. Rosen2009-11-27T04:06:49Z2009-11-27T04:06:49Zwhat happens when you get the <code>PATH</code> from a Ruby <code>Kernel</code> <code>exec</code> call? As in <code>%x[echo %PATH%]</code>. How does that compare to running the same command directly in your command shell?http://stackoverflow.com/questions/1742030/how-do-i-do-distributed-uml-development-ala-foss/1753590#1753590Comment by James A. Rosen on How do I do distributed UML development (à la FOSS)?James A. Rosen2009-11-20T21:08:44Z2009-11-20T21:08:44ZI have no problem importing a project as an external <code>emx</code> file. The problem is one of maintenance: if your project has a class, say "Twitter::Client," that I inherit from, and then you rename that class to "MyCompany::Twitter::Client," I have to click on each of my subclasses (which in my current project could number hundreds) and fix their parent relationship.http://stackoverflow.com/questions/1726404/transliteration-in-rubyComment by James A. Rosen on Transliteration in rubyJames A. Rosen2009-11-13T15:52:10Z2009-11-13T15:52:10ZThis seems to be an exact duplicate of my earlier question: <a href="http://stackoverflow.com/questions/225471/how-do-i-replace-accented-latin-characters-in-ruby" rel="nofollow" title="how do i replace accented latin characters in ruby">stackoverflow.com/questions/225471/…</a>http://stackoverflow.com/questions/1718745/need-to-know-how-hash-key-are-handled-in-rubyComment by James A. Rosen on Need to know how hash key are handled in rubyJames A. Rosen2009-11-12T16:57:40Z2009-11-12T16:57:40ZI particularly like this in your question: "I know using User class is a bad practice. My question is can someone explain to me when User class is used as key then internally how ruby stores the key." It shows how an accident lead to a quest for deeper understanding, and it also helps responders stay on-topic (rather than simply saying, "don't use User as a key.") Very well asked, Roger.http://stackoverflow.com/questions/1180474/what-is-the-maximum-value-for-a-compound-couchdb-key/1707022#1707022Comment by James A. Rosen on What is the maximum value for a compound CouchDB key?James A. Rosen2009-11-10T12:58:37Z2009-11-10T12:58:37ZI don't think so. The article you linked to says that all strings come before all arrays, which in turn come before all Hashes. So ["some_customer_id", "\uFFFF"] is 'less than' ["some_customer_id", {}].http://stackoverflow.com/questions/1689111/how-do-i-combine-font-face-and-media-declarations/1689156#1689156Comment by James A. Rosen on How do I combine @font-face and @media declarations?James A. Rosen2009-11-06T17:49:09Z2009-11-06T17:49:09ZI'm planning on supporting <i>all</i> the media types, so one for each would be hard to maintain. But a separate one for mobile might not be so bad.http://stackoverflow.com/questions/1684023/how-do-i-install-a-development-iphone-app-on-my-phone-for-testing/1684156#1684156Comment by James A. Rosen on How do I install a development iPhone app on my phone for testing?James A. Rosen2009-11-05T22:41:28Z2009-11-05T22:41:28ZThat thread definitely got rid of the ad-hoc version, but alas -- still the same error message. At least it eliminates some possibilities.http://stackoverflow.com/questions/1684023/how-do-i-install-a-development-iphone-app-on-my-phone-for-testing/1684066#1684066Comment by James A. Rosen on How do I install a development iPhone app on my phone for testing?James A. Rosen2009-11-05T22:32:59Z2009-11-05T22:32:59ZI did actually drop in an ad-hoc version of the mobileprofile before I tried the one customized for my device. How can I get it out of there?http://stackoverflow.com/questions/1646789/how-do-i-do-a-view-transition-in-an-iphone-app-without-allowing-back/1646802#1646802Comment by James A. Rosen on How do I do a View Transition in an iPhone app without allowing back?James A. Rosen2009-10-29T22:15:41Z2009-10-29T22:15:41ZSo how do I set the <code>IntroViewController</code> as the starting view for the <code>RootViewController</code>? Is it done in Interface Builder or in code?