User Ates Goral - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T03:53:43Zhttp://stackoverflow.com/feeds/user/23501http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1841531/including-information-in-html-for-javascript-to-consume/1841933#18419330Answer by Ates Goral for Including Information in HTML for Javascript to Consume?Ates Goral2009-12-03T18:33:11Z2009-12-03T18:33:11Z<p>If the data that you'd like to embed is restricted to menu items, why not directly generate lightweight HTML out of simple <code><ol></code> and <code><li></code> elements? You can still keep HTML out of your Java code by using a template engine. The menu markup could just be styled with CSS or if you need something fancier than mere <code><ol></code> and <code><li></code> elements, you can massage the DOM with JavaScript once the page loads (read: <a href="http://en.wikipedia.org/wiki/Progressive%5Fenhancement" rel="nofollow">progressive enhancement</a>).</p>
<p>If you're looking for a more generic solution, beyond the menu case, then you could embed a JSON block in your page, to be consumed when the page loads for the dynamic generation of your menu.</p>
<p>Or, you could look into using a <a href="http://microformats.org/wiki/xoxo" rel="nofollow">microformat that is suitable for menu data</a>.</p>
http://stackoverflow.com/questions/1723199/how-to-unit-test-an-email-rule/1723277#17232773Answer by Ates Goral for how to unit test an email ruleAtes Goral2009-11-12T15:57:57Z2009-11-12T15:57:57Z<p>How you can test a piece of software largely depends how you've broken it down into different components. There's really no testing of a "process". You should be focusing on individual components instead. For example, with a process like the one you described, the software could be broken down into different components as follows:</p>
<ul>
<li>E-mail downloader</li>
<li>E-mail parser</li>
<li>Rule engine</li>
<li>E-mail router</li>
</ul>
<p>You would essentially be testing each component individually, running tests that exercise every aspect (as much as possible) of each component.</p>
http://stackoverflow.com/questions/1717937/ext-js-getting-child-editorgrid-types-in-a-formpanel/1718022#17180220Answer by Ates Goral for ext js - Getting child editorGrid types in a FormPanelAtes Goral2009-11-11T20:57:58Z2009-11-12T05:33:19Z<p>You could filter the <code>items</code> collection of the FormPanel by the type of each item by using <code>isXType</code>:</p>
<pre><code>var grids = formPanel.items.filterBy(function (item) {
return item.isXType("editorgrid");
});
</code></pre>
<p><code>grids</code> will be a new collection of all the <code>EditorGridPanel</code> items.</p>
<p><strong>Update:</strong> A more concise way:</p>
<pre><code>var grids = formPanel.findByType("editorgrid", true);
</code></pre>
http://stackoverflow.com/questions/1702954/which-would-you-prefer-svg-html5-or-regend-png-for-graphs-charts/1702991#17029910Answer by Ates Goral for Which would you prefer? SVG, HTML5 or regen'd-PNG for graphs & charts?Ates Goral2009-11-09T18:53:47Z2009-11-09T18:53:47Z<p><a href="http://excanvas.sourceforge.net/" rel="nofollow">ExplorerCanvas</a> brings <code><canvas></code> support to IE. So, it would be an amalgamation of 1 & 2. The benefit would be that (a) as more browsers add support for <code><canvas></code>, you would automatically get the benefits of already supporting it and (b) you would get scaling with browser size.</p>
http://stackoverflow.com/questions/1689253/jquery-going-through-all-visible-rows-of-a-table/1689334#16893341Answer by Ates Goral for jQuery: going through all visible rows of a table...Ates Goral2009-11-06T18:10:33Z2009-11-06T18:10:33Z<p>When you simply hide an element, it is not taken out of the document flow. Therefore, it will continue to get located by your DOM queries.</p>
<p>Without seeing your actual HTML, I can only speculate that what you're trying to accomplish can be done in a simpler way with the following jQuery loop:</p>
<pre><code>$("tr input[value=" + mid + "]").each(function () {
this.hide();
});
</code></pre>
http://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomain/1689058#16890581Answer by Ates Goral for Reading Javascript Cookies from a subdomain...Ates Goral2009-11-06T17:21:51Z2009-11-06T17:21:51Z<p>While setting the cookies at test.com, make sure that you specify the cookie domain as ".test.com".</p>
<p>For example:</p>
<pre>your_key_name=your_key_value;domain=.test.com;expires=...</pre>
http://stackoverflow.com/questions/1681395/image-shows-only-when-debugging/1681407#16814070Answer by Ates Goral for image shows only when debuggingAtes Goral2009-11-05T15:47:50Z2009-11-05T15:47:50Z<p>When are you running you script? You should run it when the DOM is ready for manipulation. Try:</p>
<pre><code>$(function () {
// do your stuff here
});
</code></pre>
http://stackoverflow.com/questions/1677804/need-to-include-anchor-after-querystring-list/1678000#16780000Answer by Ates Goral for Need to include #anchor after querystring listAtes Goral2009-11-05T02:45:37Z2009-11-05T02:52:24Z<p>You can't <em>dynamically</em> append an anchor by using a regular form submit.</p>
<p>You could intercept the submit event and change the target attribute of the form to a URL that includes the anchor. At least in Firefox, the browser will insert the query string in the right place (before the anchor.)</p>
<p>For example:</p>
<pre><code><form action="test.htm" method="get" onsubmit="this.action += '#anchor'">
<input type="hidden" name="foo" value="bar">
<input type="submit">
</form>
</code></pre>
<p><em>(Note: This is for illustration purposes. I wouldn't include the submit event handler inline with my HTML.)</em></p>
<p>Alternatively, you could try constructing your very own URL (including the query string and the anchor) and then setting <code>document.location</code> to that.</p>
http://stackoverflow.com/questions/1663242/calling-a-function-inside-an-iframe-from-outside-the-iframe/1663271#16632710Answer by Ates Goral for Calling a function inside an iframe from outside the iframeAtes Goral2009-11-02T19:46:57Z2009-11-02T19:46:57Z<p>You can access the iframe with it's name:</p>
<pre><code>foo.putme();
</code></pre>
<p>Functions declared globally inside the iframe page will become members of the window object for that iframe. You can access the window object of the iframe with the iframe's name.</p>
<p>For this to work, your iframe needs to have a name attribute:</p>
<pre><code><iframe name="foo" ...>
</code></pre>
<p>Also, the main page and the iframe page should be from the same domain.</p>
http://stackoverflow.com/questions/1651575/simple-javascript-search-and-replace/1651854#16518542Answer by Ates Goral for Simple javascript search-and-replaceAtes Goral2009-10-30T19:30:44Z2009-10-30T19:36:45Z<p>Assuming you already have the HTML source in a variable called <code>html</code>, you can do something like this:</p>
<pre><code>var converted = html.replace(/\[\[(.+?)\]\]/g, function (s, token) {
return '<img src="foo.com/'
+ token.split(" ").join("_")
+ '.jpg"/>';
});
</code></pre>
<p>To get or set the entire HTML inside <code><body></code>, you can use <code>document.body.innerHTML</code>. However, I would recommend specifically targeting elements of a certain id or class, if that string pattern doesn't really appear in random places in the page. I would also recommend that you use jQuery for locating these elements and changing their content:</p>
<pre><code>$(".replacable").each(function () {
this.html(imagize(this.html()));
});
function imagize(html) {
return html.replace(/\[\[(.+?)\]\]/g, ...);
}
</code></pre>
http://stackoverflow.com/questions/1650236/problem-with-saving-data-like-12-5/1650245#16502450Answer by Ates Goral for problem with saving data like 12 ÷ 5Ates Goral2009-10-30T14:48:24Z2009-10-30T15:02:21Z<p>Make sure the content encoding of your input HTML page is UTF-8. That way, PHP will know that the content that it is receiving is in UTF-8.</p>
<p>You can do this by embedding the following in the head of your document:</p>
<pre><code><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</code></pre>
<p><strong>Update:</strong> Also make sure that the HTML that you're generating (echo'ing from) also reports UTF-8 as the content encoding. Once you get the echo working, the next step is to ensure that you're DB is also expecting/storing UTF-8.</p>
http://stackoverflow.com/questions/1650265/why-the-height-difference-between-a-textbox-and-a-surronding-span/1650285#16502851Answer by Ates Goral for Why the height difference between a textbox and a surronding span?Ates Goral2009-10-30T14:53:19Z2009-10-30T14:53:19Z<p>The input element will have a default border and padding, that may differ from browser to brower. Try removing that:</p>
<pre><code><input type="text" style="padding: 0; border: 0" />
</code></pre>
<p>Try inspecting the element with Firebug in Firefox to see the effective padding/margin/border of elements. With your example, you'll see that the text field has a 2px border and a 1px padding at the top and at the bottom.</p>
http://stackoverflow.com/questions/1641156/which-is-better-coding-style/1641241#16412411Answer by Ates Goral for Which is better coding style?Ates Goral2009-10-29T02:03:08Z2009-10-29T15:42:27Z<p>If the language supports exception handling, I'd go with the following:</p>
<pre><code>try {
if (!condition1) {
throw "condition1 failed";
}
if (!condition2) {
throw "condition2 failed";
}
if (!condition3) {
throw "condition3 failed";
}
return true;
} catch (e) {
log(e);
return false;
}
</code></pre>
<p>EDIT From charles bretana: Please see <a href="http://www.google.com/search?source=ig&hl=en&rlz=&q=using+exceptions+for+control+flow&aq=f&oq=&aqi=" rel="nofollow">Using Exceptions for control flow</a></p>
http://stackoverflow.com/questions/1387691/javascript-acting-differently-on-different-hosts/1641724#16417241Answer by Ates Goral for Javascript acting differently on different hosts Ates Goral2009-10-29T05:07:31Z2009-10-29T05:07:31Z<p>Due to loading time differences between your local WAMP server and your remote server, the page rendering may be happening at different speeds. Your overlay may be getting rendered prematurely, before the browser fully renders the page to its maximum height.</p>
<p>Are you rendering the modal window as soon as the page loads? If so, can you try adding some delay to see if that helps?</p>
http://stackoverflow.com/questions/1641530/jquery-url-replace/1641551#16415511Answer by Ates Goral for Jquery url replaceAtes Goral2009-10-29T04:01:29Z2009-10-29T04:01:29Z<p>Try:</p>
<pre><code>linkUrl = "/ajax" + $(this).attr("href").replace("/type", "") + "development";
</code></pre>
http://stackoverflow.com/questions/1640723/standard-way-to-include-javascript-library-from-javascript/1641438#16414380Answer by Ates Goral for Standard way to include javascript library from javascript.Ates Goral2009-10-29T03:20:30Z2009-10-29T03:20:30Z<p>If you're looking for <strong>a standard</strong> way, instead of coming up with your own implementation, you could perhaps consider:</p>
<ul>
<li>Google's <a href="http://code.google.com/apis/ajaxlibs/documentation/#googleDotLoad" rel="nofollow">google.load()</a> for loading popular libraries</li>
<li>The <a href="http://wiki.commonjs.org" rel="nofollow">CommonJS</a> SecurableModules - see Kris Kowal's <a href="http://github.com/kriskowal/chiron/" rel="nofollow">Chiron</a> for a browser implementation.</li>
</ul>
http://stackoverflow.com/questions/1640004/javascript-running-a-function-under-another-function/1640118#16401180Answer by Ates Goral for javascript Running a function under another functionAtes Goral2009-10-28T21:07:47Z2009-10-28T21:07:47Z<p>Leaving aside all the "why would you want to do this?" questions, and assuming you need to do this for a legitimate reason like accessing a "private" function inside some existing code that you don't own, <strong>here's a hack</strong>:</p>
<p><code>first.toString()</code> will give you the entire source of the function. You can inject a bit of code into that function to return you a reference to the third function:</p>
<pre><code>var prober = new Function(
first.toString().replace("{", "{ return third;") + "return first()");
var third = prober();
third(); // yay!
</code></pre>
<p>But, please <strong>don't do this</strong> if you really don't need to. It's a big hack that I just wanted to mention for educational purposes.</p>
http://stackoverflow.com/questions/1639743/testing-xml-site/1639777#16397770Answer by Ates Goral for testing xml site? Ates Goral2009-10-28T20:07:09Z2009-10-28T20:07:09Z<p>An active connection refusal could mean either you're using the wrong port, or you don't have a route to the target IP (or the target is not up and running in the first place.)</p>
<p>Is your browser running on the same machine as IIS? If not, can you try the connection from the same machine? You should first eliminate the possibility of a routing problem.</p>
http://stackoverflow.com/questions/1637821/tdd-mocking-dependency-injection-and-the-dry-principle/1638235#16382355Answer by Ates Goral for TDD, Mocking, dependency injection and the DRY principleAtes Goral2009-10-28T16:03:46Z2009-10-28T16:18:45Z<p>If your test framework supports setup/teardown functions that will be called before and after each test, create and destroy some "default" mock objects in those functions. Your tests can simply use those, and for special cases where the default mock objects don't work for you, you can simply ignore them and create local mock objects within those tests.</p>
http://stackoverflow.com/questions/1638105/cancel-a-timed-loop-in-javascript/1638319#16383190Answer by Ates Goral for Cancel a timed loop in JavaScript?Ates Goral2009-10-28T16:17:43Z2009-10-28T16:17:43Z<p>To start with, it's not a good idea to fire many many timers in a loop. You should instead use <code>setInterval</code> or fire off a new timer from your <code>setTimeout</code> handler.</p>
<p>Another approach is to have a single timer which fires off at fixed intervals and manages all pending effects. You can decide on a frame rate and let your timer (a "timer stack") run indefinitely, "ticking" at every frame -- you can optionally start/stop the ticking when there are no pending effects.</p>
http://stackoverflow.com/questions/1627266/detect-image-load-cancelation-in-javascript/1627351#16273513Answer by Ates Goral for Detect Image Load Cancelation in JavascriptAtes Goral2009-10-26T21:07:41Z2009-10-26T21:07:41Z<p>An AJAX call shouldn't cancel the loading of images. There could be something else going on here...</p>
<p>I don't think that you can readily detect the load failure of an image. You could fire off a timer with a certain timeout threshold to deem an image as failed if your timeout timer expires before you get the load event from the image.</p>
http://stackoverflow.com/questions/1611427/reversing-a-string-in-jquery/1611449#16114493Answer by Ates Goral for Reversing a string in jqueryAtes Goral2009-10-23T04:58:02Z2009-10-23T04:58:02Z<p><code>reverse()</code> is a method of array instances. It won't directly work on a string. You should first split the characters of the string into an array, reverse the array and then join back into a string:</p>
<pre><code>var backway = oneway.split("").reverse().join("");
</code></pre>
http://stackoverflow.com/questions/1611420/ifstream-position-in-c/1611437#16114371Answer by Ates Goral for ifstream position in c++Ates Goral2009-10-23T04:54:22Z2009-10-23T04:54:22Z<p>Why do you have to seek back? Can't you simply read the rest of the UTF-8 sequence, after knowing how many more octets you're expecting?</p>
http://stackoverflow.com/questions/1610703/how-do-you-default-an-images-right-edge-in-a-css-overflow-div/1611404#16114041Answer by Ates Goral for How do you default an image's right edge in a CSS Overflow DIV?Ates Goral2009-10-23T04:43:37Z2009-10-23T04:43:37Z<p>Try adding an anchor to the right of the image. Something like:</p>
<pre><code><img src="foo.jpg"><a name="right_of_image"></a>
</code></pre>
<p>When or after navigating to the page, if you append the <code>#right_of_image</code> anchor to the document URL, the browser will try to focus on the anchor, effectively scrolling to the right edge of the image. This probably won't work if you're using a scrolling container like the one you have, but should work if the image is directly embedded in your page. Does this work for you?</p>
http://stackoverflow.com/questions/1611363/css-left-help-jquery/1611390#16113900Answer by Ates Goral for css left help jqueryAtes Goral2009-10-23T04:37:02Z2009-10-23T04:37:02Z<p>Instead of using offsets, you can hide/show the tabs with the <code>display</code> property. Add the "tab" class to the tab containers:</p>
<pre><code><div id="tabs">
<div id="tab_one" class="tab">
Something here
</div>
<div id="tab_two" class="tab">
Something else here
</div>
<div id="tab_three" class="tab">
Another thing here
</div>
</div>
</code></pre>
<p>And the stylesheet is:</p>
<pre><code>.tab { display: none } /* Don't render by default */
.show_tab_one #tab_one,
.show_tab_two #tab_two,
.show_tab_three #tab_three { display: block } /* Selectively render */
</code></pre>
<p>All you have to do is to set the class of the <code>#tabs</code> element to one of "show_tab_one", "show_tab_two" or "show_tab_three". Of course, if you have a dynamic number of tabs with dynamic ids, this solution won't work for you.</p>
http://stackoverflow.com/questions/1611333/how-many-1s-in-an-n-bit-integer/1611336#161133616Answer by Ates Goral for How many 1s in an n-bit integer?Ates Goral2009-10-23T04:13:02Z2009-10-23T04:13:02Z<p>See the fabulous <a href="http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetNaive" rel="nofollow">Bit Twiddling Hacks article</a>.</p>
http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/1595066#15950660Answer by Ates Goral for Where do you keep your code?Ates Goral2009-10-20T14:35:04Z2009-10-20T14:35:04Z<p>Certainly not:
<code>C:\Documents and Settings\Administrator\Desktop\New Folder (3)\test</code></p>
http://stackoverflow.com/questions/1573961/facebook-connect-api-not-populating-user-data-when-facebook-logotrue-option-is/1590222#15902221Answer by Ates Goral for Facebook Connect API not populating user data when facebook-logo="true" option is usedAtes Goral2009-10-19T18:11:59Z2009-10-19T18:11:59Z<p>The exact markup that you have works fine under <a href="http://www.somethingtoputhere.com/demo/xfbml%5Fconsole/index.html" rel="nofollow">this test console</a>. Are you sure you're not getting any JavaScript errors?</p>
<p>Also, can you test with the uid of a relatively old user. There seems to be <a href="http://bugs.developers.facebook.com/show%5Fbug.cgi?id=7157" rel="nofollow">a bug with displaying pictures for new users</a>. My uid doesn't seem to have this problem, if you want to test it out with mine: <code>685184151</code></p>
http://stackoverflow.com/questions/1569168/if-you-change-code-that-has-a-unit-test-against-it-which-do-you-change-first/1569179#156917913Answer by Ates Goral for If you change code that has a unit test against it, which do you change first?Ates Goral2009-10-14T21:42:39Z2009-10-14T21:42:39Z<p>If you're to follow <a href="http://en.wikipedia.org/wiki/Test-driven%5Fdevelopment" rel="nofollow">TDD</a> practices, you should update your tests first. You'll have broken test cases that should hopefully get fixed when you fix your code.</p>
http://stackoverflow.com/questions/1510029/how-do-i-replace-an-asterisk-in-javascript-using-replace/1510061#15100611Answer by Ates Goral for How do I replace an asterisk in Javascript using replace()?Ates Goral2009-10-02T14:58:16Z2009-10-02T14:58:16Z<p>Splitting a string into an array and then joining it back into a string is faster than regular expression replacements:</p>
<pre><code>queryString = inputText.split("*").join("%");
</code></pre>
http://stackoverflow.com/questions/1908492/unsigned-integer-in-javascriptComment by Ates Goral on Unsigned Integer in JavascriptAtes Goral2009-12-15T16:43:01Z2009-12-15T16:43:01ZSimple language?http://stackoverflow.com/questions/1858246/java-script-to-retrive-value-from-gridComment by Ates Goral on Java script to retrive value from gridAtes Goral2009-12-07T06:56:09Z2009-12-07T06:56:09Zhai. pls take the time to compose proper sentences k?http://stackoverflow.com/questions/1841916/how-to-avoid-global-variables-in-javascript/1841946#1841946Comment by Ates Goral on How to Avoid Global Variables in JavascriptAtes Goral2009-12-03T18:57:45Z2009-12-03T18:57:45Z<a href="http://stackoverflow.com/questions/726685/yeah-i-know-im-a-simpleton-so-whats-a-singleton/761399#761399" rel="nofollow" title="yeah i know im a simpleton so whats a singleton">stackoverflow.com/questions/726685/…</a>http://stackoverflow.com/questions/1841452/new-line-in-javascript-alert-box/1841458#1841458Comment by Ates Goral on New line in JavaScript alert boxAtes Goral2009-12-03T18:22:23Z2009-12-03T18:22:23ZAny ideas on how cross-browser this is?http://stackoverflow.com/questions/1723872/jquery-javascript-does-not-do-what-i-tell-it-toComment by Ates Goral on jQuery: JavaScript does not do what I tell it toAtes Goral2009-11-12T17:33:45Z2009-11-12T17:33:45ZOuch. You may want to store the outcome of jQuery('div#drag_container img[alt="background"]') in a local variable.http://stackoverflow.com/questions/1702954/which-would-you-prefer-svg-html5-or-regend-png-for-graphs-chartsComment by Ates Goral on Which would you prefer? SVG, HTML5 or regen'd-PNG for graphs & charts?Ates Goral2009-11-09T18:57:14Z2009-11-09T18:57:14Z4. Flash. Would be cross-browser and be very fast/responsive. Plus you can code some fancy effects/interactions.http://stackoverflow.com/questions/1689253/jquery-going-through-all-visible-rows-of-a-tableComment by Ates Goral on jQuery: going through all visible rows of a table...Ates Goral2009-11-06T18:02:57Z2009-11-06T18:02:57ZIt would be helpful if you can include a sample of your HTML.http://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomainComment by Ates Goral on Reading Javascript Cookies from a subdomain...Ates Goral2009-11-06T17:59:22Z2009-11-06T17:59:22ZYay for example.com.http://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomain/1689058#1689058Comment by Ates Goral on Reading Javascript Cookies from a subdomain...Ates Goral2009-11-06T17:58:49Z2009-11-06T17:58:49ZThanks Gareth for chiming in and elaborating on my rather terse answer.http://stackoverflow.com/questions/1681395/image-shows-only-when-debugging/1681412#1681412Comment by Ates Goral on image shows only when debuggingAtes Goral2009-11-05T15:51:06Z2009-11-05T15:51:06ZWell, it apparently is just a timing issue. Clearing style seems to help, according to the OP.http://stackoverflow.com/questions/1677924/ordering-in-javascriptComment by Ates Goral on Ordering in javascriptAtes Goral2009-11-05T02:53:53Z2009-11-05T02:53:53ZLet's not confuse JavaScript object literals with JSON.http://stackoverflow.com/questions/1669349/how-can-i-use-a-javascript-file-in-my-asp-net-project/1669375#1669375Comment by Ates Goral on How can I use a JavaScript file in my ASP.NET project?Ates Goral2009-11-03T18:53:56Z2009-11-03T18:53:56ZThe standard way is to use type="text/javascript" instead of the language attribute.http://stackoverflow.com/questions/1669349/how-can-i-use-a-javascript-file-in-my-asp-net-projectComment by Ates Goral on How can I use a JavaScript file in my ASP.NET project?Ates Goral2009-11-03T18:52:29Z2009-11-03T18:52:29ZOr even "JS" would do. And JScript is another story...http://stackoverflow.com/questions/1669190/javascript-min-max-array-values/1669218#1669218Comment by Ates Goral on JavaScript: min & max Array values?Ates Goral2009-11-03T18:48:42Z2009-11-03T18:48:42ZThe question is about min/max, not sorting.http://stackoverflow.com/questions/1669190/javascript-min-max-array-values/1669222#1669222Comment by Ates Goral on JavaScript: min & max Array values?Ates Goral2009-11-03T18:44:14Z2009-11-03T18:44:14ZThe OP doesn't seem to have a requirement on being able to handle non-numbers.