User Frank Schwieterman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T17:14:23Zhttp://stackoverflow.com/feeds/user/32203http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1942067/problem-understanding-more-complex-examples-of-descendant-selectors-css/1942109#19421091Answer by Frank Schwieterman for Problem understanding more complex examples of Descendant selectors (CSS)Frank Schwieterman2009-12-21T19:30:44Z2009-12-21T19:30:44Z<p>Each section of the specifier separated by a space refers to a separate node in the document. So its the first one.</p>
http://stackoverflow.com/questions/1756829/postback-after-jquery-dialog-box-closes-causes-js-error-in-ie/1941656#19416560Answer by Frank Schwieterman for Postback after JQuery Dialog box closes causes js error in IEFrank Schwieterman2009-12-21T18:05:22Z2009-12-21T18:05:22Z<p>The problem is that the ASP.NET generated page depends on some global javascript values. These values are likely being overwritten by the dialog you are injecting. My solution to this problem was to have an object which saves off the current state before loading the dialogs, then restore it when done.</p>
<p>To determine what values need to be saved off, you need to be careful to review the pages you load as dialogs. Review all script tags. Some of the values I've found worth saving/restoring are: "__doPostBack", "theForm", "WebForm_OnSubmit", "Page_Validators", "ValidatorOnSubmit", "Page_ValidationActive", "ValidatorOnChange"</p>
<p>This list will grow as you use more ASP.NET features within your dialog.</p>
http://stackoverflow.com/questions/1916515/how-defensive-should-you-be/1916583#19165832Answer by Frank Schwieterman for How defensive should you be?Frank Schwieterman2009-12-16T18:15:36Z2009-12-16T18:15:36Z<p>"Unit tests verifying the code does what it should do" > "production code trying to verify its not doing what its not supposed to do".</p>
<p>I wouldn't even check for null myself, unless its part of a published API.</p>
http://stackoverflow.com/questions/1900469/should-code-prevent-a-logically-invalid-call-even-when-no-harm-would-be-done/1904121#19041211Answer by Frank Schwieterman for Should code prevent a logically invalid call even when no harm would be done?Frank Schwieterman2009-12-14T23:00:56Z2009-12-14T23:00:56Z<p>If this is part of a public SDK that you're releasing to the wild, then the exposed API calls should have strong validation. It will help your 'users' (who are developers) and ensure you aren't stuck supporting usage you never intended to support.</p>
<p>Otherwise, I would not add such checks. I think they make the code harder to read, and these checks are rarely tested. In the past I would add a lot of code like this to make sure my code doesn't do the wrong thing. Now I write unit tests to verify my code does the right thing. The difference? I think tests are more maintainable, more readable, and they don't clutter your production code.</p>
http://stackoverflow.com/questions/1848839/javascript-decorators-howto/1848880#18488801Answer by Frank Schwieterman for JavaScript decorators HOWTO?Frank Schwieterman2009-12-04T18:41:45Z2009-12-04T18:41:45Z<p>What about your scenario requires a library? It seems that with native javascript, you could simply:</p>
<pre><code>1) Save a copy of the original function
2) Create a modified version of the function which uses the original
3) Store a reference to the modified version where the original was originally stored.
</code></pre>
http://stackoverflow.com/questions/1848266/need-ideas-for-a-tdd-approach/1848562#18485620Answer by Frank Schwieterman for Need ideas for a TDD ApproachFrank Schwieterman2009-12-04T17:47:42Z2009-12-04T17:47:42Z<blockquote>
<blockquote>
<p>No matter what I send to jobDetailController.GetById(x) I will always get back jobDetail3</p>
</blockquote>
</blockquote>
<p>You should spend more time debugging your tests because what is happening is not how Moq behaves. There is a bug in your code or tests causing something to misbehave.</p>
<p>If you want to make repeated calls with the same inputs but different outputs you could also use a different mocking framework. RhinoMocks supports the record/playback idiom. You're right this is not always what you want with regards to enforcing call order. I do prefer Moq myself for its simplicity.</p>
http://stackoverflow.com/questions/1841742/dbnull-in-linq-query-causing-problems/1841947#18419470Answer by Frank Schwieterman for DBnull in Linq query causing problemsFrank Schwieterman2009-12-03T18:34:47Z2009-12-03T18:34:47Z<p>I think you want to use item.EndTime.HasValue, and not item.EndTime == null.</p>
http://stackoverflow.com/questions/1835838/specifications-for-servers-for-team-based-development/1835918#18359180Answer by Frank Schwieterman for Specifications for Servers for Team Based DevelopmentFrank Schwieterman2009-12-02T21:24:00Z2009-12-02T21:24:00Z<p>Some good reads on database versioning: <a href="http://www.codinghorror.com/blog/archives/001050.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001050.html</a></p>
http://stackoverflow.com/questions/1073414/deleting-a-window-property-in-ie/1824228#18242280Answer by Frank Schwieterman for deleting a window property in IEFrank Schwieterman2009-12-01T05:47:58Z2009-12-01T05:47:58Z<p>Gasper made a comment with the solution he finished on, but I think its worth calling out as an actual answer:</p>
<pre><code>try
{
delete window.x;
}
catch(e)
{
window["x"] = undefined;
}
</code></pre>
<p>Interesting issue, I was just banging my head against it tonight. The exception is thrown on IE but not Firefox. I would suspect this workaround leaks memory, so use sparingly.</p>
http://stackoverflow.com/questions/1822272/how-can-i-create-a-templated-control-with-asp-net-mvc/1822284#18222840Answer by Frank Schwieterman for How can I create a templated control with Asp.Net MVC?Frank Schwieterman2009-11-30T20:45:52Z2009-11-30T20:45:52Z<p>You might want to do something like Html.BeginPanel() / Html.EndPanel(), similar to how forms are created with Html.BeginForm() / Html.EndForm(). This way you can wrap the contained content rather than need to pass it as a parameter.</p>
http://stackoverflow.com/questions/1800818/unit-testing-jquery-document-ready-function/1801030#18010300Answer by Frank Schwieterman for Unit testing jQuery document.ready functionFrank Schwieterman2009-11-26T01:07:31Z2009-11-26T03:35:37Z<p>The function that registers the on ready handler should register another function, not an anonymous codeblock. Then you can test the code that calls $.ready() separate from the code that runs on ready. So you have:</p>
<ol>
<li>One test to verify the right function is set as the the ready handler</li>
<li>Another test to verify the ready handler does the right stuff</li>
</ol>
<p>To test scenario 1, you'll need to inject a test double for jQuery. This is difficult as if you redefine $ or jQuery, odds are you'll screw up other code that relies on it for other processing (like the test runner). At the same time your code may still want to call jQuery directly when its using utility methods like array concatenation. Any inversion-of-control pattern should address this though (<a href="http://martinfowler.com/articles/injection.html" rel="nofollow">http://martinfowler.com/articles/injection.html</a>).</p>
<p>Anyhow, here's some code using constructor injection (using JSMock for the mocking library, and QUnit (of jQuery) for the test runner):</p>
<pre><code>// the code
var createComponent = function(_$) {
var that = {};
that.OnStart = function() {
_$.ready(this.OnReady);
};
that.OnReady = function() {
};
return that;
};
// the test
test("OnStart associates the ready handler", function() {
var sut;
var mock$ = mc.createMock($);
mock$.expects().ready(isA.TypeOf(Function)).andStub(function(callback) {
equals(callback, sut.OnReady);
});
sut = createComponent(mock$);
sut.OnStart();
mc.verify();
});
test("OnReady does the right stuff", function() {
//etc
});
</code></pre>
<p>I use this general pattern for all event handlers in JS... You might prefer to use prototype type classes. When you pass functions as parameters to jQuery, you need to be aware that the "this" value will not be set by jQuery when those callbacks are called. In the test, this breaks because equals(callback, sut.OnReady) no longer passes. To address this, you need to make the event handlers direct members of each instance. You can imagine when there are a number of then its nice to have a util that takes a list of them, but this demonstrates making 'OnReady' a member who does not rely on 'this'.</p>
<pre><code>var Component = function(_$) {
this._$ = _$;
// repeat for each event handler thats tested
this.OnReady = function() {
Component.prototype.OnReady.apply(this);
}
}
Component.prototype.Start = function() {
this._$.ready(this.OnReady);
}
Component.prototype.OnReady = function() {
}
</code></pre>
http://stackoverflow.com/questions/1799307/is-asp-net-mvc-a-good-option-for-developing-a-services-layer-and-or-api/1799342#17993423Answer by Frank Schwieterman for Is ASP.NET MVC a good option for developing a Services layer and/or API?Frank Schwieterman2009-11-25T19:19:59Z2009-11-25T19:19:59Z<p>If you're making a restful service I think MVC would be great. If you want to support WS* webservice standards then you should probably use WCF. Personally I think WCF is a lot of pain/overhead that isn't necessary if you're just doing a RESTful service. WCF tends to bypass parts of the IIS and ASP.NET stack which can cause surprise pains (or pleasure, if you enjoy working with/configuring WCF).</p>
http://stackoverflow.com/questions/1799158/asp-net-programmatically-add-a-span-tag-not-label-control/1799174#17991740Answer by Frank Schwieterman for asp.net programmatically add a span tag? Not Label controlFrank Schwieterman2009-11-25T18:53:47Z2009-11-25T18:53:47Z<p>new HtmlGenericControl("span")</p>
http://stackoverflow.com/questions/1794140/is-there-a-way-to-see-the-final-url-retrieved-by-an-xmlhttprequest1Is there a way to see the final URL retrieved by an XMLHttpRequest?Frank Schwieterman2009-11-25T01:44:08Z2009-11-25T17:38:20Z
<p>I'm doing an AJAX download that is being redirected. I'd like to know the final target URL the request was redirected to. I'm using jQuery, but also have access to the underlying XMLHttpRequest. Does anyone know a way to get the final URL?</p>
<p>It seems like I'll need to have the final target insert its URL into a known location in the headers or response body, then have the script look for it there. I was hoping to have something that would work regardless of the target though.</p>
<p>Additional note: I'm asking how my code can get the full url from production code, which will run from the user's system. I'm not asking how I can get the full url when I'm debugging.</p>
http://stackoverflow.com/questions/1793860/is-it-possible-to-create-a-desktop-application-whose-ui-is-html-rendered-using-as/1793890#17938900Answer by Frank Schwieterman for Is it possible to create a desktop application whose UI is HTML rendered using ASP.NET templates without using a webserver?Frank Schwieterman2009-11-25T00:17:05Z2009-11-25T00:17:05Z<p>Adobe AIR supports something like this (build a site using HTML+javascript, but then deploy it as a web application) however it is not going to support the ASP.NET markup.</p>
http://stackoverflow.com/questions/289077/do-you-htmlencode-during-input-or-output/1787071#17870711Answer by Frank Schwieterman for Do you HtmlEncode during input or output?Frank Schwieterman2009-11-24T00:34:06Z2009-11-24T00:44:03Z<p>Encoding is not a property of the data, it is a property of the transport mechanism. Therefore you should unencode data when you receive it, and encode it appropriately before transmission. The transport mechanism determines what sort of encoding is necessary.</p>
<p>This principle holds true whether your transport mechanism is HTML, HTTP, smoke signals, etc. The trick is knowing how to do the types of encoding manually, and when various frameworks do the steps for you automagically. For instance, ASP.NET will encode data assigned to a System.Web.UI.WebControls.Button's Text, but not text assigned to a System.Web.UI.WebControls.Literal's Text. jQuery will encode content you set with .innerText(), but not content you set with .innerHtml().</p>
http://stackoverflow.com/questions/1265114/dependency-browser-that-runs-against-an-inversion-of-control-framework3dependency browser that runs against an inversion of control frameworkFrank Schwieterman2009-08-12T09:17:20Z2009-11-19T19:36:15Z
<p>Do any inversion of control / dependency injection framworks support viewing the object dependencies that have been registered? This is not to execute the code, but to better understand it. It seems that a graph based on the information it has (class A depends on B and C, class B dependencs on C and E, etc) would really document a system well.</p>
<p>I'm using Castle Windsor at the moment, but wouldn't mind trying a different framework for this functionality.</p>
http://stackoverflow.com/questions/1295717/alternatives-to-adding-dynamically-generated-inline-javascript/1295762#12957620Answer by Frank Schwieterman for Alternatives to adding dynamically generated inline JavaScriptFrank Schwieterman2009-08-18T18:47:20Z2009-11-19T16:23:46Z<p>I think it's plenty reasonable to insert JavaScript into a document, particular when you're populating data that changes dynamically with the page. I don't think there is any advantage to storing that data in HTML tags rather than putting in inline script.</p>
<p>What you should do is minimize the amount of inline script needed by factoring out code that can be moved to a separate JavaScript file.</p>
http://stackoverflow.com/questions/1711042/spark-and-asp-net1Spark and ASP.NETFrank Schwieterman2009-11-10T20:41:30Z2009-11-17T21:44:33Z
<p>I started playing with Spark in an ASP.NET MVC project. However I have an existing ASP.NET project that I can't port over to ASP.NET MVC, and was wondering if there is a way to use Spark with ASP.NET?</p>
http://stackoverflow.com/questions/1750670/how-do-you-specify-table-padding-in-css-table-not-cell-padding/1750691#17506914Answer by Frank Schwieterman for How do you specify table padding in CSS? ( table, not cell padding )Frank Schwieterman2009-11-17T18:04:14Z2009-11-17T18:04:14Z<p>You could set a margin for the table. Alternatively, wrap the table in a div and use the div's padding.</p>
http://stackoverflow.com/questions/1750560/which-url-format-is-better-for-seo/1750678#17506781Answer by Frank Schwieterman for which url format is better for seo?Frank Schwieterman2009-11-17T18:01:24Z2009-11-17T18:01:24Z<p>another good article: <a href="http://www.seomoz.org/blog/seo-cheat-sheet-anatomy-of-a-url" rel="nofollow">http://www.seomoz.org/blog/seo-cheat-sheet-anatomy-of-a-url</a></p>
http://stackoverflow.com/questions/1745797/jquery-ui-tabs-problem/1745889#17458890Answer by Frank Schwieterman for jquery ui tabs problemFrank Schwieterman2009-11-17T00:43:28Z2009-11-17T00:43:28Z<p>Whatever region the tabs are being written to is having its width constrained, causing the premature wrap to the next line (I assume this is the problem you're having-- your question is not explicit on what the problem is). I'd fish around with Firebug until whatever sized div or margin is causing the space to be limited.</p>
http://stackoverflow.com/questions/1735866/embedding-c-code-using-code-within-javascript-script-tags/1735998#17359981Answer by Frank Schwieterman for Embedding C# code using <%= code %> within javascript <script> tagsFrank Schwieterman2009-11-14T23:39:18Z2009-11-14T23:39:18Z<p>You need to be careful when writing strings into script tags, because as it is javascript the expectation is that the string has special characters encoded properly. Additionally, if that string contains something like "</script>" you run the risk of browsers that aren't running javascript ending the script block early.</p>
<p>An easy way to encode the strings is with a JSON serializer, perhaps JavaScriptSerializer().</p>
<pre><code><script>
var targetUrl = <%= (new JavaScriptSerializer()).Serialize("http://url/") %>;
</script>
</code></pre>
<p>I think this is safer. You'd want to put this code in a helper function, I just instantiate JavaScriptSerializer() in-place there so its the simplest example possible.</p>
<p>One side effect of this is that the <%= %> expression is not within quotes, which sounds like it would help your original autocomplete support issures. Note that Serialize() will not only properly escape the string for javascript, it will also escape-encode the '<' and '>' characters so that "</script>" scenario can't happen.</p>
http://stackoverflow.com/questions/1732615/books-to-learn-how-to-make-web-development-fun-instead-of-frustrating/1732734#17327341Answer by Frank Schwieterman for Books to learn how to make web development fun instead of frustratingFrank Schwieterman2009-11-14T00:21:40Z2009-11-14T00:21:40Z<p>Don't learn HTML/CSS in an adhoc manner, its a technology that has evolved by accident rather than design. You should definately grab a book like "CSS Mastery: Advanced Web Standards Solutions" to reduce the frustration in learning HTML layout.</p>
http://stackoverflow.com/questions/1633028/calculating-the-path-relative-to-some-root-the-inverse-of-path-combine4Calculating the path relative to some root- the inverse of Path.CombineFrank Schwieterman2009-10-27T19:11:49Z2009-11-12T15:26:18Z
<p>Is there a reliable way to calculate the inverse of Path.Combine()?</p>
<p>Path.Combine("c:\folder", "subdirectory\something.txt") might return something like "c:\folder\subdirectory\something.text". What I want is the inverse, a function where Path.GetRelativeUrl("c:\folder", "c:\folder\subdirectory\something.text") would return something like ""subdirectory\something.txt".</p>
<p>One solution is to do string comparisons and trim the roots, but this would not work when the same path is expressed in different ways (use of ".." or "~1" in path expression).</p>
http://stackoverflow.com/questions/1661628/which-objects-to-mock-when-doing-tdd/1717170#17171700Answer by Frank Schwieterman for Which objects to mock when doing TDDFrank Schwieterman2009-11-11T18:24:52Z2009-11-11T18:24:52Z<p>I would try to use dependency injection on the class rather than have the class method create the object (as the selected answer recommends). When that doesn't make sense, consider making a factory class that produces the objects being created. You can then pass in that factory via dependency injection.</p>
http://stackoverflow.com/questions/1712082/diagnosing-runaway-cpu-in-a-net-production-application/1712353#17123530Answer by Frank Schwieterman for Diagnosing runaway CPU in a .Net production applicationFrank Schwieterman2009-11-11T01:05:28Z2009-11-11T01:05:28Z<p>I think you should look at memory and disk usage as well. If a machine runs out of memory and needs to start using virtual memory (on the disk drive), you'll see a spike in CPU and disk activity. In such conditions what looks like a CPU bottleneck is actually a memory bottleneck.</p>
http://stackoverflow.com/questions/1710424/referencing-a-javascript-value-before-it-is-declared-can-someone-explain-this3referencing a javascript value before it is declared - can someone explain thisFrank Schwieterman2009-11-10T19:09:00Z2009-11-10T20:09:10Z
<p>I'm hoping someone can explain to me why the below javascript/HTML will show "door #2" when the html is viewed in a browser:</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">
function testprint() {
alert('door #1');
};
window.onload = testprint;
function testprint() {
alert('door #2');
};
testprint = function() {
alert('door #3');
};
</script>
<script type="text/javascript">
function testprint() {
alert('door #4');
};
</script>
</head>
<body>
</body>
</html>
</code></pre>
<p>Since only the declartion testprint occurs before window.onload is set to testprint, I would expect window.onload cause 'door #1' to show up. In actuality, onload causes 'door #2'. Note that it will do this whether the first declaration of test print is included or not.</p>
<p>The third and fourth declaration of testprint use different means of assigning the function, I tried this to see if it would override window.onload's behavior in the same was the second declaration of testprint does. It did not. Note that if I move the fourth declaration of testprint to the end of the first script block it would be called by window.onload.</p>
http://stackoverflow.com/questions/1349411/custom-asp-net-template-control-without-placeholder-tags0custom ASP.NET template control without placeholder tagsFrank Schwieterman2009-08-28T21:16:14Z2009-11-10T19:00:03Z
<p>Let's say I have a custom template control, that can be used in pages like so:</p>
<pre><code><AR:CustomControl runat="server">
<ViewTemplate>
<span>stuff</span>
</ViewTemplate>
</AR:ModalLink>
</code></pre>
<p>Since there is only one template field, the element isn't really necessary. Is there a way I can edit my control so it can be used like?</p>
<pre><code><AR:CustomControl runat="server">
<span>stuff</span>
</AR:ModalLink>
</code></pre>
<p>Note that this is a UserControl with an ASCX file. So I don't think I can simple inherit from an existing control like Label.</p>
http://stackoverflow.com/questions/1537783/will-the-spark-view-engine-interoperate-with-webforms-master-pages/1678267#16782670Answer by Frank Schwieterman for Will the Spark view engine interoperate with webforms master pages?Frank Schwieterman2009-11-05T04:02:57Z2009-11-05T04:02:57Z<p>Any luck on this? </p>
<p>I have been able to host a spark view in a System.Web.Mvc.ViewUserControl call Html.RenderView() from the spark view. I bet I could also host a Spark view within a System.Web.Mvc.ViewUserControl using Html.RenderView() as well. This introduces some options (all with overhead) of sharing the master page:</p>
<ol>
<li><p>Write a simple wrapper .ascx for you .spark views. They'd had the same model object, the wrapper could call HtmlRenderPartial on the wrapped view.</p></li>
<li><p>(vice versa) Write a simple wrapper .spark for your .ascx controls.</p></li>
</ol>
<p>When I tried have a view Index.spark use masterpage Site.Master, I received error message:</p>
<pre><code>The view 'Index' or its master could not be found. The following locations were searched:
~/Views/LfgSettings/Index.aspx
~/Views/LfgSettings/Index.ascx
~/Views/Shared/Index.aspx
~/Views/Shared/Index.ascx
Layouts\Site.spark
Shared\Site.spark
</code></pre>
<p>I don't know what these paths represent though, it looks like the search path for the Index view and the search paths for its masterpage. It seems though the .spark file cannot use a .master masterpage.</p>
<p>I wonder though if its possible to write a wrapper .master file that calls into a .spark file which has the correct content regions. Some Reflector'ing would probably dig up some interfaces that could be made to work together.</p>
http://stackoverflow.com/questions/1930010/why-use-a-mocking-framework-instead-of-hand-rolling-our-mocks/1930045#1930045Comment by Frank Schwieterman on Why use a mocking framework instead of hand-rolling our mocks?Frank Schwieterman2009-12-18T19:06:57Z2009-12-18T19:06:57ZThe Mock repository can be used to generate exceptions as well, rather than tweak the fake repository into obscurity.http://stackoverflow.com/questions/1924463/getting-peers-into-asp-net-mvcComment by Frank Schwieterman on Getting Peers into ASP.NET-MVCFrank Schwieterman2009-12-17T20:49:41Z2009-12-17T20:49:41ZIs there another technology your peers would like to adopt? Maybe you could start a small project with them using both.http://stackoverflow.com/questions/1909453/what-mode-do-people-use-when-using-emacs-to-edit-web-pages-that-contain-css-javaComment by Frank Schwieterman on What mode do people use when using Emacs to edit web pages that contain CSS, javascript, and HTML?Frank Schwieterman2009-12-15T19:10:33Z2009-12-15T19:10:33ZNo, because those are tools for programmers. :Phttp://stackoverflow.com/questions/1848839/javascript-decorators-howto/1848880#1848880Comment by Frank Schwieterman on JavaScript decorators HOWTO?Frank Schwieterman2009-12-04T18:54:07Z2009-12-04T18:54:07Znew_func is a confusing name though, I'd call it "originalFunc" (presumably the "originalFunc" in your example is named something else)http://stackoverflow.com/questions/1848839/javascript-decorators-howto/1848880#1848880Comment by Frank Schwieterman on JavaScript decorators HOWTO?Frank Schwieterman2009-12-04T18:53:09Z2009-12-04T18:53:09Zyeah, then set originalFunc = myExtendedVersion.http://stackoverflow.com/questions/1843905/clean-up-code-in-finalize-or-finally/1843948#1843948Comment by Frank Schwieterman on Clean up code in finalize() or finally()?Frank Schwieterman2009-12-04T00:24:31Z2009-12-04T00:24:31Zquestion is tagged Java though...
http://stackoverflow.com/questions/1838484/event-driven-vs-sequential-programmingComment by Frank Schwieterman on Event driven vs sequential programmingFrank Schwieterman2009-12-03T08:39:50Z2009-12-03T08:39:50ZEvents happens.http://stackoverflow.com/questions/432167/common-truisms-that-need-correcting-the-most/432181#432181Comment by Frank Schwieterman on Common "Truisms" that need correcting the most.Frank Schwieterman2009-12-03T01:15:10Z2009-12-03T01:15:10Zwell, thats true if you don't know how to write unit tests.http://stackoverflow.com/questions/1800818/unit-testing-jquery-document-ready-function/1801030#1801030Comment by Frank Schwieterman on Unit testing jQuery document.ready functionFrank Schwieterman2009-11-30T17:25:36Z2009-11-30T17:25:36ZYou could use JSMock's andStub() functionality to record the passed in callback, then call that callback from the same test. This would not be desirable though, as now you have a test verifying separate things (leading to poor defect localization <a href="http://xunitpatterns.com/Goals%20of%20Test%20Automation.html#Defect%20Localization" rel="nofollow">xunitpatterns.com/Goals%20of%20Test%20Automation.…</a>)http://stackoverflow.com/questions/1794140/is-there-a-way-to-see-the-final-url-retrieved-by-an-xmlhttprequest/1794550#1794550Comment by Frank Schwieterman on Is there a way to see the final URL retrieved by an XMLHttpRequest?Frank Schwieterman2009-11-25T17:46:22Z2009-11-25T17:46:22ZThis coffee isn't working. Correction: "would represent the final response, and not the redirect response". http://stackoverflow.com/questions/1794140/is-there-a-way-to-see-the-final-url-retrieved-by-an-xmlhttprequest/1794550#1794550Comment by Frank Schwieterman on Is there a way to see the final URL retrieved by an XMLHttpRequest?Frank Schwieterman2009-11-25T17:45:44Z2009-11-25T17:45:44ZThanks for recognizing I need to do this programmaticially. However I don't think the location header will work. The Location header is a header for the redirect response, not the final response. The XHR header's collection would represent the final response, and not the location header. There are no additional HTTP headers I see that have the location.http://stackoverflow.com/questions/1793903/problem-with-getting-page-with-jqueryComment by Frank Schwieterman on Problem with getting page with JQuery?Frank Schwieterman2009-11-25T00:36:46Z2009-11-25T00:36:46ZYou should do more debugging and explain what actually happened. Was the request made? Was there an error result returned instead? My guess is inserting a <form> within a <form> is the problem.http://stackoverflow.com/questions/1792626/ie-6-strange-problem-background-bullet-only-shown-on-mouse-while-hover-is-not-app/1792806#1792806Comment by Frank Schwieterman on IE 6 strange problem background bullet only shown on mouse while hover is not applied?Frank Schwieterman2009-11-24T20:51:00Z2009-11-24T20:51:00Zfact check: <a href="http://www.google.com/" rel="nofollow">google.com</a> works on IE6, and its 'losers' not 'loosers'.http://stackoverflow.com/questions/411688/how-to-extend-jquery-to-make-it-easier-to-retrieve-the-tagname/1372652#1372652Comment by Frank Schwieterman on How to extend jQuery to make it easier to retrieve the tagNameFrank Schwieterman2009-11-24T18:45:47Z2009-11-24T18:45:47Zmay return an array or an item... will throw an exception if one of the selected item doesn't have a tagName...http://stackoverflow.com/questions/1744426/does-javascripts-new-operator-do-anything-but-make-life-difficult/1744449#1744449Comment by Frank Schwieterman on Does Javascript's new operator do anything but make life difficult?Frank Schwieterman2009-11-16T19:52:37Z2009-11-16T19:52:37ZActually, you can avoid using new by setting the prototype property directly on an object. This has the unfortunate side effect of causing o.hasOwnProperty("prototype") to return true, where it would return false if new was used.