User morgancodes - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T19:42:35Zhttp://stackoverflow.com/feeds/user/44683http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/940752/jquery-selectors-finding-a-child-of-the-root-node0jquery selectors -- finding a child of the root nodemorgancodes2009-06-02T17:16:21Z2009-11-30T01:53:16Z
<p>It seems that this should be simple, but I'm having trouble figuring out how to construct a selector that will return only elements that are a direct child of a root node.</p>
<p>If, for example, I have a reference to a div (myDiv), and I want to select only images that are direct children of that div, the following doesn't work:</p>
<pre><code>jQuery("div > img", myDiv);
</code></pre>
<p>The "div" in the selector doesn't seem to match the root of the context, only descendants, and without a selector that will give me the root, I can't use ">". Any other ideas on how to select a direct child of a context root?</p>
http://stackoverflow.com/questions/436120/javascript-accessing-private-member-variables-from-prototype-defined-functions2javascript - accessing private member variables from prototype-defined functionsmorgancodes2009-01-12T16:59:59Z2009-11-24T13:55:13Z
<p>Hello,</p>
<p>Is there any way to make "private" variables (those defined in the constructor), available to prototype-defined methods?</p>
<pre><code>TestClass = function(){
var privateField = "hello";
this.nonProtoHello = function(){alert(privateField)};
};
TestClass.prototype.prototypeHello = function(){alert(privateField)};
</code></pre>
<p>This works:</p>
<pre><code>t.nonProtoHello()
</code></pre>
<p>but this doesn't:</p>
<pre><code>t.prototypeHello()
</code></pre>
<p>I'm used to defining my methods inside the constructor, but am moving away from that for a couple reasons.</p>
<p>thanks!</p>
<p>-Morgan</p>
http://stackoverflow.com/questions/638881/what-does-expressive-mean-when-referring-to-programming-languages3What does "expressive" mean when referring to programming languages?morgancodes2009-03-12T14:32:57Z2009-11-23T15:27:49Z
<p>I hear this word a lot in sentences like "javascript is a very expressive language". Does it just mean there aren't a lot of rules, or does "expressive" have a more specific meaning?</p>
http://stackoverflow.com/questions/880288/creating-a-new-empty-document-with-javascript1creating a new, empty document with javascriptmorgancodes2009-05-18T23:30:04Z2009-11-18T00:09:24Z
<p>I'm working with some very unintuitive xml (all the tags are things like "TX", "H", "VC"). </p>
<p>I'd like to make a copy of this data, but with all of the tags renamed to what they actually mean. Can I create a new, empty document to put my new, nicely named tags in to?</p>
<p>I've tried this: </p>
<pre><code>doc = (new DOMParser()).parseFromString("", 'text/xml');
</code></pre>
<p>but when I do so, I wind up with a document that has a child node, rather than being empty. Furthermore, that child's tagname is "parsererror"</p>
<p>So, any ideas how I can create an empty document?</p>
http://stackoverflow.com/questions/821778/why-is-my-spring-security-servlet-filter-getting-called-twice0Why is my (Spring Security) servlet filter getting called twice?morgancodes2009-05-04T20:07:09Z2009-11-07T22:00:02Z
<p>Any ideas about why doFilterHttp in my SpringSecurityFilter subclass is getting called twice on each request? I don't really know where to start looking. Feeling a little stumped.</p>
<p>I'm reverse engineering a vacationing co-worker's code. To the best I can figure it, here's the relevant configuration:</p>
<p>in web.xml:</p>
<pre><code><filter>
<filter-name>userSecurityFilter</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>userSecurityFilter</filter-name>
<url-pattern>*.do</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>userSecurityFilter</filter-name>
<url-pattern>/json/*</url-pattern>
</code></pre>
<p></p>
<p>In spring-security.xml:</p>
<pre><code> <!-- Create the filter chains for developers, users and services -->
<bean id="userSecurityFilter" class="org.springframework.security.util.FilterChainProxy">
<security:filter-chain-map path-type="ant">
<security:filter-chain pattern="/**/json/*" filters="AuthFilter,anonymousProcessingFilter,exceptionTranslationFilter,filterInvocationInterceptor"/>
<security:filter-chain pattern="/**/*.do" filters="AuthFilter,anonymousProcessingFilter,exceptionTranslationFilter,filterInvocationInterceptor"/>
<security:filter-chain pattern="/**" filters="anonymousProcessingFilter,logoutFilter,exceptionTranslationFilter,filterInvocationInterceptor"/>
</security:filter-chain-map>
</bean>
</code></pre>
<p>It looks like the /*<em>/json/</em> urls are getting the filter chain applied twice, while others only get it once. I'm going to go back and check to make sure what I just said is really true.</p>
http://stackoverflow.com/questions/1069800/sprites-vs-image-slicing3sprites vs image slicingmorgancodes2009-07-01T15:26:03Z2009-10-10T03:55:12Z
<p>I don't have much experience with the sprite approach to images (<a href="http://www.alistapart.com/articles/sprites" rel="nofollow">http://www.alistapart.com/articles/sprites</a>). Anyone care to share some pros/cons of sprites vs. old-school slices?</p>
http://stackoverflow.com/questions/723112/jquery-fastest-way-to-remove-all-rows-from-a-very-large-table2jquery - fastest way to remove all rows from a very large tablemorgancodes2009-04-06T20:36:37Z2009-10-06T14:15:55Z
<p>I thought this might be a fast way to remove the contents of a very large table (3000 rows):</p>
<pre><code>$jq("tbody", myTable).remove();
</code></pre>
<p>But it's taking around five seconds to complete in firefox. Am I doing something dumb (aside from trying to load 3000 rows in to a browser)? Is there faster way to do it?</p>
http://stackoverflow.com/questions/595231/state-machines-and-user-interface-work-any-examples-experience4State Machines and User Interface work -- any examples/experience?morgancodes2009-02-27T15:33:13Z2009-10-01T15:00:58Z
<p>Hello </p>
<p>I'm looking for ways to de-spaghttify my front-end widget code. It's been suggested that a Finite State Machine is the right way to think about what I'm doing. I know a State Machine paradigm <em>can</em> be applied to almost any problem. I'm wondering if there are some experienced UI programmers who actually make a habit of this. </p>
<p>So, the question is -- do any of you UI programmers think in terms of State Machines in your work? If so, how?</p>
<p>thanks,
-Morgan</p>
http://stackoverflow.com/questions/1408357/how-can-i-use-firebug-to-tell-whats-causing-slow-page-loads2How can I use FireBug to tell what's causing slow page loads?morgancodes2009-09-10T23:59:48Z2009-09-21T18:58:48Z
<p>I'm working on a complex page with multiple scripts, css files, lots of dynamically generated html, scripts loading scripts, all kinds of crazy stuff. Naturally, the page can load quite slow sometimes. </p>
<p>I'm finding it difficult to tell, in realtime, what exactly is slowing it down. Can FireBug's "net" tab help me with this? I've looked at the "net" tab, of course, but it seems that it only shows files <em>after</em> they're loaded. Is there another tool that can help me? What I want is to be able to see that the page is still loading, and see exactly what's still loading. </p>
<p>FireFox's status bar tells me a little bit... it says "waitin for www.mydomain.net", but it doesn't tell me exactly which file it's waiting for. I'm assuming there is a single file that's the bottleneck here, that's blocking all subsequent files from loading, but I'll admit, I don't know that much about the nitty gritty of how browsers fetch files.</p>
http://stackoverflow.com/questions/1449500/get-daylight-saving-transition-dates-for-time-zones-in-java0Get Daylight Saving Transition Dates For Time Zones in Javamorgancodes2009-09-19T20:55:23Z2009-09-19T21:06:22Z
<p>I'd like to know the simplest way, in Java, to get a list of dates in the future where daylight savings time will change.</p>
<p>One rather inellegant way to do this would be to simply iterate over a bunch of years' worth of days, testing them against TimeZone.inDaylightTime(). This will work, and I'm not worried about efficiency since this will only need to run every time my app starts, but I wonder if there's a simpler way.</p>
<p>If you're wondering why I'm doing this, it's because I have a javascript app which needs to handle third-party data containing UTC timestamps. I want a reliable way to translate from GMT to EST on the client side. See <a href="http://stackoverflow.com/questions/1044000/javascript-unix-time-to-specific-time-zone">http://stackoverflow.com/questions/1044000/javascript-unix-time-to-specific-time-zone</a> I've written some javascript which will do it, but I want to get precise transition dates from the server.</p>
http://stackoverflow.com/questions/710586/json-stringify-bizarreness1JSON.stringify() bizarrenessmorgancodes2009-04-02T16:48:12Z2009-08-25T10:25:34Z
<p>Hello,
I'm trying to figure out what's gone wrong with my json serializing, have the current version of my app with and old one and am finding some surprising differences in the way JSON.stringify() works (Using the JSON library from json.org).</p>
<p>In the old version of my app:</p>
<pre><code> JSON.stringify({"a":[1,2]})
</code></pre>
<p>gives me this;</p>
<pre><code>"{"a":[1,2]}"
</code></pre>
<p>in the new version, </p>
<pre><code> JSON.stringify({"a":[1,2]})
</code></pre>
<p>gives me this;</p>
<pre><code>"{"a":"[1, 2]"}"
</code></pre>
<p>any idea what could have changed to make the same library put quotes around the array brackets in the new version?</p>
http://stackoverflow.com/questions/1296796/javascript-preprocessing-for-easier-multi-line-strings0javascript preprocessing for easier multi-line strings?morgancodes2009-08-18T22:00:02Z2009-08-18T22:00:02Z
<p>I've recently started getting a little creative with how I handle my js source files. I'm using a build processing for javascript developement, and I really like it. </p>
<p>I've also started playing with a few javascript template engines. </p>
<p>I want to include my templates in my js files. Multi-line strings are, of course, very hard to deal with in javascript, making the thought of including a large template inline in javascript unappealing. </p>
<p>It recently occured to me that I could change my build process to deal with multi-line strings, simply using a preprocesser that checks for something like python's triple quotes (""") which allow programmers to easily work with multi-line strings. </p>
<p>Does anyone know of an existing tool that uses this approach? </p>
http://stackoverflow.com/questions/553766/jquery-selector-context-question2jQuery selector context questionmorgancodes2009-02-16T15:54:52Z2009-07-31T20:01:31Z
<p>Hello,
I'm trying to do make the following selection:</p>
<pre><code>$(".program", row)
</code></pre>
<p>Where "row" is a jQuery object containing two table rows. One of the tr's has the class 'program". This selector doesn't seem to find it. However the following works: </p>
<pre><code>$(".title", row)
</code></pre>
<p>where div.title is a descendant of tr.program. </p>
<p>If I use a jQuery object as a selector context, am I not able to match top-level elements of that jQuery object? </p>
<p>thanks,</p>
<p>-Morgan</p>
http://stackoverflow.com/questions/853295/javascript-build-tools5JavaScript Build Tools?morgancodes2009-05-12T15:14:04Z2009-07-30T18:05:35Z
<p>I'd like a tool that will:</p>
<blockquote>
<p>a) roll a bunch of separate js files into one</p>
<p>b) minify my js</p>
</blockquote>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1140653/how-to-load-a-properties-file-into-a-jsp1How to load a .properties file into a jspmorgancodes2009-07-16T22:26:13Z2009-07-17T15:00:42Z
<p>I've gotten as far as this:</p>
<pre><code>private Properties logoUrls = new Properties();
logoUrls.load(new FileInputStream("channelLogos.properties"));
</code></pre>
<p>where channelLogos.properties is in the same directory as my JSP. I get a FileNotFound exception. Where does my app actually think I mean by "channelLogos.properties", if not the same directory as the JSP? How can I determine the correct path to load the properties file? </p>
http://stackoverflow.com/questions/1122375/jquery-event-stoppropagation-seems-not-to-work1jquery Event.stopPropagation() seems not to workmorgancodes2009-07-13T22:11:01Z2009-07-13T22:22:03Z
<p>Am I totally missing what this is supposed to do? I expect that if I call stopPropagation() on an event, handlers for that event won't get triggered on ancestor elements, but the example below isn't working that way (in FireFox 3 at least)..</p>
<pre><code><script type="text/javascript">
$("input").live("click", function(event){
console.log("input click handler called")
event.stopPropagation()
});
$("body").live("click", function(event){
console.log("body was click handler called. event.isPropagationStopped() returns: " + event.isPropagationStopped());
})
</script>
...
<body>
<input type="text" >
</body>
</code></pre>
http://stackoverflow.com/questions/512825/do-the-keys-of-javascript-associative-arrays-need-to-be-strings-or-can-they-be-a2Do the keys of javascript associative arrays need to be strings, or can they be any object? morgancodes2009-02-04T19:09:54Z2009-07-09T21:05:22Z
<p>that's it, that's my question.
thanks!
-Morgan</p>
http://stackoverflow.com/questions/1064196/how-can-i-tell-if-abort-has-been-called-on-an-xmlhttprequest2How can I tell if "abort()" has been called on an XMLHTTPRequestmorgancodes2009-06-30T15:05:07Z2009-06-30T15:21:14Z
<p>Simple question, but not obvious from the Mozilla JS docs. Anyone know the answer off the top of their head?</p>
http://stackoverflow.com/questions/1044000/javascript-unix-time-to-specific-time-zone0Javascript -- Unix Time to Specific Time Zonemorgancodes2009-06-25T13:40:24Z2009-06-26T20:39:47Z
<p>I'm working with a service that gives me broadcast times for Television shows in Unix Time (seconds since midnight, January 1st, 1970, in Greenwich, England). I need to convert this, in javascript, to Eastern Standard time (USA). I need to account for daylight savings time, and for the fact that the client's clock may be set to something other than Eastern Standard time. I'm sure this code has been written before. Can anyone point me toward it?</p>
http://stackoverflow.com/questions/1044000/javascript-unix-time-to-specific-time-zone/1051137#10511370Answer by morgancodes for Javascript -- Unix Time to Specific Time Zonemorgancodes2009-06-26T20:29:57Z2009-06-26T20:39:47Z<p>I wrote some code which will turn GMT milliseconds into a Date-like object which can be queried for eastern standard time values. It handles daylight savings.</p>
<pre><code>ESTDate = function(millis){
if(isNaN(parseInt(millis))) {
throw new Error("ESTDate must be built using a number");
}
var MILLIS_PER_DAY = 1000 * 60 * 60 * 24;
var gmtDate = new Date(millis);
var clockSetDate = function(month){
var date = new Date(0);
date.setUTCFullYear(gmtDate.getUTCFullYear());
date.setUTCMonth(month);
date.setUTCHours(2);
while(date.getUTCDay() != "0"){
date.setTime(
date.getTime() + MILLIS_PER_DAY
);
};
return date;
}
var startStandarTimeDate = clockSetDate(2);
var endStandardTimeDate = clockSetDate(10);
date = new Date(millis);
var estOffset = 60 * 60 * 1000 * 4;
var dltOffset = (
(startStandarTimeDate < date) &&
(date < endStandardTimeDate)
) ? 0: 60 * 60 * 1000;
date.setTime(date.getTime() - (estOffset + dltOffset));
var self = {
getDate: function(){
return date.getUTCDate();
},
getDay:function(){
return date.getUTCDay();
},
getFullYear:function(){
return date.getUTCFullYear();
},
getHours:function(){
return date.getUTCHours();
},
getMilliseconds:function(){
return date.getUTCMilliseconds();
},
getMinutes:function(){
return date.getUTCMinutes();
},
getMonth:function(){
return date.getUTCMonth();
},
getSeconds:function(){
return date.getUTCSeconds();
}
}
return self;
}
</code></pre>
http://stackoverflow.com/questions/1028054/complex-client-side-logic-better-to-move-to-the-server-side0Complex client-side logic -- better to move to the server side?morgancodes2009-06-22T16:09:50Z2009-06-22T16:25:20Z
<p>I'm working with a third-party search api, and am rather enjoying keeping pretty much the entire application on the browser side. The xml is digested entirely with javascript, and I'm rendering complex result objects dynamically, using a javascript templating engine. There are few page reloads happening, and lots of fancy javascript going on. </p>
<p>It feels clean to me to keep everything on the javascript side. It's going to make deployment much easier, and it's nice to have all my code in one place. I'm trying to be just as rigorous about coding well with javascript as I would were I coding in java, and so far things seem to be working pretty well. I'm making an effort to work TDD style, using YUI test, and am optimistic that this will make the inevitible cross-browser bugs easier to catch and fix. The code size is not miniscule, but it's not too bad, and I plan to minify it before deployment, which should reduce it to about 2/3 of what it is now. </p>
<p>Are there drawbacks I'm not considering? Any other proponents of front-siding application logic here?</p>
http://stackoverflow.com/questions/652372/just-when-i-think-i-finally-understand-javascript-scope5Just when I think I finally understand Javascript scope....morgancodes2009-03-16T22:22:00Z2009-06-16T17:18:51Z
<p>I run in to something that illustrates how I clearly don't get it yet.</p>
<p>Can anyone please explain why the value of "this" changes in the following?</p>
<pre><code>var MyFunc = function(){
alert(this);
var innerFunc = function(){
alert(this);
}
innerFunc();
};
new MyFunc();
</code></pre>
http://stackoverflow.com/questions/980937/jquery-selector-strangeness-is-this-a-bug-or-am-i-doing-it-wrong6jquery selector strangeness -- is this a bug or am I doing it wrong? morgancodes2009-06-11T13:03:18Z2009-06-15T20:06:48Z
<p>I'm getting inconsistant results across browsers with the following test:</p>
<p>============ test.html ===========</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
</head>
<body>
<script>
var xml;
$.ajax({
type: "GET",
url: "data.xml",
success: function(data){
var node = $("CI:first", data);
var query1 = $("T TX", node).length;
var query2 = $("T", node).find("TX").length;
var msg = '$("T TX", node).length: ' + query1;
msg += "\n";
msg += '$("T", node).find("TX").length: ' + query2;
alert(msg);
}
});
</script>
</body>
</html>
</code></pre>
<p>============ data.xml ===========</p>
<pre><code><?xml version="1.0" encoding="ISO-8859-2"?>
<CNs>
<CI>
<T>
<TX></TX>
</T>
</CI>
<CI>
<T>
<TX></TX>
</T>
</CI>
<CI>
<T>
<TX></TX>
</T>
</CI>
</CNs>
</code></pre>
<p>What should happen is this:</p>
<ul>
<li>Load xml via ajax call</li>
<li>select an xml node: <code>$("CI:first", data);</code></li>
<li>select a node within that node: <code>$("T TX", node)</code></li>
<li>second selection should only come up with one "TX" tag</li>
</ul>
<p>However, in IE6 and IE8 (haven't tried IE7), the second selection seems to ignore the "node" context, and search the entire xml document. The test runs as expected in FireFox and Safari. Doing it this way works in IE <code>$("T", node).find("TX")</code>. Any explanations of why <code>$("T TX", node)</code> doesn't work in IE?</p>
http://stackoverflow.com/questions/980937/jquery-selector-strangeness-is-this-a-bug-or-am-i-doing-it-wrong/998050#9980502Answer by morgancodes for jquery selector strangeness -- is this a bug or am I doing it wrong? morgancodes2009-06-15T19:53:40Z2009-06-15T20:06:48Z<p>It's a bug.</p>
<p>Filed at <a href="http://dev.jquery.com/ticket/4748" rel="nofollow">dev.jquery.com/ticket/4748</a>, at the request of <a href="http://ojohn.org" rel="nofollow">John Resig</a>.</p>
http://stackoverflow.com/questions/996995/javascript-date-time-library-recommendations0javascript date/time library recommendations?morgancodes2009-06-15T16:16:36Z2009-06-15T16:20:30Z
<p>Anybody have any? I want to be able to go from a Date object to something like "12:45 PM, Monday, June 11th, 2009". </p>
http://stackoverflow.com/questions/964717/removing-page-scrollbars-in-ie8-overflowhidden-not-working1removing page scrollbars in IE8 (overflow:hidden not working)morgancodes2009-06-08T12:38:50Z2009-06-08T13:04:33Z
<p>Applying this</p>
<pre><code>overflow:hidden;
</code></pre>
<p>to the body of my document has no effect in IE8. Any ideas why?</p>
http://stackoverflow.com/questions/940383/jquery-ie8-selector-bizarreness0jquery IE8 selector bizarrenessmorgancodes2009-06-02T16:06:45Z2009-06-02T16:23:06Z
<p>I'm working with an xml node of the following structure:</p>
<pre><code><CF>
<T>
<TX>title</TX>
<em>15:2:</em>
</T>
<KW>
<TX>SOMETHING ELSE</TX>
</KW>
<!-- OTHER TAGS, SOME OF WHICH HAVE A <TX> CHILD -->
</CF>
</code></pre>
<p>Things work more or less as I expect in firefox, but I'm getting weird behavior in IE8. For example, the following gives me a jquery object of length 14:</p>
<pre><code>jQuery("T TX", xmlDoc).length
</code></pre>
<p>where it should be only one (the "CF" tag contains only one "T" tag, which in turn contains only one "TX" tag).</p>
<p>Adding to the strangeness, if I remove the "T" from the selector, as in the following:</p>
<pre><code>jQuery("TX", xmlDoc).length
</code></pre>
<p>I get FEWER, rather than an equal or greater number of results (the jquery object's length is 12).</p>
<p>So, the first question is: if there's only one TX tag, and it has only one "T" tag, why does jquery find 14 "TX" tags which are descendants of a "T"?</p>
<p>The second question is: if I simplify the selector, removing the "T", why do I get fewer, rather than more results?</p>
<p>Am I doing something wrong, or have I stumbled upon a bug?</p>
http://stackoverflow.com/questions/894418/jqueryfoo-bar-vs-jqueryfoo-findbar2jquery("foo bar") vs jquery("foo").find("bar")morgancodes2009-05-21T18:37:24Z2009-05-25T17:19:06Z
<p>I'm trying to traverse an xml document. This doesn't work (zero results):</p>
<pre><code>jquery("foo bar")
</code></pre>
<p>this does work:</p>
<pre><code>jquery("foo").find("bar")
</code></pre>
<p>any idea why?</p>
http://stackoverflow.com/questions/907364/how-can-i-have-my-ant-task-pass-or-fail-based-on-the-results-of-a-jar-it-runs1How can I have my ant task pass or fail based on the results of a jar it runs?morgancodes2009-05-25T16:46:09Z2009-05-25T16:51:09Z
<p>I'm running CrossCheck (browserless js unit testing) as part of an ant script. I'd like ant to report failure if the CrossCheck tests fail. Here's the relevant bit from the build.xml</p>
<pre><code><target name="test" depends="concat">
<java jar="src/test/lib/crosscheck.jar" fork="true">
<arg value="src/test/webapp/js/"/>
</java>
</code></pre>
<p></p>
<p>And an example of CrossCheck's failure messaging:</p>
<pre><code> [java] Running tests in environment: Mozilla 1.7 (Firefox 1.0)
[java] org.mozilla.javascript.EcmaError: ReferenceError: "clusterNode" is not defined. (ResultXMLWrapperTest.js#22)
[java] at org.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3229)
[java] at org.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3219)
[java] at org.mozilla.javascript.ScriptRuntime.notFoundError(ScriptRuntime.java:3292)
[java] at org.mozilla.javascript.ScriptRuntime.nameOrFunction(ScriptRuntime.java:1636)
[java] at org.mozilla.javascript.ScriptRuntime.name(ScriptRuntime.java:1575)
[java] at org.mozilla.javascript.gen.c1._c1(ResultXMLWrapperTest.js:22)
[java] at org.mozilla.javascript.gen.c1.call(ResultXMLWrapperTest.js)
[java] at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:340)
[java] at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:2758)
[java] at org.mozilla.javascript.gen.c1.call(ResultXMLWrapperTest.js)
[java] at net.thefrontside.crosscheck.framework.AbstractScopeFactory$1.run(AbstractScopeFactory.java:108)
[java] at org.mozilla.javascript.Context.call(Context.java:515)
[java] at org.mozilla.javascript.Context.call(Context.java:450)
[java] at net.thefrontside.crosscheck.framework.AbstractScopeFactory.initTestScope(AbstractScopeFactory.java:94)
[java] at net.thefrontside.crosscheck.framework.DefaultScopeFactory.getTestScope(DefaultScopeFactory.java:68)
[java] at net.thefrontside.crosscheck.framework.TestCase$1.run(TestCase.java:119)
[java] at org.mozilla.javascript.Context.call(Context.java:528)
[java] at org.mozilla.javascript.Context.call(Context.java:450)
[java] at net.thefrontside.crosscheck.framework.TestCase.run(TestCase.java:117)
[java] at net.thefrontside.crosscheck.framework.TestSuite.run(TestSuite.java:95)
[java] at net.thefrontside.crosscheck.framework.Crosscheck.runAll(Crosscheck.java:116)
[java] at net.thefrontside.crosscheck.framework.ConsoleRunner.run(ConsoleRunner.java:140)
[java] at net.thefrontside.crosscheck.framework.ConsoleRunner.main(ConsoleRunner.java:300)
[java] ReferenceError: "clusterNode" is not defined. (ResultXMLWrapperTest.js#22)
[java] Java Result: 1
</code></pre>
<p>Can ant get at the results of the CrossCheck test (perhaps Java Result: 1 gets passed back to ant?) and succeed or fail based on that?</p>
http://stackoverflow.com/questions/905067/having-trouble-controlling-the-width-of-tds-in-internet-explorer-7-and-80having trouble controlling the width of tds in Internet Explorer 7 and 8.morgancodes2009-05-25T01:44:26Z2009-05-25T02:13:50Z
<p>I set the width using: </p>
<pre><code>style="width: 200px"
</code></pre>
<p>When the browser window is narrow, the td is the correct width. When I make the window wide, the td expands wider than what I set it to. Any ideas?</p>
http://stackoverflow.com/questions/678445/get-daylight-saving-transition-dates-for-time-zones-in-cComment by morgancodes on Get Daylight Saving Transition Dates For Time Zones in Cmorgancodes2009-09-19T20:33:39Z2009-09-19T20:33:39ZI have precisely the same question about Javahttp://stackoverflow.com/questions/1408357/how-can-i-use-firebug-to-tell-whats-causing-slow-page-loads/1408363#1408363Comment by morgancodes on How can I use FireBug to tell what's causing slow page loads?morgancodes2009-09-14T15:14:51Z2009-09-14T15:14:51ZYSlow is great, but it looks like it can't be run until the page is finished loading. My problem is that my page is hanging, and I want to see what's holding it up.http://stackoverflow.com/questions/1296796/javascript-preprocessing-for-easier-multi-line-stringsComment by morgancodes on javascript preprocessing for easier multi-line strings?morgancodes2009-08-21T16:24:53Z2009-08-21T16:24:53ZSure, but I'm moving toward <i>developing</i> all of my javascript using separate files, but using a build process and <i>deploying</i> everything as one file. So I'd like to have my templates in separate source files, but have my build process turn them in to javascript which can be rolled in to the single js file which contains everything needed for the widget I'm developing.http://stackoverflow.com/questions/980937/jquery-selector-strangeness-is-this-a-bug-or-am-i-doing-it-wrong/998050#998050Comment by morgancodes on jquery selector strangeness -- is this a bug or am I doing it wrong? morgancodes2009-08-19T21:07:31Z2009-08-19T21:07:31ZJust found a similiar aparrent jquery selectors bug. <a href="http://dev.jquery.com/ticket/5078" rel="nofollow">dev.jquery.com/ticket/5078</a>http://stackoverflow.com/questions/1140653/how-to-load-a-properties-file-into-a-jsp/1140791#1140791Comment by morgancodes on How to load a .properties file into a jspmorgancodes2009-07-17T14:47:16Z2009-07-17T14:47:16ZThanks. This works. However, I was planning on doing all of this inside jspInit, which doesn't have easy access to the servletContext. Maybe a classpath approach really is best.http://stackoverflow.com/questions/1140653/how-to-load-a-properties-file-into-a-jsp/1140686#1140686Comment by morgancodes on How to load a .properties file into a jspmorgancodes2009-07-16T22:54:27Z2009-07-16T22:54:27ZI'm totally on board with the not doing real stuff in a jsp rule, but I'm breaking it in the case.http://stackoverflow.com/questions/1140653/how-to-load-a-properties-file-into-a-jsp/1140687#1140687Comment by morgancodes on How to load a .properties file into a jspmorgancodes2009-07-16T22:53:23Z2009-07-16T22:53:23ZYes, that would be the right way to do it. I'm admittedly doing this the quick, ugly, dirty, bad way.http://stackoverflow.com/questions/1140653/how-to-load-a-properties-file-into-a-jsp/1140683#1140683Comment by morgancodes on How to load a .properties file into a jspmorgancodes2009-07-16T22:52:05Z2009-07-16T22:52:05ZThat's great to know about. Thanks! Using that technique, it shows me that my path is seemingly correct to my properties file, but I still get a file not foud exception. Any ideas? http://stackoverflow.com/questions/1122375/jquery-event-stoppropagation-seems-not-to-work/1122410#1122410Comment by morgancodes on jquery Event.stopPropagation() seems not to workmorgancodes2009-07-14T15:31:19Z2009-07-14T15:31:19ZAwesome. Thanks so much for the clarificatin.http://stackoverflow.com/questions/723112/jquery-fastest-way-to-remove-all-rows-from-a-very-large-table/1099438#1099438Comment by morgancodes on jquery - fastest way to remove all rows from a very large tablemorgancodes2009-07-13T22:06:34Z2009-07-13T22:06:34ZCool! Thanks for reporting back!http://stackoverflow.com/questions/1044000/javascript-unix-time-to-specific-time-zone/1044701#1044701Comment by morgancodes on Javascript -- Unix Time to Specific Time Zonemorgancodes2009-06-25T16:02:24Z2009-06-25T16:02:24Zand no daylight savings handlinghttp://stackoverflow.com/questions/1044000/javascript-unix-time-to-specific-time-zone/1044023#1044023Comment by morgancodes on Javascript -- Unix Time to Specific Time Zonemorgancodes2009-06-25T15:02:37Z2009-06-25T15:02:37ZI appreciate the responses, and totally believe that Mark's solution is best if the user is in the correct time zone. However, if the user isn't, I still want to be able show the time in Eastern Standard time, rather than whatever time zone the user is in. Seems it may be a bit ugly to do that though.http://stackoverflow.com/questions/1044000/javascript-unix-time-to-specific-time-zone/1044023#1044023Comment by morgancodes on Javascript -- Unix Time to Specific Time Zonemorgancodes2009-06-25T13:59:03Z2009-06-25T13:59:03ZI was figuring I could bet back to GMT by subtracting the timeZoneOffset, then manually subtracting four hours, and manually correcting for daylight savings. A little ugly, but seems to me that would work no matter what time zone the browser thinks it's in.http://stackoverflow.com/questions/1044000/javascript-unix-time-to-specific-time-zone/1044023#1044023Comment by morgancodes on Javascript -- Unix Time to Specific Time Zonemorgancodes2009-06-25T13:49:55Z2009-06-25T13:49:55ZThanks for the response, but whatever my solution is, it's going to need to subtract four hours from the unix time, and is going to then need to handle daylight savings. Don't think what you posted will do that. http://stackoverflow.com/questions/1028054/complex-client-side-logic-better-to-move-to-the-server-side/1028093#1028093Comment by morgancodes on Complex client-side logic -- better to move to the server side?morgancodes2009-06-22T22:15:53Z2009-06-22T22:15:53ZGood thoughts. The client's site doesn't work at all if javascript is disabled, so I'm no so worried about excluding non-js folks in this particular case.