User Phillip Oldham - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T17:49:45Zhttp://stackoverflow.com/feeds/user/30478http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1901407/get-the-executing-files-path-from-an-installed-package0Get the executing file's path from an installed package?Phillip Oldham2009-12-14T15:03:34Z2009-12-14T15:16:27Z
<p>If one installs a python package using setuptools, then executes a method in that package from a standard python script, is it possible to get the file path of the calling/executing file?</p>
<p>For instance, the file I'm executing is <code>/usr/foo/bar.py</code>, which looks like this:</p>
<pre><code>import baz
baz.get_current_path()
# should print /usr/foo/bar.py
</code></pre>
<p>and the package <code>baz</code> has been installed using setuptools and is located in that magical place all python packages are installed when they've been good little packages.</p>
<p>Both <code>__file__</code> and <code>import inspect; inspect.currentframe().f_code.co_filename</code> return the path of the package'd file.</p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/1867258/set-an-objects-superclass-at-init3Set an object's superclass at __init__?Phillip Oldham2009-12-08T14:18:59Z2009-12-08T22:59:47Z
<p>Is it possible, when instantiating an object, to pass-in a class which the object should derive from?</p>
<p>For instance:</p>
<pre><code>class Red(object):
def x(self):
print '#F00'
class Blue(object):
def x(self):
print '#00F'
class Circle(object):
def __init__(self, parent):
# here, we set Bar's parent to `parent`
self.x()
class Square(object):
def __init__(self, parent):
# here, we set Bar's parent to `parent`
self.x()
self.sides = 4
red_circle = Circle(parent=Red)
blue_circle = Circle(parent=Blue)
blue_square = Square(parent=Blue)
</code></pre>
<p>Which would have similar effects as:</p>
<pre><code>class Circle(Red):
def __init__(self):
self.x()
</code></pre>
<p>without, however, affecting other instances of <code>Circle</code>.</p>
http://stackoverflow.com/questions/1808035/emacs-zen-coding-mode-and-putty2Emacs, Zen-Coding mode, and Putty.Phillip Oldham2009-11-27T10:47:00Z2009-11-28T16:56:02Z
<p>I use emacs via Putty and since Putty doesn't send certain key combinations to the remote console I generally need to re-bind them to other key combinations.</p>
<p>After installing the amazing <a href="http://code.google.com/p/zen-coding/" rel="nofollow">Zen-Coding</a> <a href="http://www.emacswiki.org/emacs/ZenCoding" rel="nofollow">mode</a> I had some trouble with the preview it generated; I couldn't get it to insert the output it was previewing. I got around this with the following keybindings:</p>
<pre><code>(global-set-key "\M-\r" 'zencoding-expand-line)
(global-set-key "\M-]" 'zencoding-preview-accept)
</code></pre>
<p>However, what I'd <em>like</em> to do is be able to hit <code>M-RET</code> again when the preview is open and have it insert the output. </p>
<p>My emacs-lisp-fu is <strong>extremely</strong> weak, however.</p>
<p>Is there a way I can test whether the preview is open and capture/bind another <code>M-RET</code> keypress?</p>
http://stackoverflow.com/questions/1485135/is-there-a-way-to-do-pre-compression-with-on-the-fly-uncompression-in-nginx/1808692#18086920Answer by Phillip Oldham for Is there a way to do pre-compression with on-the-fly-uncompression in nginx?Phillip Oldham2009-11-27T13:10:57Z2009-11-27T13:19:26Z<p>One option is to have a <a href="http://wiki.nginx.org/NginxHttpCoreModule#Named%5FLocations" rel="nofollow">fall-back</a> <a href="http://wiki.nginx.org/NginxHttpUpstreamModule" rel="nofollow">upstream</a> server to decompress the file, eg:</p>
<pre><code>gzip_static on;
...
upstream decompresser {
server localhost:8080; // script which will decompress the file
}
location / {
try_files $uri @decompress;
}
location @decompress {
proxy_pass http://decompresser;
}
</code></pre>
<p>Another option would be to use the <a href="http://wiki.nginx.org/NginxEmbeddedPerlModule" rel="nofollow">embedded perl module</a> as the fall-back rather than the upstream, however this can cause nginx to block and if the operation lasts a while could decrease performance.</p>
<p>With the upstream model you may be able to take advantage of nginx's <a href="http://wiki.nginx.org/NginxXSendfile" rel="nofollow">XSendfile</a> module by using the system's default <code>gzip</code> program to decompress to a file in the /tmp directory. This could save on decompression overhead per-request by allowing the file to hang around for a short while.</p>
http://stackoverflow.com/questions/1769844/what-user-i-should-run-my-nginx-or-php-fpm-processes/1808649#18086490Answer by Phillip Oldham for what user I should run my nginx or php-fpm processesPhillip Oldham2009-11-27T13:01:06Z2009-11-27T13:01:06Z<p>Its probably better to create an <code>nginx</code> user and <code>nginx</code> group, and have nginx/php run under that user. Then you can add the user <code>nginx</code> to your some_user/sudo_user's groups with your 751 permissions and you should be set.</p>
http://stackoverflow.com/questions/1783146/virtualenv-where-do-i-put-stuff3Virtualenv: Where do I put stuff?Phillip Oldham2009-11-23T13:31:01Z2009-11-23T22:08:31Z
<p>What sort of directory structure should one follow when using <code>virtualenv</code>? For instance, if I were building a WSGI application and created a virtualenv called <code>foobar</code> I would start with a directory structure like:</p>
<pre><code>/foobar
/bin
{activate, activate.py, easy_install, python}
/include
{python2.6/...}
/lib
{python2.6/...}
</code></pre>
<p>Once this environment is created, where would one place their own:</p>
<ul>
<li>python files? </li>
<li>static files (images/etc)?</li>
<li>"custom" packages, such as those available online but not found in the cheese-shop?</li>
</ul>
<p>in relation to the <code>virtualenv</code> directories?</p>
http://stackoverflow.com/questions/1756559/pass-xml-fragments-as-stylesheet-paramters-with-lxml0Pass XML fragments as stylesheet paramters with lxml?Phillip Oldham2009-11-18T14:54:38Z2009-11-18T21:16:09Z
<p>I'm starting to use <code>lxml</code> in Python for processing XML/XSL documents, and in general it seems very straight forward. However, I'm not able to find a way to pass an XML fragment as a stylesheet parameter when doing a translation.</p>
<p>For example, in PHP it is possible to pass <code>DOMDocument</code> XML fragments as stylesheet parameters, so that one can have complex params available within the stylesheet:</p>
<pre><code>$xml = new DOMDocument();
$xml->loadXML('<root><node/></root>');
$xsl = new DOMDocument();
$xsl->loadXML('<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" omit-xml-declaration="yes"
indent="yes" media-type="text/html" />
<xsl:param name="a" />
<xsl:template match="/">
<html>
<body>
<xsl:value-of select="$a/foo/bar/text()" />
</body>
</html>
</xsl:template>
</xsl:stylesheet>');
$fragment = new DOMDocument();
$fragment->loadXML('<foo><bar>baz</bar></foo>');
$proc = new XSLTProcessor;
$proc->registerPHPFunctions();
$proc->importStyleSheet($xsl);
$param_ns = '';
$param_name = 'a';
$proc->setParameter($param_ns, $param_name, $fragment->documentElement);
</code></pre>
<p>Which will result in:</p>
<pre><code><html>
<body>
baz
</body>
</html>
</code></pre>
<p><strong>How does one accomplish this using <code>lxml</code>?</strong></p>
http://stackoverflow.com/questions/1506463/how-to-run-multiple-tornado-processes-threads-frontends1How to run multiple Tornado processes/threads/frontends?Phillip Oldham2009-10-01T21:00:17Z2009-11-17T20:48:08Z
<p>In the tornado documentation they show how they can have a very large through-put from <a href="http://www.tornadoweb.org/documentation#performance" rel="nofollow">4 frontends</a>. I'd like to run an app in the same way, and would like to have the frontends running as daemon processes managed with an init.d script*. </p>
<p>I'm fairly new to Python so don't really know where to start. Currently I'm starting the Tornado server manually in the terminal, passing in a new port number each time. </p>
<p>I've tried using the <a href="http://pypi.python.org/pypi/python-daemon" rel="nofollow">python-daemon package</a> in conjunction with the <a href="http://pypi.python.org/pypi/lockfile" rel="nofollow">lockfile package</a> but the lockfiles that are created don't have the process ids in them and I can't see how to then kill the processes gracefully later on.</p>
<p>I don't really know where to go from here, and the Tornado docs leave a large chunk out regarding deployment.</p>
<p><sub>* If there's a better way to manage the processes so that they can be monitored and managed as a group then please let me know.</sub></p>
http://stackoverflow.com/questions/1633342/advice-on-set-up-management-of-the-wsgi-stack0Advice on set-up/management of the WSGI stack?Phillip Oldham2009-10-27T20:05:52Z2009-11-14T01:09:07Z
<p>After looking through the many useful and shiny Python frameworks, I find none of them get close to what I need or provide <em>way</em> more than my needs. I'm looking to put something together myself; could define it as a framework, but not full-stack. However, I can't find online what the Python community sees as the correct/standard way to manage WSGI middleware in an application.</p>
<p>I'm not looking for framework suggestions, unless its to provide an example of ways to manage WSGI middleware. Nor am I looking for information on how to get a webserver to talk to python -- that bit I understand.</p>
<p>Rather, I'm looking for advice on how one tells python what components/middleware to put into the stack, and in which order. For instance, if I wanted to use:<br />
<code>Spawning-->memento-->AuthKit-->(?)-->MyApp</code><br />
how would I get those components into the right order, and how would I configure an additional item (say Routes) before <code>MyApp</code>?</p>
<p>So; Can you advise on the common/correct/standard way of managing what middleware is included in a WSGI stack for a Python application?</p>
<p><strong>Edit</strong><br />
Thanks to Michael Dillon for recommending <a href="http://pythonpaste.org/do-it-yourself-framework.html" rel="nofollow">A Do-It-Yourself Framework</a>, which helps highlight my problem. The <a href="http://pythonpaste.org/do-it-yourself-framework.html#give-me-more-middleware" rel="nofollow">middleware section</a> of that document states that one should wrap middleware A in middleware B, B in C, and so-on:</p>
<pre><code>app = ObjectPublisher(Root())
wrapped_app = AuthMiddleware(app)
from paste.evalexception import EvalException
exc_wrapped_app = EvalException(wrapped_app)
</code></pre>
<p>Which shows how to do it in a very simple way. I understand how this works, however it seems too simple when working with a number of middleware packages.</p>
<p><strong>Is there a better way to manage how these middleware components are added to the stack? Maybe a common design pattern which reads from a config file?</strong></p>
http://stackoverflow.com/questions/1704119/carbon-emacs-re-enable-hash-key1Carbon-emacs: re-enable hash key?Phillip Oldham2009-11-09T21:51:15Z2009-11-10T23:10:51Z
<p>How can I re-enable the hash (#) key in carbon-emacs on the mac? I've tried everything I've come across in google and still can't get it working.</p>
<p>My config file currently looks like this:</p>
<pre><code>(require 'redo+)
(require 'mac-key-mode)
(mac-key-mode 1)
(setq default-input-method "MacOSX")
(setq mac-command-modifier 'alt mac-option-modifier 'meta)
</code></pre>
<p>The above has enabled all the Command+Key bindings (such as Cmd+S for saving), but Alt+3 isn't working.</p>
<p>I'd normally work around it but I'm programming in Python and # is rather useful for comments! ;)</p>
http://stackoverflow.com/questions/1674428/emacs-locks-hard-over-putty-when-is-entered0Emacs locks hard over PuTTY when £ is entered.Phillip Oldham2009-11-04T15:13:15Z2009-11-05T14:42:26Z
<p>I'm using emacs (21.4.1) via PuTTY (0.60) connected to a CentOS5.3 box with a UK keyboard. Whenever I enter the <strong>£</strong> symbol emacs locks hard, making the whole putty window unresponsive and loosing all changes.</p>
<p><strong>Edit:</strong></p>
<p>Futher to <code>pajato0</code>'s suggestion, I get the following message:</p>
<pre><code>à (translated from £) runs the command self-insert-command
which is an interactive built-in function in `C source code'.
which is an interactive built-in function in `C source code'.
It is bound to many ordinary text characters.
</code></pre>
<p>So it looks like I need to rebind the key. How would one do this?</p>
http://stackoverflow.com/questions/1679268/testing-for-platform-in-elisp2Testing for platform in elisp?Phillip Oldham2009-11-05T09:07:14Z2009-11-05T09:32:25Z
<p>I'm sharing my emacs configuration files between a linux box and an OS X box. The config breaks however when I define a specific font for Emacs.app in the config which is then not available on linux.</p>
<p>Is there a way I can test for the current platform and then execute or skip the OS X specific instructions?</p>
http://stackoverflow.com/questions/1398621/should-persistent-objects-validate-data-upon-set2Should persistent objects validate data upon set?Phillip Oldham2009-09-09T09:45:56Z2009-10-31T13:21:33Z
<p>If one has a object which can persist itself across executions (whether to a DB using ORM, using something like Python's <code>shelve</code> module, etc), should validation of that object's attributes be placed within the class representing it, or outside? </p>
<p>Or, rather; should the persistent object be <strong>dumb</strong> and expect whatever is setting it's values to be benevolent, or should it be <strong>smart</strong> and validate the data being assigned to it?</p>
<p>I'm not talking about type validation or user input validation, but rather things that affect the persistent object such as links/references to other objects exist, ensuring numbers are unsigned, that dates aren't out of scope, etc.</p>
http://stackoverflow.com/questions/1653749/which-web-crawler-for-extracting-and-parsing-data-from-about-a-thousand-of-web-si/1653788#16537881Answer by Phillip Oldham for Which web crawler for extracting and parsing data from about a thousand of web sitesPhillip Oldham2009-10-31T08:34:47Z2009-10-31T11:45:03Z<p>I would suggest writing your own using Python with the <a href="http://scrapy.org/" rel="nofollow">Scrapy</a> and either <a href="http://codespeak.net/lxml/" rel="nofollow">lxml</a> or <a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">BeautifulSoup</a> packages. You should find a few good tutorials in Google for those. I use Scrapy+lxml at work to spider ~600 websites checking for broken links.</p>
http://stackoverflow.com/questions/1653777/browser-performance-question/1653915#16539152Answer by Phillip Oldham for Browser performance question.Phillip Oldham2009-10-31T09:48:09Z2009-10-31T09:48:09Z<p>A cursory look at the source in the SVN doesn't show anything which I believe firefox would have problems with.</p>
<p>Can you explain exactly what is "slow"? Is it the POST request? Have you tried logging the HTTP Headers sent to the server from both IE and FF?</p>
<p>If it's the javascript itself, try running the profiler in firebug; FF might find a specific function a little "heavy" (for instance, one of the regexes).</p>
<p>Also, FF3.5+ already has <code>String.trim*()</code> methods built-in. The code you're using overwrites those with a custom version, which will be <strong>much</strong> slower and might even be causing firefox to behave oddly. Try changing the source to the following:</p>
<pre><code>if( String.prototype.trim === undefined ) {
String.prototype.trim = function() {
return this.replace(/^\s+/, '').replace(/\s+$/, '');
};
}
</code></pre>
<p>That way the plugin will only add the <code>trim</code> method for older browsers.</p>
http://stackoverflow.com/questions/1652869/grabbing-data-from-an-i-frame-embedded-facebook-application/1653815#16538150Answer by Phillip Oldham for Grabbing data from an i-frame embedded Facebook applicationPhillip Oldham2009-10-31T08:51:36Z2009-10-31T08:51:36Z<p>From what you've provided it looks like your JS might be wrong. </p>
<p>Doing something like this might get you the value you need:</p>
<pre><code>var photoReference = window.frames["iframe-name"].document.getElementById("FBPhoto");
</code></pre>
<p>Then you need to assign it to something:</p>
<pre><code>MyObject.setValue(photoReference);
</code></pre>
<p>Note: <code>window.frames["iframe-name"].document.getElementById("FBPhoto")</code> will return the DOM element called <code>#FBPhoto</code> and will therefore be a big chunk of HTML. Your <code>setValue()</code> method might not be expecting that.</p>
<p>I suggest you try running your script in <a href="http://getfirefox.com" rel="nofollow">Firefox</a> with <a href="http://getfirebug.com/" rel="nofollow">Firebug</a> installed, which will allow you to dump the value of <code>photoReference</code> to the console to see what you're getting back.</p>
http://stackoverflow.com/questions/1653713/how-to-check-whether-the-value-of-a-string-variable-is-yes-or-no/1653752#16537522Answer by Phillip Oldham for how to check whether the value of a string variable is Yes or No?Phillip Oldham2009-10-31T08:14:07Z2009-10-31T08:25:10Z<p>Your problem isn't the <code>when</code> test, it's the <code><xsl:apply-templates select="YES"/></code> and <code><xsl:apply-templates select="Invalid"/></code>. The <code>YES</code> and <code>Invalid</code> won't correspond to anything -- there's no concept of constants in XSL, and it doesn't look like an XPath expression -- so there's nothing to apply to.</p>
<p>Instead, try something like this:</p>
<pre><code><xsl:variable
name="test1"
select="DBE:OBJECT/DBE:ATTRIBUTE[@name='test1']/DBE:String"
/>
<xsl:variable
name="test2"
select="DBE:OBJECT/DBE:ATTRIBUTE[@name='test2']/DBE:String"
/>
<xsl:choose>
<xsl:when test="lower-case($test1) = 'yes'>
<xsl:apply-templates
select="."
mode="test-yes"
/>
</xsl:when>
<xsl:when test="lower-case($test2) = 'yes'>
<xsl:apply-templates
select="."
mode="test-invalid"
/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates
select="DBE:OBJECT/DBE:ATTRIBUTE[@name='test3']/DBE:String"
/>
</xsl:otherwise>
</xsl:choose>
<xsl:template match="*" mode="test-yes">
Yes!!!
</xsl:template>
<xsl:template match="*" mode="test-invalid">
Invalid!!!
</xsl:template>
</code></pre>
<p>Also, keep in mind that variables can be "expensive" in XSL; the processing engine takes a full copy of the nodeset you're referencing, rather than just keeping a pointer, so you're carrying around the "weight" of the nodeset in memory while that part of the context is being processed. If you can do the test inline it's much better.</p>
<p>In fact, <code>choose</code> is relatively slow compared to the optimized flow of <code>apply-templates</code>. Your processing will be much faster. If you can be <strong>sure</strong> that only one of the tests will match it would be better to do something like this:</p>
<pre><code><xsl:apply-templates
mode="test-yes"
select="
DBE:OBJECT/DBE:ATTRIBUTE[@name='test1']/DBE:String[lower-case(.) = 'yes']
" />
<xsl:apply-templates
mode="test-invalid"
select="
DBE:OBJECT/DBE:ATTRIBUTE[@name='test2']/DBE:String[lower-case(.) = 'yes']
" />
<xsl:apply-templates
mode="test-otherwise"
select="
DBE:OBJECT/DBE:ATTRIBUTE[@name='test2']/DBE:String
" />
<xsl:template match="*" mode="test-yes">
Yes!!!
</xsl:template>
<xsl:template match="*" mode="test-invalid">
Invalid!!!
</xsl:template>
<xsl:template match="*" mode="test-otherwise">
Something else!
</xsl:template>
</code></pre>
<p>If you can't be sure you can always add further tests "inline" to the <code>apply-templates</code>, for example:</p>
<pre><code><xsl:apply-templates
mode="test-yes"
select="
DBE:OBJECT/DBE:ATTRIBUTE[
@name='test1'
]/DBE:String[
lower-case(.) = 'yes'
and
not(
lower-case(../DBE:ATTRIBUTE[@name='test2']/DBE:String/text()) = 'yes'
)
]
" />
<!-- etc... -->
</code></pre>
http://stackoverflow.com/questions/1641708/jquery-once-form-submit-has-complete/1653106#16531060Answer by Phillip Oldham for jquery, once form submit has completePhillip Oldham2009-10-31T01:31:30Z2009-10-31T01:31:30Z<p>The form submission can return a javascript block which can call a function in the parent document; eg:</p>
<pre><code><html><script language="javascript">
window.parent.document.doSomething();
</script></html>
</code></pre>
<p>and inside the <code>doSomething()</code> function you call your jQuery code.</p>
http://stackoverflow.com/questions/1645130/padding-breaks-jquery-selector/1653086#16530860Answer by Phillip Oldham for padding breaks jQuery selector?Phillip Oldham2009-10-31T01:23:15Z2009-10-31T01:23:15Z<p>I believe I've come across something similar to this before - it could be a timing issue where the DOM is rendered slighlty after the JS is being told to bind to the elements. In your case the padding may be making firefox take a few milliseconds longer to render those <code>div</code>s and therefore causing the binding to trigger before there is anything to bind to. I understand Firebug can also slow-down the rendering process since it jumps-in at points to render the source in its frame.</p>
<p>To confirm it isn't this, try adding a <code>setTimeout(function(){ ... }, 500)</code> around your binding code (also maybe turning firebug off) to see whether it binds after that. If it does, then there's your problem.</p>
<p>Another approach may be to change your inputs into links and use event delegation to trigger the event: <code>jQuery('.btnSave').live('click', function(){savePanel($('selector>for>panel'));
})</code></p>
http://stackoverflow.com/questions/1631042/generate-xml-from-csv-data-in-conformance-with-given-xsd-schema/1653033#16530330Answer by Phillip Oldham for Generate xml from csv data in conformance with given xsd schemaPhillip Oldham2009-10-31T01:04:02Z2009-10-31T01:04:02Z<p>A quick solution (if this is a one-off) would be to:</p>
<ol>
<li>use <code>mysqlimport</code> to pull the CSV into a temporary mysql table</li>
<li>use <code>mysqldump -X</code> to output that table as a simple XML file</li>
<li>process the outputted XML with an XSL stylesheet to map to your required schema.</li>
</ol>
<p>If you're doing this regularly then something more robust/scriptable would be better, but the principle is the same: </p>
<p>1) convert your CSV to very simple XML <em>in the same format</em> as the CSV:</p>
<pre><code><csv>
<record>
<EntityName>SOChemistryRequirement</EntityName>
<FieldName>CE_Min</FieldName>
<SQLType>"decimal(7, 5)"</SQLType>
<DataType>Decimal</DataType>
<Nullable>TRUE</Nullable>
<Caption>CE_Min</Caption>
<ColumnIndex>82</ColumnIndex>
<MinStringLength></MinStringLength>
<MaxStringLength></MaxStringLength>
<D_Precision>7</D_Precision>
<D_Scale>5</D_Scale>
</record>
<!-- etc... -->
</csv>
</code></pre>
<p>2) process that XML through XSL to get an XML doc formatted following your schema.</p>
http://stackoverflow.com/questions/1631792/xsl-fo-block-quotes-with-quote-marks/1652998#16529980Answer by Phillip Oldham for xsl-fo block-quotes with quote marksPhillip Oldham2009-10-31T00:46:53Z2009-10-31T00:46:53Z<p>How about attack this from another angle? Maybe leave out the ending quote symbol, try and stylize the opening quote (larger, coloured, etc) and/or simply colour the background/borders of the block to distinguish it as a quote - like people do on these new trendy blog thingies? </p>
<p>I know its not a complete solution to the issue, but while FO is IMHO an amazing tool the engine implementations and spec are still in their infancy. I've found it easier to switch route rather than attempt to "scale the wall" when it comes to issues with FO, often saving both time and sanity! ;)</p>
http://stackoverflow.com/questions/1646138/using-special-chars-in-firefox-and-ie-are-being-encoded-by-the-browser-different/1652950#16529500Answer by Phillip Oldham for Using special Chars in Firefox and IE, are being encoded by the browser differentlyPhillip Oldham2009-10-31T00:28:30Z2009-10-31T00:28:30Z<p>You might find it useful to add the <a href="http://w3schools.com/tags/att%5Fform%5Faccept%5Fcharset.asp" rel="nofollow"><code>accept-charset</code></a> attribute to your form. This specifies to the browser what character-set the server accepts. Your JS should follow this and send it in that format.</p>
<p>Some other things that can affect the way IE handles character encoding:</p>
<ul>
<li>Specifying the correct doctype (ie, standards vs. "compliance" modes).</li>
<li>The <code>Content-Type</code> header sent by the server; I believe most browsers adhere to the header over the meta-tag, so if your server is specifying ISO-8859-1 and your page specifies UTF-8 there will be some confusion.</li>
<li>The format of the <code>Content-Type</code> header; some "modern" browsers (specifically FF) accept utf8 as an alias of utf-8. IE does not, and falls-back to ISO-8859-1. (This comes from painful personal experience! ;)</li>
</ul>
<p>Character-sets are a real pain. You need to ensure that all the components are talking the same "language" front-to-back - that includes both storage <em>and</em> communication.</p>
<p>The next step to track down what is going on is to have your server code log the headers for your JS request to be sure that the encoding matches what you're expecting.</p>
http://stackoverflow.com/questions/1652759/need-a-javascript-or-jquery-library-to-convert-xpath-to-selectable-css3-format-in/1652915#16529153Answer by Phillip Oldham for need a javascript or jquery library to convert xpath to selectable CSS3 format in jqueryPhillip Oldham2009-10-31T00:10:37Z2009-10-31T00:10:37Z<p>If you find that Sizzle/jQuery can't apply your CSS3 selector it might be better to use the <a href="http://plugins.jquery.com/project/xpath" rel="nofollow">XPath plugin</a> which was part of the original release of jQuery (and then removed since few people actually used it). </p>
<p>XPath implementations in browsers tends to be much <a href="http://ejohn.org/blog/xpath-overnight/" rel="nofollow">faster</a> than the CSS engines. Also having JS parse & convert an XPath expression into CSS3 then having jQuery munge that into something the browser can implement (generally CSS2.1 selectors with a bit of JS assistance) is going to be <strong>much</strong> slower than executing the XPath directly in the browser.</p>
<p>Not only that, but there are things that XPath can do that CSS can't. For example:<br />
<code>//h3[class="blog-title"]/../../div[class="blog-entry"]//input[fn:floor(value) &gt; 3]</code><br />
which isn't overly complex for XPath to execute, but impossible for CSS alone - moving back up the DOM and executing a function as part of the expression can't (to my knowledge) be done yet, even in CSS3.</p>
http://stackoverflow.com/questions/1599658/is-there-a-single-server-i-can-use-to-store-manage-version-control-for-svn-git-hg0Is there a single server I can use to store/manage version control for SVN/Git/Hg/etc?Phillip Oldham2009-10-21T09:18:39Z2009-10-21T22:33:46Z
<p><strong>Is there a single server I can use to store/manage repositories which could then be accessed by the common/modern open-source (D)VCSs such as SVN, Git, Mercurial, bzr, etc and still keep a good level of compatibility with all of them?</strong></p>
<p>We have a large number of users on SVN, some on Git, and a couple using mercurial but none are using any overly advanced features at the moment, but hitting 100% support for each VCS isn't a priority. Coping with them all with one server is more important, especially if users can check in via SVN while another checks out via Git.</p>
http://stackoverflow.com/questions/1537298/what-do-i-need-to-know-learn-for-automated-python-deployment1What do I need to know/learn for automated python deployment?Phillip Oldham2009-10-08T11:40:12Z2009-10-08T12:48:45Z
<p>I'm starting a new webapp project in Python to get into the Agile mind-set and I'd like to do things "properly" with regards to deployment. However, I'm finding the whole virtualenv/fabric/zc.buildout/etc stuff a little confusing - I'm used to just FTP'ing PHP files to a server and pointing a webserver at it.</p>
<p>After deployment the server set-up would look something like:<br />
<code>Nginx --proxy-to--> WSGI Webserver (Spawning) --> WSGI Middleware --> WSGI App (probably MNML or similar)</code><br />
with the python webserver being managed by supervisord.</p>
<p>What sort of deployment set-up/packages/apps should I be looking into? And is there a specific directory structure I need to stick to with my app to ease deployment?</p>
http://stackoverflow.com/questions/1470158/compress-obfuscate-url-to-use-in-rewrite0Compress/obfuscate URL to use in rewrite?Phillip Oldham2009-09-24T07:03:29Z2009-09-24T08:18:19Z
<p>I need to add the URL of a 3rd-party website to a url, but I'd like to compress/obfuscate the host part. Are there any algorithms I can use which will hash the url, but also allow <em>un-hashing</em>?</p>
<p>For example; the url is <code>http://www.twitter.com/myusername</code>. What I'm serving currently (as a html link) is <code>http://mysite.net/bounce/www.twitter.com/username</code>. What I'd <em>like</em> to serve is something like <code>http://mysite.net/bounce/X5nsSkdWfA/username</code>, and have the bounce script decode <code>|^/bounce/(.*)/|</code> back to <code>www.twitter.com</code>.</p>
<p>I'd like to do this <em>without</em> storing the hash anywhere.</p>
<p>Suggestions?</p>
http://stackoverflow.com/questions/1289796/are-there-any-elmah-like-exception-logging-foss-packages2Are there any ELMAH-like exception-logging FOSS packages?Phillip Oldham2009-08-17T19:01:47Z2009-09-23T22:29:21Z
<p>Are there any <a href="http://code.google.com/p/elmah/" rel="nofollow">ELMAH</a>- or <a href="http://crashkitapp.appspot.com/" rel="nofollow">crashkit</a>-like exception-logging FOSS packages? </p>
<p>Specifically, these are exception-logging applications; the code you write pushes exception reports to these systems so they can be logged, grouped, searched, and acted-upon. Both apps help with the approach of <a href="http://www.codinghorror.com/blog/archives/001239.html" rel="nofollow">Exception Driven Development</a> (not a fan of the phrase, but I <em>do</em> like the idea of a centralised way to collect exceptions into a monitoring system).</p>
<p>I'm looking for an app that preferably:</p>
<ul>
<li>non-microsoft (inc. mono)</li>
<li>language-agnostic, or </li>
<li>has plugins for languages such as PHP, Python, etc</li>
<li>can be hosted locally so I may hack for specific needs.</li>
</ul>
<p>Is there anything out there like that at the moment? Or are ELMAH & crashkit the only options so far?</p>
http://stackoverflow.com/questions/1448510/how-can-i-get-the-call-stack-from-a-fatal-error0How can I get the call stack from a Fatal Error?Phillip Oldham2009-09-19T12:52:28Z2009-09-19T21:21:34Z
<p>I'm getting a fatal <code>"Call to a member function on a non-object"</code> error in a PHP script, but I'm unable to track down exactly <strong>where</strong> this is happening, or why. The error message is pretty-much useless, as the line it describes works 99.9% of the time.</p>
<p>Is there a way I can get the current call stack, trace what calls are being made before this fatal error, or do anything else to help track down this bug?</p>
http://stackoverflow.com/questions/1431936/is-it-possible-to-run-pydev-connected-to-a-virtualbox-instance0Is it possible to run pydev connected to a virtualbox instance?Phillip Oldham2009-09-16T09:26:45Z2009-09-16T15:59:24Z
<p>At the moment I'm developing using a simple editor, putty, and a VirtualBox instance of a linux server. I've heard good things about pydev and would like to try it, but I'd like to use the python install & terminal from my VirtualBox guest OS.</p>
<p>I'm already using a Shared Folder with VirtualBox so my Guest OS can see my local files.</p>
<p>Is it possible to tell pydev to use this "remote" host over SSH to execute its python-related commands?</p>
<p><strong>UPDATE:</strong></p>
<p>My main environment is windows, but I'd also like to be able to work this way on OS X.</p>
http://stackoverflow.com/questions/1420484/how-can-i-add-a-decorator-to-an-existing-object-method2How can I add a decorator to an existing object method?Phillip Oldham2009-09-14T09:16:12Z2009-09-14T11:26:40Z
<p>If I'm using a module/class I have no control over, how would I decorate one of the methods? </p>
<p>I understand I can: <code>my_decorate_method(target_method)()</code> but I'm looking to have this happen wherever <code>target_method</code> is called without having to do a search/replace.</p>
<p>Is it even possible?</p>
http://stackoverflow.com/questions/1901407/get-the-executing-files-path-from-an-installed-package/1901481#1901481Comment by Phillip Oldham on Get the executing file's path from an installed package?Phillip Oldham2009-12-15T08:07:58Z2009-12-15T08:07:58Z<code>import inspect; inspect.stack()[-1][0].f_code.co_filename</code> did the trick. Thanks!http://stackoverflow.com/questions/1867258/set-an-objects-superclass-at-initComment by Phillip Oldham on Set an object's superclass at __init__?Phillip Oldham2009-12-09T15:04:30Z2009-12-09T15:04:30Z@S.Lott - I think I was trying to be overly clever. Dependency Injection will be more than sufficient for my task.http://stackoverflow.com/questions/1867258/set-an-objects-superclass-at-init/1867965#1867965Comment by Phillip Oldham on Set an object's superclass at __init__?Phillip Oldham2009-12-09T15:03:33Z2009-12-09T15:03:33ZYes; I wanted to inherit, and potentially override, method from a number of parent objects, however DI is probably the best bet.http://stackoverflow.com/questions/1867258/set-an-objects-superclass-at-init/1867410#1867410Comment by Phillip Oldham on Set an object's superclass at __init__?Phillip Oldham2009-12-08T14:49:09Z2009-12-08T14:49:09ZUpdated my question per your suggestion.http://stackoverflow.com/questions/1783146/virtualenv-where-do-i-put-stuff/1783183#1783183Comment by Phillip Oldham on Virtualenv: Where do I put stuff?Phillip Oldham2009-11-23T14:06:42Z2009-11-23T14:06:42ZThere are some similarities, but my question isn't a duplicate; I'm asking very specifically where to put my files in relation to the <code>virtualenv</code>-generated directories.http://stackoverflow.com/questions/1756559/pass-xml-fragments-as-stylesheet-paramters-with-lxml/1757449#1757449Comment by Phillip Oldham on Pass XML fragments as stylesheet paramters with lxml?Phillip Oldham2009-11-19T08:05:29Z2009-11-19T08:05:29ZThanks. Could you edit your post and change the link to the page with the custom resolver? I noticed the custom xpath functions after posting and came to the same conclusion, but the <code>document()</code> method may be more useful.http://stackoverflow.com/questions/1704119/carbon-emacs-re-enable-hash-key/1704135#1704135Comment by Phillip Oldham on Carbon-emacs: re-enable hash key?Phillip Oldham2009-11-09T22:05:47Z2009-11-09T22:05:47ZWell, it's still emacs under the hood, and its emacs which is seeing Alt+3 as M-3 and doing nothing about it.http://stackoverflow.com/questions/1674428/emacs-locks-hard-over-putty-when-is-entered/1675611#1675611Comment by Phillip Oldham on Emacs locks hard over PuTTY when £ is entered.Phillip Oldham2009-11-05T15:00:35Z2009-11-05T15:00:35Z<code>en_US.UTF-8</code> - though the problem seems to have "fixed itself". I changed <code>Window > Translation > Charset</code> to <code>UTF-8</code> in putty, reconnected and haven't seen the issue since. So, emacs wasn't locking, putty was!http://stackoverflow.com/questions/1674428/emacs-locks-hard-over-putty-when-is-entered/1675611#1675611Comment by Phillip Oldham on Emacs locks hard over PuTTY when £ is entered.Phillip Oldham2009-11-05T08:55:37Z2009-11-05T08:55:37Zà (translated from £) runs the command self-insert-command which is an interactive built-in function in `C source code'.
which is an interactive built-in function in `C source code'.http://stackoverflow.com/questions/1653713/how-to-check-whether-the-value-of-a-string-variable-is-yes-or-no/1653752#1653752Comment by Phillip Oldham on how to check whether the value of a string variable is Yes or No?Phillip Oldham2009-10-31T11:59:52Z2009-10-31T11:59:52Ztry <code>fn:lower-case()</code> - your xsl engine might require the namespace "fn" to understand which function to execute.http://stackoverflow.com/questions/1653749/which-web-crawler-for-extracting-and-parsing-data-from-about-a-thousand-of-web-si/1653788#1653788Comment by Phillip Oldham on Which web crawler for extracting and parsing data from about a thousand of web sitesPhillip Oldham2009-10-31T11:50:32Z2009-10-31T11:50:32ZNot sure what you're asking; Scrapy is a framework for scraping, so you build on-top of it. Seems odd that you'd want to scrape for a "time"; wouldn't it be better to set a maximum "level" then have it simply finish when it's done?http://stackoverflow.com/questions/1652488/building-charts-with-google-pagespeed-dataComment by Phillip Oldham on Building charts with Google PageSpeed data?Phillip Oldham2009-10-31T09:03:12Z2009-10-31T09:03:12ZIt might be worth mentioning what languages/techs you're familiar with or have access to for importing the data.http://stackoverflow.com/questions/1652869/grabbing-data-from-an-i-frame-embedded-facebook-applicationComment by Phillip Oldham on Grabbing data from an i-frame embedded Facebook applicationPhillip Oldham2009-10-31T08:44:17Z2009-10-31T08:44:17ZYou need to provide more source-code to help us understand your problem.http://stackoverflow.com/questions/1653777/browser-performance-questionComment by Phillip Oldham on Browser performance question.Phillip Oldham2009-10-31T08:41:09Z2009-10-31T08:41:09Zcan you provide a link to your modified source and/or the original? also, have to compared the speed to the original to your modified version?http://stackoverflow.com/questions/1653771/how-do-i-remove-a-directory-that-is-not-empty/1653776#1653776Comment by Phillip Oldham on How do I remove a directory that is not empty?Phillip Oldham2009-10-31T08:29:01Z2009-10-31T08:29:01ZWhen it comes to PHP, <b>always</b> check the online manual & the comments. Its generally guaranteed that someone's had the problem first and commented there.