User bobince - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T14:02:28Zhttp://stackoverflow.com/feeds/user/18936http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1813952/xml-parsing-and-usage/1814398#18143980Answer by bobince for XML parsing and usagebobince2009-11-29T02:02:51Z2009-11-29T02:02:51Z<blockquote>
<p>I'm building a conforming and validating XML parser in C++ and trying to make it light-weight </p>
</blockquote>
<p>There is no such thing as a light-weight conforming (never mind validating) parser. To be a conforming parser you have to understand all the stuff that can go in a DTD external subset, which is gnarly work indeed. It is a shame that the XML specification ended up weighed down with all the SGML DTD crud, but we are stuck with it now.</p>
<blockquote>
<p>does your application need to know about cdata tags and where they are located in the xml file</p>
</blockquote>
<p>Normally no. DOM Level 3 LS does require that CDATA sections be kept a CDATASection nodes in the DOM by default, but almost no application cares.</p>
<p>(If the question is about <em>my</em> application then yes, because <em>my</em> application is a templating system that keeps CDATA sections where they were. But still.)</p>
<blockquote>
<p>My doubts appears when trying to handle mainly entities</p>
</blockquote>
<p>God yes. Entity references are a total disaster. Making a DOM implementation support them in a way which is compliant with DOM Level 3 Core/LS is very very complicated. Avoid if at all possible.</p>
http://stackoverflow.com/questions/1813320/getting-javascript-to-search-an-array-within-an-array/1813524#18135242Answer by bobince for Getting javascript to search an array within an arraybobince2009-11-28T19:31:43Z2009-11-28T19:31:43Z<pre><code>if(trackTitles(h)
</code></pre>
<p>You're calling an Array. Should be square brackets.</p>
<p>You could do with breaking out the array handling stuff into reusable functions to improve readability and reduce the number of these stray variables.</p>
<p>Since there are answers with procedural approaches already, here's one based on functional-like array handling for extra fun(*):</p>
<pre><code>function countItemsContaining(seq, prop, str) {
return seq.map(itemGetter(prop)).filter(function(s) {
return s.indexOf(str)!==-1;
}).length;
}
function itemGetter(prop) {
return function(o) {
return o[prop];
};
}
mymusic= [{title:"a",artist:"b",artwork:"c",tracks:[{tracktitle:"d",trackmp3:"e"}]}];
needle= 'd';
var titleScore= countItemsContaining(mymusic, 'title', needle);
var artistScore= countItemsContaining(mymusic, 'artist', needle);
// Calling concat is a JavaScript idiom to combine a load of lists into one
//
var mytracks= [].concat.apply([], mymusic.map(itemGetter('tracks')));
var tracksScore= countItemsContaining(mytracks, 'tracktitle', needle);
</code></pre>
<p><code>array.map</code> and <code>array.filter</code> are standardised in ECMAScript Fifth Edition, but aren't available in IE yet, so for compatibility you can define them like this:</p>
<pre><code>if (!('map' in Array.prototype)) {
Array.prototype.map= function(f, that) {
var a= new Array(this.length);
for (var i=0; i<this.length; i++) if (this[i]!==undefined)
a[i]= f.call(that, this[i], i, this);
return a;
};
}
if (!('filter' in Array.prototype)) {
Array.prototype.filter= function(f, that) {
var a= [];
for (var i=0; i<this.length; i++) if (this[i]!==undefined)
if (f.call(that, this[i], i, this))
a.push(this[i]);
return a;
};
}
</code></pre>
<p>(*: amount of actual fun contained in answer may be limited)</p>
http://stackoverflow.com/questions/1812773/using-html-tags-in-javascript-strings-while-complying-with-w3c-rules/1812816#18128160Answer by bobince for Using HTML tags in JavaScript strings while complying with W3C rulesbobince2009-11-28T15:37:49Z2009-11-28T15:37:49Z<pre><code>onmouseover="showDescription('Text', 'Text with HTML tags in them<br />More text');"
</code></pre>
<p>Like with all attribute values, you must HTML-encode <code>&</code>, <code><</code>, and the attribute delimiter (<code>"</code> here). The fact that it's JavaScript inside the attribute value makes no difference; the HTML attribute value is decoded before JavaScript gets a look at it.</p>
<pre><code>onmouseover="showDescription('Text', 'Text with HTML tags in them&lt;br />More text');"
</code></pre>
<p>This is in contrast to a <code><script></code> element, whose contents are <code>CDATA</code> and thus not <code>&</code>-escaped in HTML4. In XHTML there are no CDATA elements; you can add a <code><![CDATA[</code> section to make XHTML behave the same, but it's usually simpler for both script elements and event handler attributes to just avoid the problem by never using a <code>&</code> or <code><</code> character. In a string literal another escape is available which you can use to get around this:</p>
<pre><code>onmouseover="showDescription('Text', 'Text with HTML tags in them\x3Cbr />More text');"
</code></pre>
http://stackoverflow.com/questions/1812626/javascript-mouse-events/1812800#18128001Answer by bobince for JavaScript: Mouse Eventsbobince2009-11-28T15:31:17Z2009-11-28T15:31:17Z<p>The problem at the moment is you're never releasing the <code>document.onmousemove</code> handler, and you're never attaching the <code>document.onmouseup</code> handler (you <code>RemoveEventHandler</code> it in <code>handleEvent</code> instead of adding). You need a separate <code>mousemove</code> handler and <code>mouseup</code> handler; the mouseup function should remove the document mouse events that were added in the <code>mousedown</code> handler, then call back to do whatever function the drag is intended to achieve.</p>
<p>Plus, if you don't want the browser's own dragging actions to interfere with your UI, you'll need to prevent the default action for the <code>mousedown</code> event. This is done with <code>return false</code> in old-school event-handler functions, <code>window.event.returnValue</code> in IE and <code>event.preventDefault()</code> in DOM Events, so it's something you'd want <code>EventUtil</code> to wrap.</p>
<p>I'm not sure the <code>EventUtil</code> is worth much in this case. You're only using one event handler for each target, so sticking to the simple <code>onevent= handler</code> style should be fine. If you do sometimes need multiple listeners, it's probably best to make it throw an error when neither <code>addEventListener</code> nor <code>attachEvent</code> are available, otherwise the fallback to <code>on...</code> will make the script behave inconsistently.</p>
http://stackoverflow.com/questions/1811856/adding-non-escaped-ampersands-to-html-with-nokogirixmlbuilder/1812463#18124630Answer by bobince for Adding non-escaped Ampersands to HTML with Nokogiri::XML::Builderbobince2009-11-28T12:52:07Z2009-11-28T12:52:07Z<p>When you're setting the text of an element, you really are setting text, not HTML source. <code><</code> and <code>&</code> don't have any special meaning in plain text.</p>
<p>So just type a bullet: <code>'•'</code>. Of course your source code and your XML file will have to be using the same encoding for that to come out right. If your XML file is UTF-8 but your source code isn't, you'd probably have to say <code>'\xe2\x80\xa2'</code> which is the UTF-8 byte sequence for the bullet character as a string literal.</p>
<p>(In general non-ASCII characters in Ruby 1.8 are tricky. The byte-based interfaces don't mesh too well with XML's world of all-text-is-Unicode.)</p>
http://stackoverflow.com/questions/1812277/an-issue-concerning-mouseevents/1812404#18124041Answer by bobince for An issue concerning MouseEventsbobince2009-11-28T12:19:19Z2009-11-28T12:19:19Z<p>Faking events doesn't cause default actions to occur. You have to reproduce them yourself.</p>
<p>In this case you'd have to use <code>selectionStart</code> and <code>selectionEnd</code> to set the input focus position on the textarea. However getting the appropriate string offsets from a mouse location would be rather tricky.</p>
<p>It's not clear what the purpose is behind what you're trying to do, but you'll have to find another workaround. Maybe you could allow the default action to take place, but then blur the textarea after it has and focus it back later? You could also remember <code>selectionStart</code>/ <code>selectionEnd</code> properties just after the click to set focus back at any later point if the position might change in the meantime.</p>
http://stackoverflow.com/questions/1811156/xmlhttp-request-status-is-0-for-google-maps-http-geocoder/1811313#18113130Answer by bobince for xmlHttp request status is 0 for google maps http geocoderbobince2009-11-28T02:00:13Z2009-11-28T02:00:13Z<p><code>0</code> is the status code you get for a completely failed connection, where there is no HTTP response to return a status code from. This can be eg. various socket errors (though IE will give you a WinSock error code like <code>12029</code> in this case).</p>
<blockquote>
<p>when I enter the URL right into the browser address bar I get a valid result.</p>
</blockquote>
<p>I suspect the URL isn't on your server. <code>GXmlHttp</code>, being a tiny wrapper around <code>XMLHttpRequest</code>, cannot do cross-domain requests.</p>
<p>Use the <a href="http://code.google.com/apis/maps/documentation/services.html#Geocoding%5FObject" rel="nofollow">specific class</a> Google give you for doing geocoding rather than trying to do it with a plain XMLHttpRequest.</p>
http://stackoverflow.com/questions/1810861/how-to-make-article-spinner-regex/1811080#18110802Answer by bobince for How to make article spinner regex?bobince2009-11-28T00:09:37Z2009-11-28T00:09:37Z<p>Should be fairly simple, just disallow a brace set from including another, then repeatedly call doing replacements from the inner matches outwards:</p>
<pre><code>def replacebrace(match):
return random.choice(match.group(1).split('|'))
def randomizebraces(s):
while True:
s1= re.sub(r'\{([^{}]*)\}', replacebrace, s)
if s1==s:
return s
s= s1
>>> randomizebraces('{{Hello|Hi|Hey} {world|earth}|{Goodbye|farewell} {noobs|n3wbz|n00blets}}')
'Hey world'
>>> randomizebraces('{{Hello|Hi|Hey} {world|earth}|{Goodbye|farewell} {noobs|n3wbz|n00blets}}')
'Goodbye noobs'
</code></pre>
http://stackoverflow.com/questions/1810956/making-a-cite-tag-clickable-with-jquery/1811013#18110133Answer by bobince for Making a <cite> tag clickable with jQuerybobince2009-11-27T23:38:17Z2009-11-27T23:44:18Z<p>WordPress is automatically turning your ASCII <code>-</code> dashes into <code>–</code> en-dashes (seen in the page as <code>&#8211;</code>). This character won't match the ASCII dash in the regex.</p>
<p>(Say no to misguided automatic “smart” typography, kids! En-dash isn't even the right mark as it normally denotes numerical ranges like 1–10. The em-dash ‘—’ would be more suitable here.)</p>
<p>Is there any good reason why the cites shouldn't be actual links? It would also make the processing easier. eg.</p>
<pre><code><cite><a href="http://blah">Blah</a></cite>
$('cite a').click(function(e) {
var pop= window.open(this.href);
return pop && !pop.closed;
});
</code></pre>
http://stackoverflow.com/questions/1810556/oo-javascript-good-way-to-combine-prototypal-inheritance-with-private-vars/1810674#18106742Answer by bobince for OO Javascript: good way to combine prototypal inheritance with private vars.bobince2009-11-27T21:21:17Z2009-11-27T21:21:17Z<blockquote>
<p>preferring prototypal inheritance seems like the right thing, in general</p>
</blockquote>
<p>Well... it's the more natural, native-feeling thing to do in JavaScript, certainly. But so much JavaScript does is wrong that this isn't necessarily a compliment!</p>
<p>Certainly when performance isn't an issue, objects that get their own bound copies of each method are easier to cope with than objects that share their methods, because you can just pass on a reference to <code>object.method</code> without having to make a closure-delegate or function.bind.</p>
<blockquote>
<p>Is there a way to combine prototypal inheritance with the module pattern to allow private variables when necessary?</p>
</blockquote>
<p>What do you want from private variables? If it's some Java-style idea of security by encapsulation, I'd give that up and just do it the Python way: put an underline on the start of the member name and anyone who wants to use from the outside will be suitably warned that it's unsupported and may screw up. There is never a security boundary inside JavaScript code executing on the same page that would warrant keeping your privates <em>really</em> private.</p>
<p>If what you want is to avoid having to locate the right copy of <code>this</code> when the method is called, you could manually bind methods methods in the initialiser:</p>
<pre><code>var Thing= makeClass();
Thing.prototype.init= function(a) {
this._a= a;
this.showA= this.showA.bind(this);
};
Thing.prototype.showA= function() {
alert(this._a);
};
thing= new Thing(3);
setTimeout(thing.showA, 1000); // will work as `thing` has its own bound copy of `showA`
</code></pre>
<p>(function.bind is future-JavaScript that you can hack into the Function.prototype now until browsers support it.)</p>
<p>This naturally loses some of the lightweight nature of prototype-based objects, but at least you can still have them share members that aren't methods, and methods that are never going to be used as delegates, as long as it's clear and you can always remember which methods are the ones that you can use this way.</p>
<p>If you simply want to be able to type a private variable name without having to put <code>this.</code> all the time then, yeah, you'd have to do it with a closure. Your example world maybe be a little clearer called from the initialiser rather than using the first-time-self-writing:</p>
<pre><code>var User= makeClass();
User.prototype.init= function(first, last){
this.name= first+' '+last;
this.method2= this._method2factory();
};
User.prototype._method2factory= function() {
var _v2= 0;
function inc() {
_v2++;
}
return function method2(a,b,c) {
/* ... */
inc();
WScript.echo('doOtherWork('+this.name+') v2= '+_v2);
return _v2;
};
};
</code></pre>
<p>But I'm not really sure this gets you much in comparison to just writing <code>this._v2</code> and <code>this._inc()</code>.</p>
http://stackoverflow.com/questions/1809843/why-is-filterinput-incomplete/1809936#18099361Answer by bobince for Why is filter_input() incomplete?bobince2009-11-27T17:43:28Z2009-11-27T17:43:28Z<blockquote>
<p>I would like to move all the handling and sanitation of user input to one central place</p>
</blockquote>
<p>Yes, how lovely that would be. It can't be done. That's not how text processing works.</p>
<p>If you're inserting text from one context into another you need to use the right escapes. (mysql_real_escape_string for MySQL string literals, htmlspecialchars for HTML content, urlencode for URL parameters, others for specific contexts). At the start of your script when you're filtering, you don't know where your input is going to end up, so you don't know how to escape it.</p>
<p>Maybe one input string is going both into the database (needs to be SQL-escaped) and directly onto the page (needs to be HTML-escaped). There's no one escape that covers both those cases. You can use both escapes one after the other, but then the value in the HTML will have weird backslashes appearing in it and the copy in the database will be full of ampersands. A few rounds of this misencoding and you get that situation where every time you edit something, long strings of <code>\\\\\\\\\\\\\\\\\\\\</code> and <code>&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;</code> come out.</p>
<p>The only way you can safely filter in one go at start time is by completely removing all characters that need to be escaped in <em>any</em> of the contexts you're going to be using them in. But that means no apostrophes or backslashes in your HTML, no ampersands or less-thans in your database, and probably a whole load of other URL-unfriendly punctuation has to go too. For a simple site that doesn't take arbitrary text you could maybe get away with that. But usually not.</p>
<p>So you can only escape on the fly when one type of text goes into another. The best strategy to avoid the problem is to avoid concatenating text into other contexts as much as much as you possibly can, for example by using parameterised queries instead of SQL string building, and either defining an <code>echo(htmlspecialchars())</code> function with a nice short name to make it less work to type, or using an alternative templating system that HTML-escapes by default.</p>
http://stackoverflow.com/questions/1808994/oracle-c-linux-and-more-weird-stuff/1809102#18091021Answer by bobince for Oracle C++ linux and more weird stuffbobince2009-11-27T14:30:37Z2009-11-27T14:30:37Z<p>Erm... is there an instant-client (or any Oracle client) for Linux+ARM at all? I don't see one on the downloads page.</p>
<p>If not, you will have to use ODBC, or another database that has an open-source client you can compile.</p>
http://stackoverflow.com/questions/1808956/antivirus-on-application-servers-which-deal-with-lots-of-network-traffic-yes-or/1809021#18090210Answer by bobince for Antivirus on application servers which deal with lots of network traffic. Yes or No?bobince2009-11-27T14:14:29Z2009-11-27T14:14:29Z<p>No. The attacks that servers and the custom apps running on them are vulnerable to are not the desktop malware problems that anti-virus targets. All AV on a server will do is reduce performance and stability.</p>
<p>(Unless of course the server is also being used as a desktop machine, to browse on and so on. But that's a really bad idea already.)</p>
<p>Depending on what the application is doing AV might have a role to play in that: for example if you've got a user file store as part of one of the apps it wouldn't hurt to check the files uploaded into it for viruses. And of course it's normal for an app that deals with mail to pass incoming mail to a checker.</p>
http://stackoverflow.com/questions/1808522/masquerading-real-module-of-a-class/1808569#18085694Answer by bobince for Masquerading real module of a classbobince2009-11-27T12:45:04Z2009-11-27T14:07:34Z<p>try:</p>
<pre><code>B.__module__= 'a'
</code></pre>
<p>Incidentally you probably want an absolute import:</p>
<pre><code>from a._b import *
</code></pre>
<p>as relative imports without the new explicit dot syntax are going away (<a href="http://www.python.org/dev/peps/pep-0328/" rel="nofollow">see PEP 328</a>).</p>
<p>ETA re comment:</p>
<blockquote>
<p>I would have to set the module explicitly for every class</p>
</blockquote>
<p>Yes, I don't think there's a way around that but you could at least automate it, at the end of <code>__init__</code>:</p>
<pre><code>for value in globals().values():
if inspect.isclass(value) and value.__module__.startswith('a.'):
value.__module__= 'a'
</code></pre>
<p>(For new-style classes only you could get away with <code>isinstance(value, type)</code> instead of <code>inspect</code>. If the module doesn't have to run as <code>__main__</code> you could use <code>__name__</code> instead of hard-coding <code>'a'</code>.)</p>
http://stackoverflow.com/questions/1808567/what-is-the-default-content-type-charset/1808720#18087201Answer by bobince for What is the default content-type/charset?bobince2009-11-27T13:15:59Z2009-11-27T13:15:59Z<blockquote>
<p>Is there a default "encoding" (English, of course)...so that if nothing is found, I can just use that? </p>
</blockquote>
<p>No, there isn't. You must guess.</p>
<p>Trivial approach: try and decode as <code>UTF-8</code>. If it works, great, it's probably UTF-8. If it doesn't, choose a most-likely encoding for the kinds of pages you're browsing. For English pages that's <code>cp1252</code>, the Windows Western European encoding. (Which is like ISO-8859-1; in fact most browsers will use <code>cp1252</code> instead of <code>iso-8859-1</code> even if you specify that charset, so it's worth duplicating that behaviour.)</p>
<p>If you need to guess other languages, it gets very hairy. There are existing modules to help you guess in these situations. See eg. <a href="http://chardet.feedparser.org/" rel="nofollow">chardet</a>.</p>
http://stackoverflow.com/questions/1808178/an-image-cropper-how-to-prevent-the-default-drag-n-drop-action/1808467#18084670Answer by bobince for An image cropper: How to prevent the default drag n' drop action?bobince2009-11-27T12:23:28Z2009-11-27T12:23:28Z<blockquote>
<p>wouldn't it be cross-browser if to just use the picture as a background to a div box? </p>
</blockquote>
<p>Yes, but you'd still be starting a drag; if you moved the pointer over into part of the page with text in, you'd be selecting the text, which you probably wouldn't want.</p>
<p>I'd stick with the <code>x.ondragstart=x.onmousedown= function() { return false; };</code>.</p>
http://stackoverflow.com/questions/1808198/changing-checkboxs-parent-element-css-if-checked-or-unchecked/1808444#18084441Answer by bobince for Changing checkbox's parent element css if checked or uncheckedbobince2009-11-27T12:18:34Z2009-11-27T12:18:34Z<blockquote>
<p>if ($(this).attr("checked") === "true")</p>
</blockquote>
<p><code>attr</code> does not read HTML attributes. It's deceptive that way. If it did read attributes, the string value for <code>checked</code> would be <code>'checked'</code> and not <code>'true'</code>. But it doesn't do that.</p>
<p>What it actually does is read JavaScript object properties, only using attribute names instead of property names in the few places they differ. The <code>checked</code> property gives you a boolean value so there's no need to compare it to anything, you can just say:</p>
<pre><code>if ($(this).attr('checked'))
</code></pre>
<p>or, even simpler, the totally equivalent:</p>
<pre><code>if (this.checked)
</code></pre>
http://stackoverflow.com/questions/1807974/can-anyone-de-obfuscate-this-exploit/1808068#18080688Answer by bobince for Can anyone de-obfuscate this exploit?bobince2009-11-27T10:55:21Z2009-11-27T11:22:32Z<p>Not quite, as it includes (the equivalent of):</p>
<pre><code>var mtime= new Date(document.lastModified).toUTCString().split(' ')[4].split(':');
</code></pre>
<p>it then uses the minutes and seconds of the last-modified time of the document containing it as a key to decode the array. If you can't still retrieve that <code>javascript:alert(document.lastModified)</code> time we'd have to brute-force it.</p>
<p>ETA: ah, actually it only uses the first digit of the minutes, and from the way it uses it we can guess it's supposed to be <code>1</code>. That's leaves only sixty possibilities, and a quick loop reveals that meaningful javascript only comes out for <code>16</code> seconds.</p>
<p>I've put the decoded script <a href="http://pastebin.com/m7eec84b0" rel="nofollow">here</a>; it will probably also ping your anti-virus. Summary: it runs exploits against the Java, Flash and Acrobat plugins, running a payload from googleservice.net which is (surprise surprise) a Russian attack site.</p>
http://stackoverflow.com/questions/1807640/how-do-i-determine-the-narrowest-font-on-windows/1807759#18077591Answer by bobince for How do I determine the "narrowest" font on Windows?bobince2009-11-27T09:50:51Z2009-11-27T09:50:51Z<p>I don't think you really want the absolute narrowest font, as that may well be some kind of symbol/utility font which may not actually contain real characters. Certainly on my system here the ‘narrowest’ font would be one that contains almost no Latin characters, making the width of the string rendered in it almost zero!</p>
<p>Arial Narrow is installed by Office, so that would seem a reasonable choice for an Access application. If you want narrower than that I think you'd have to bundle a particular font of your own.</p>
http://stackoverflow.com/questions/1802744/i-need-some-critique-about-lib-design/1803212#18032122Answer by bobince for I need some critique about lib designbobince2009-11-26T11:43:14Z2009-11-26T11:43:14Z<p>I'm not at all sure what the prototyping is for, or the curious trick with <code>init</code> being both a method and a constructor, or the extra constructor wrapper. Best not to use too much JS magic if you can help it.</p>
<p>If, as it seems, you only have one global instance, forget prototyping and simplify:</p>
<pre><code>var h3= {
VERSION: '0.0.2',
init: function(user) {
this.user= user;
this.timestamp= +new Date; // note, this. missing in original code
},
a: function() {
alert('a');
}
};
h3.init({user: 'user_a', foo: 'bar'});
</code></pre>
http://stackoverflow.com/questions/1802354/how-to-remove-a-cookie-by-using-javascript/1802719#18027190Answer by bobince for How to remove a cookie by using Javascript?bobince2009-11-26T09:59:19Z2009-11-26T09:59:19Z<p>Trick is right... in particular you need to put any past-value in the <code>expires</code> header. (These days you'd use a full-year, though; the two-digit format goes back to the early Netscapes only.)</p>
<p>Also ensure you don't use smart quotes like in your quote above.</p>
<pre><code>javascript:alert(document.cookie='PREF=X;path=/;domain=.google.com;expires=Sat, 01-Jan-2000 00:00:00 GMT');
</code></pre>
<p>Note that the format produced by <code>Date.toGMTString</code> is <em>not</em> the same as the date format required by the cookie specification, although it does still work in many browsers.</p>
http://stackoverflow.com/questions/1802368/threaded-comment-system-nested-set-multiple-roots/1802683#18026830Answer by bobince for Threaded comment system nested set - multiple roots?bobince2009-11-26T09:52:18Z2009-11-26T09:52:18Z<p>I think you'd usually have a separate foreign key for ‘owner topic’ in the comments table, rather than hide that information in the nested-set structure. IMO the left/right pair should only dictate nesting/ordering inside the owner context.</p>
<p>Then it doesn't matter if you have a single root or multiple-root nested set structure. (FWIW, I use multiple-root.) You can certainly grab all the comments for one topic in a single query either way.</p>
http://stackoverflow.com/questions/1799454/is-there-a-solid-bb-code-parser-for-php-that-doesnt-have-any-dependancies/1799788#17997885Answer by bobince for Is there a solid BB code parser for php that doesn't have any dependancies?bobince2009-11-25T20:37:14Z2009-11-26T09:28:18Z<p>‘Solid’? I have never found a solid BBcode parser at all.They all seem to be a loose collection of careless regexen, easy to fool into allowing HTML-injection attacks.</p>
<p>For example the one John W posted can clearly be exploited with several tags including:</p>
<pre><code>[img]xxx" onerror="alert('JS injection!')[/img]
</code></pre>
<p>plus it allows <code>javascript:</code> and other dangerous URLs, fails to escape <code>&</code>, disallows many URL characters (including <code>%</code>!) whilst accidentally allowing others it shouldn't (the author hasn't quite understood what the backslash-escape in the string is doing there) and it fails to disallow misnested tags or tags accidentally sucked into other tags' attributes... basically it's an insecure mess, and this is par for the course with bbcode parsers.</p>
<p>Sorry for the unhelpful answer (it was too big to fit in a comment).</p>
<p>ETA re comment: Ah well it's not exactly a bbcode module, just similar. I split by lines, removed existing control characters, then used byte 01 as a surrogate for <code>&</code>, 02 for <code><</code> and 03 for <code>></code>, then for each transformation step used re.split on <code>(\x02[^\x03]*\x03)</code> and ran the replacement regex on every second (non-tag) part, starting with the ‘innermost’ replacements like linebreaks and emotes, then working outwards though images to links and italic/bold markup, inserting <code>\x02html tags\x03</code> as it goes. Then finally HTML-encode <code>&<></code> and replace the control codes with <code>&<></code>. This stops markup getting marked up itself, which is a big source of vulnerabilities in simplistic regex-based markup.</p>
<p>Come to think of it, I did also write an actual Python bbcode parser, but only as a quick compatibility hack; it doesn't offer all the capabilities of full bbcode. In particular, it disallowed nesting any range tag (ie. a tag with a close-tag) inside any other range tag. This is comparatively easy to implement if that's acceptable, as you can use a single-pass regex to match any tag and have a replacement function decide how to replace based on tag name. eg.:</p>
<pre><code>\[ (i|b|color|url|somethingelse) \=? ([^]]+)? \] (?: ([^]]*) \[\/\1\] )
</code></pre>
<p>(This is a <code>VERBOSE</code> regex so the whitespace is just for readability. As much as any regex is ever readable.)</p>
<p>Removing nesting greatly simplifies the number of corner cases.</p>
http://stackoverflow.com/questions/1800253/google-analytics-can-it-collect-form-data/1800323#18003236Answer by bobince for Google Analytics - can it collect form data?bobince2009-11-25T22:19:39Z2009-11-25T22:29:48Z<p>Yes. Any <code><script></code> you include in the page has <strong>complete access</strong> to alter the user's interaction with the site due to the Same Origin Policy. Google, if they were feeling Evil today, could certainly rewrite the <code>action</code> of your <code><form></code> to point to themselves, or log every keypress, or create an <code><iframe></code> containing another page on your site and simulate the user clicking on any action in that page.</p>
<p>Do not include <code><script></code> <strong>on any page</strong> from a party you don't completely trust with the security of everything on your site. Even a single tracking or advertiser script on any page compromises everything on the same hostname (and maybe other subdomains if you are setting <code>window.domain</code> to allow cross-hostname-scripting, or sharing cookies between hostnames).</p>
<p>However, the Analytics script doesn't currently <em>do</em> any of these things and the form submission will not flow to Google as a matter of course; they would have to deliberately act to steal the data. Clearly it would be disastrous for them to be discovered doing it, so they presumably won't. But technically, they <em>could</em>. It always pains me to see third-party ad and tracking scripts on bank sites.</p>
http://stackoverflow.com/questions/1799936/onchange-attribute-wont-call-function/1800044#18000440Answer by bobince for onchange attribute won't call functionbobince2009-11-25T21:22:31Z2009-11-25T21:22:31Z<pre><code>function anything(i){
p+="...<select onchange='parent.nowplaying(this.SelectedIndex,i);'...";
</code></pre>
<p>Your onchange event handler is set from a string. When run, it will not have access to <code>i</code>, which is a local variable from the <code>anything</code> function that has long since gone away.</p>
<p>The simple fix would be:</p>
<pre><code> p+="...<select onchange='parent.nowplaying(this.SelectedIndex,'+i+');'...";
</code></pre>
<p>which turns the current value of <code>i</code> at string-making time into an integer literal inside the string.</p>
<p>However, it's not generally a good idea to be creating code from strings. It's normally better to write the event handler as a normal function object:</p>
<pre><code>// You will need the below workaround to get the iframe document in IE too
//
var iframe= document.getElementById('songs');
var idoc= 'contentDocument' in iframe? iframe.contentDocument : iframe.contentWindow.document;
idoc.open();
idoc.write(s);
idoc.close();
idoc.getElementsByTagName('select')[0].onchange= function() {
// This is a closure. The 'i' variable from the parent 'anything' function is
// still visible in here
//
parent.nowplaying(this.selectedIndex, i);
};
</code></pre>
<p>However you would generally want to avoid setting handlers from one frame on a different one. I'm not really sure what the iframes are gaining you here other than headaches. Why not just simply use positioned divs with overflow? You can still rewrite their content through <code>innerHTML</code> if you need to... though I would prefer to populate them using DOM methods, to avoid all the HTML-injection problems your current script has.</p>
http://stackoverflow.com/questions/1799533/get-the-selected-option-from-a-list/1799564#17995642Answer by bobince for Get the selected option from a listbobince2009-11-25T19:56:41Z2009-11-25T19:56:41Z<pre><code>$('select').change(function() {
alert($(this).val());
});
</code></pre>
http://stackoverflow.com/questions/1797419/count-calls-to-eval/1797552#17975525Answer by bobince for Count calls to evalbobince2009-11-25T15:09:26Z2009-11-25T15:09:26Z<p>Unfortunately there is not a watertight way of emulating/wrapping eval, because it isn't a normal function. It can access (both read and write) the local variables of the direct caller.</p>
<pre><code>function testeval() {
var a= 2;
eval('a*= 2');
alert(a); // 4
};
</code></pre>
<p>This is magic you can't emulate from a native JavaScript function. You'd have no way from myWrappedEval to get the value of <code>a</code> in the caller or write back the changed value. Whilst you can get hold of the caller function using <code>arguments.caller</code>, there's no way to read the locals of the function invocation.</p>
<p>You'll have to manually insert a call to <code>increment</code> just before each usage of <code>eval</code> you can find in the source. Or, better, remove every call to <code>eval</code> and replace it with better code, making the call total zero. ;-)</p>
http://stackoverflow.com/questions/1796198/python-and-oracle/1796464#17964643Answer by bobince for python and Oraclebobince2009-11-25T11:52:20Z2009-11-25T11:52:20Z<p>I believe OCIClientVersion requires Oracle 10g release 2, but you're using release 1.</p>
<p>It looks like cx_Oracle binary you downloaded has been compiled with -DORACLE_10GR2 which makes it include the OCIClientVersion call. Since this is a compile-time-only option there should really be downloads for 10g and 10gR2 separately, but it would seem there aren't:</p>
<pre><code>This module has been built with Oracle 9.2.0, 10.2.0, 11.1.0 on Linux
</code></pre>
<p>So you may have to download the cx_Oracle sources and build them yourself. (Consequently you'll need the Python and Oracle client headers.)</p>
<p>Alternatively you could try the cx_Oracle build for Oracle 9i instead. This sounds a bit dodgy but is apparently supposed to work.</p>
http://stackoverflow.com/questions/1796079/can-i-wrap-a-javascript-event-in-a-jquery-event/1796281#17962810Answer by bobince for Can I wrap a javascript event in a jQuery event?bobince2009-11-25T11:17:29Z2009-11-25T11:17:29Z<p>Yes (see Darin's answer). You could also work around IE's lack of preventDefault instead (which is essentially what jQuery is doing):</p>
<pre><code>if ('preventDefault' in event)
e.preventDefault();
else
e.returnValue= false;
</code></pre>
http://stackoverflow.com/questions/1795089/need-help-with-jquery-to-javascript/1796132#17961321Answer by bobince for Need help with jQuery to JavaScriptbobince2009-11-25T10:51:10Z2009-11-25T10:51:10Z<p>If your aim is to add the class to <code>body</code> immediately as the page is loaded, perhaps to hide no-JS-fallback elements, you could do that just immediately inside the body tag rather than waiting for any events:</p>
<pre><code><body>
<script type="text/javascript">
document.body.className+= ' javascript';
</script>
</code></pre>
<p>(although in general if that's the aim it's better to remove the fallback elements as you go along replacing them with scripted elements, so that if one piece of script errors out all the other components on the page don't break.)</p>
<p>This is the fastest way to bind to elements: do so just immediately after creating them (inside the open tag if you only need to alter the elements; just after the close tag if you need to alter their contents). However this approach does tend to litter the page with ugly <code><script></code> blocks, which is why more people put the code all at the bottom or use an load/ready-handler.</p>
http://stackoverflow.com/questions/1811856/adding-non-escaped-ampersands-to-html-with-nokogirixmlbuilder/1812463#1812463Comment by bobince on Adding non-escaped Ampersands to HTML with Nokogiri::XML::Builderbobince2009-11-29T02:12:46Z2009-11-29T02:12:46ZWhy do you <i>need</i> that particular escaped version? If you are having encoding troubles so the • doesn't appear like you type it, then you should try to fix those by setting your encoding right rather than resorting to HTML-escapes. (Whilst in other environments you might ask your HTML serialiser to escape all non-ASCII characters to HTML-ampersand-sequences to get around this, Ruby doesn't currently have that level of Unicode support.)http://stackoverflow.com/questions/1812277/an-issue-concerning-mouseevents/1812404#1812404Comment by bobince on An issue concerning MouseEventsbobince2009-11-28T13:13:54Z2009-11-28T13:13:54ZHorrible idea: allow the paste to take place but then revert the textarea to its previous value and set selection points to the place where the value was altered?http://stackoverflow.com/questions/1811357/problems-getting-the-values-of-a-select-element/1811381#1811381Comment by bobince on problems getting the values of a select element- bobince2009-11-28T13:03:22Z2009-11-28T13:03:22Zdo <code>alert(selectElem.tagName)</code>. If it's correctly <code>select</code>, you should have no problem reading the <code>value</code> or <code>selectedIndex</code>. If it's something else, that's your problem.http://stackoverflow.com/questions/1811885/syntax-error-unexpectedComment by bobince on syntax error, unexpected '<' bobince2009-11-28T12:55:21Z2009-11-28T12:55:21ZRemember to HTML-encode all non-HTML strings echoed into text content and attribute values with <code>htmlspecialchars</code>.http://stackoverflow.com/questions/1812193/change-text-color-on-change-of-selection-in-dropdown-list/1812206#1812206Comment by bobince on change text color on change of selection in dropdown listbobince2009-11-28T12:26:48Z2009-11-28T12:26:48ZThey're all CSS3/SVG/X11 colours if you remove the spaces. Technically invalid for CSS2, and X11 colours suck in general, but every browser supports them.http://stackoverflow.com/questions/1812286/javascript-bitwise-problemComment by bobince on Javascript bitwise problembobince2009-11-28T12:23:47Z2009-11-28T12:23:47Zaside: avoid <code>for...in</code> for iterating Arrays, it doesn't do what you'd expect. It may work here if you don't care about what order you get the items in, but it'll also blow up if anyone fiddles with the <code>Object</code> prototype. Stick with the old-school C <code>for(var i= 0; i<items.length; i++)</code> loop.http://stackoverflow.com/questions/1812217/how-eq0-works-with-dom/1812280#1812280Comment by bobince on how eq(0) works with DOMbobince2009-11-28T12:09:29Z2009-11-28T12:09:29ZNote that in practice this will actually slow it down in recent browsers! This is because <code>:first</code> isn't a standard CSS selector, so jQuery won't be able to pass the work off the the new Selectors-API function <code>document.querySelectorAll</code>, and will have to fall back to the usual native-JavaScript ‘Sizzle’ selector library. The fastest solution would be to use <code>document.querySelector</code> (without the <code>All</code>) which gets just one element. However there is currently no jQuery integration for this method. You could sniff for it and fall back to jQuery, but it's probably a premature optimisation.http://stackoverflow.com/questions/1810861/how-to-make-article-spinner-regex/1811051#1811051Comment by bobince on How to make article spinner regex?bobince2009-11-28T11:58:55Z2009-11-28T11:58:55Zdoh, and I hadn't spotted subn, either! Well, we've ended up with an acceptable program between us :-)http://stackoverflow.com/questions/1811357/problems-getting-the-values-of-a-select-element/1811381#1811381Comment by bobince on problems getting the values of a select element- bobince2009-11-28T03:10:22Z2009-11-28T03:10:22Z(And incidentally, don't use <code>getAttribute</code> on an HTML DOM, as IE has many bugs with it. Use the direct DOM Level 1 HTML properties like <code>value</code> in this case. On form elements, the HTML <code>value</code> attribute is the initial value; the current value which you want to read may be different.)http://stackoverflow.com/questions/1811357/problems-getting-the-values-of-a-select-element/1811381#1811381Comment by bobince on problems getting the values of a select element- bobince2009-11-28T03:08:31Z2009-11-28T03:08:31ZSome old browsers didn't support <code>value</code> on select; selectedIndex is the traditional safe way. @chris: I don't think you're picking up the right element. Check the source for other elements having the same <code>id="recommendFriend"</code> attribute (this is invalid).http://stackoverflow.com/questions/1811116/ie-support-for-dom-importnode/1811170#1811170Comment by bobince on IE support for DOM importNodebobince2009-11-28T01:47:59Z2009-11-28T01:47:59ZThis is a good general approach, but you'll want to <code>document.createComment</code> in response to a <code>COMMENT_NODE</code>; turning it into a text node probably isn't a good idea. There are also many problems with using <code>getAttribute</code>/<code>setAttribute</code> on HTML elements in IE, unfortunately; if you're cloning forms the <code>name</code> may be a problem, and <code>onX</code> attributes and inline <code>style</code>s aren't going to work in a useful way (best avoid them). Also any <code><script></code> elements will get re-executed when appended to any parent node.http://stackoverflow.com/questions/1810828/css-sprite-based-rollover-blinks-in-ie6/1810890#1810890Comment by bobince on CSS sprite based rollover blinks in IE6bobince2009-11-28T00:19:32Z2009-11-28T00:19:32Z+1 the IE cache setting is usually the cause of this kind of thinghttp://stackoverflow.com/questions/1810861/how-to-make-article-spinner-regex/1811051#1811051Comment by bobince on How to make article spinner regex?bobince2009-11-28T00:10:50Z2009-11-28T00:10:50Zsnap (almost)! the <code>{</code> test would go into an infinite loop if there was an unmatched <code>{</code> in the input, though.http://stackoverflow.com/questions/1810898/text-spacing-table-cellComment by bobince on Text spacing table cellbobince2009-11-27T23:56:16Z2009-11-27T23:56:16ZBTW you don't use a unit on HTML <code>width</code>/<code>height</code>, it's always integer pixels, unlike with CSS. Normally you wouldn't use HTML w/h at all, but of course with HTML mail all bets on good practice are off...http://stackoverflow.com/questions/1810548/how-can-we-prevent-special-tag-inserted-into-textbox-in-asp-net/1810567#1810567Comment by bobince on how can we prevent special tag inserted into textbox ? in asp.netbobince2009-11-27T21:42:02Z2009-11-27T21:42:02ZRequest Validation is worthless. It won't protect you from all possible attacks if you're vulnerable, and it will stop people using perfectly valid strings which look like tags when you're <i>not</i> vulnerable. Turn it off, get rid of it, burn it, find the programmers responsible and prosecute them for Criminally Bad Idea.