User Alin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T06:31:54Zhttp://stackoverflow.com/feeds/user/62408http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081812/javascript-unspecified-error-in-open-layers1Javascript "unspecified error" in Open LayersAlin2009-07-04T08:44:27Z2009-07-23T16:38:08Z
<p>I am getting this error <img src="http://img239.imageshack.us/img239/6936/jserror.png" alt="alt text" /> when the map loads.</p>
<p>The error is in the original, unmodified OpenLayers.js file on this line:</p>
<p><code>return!!(document.namespaces);</code></p>
<p>I have tried rewriting it to:</p>
<p><code>return (typeof(document.namespaces) != 'undefined');</code></p>
<p>and it worked but then I get same "unspecified" errors on further referrals to document.namespaces:</p>
<p><code>if(!document.namespaces.olv){document.namespaces.add("olv",this.xmlns); ... </code></p>
<p>I tried rewriting this to:</p>
<p><code>if(typeof(document.namespaces.olv) == 'undefined') { ...</code></p>
<p>but I get the same "unspecified error".</p>
<p>I only get this error on Internet Explorer (I tested on 7) and not in Firefox.</p>
<p>Any clues?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1081812/javascript-unspecified-error-in-open-layers/1085837#10858372Answer by Alin for Javascript "unspecified error" in Open LayersAlin2009-07-06T07:42:15Z2009-07-06T07:47:51Z<p>I have found the solution.</p>
<p>The problem was that I was creating the map when the DOM was ready with Jquery:</p>
<pre><code>$(document).ready(function(){ ... //create map here [WRONG]
</code></pre>
<p>All you have to do is to create the map after the onload event:</p>
<pre><code>window.onload = function() { ... // create map here [CORRECT]
</code></pre>
http://stackoverflow.com/questions/537048/intellectual-property-protection-solution-for-python-code0Intellectual property protection solution for python code [closed]Alin2009-02-11T14:34:10Z2009-02-11T14:50:29Z
<p>Is there any way to distribute obfuscated/encoded python files in order to protect the source code?
I am looking for a solution like Zend Guard is for PHP, but anything is ok as long as it hides the source.</p>
<h3>Duplicate</h3>
<blockquote>
<p><a href="http://stackoverflow.com/questions/261638/how-do-i-protect-python-code">http://stackoverflow.com/questions/261638/how-do-i-protect-python-code</a></p>
</blockquote>
http://stackoverflow.com/questions/511336/how-to-move-a-char-from-the-subdomain-to-the-filename-in-apache-mod-rewrite2How to move a char from the subdomain to the filename in Apache mod rewrite?Alin2009-02-04T13:24:50Z2009-02-04T13:44:03Z
<p>I have this URL:</p>
<pre><code>http://hostX.site.com/some_path_here/filename.jpg
</code></pre>
<p>and need to rewrite it to:</p>
<pre><code>http://host.site.com/same_path_here/filenameX.jpg
</code></pre>
<p>Can you please tell me if this is possible?
Basically I am trying to move "<strong>X</strong>" (it is a number) from the subdomain to the end of the filename, just before the extension.</p>
<p>Thanks.</p>