User Michael Johnson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T15:32:53Zhttp://stackoverflow.com/feeds/user/17688http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1744984/trouble-using-iauthorizationpolicy-with-wcf-and-castle-windsor0Trouble using IAuthorizationPolicy with WCF and Castle-WindsorMichael Johnson2009-11-16T21:31:08Z2009-11-17T04:14:18Z
<p>I'm currently using Castle-Windsor with the WCF Facility to inject all my WCF services. I've just started adding permission requirements using a custom <code>IAuthorizationPolicy</code>, which seems to work when done on a per-method basis on the service, but when the service class itself is marked up with the requirements, I get an exception thrown.</p>
<p>I've set things up based on the example at <a href="http://wcfsecurityguide.codeplex.com/wikipage?title=How%20To%20-%20Use%20Username%20Authentication%20with%20Transport%20Security%20in%20WCF%20from%20Windows%20Forms&referringTitle=Home" rel="nofollow">How To – Use Username Authentication with Transport Security in WCF from Windows Forms</a>. I didn't set up the custom HTTP Module class as I'm using an existing <code>Membership</code> implementation. My <code>IAuthorizationPolicy</code> implementation (<code>HttpContextPrincipalPolicy</code>) is essentially identical.</p>
<p>The essential part of my <code>Web.config</code> is:</p>
<pre><code><serviceBehaviors\>
<behavior name="MyBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
<serviceAuthorization principalPermissionMode="UseAspNetRoles"
roleProviderName="UserProvider">
<authorizationPolicies>
<clear/>
<add policyType="Website.FormsAuth.HttpContextPrincipalPolicy,Website"/>
</authorizationPolicies>
</serviceAuthorization>
</behavior>
</serviceBehaviors>
</code></pre>
<p>Everything seems to work fine when I put the requirements on the method. This is being done like so:</p>
<pre><code>[PrincipalPermission(SecurityAction.Demand, Role = RoleNames.USER_ADMINISTRATION)]
</code></pre>
<p>If this is on an <code>OperationContract</code> method, things work as expected. However, if it is moved to the class itself (which implements the <code>ServiceContract</code>) I get the following exception (with most of the extra stuff pruned out):</p>
<pre><code>Castle.MicroKernel.ComponentActivator.ComponentActivatorException {
Message = "ComponentActivator: could not instantiate Services.UserService"
InnerException = System.Reflection.TargetInvocationException {
Message = "Exception has been thrown by the target of an invocation."
InnerException = System.Security.SecurityException {
Message = "Request for principal permission failed."
}
}
}
</code></pre>
<p>I've debugged and found that the constructor on <code>HttpContextPrincipalPolicy</code> is being called but <code>Evaluate()</code> is not when the demand is attached to the class. When it is attached to the method <code>Evaluate()</code> <em>is</em> being called. So at this point I've gone as far as my newbie .NET/WCF/Castle-Windsor skills will take me.</p>
<p>Is there a way to tell Castle-Windsor to invoke the service constructor while honoring the <code>IAuthorizationPolicy</code>? Or tell WCF that <code>Evaluate()</code> needs to be called for the creation of the class? Or is there some other way around WCF that does the same thing? I don't want to have to mark up every single method with the exact same bit of attribute declaration.</p>
http://stackoverflow.com/questions/1661233/nested-set-model-in-php-javascript-to-work-with-mysql/1665503#16655030Answer by Michael Johnson for Nested Set model in PHP/Javascript to work with MySQLMichael Johnson2009-11-03T05:59:37Z2009-11-03T05:59:37Z<p>I know it's not the toolkit you're looking at, but <a href="http://dojotoolkit.org/" rel="nofollow">Dojo</a> has a very good and very flexible hierarchical tree component. I'm pretty sure it allows full drag-and-drop rearrangement of elements. If not, it provides the framework for doing it.</p>
<p>I agree with FractalizeR in that the JavaScript doesn't need to care about the method of generating the tree. NestedSet is a technique for relational databases, not interactive trees.</p>
http://stackoverflow.com/questions/1649646/module-eaccelerator-already-loaded-php-warning/1653360#16533601Answer by Michael Johnson for Module 'eAccelerator' already loaded php warningMichael Johnson2009-10-31T04:02:35Z2009-10-31T04:02:35Z<p>It sounds to me like you've got the configuration in multiple files.</p>
<p>If your set up is on Debian (or something like Debian) it could be that eAccelerator is loaded in <code>php.ini</code> as well as in a secondary file. For instance, on Debian, <code>php.ini</code> lives at <code>/etc/php5/apache2/php.ini</code> (for PHP 5.x and Apache 2.x). But it also parses all the files in <code>/etc/php5/conf.d/</code>, which in my case includes files like <code>gd.ini</code>, <code>mysql.ini</code>, and <code>suhosin.ini</code>. I have see misconfigured packages add configuration to the end of <code>php.ini</code> as well as in a separate file in <code>conf.d</code>. This will give the kind of error you're seeing.</p>
<p>FYI, this scanning is done with a compile-time configure option (specifically, <code>--with-config-file-scan-dir=</code>).</p>
http://stackoverflow.com/questions/657648/asp-net-mvc-mock-membership-for-controller-test/1649826#16498260Answer by Michael Johnson for ASP.NET MVC – Mock Membership for Controller TestMichael Johnson2009-10-30T13:31:44Z2009-10-30T13:31:44Z<p>I've started working on something like this. Rather than doing a true mock, I created a <code>FakeMembershipProvider</code> that just implements the minimum of <code>MembershipProvider</code> that I need and provides a way to set the users and such. I'm doing the same for <code>RoleProvider</code>. Then I've set the App.config for my test project so it uses these as the providers.</p>
<p>So far, it seems to be working well.</p>
http://stackoverflow.com/questions/1628699/test-if-a-directory-is-a-sub-directory-of-another-folder/1628896#16288963Answer by Michael Johnson for Test if a directory is a sub directory of another folderMichael Johnson2009-10-27T05:21:35Z2009-10-27T05:21:35Z<p>The best way I know of is to simply make everything but the upload directory unwritable by the user the web server runs as. For instance, on Debian, Apache runs as the user <code>www-data</code>. So, I make sure all the directories that Apache might serve out as world readable/executable, owned by some user other than <code>www-data</code>, and only writable by that user (or some admin group). Then, if a directory needs to be writable by the web server, I make it writable by <code>www-data</code>, either via group or owner.</p>
<p>If it's possible, it's also a good idea to move writable directories outside of the main server tree. If I control the server, I create a directory under <code>/var/lib</code> explicitly for this purpose. If I don't control the server, I put it next to the served directories. For instance, using your example of <code>/var/www/site</code>, I'd add another level, say <code>/var/www/site/html</code> (for direct-served HTML and top level scripts), <code>/var/www/site/scripts</code> (for <code>include()</code>ed PHP scripts) and <code>/var/www/site/data</code> (for uploaded data). Of course, if you need to serve the uploaded data, you either need to write a PHP wrapper to serve them out or put them under <code>/var/www/site/html/uploads</code>, similar to how you're doing things now.</p>
http://stackoverflow.com/questions/1617072/php-how-to-treat-nonexistent-urls-on-a-single-entry-point-site-that-uses-modrewr/1619824#16198240Answer by Michael Johnson for PHP how to treat nonexistent URLs on a single entry point site that uses mod_rewriteMichael Johnson2009-10-25T02:40:23Z2009-10-25T02:40:23Z<p>I think what you are doing will probably work fine, in general.</p>
<p>As for what to put on the page, there's a few resources across the web. The one that comes to mind immediately is <a href="http://dev.opera.com/articles/view/adding-meaning-to-http-error-pages/" rel="nofollow">one that Opera put up recently</a>. It uses Python as the example language, but it's pretty basic stuff.</p>
http://stackoverflow.com/questions/1619052/mysql-one-large-query-vs-ajax-indivdual-queries/1619806#16198060Answer by Michael Johnson for mySQL - One large query vs Ajax indivdual queriesMichael Johnson2009-10-25T02:35:14Z2009-10-25T02:35:14Z<p>I pretty much agree with what everyone else has had to say. I will add this, though. It really depends on your data and how you intend to use it and/or cache it. If the 700-1000 rows can be cached in a hash table and everyone will pull bits from that set, then a combination of the two approaches would work. Pull and cache the big set periodically (invalidate the cache as needed) but only push what a particular client needs via Ajax. That gives you the advantage of a single large query (which is typically more efficient) but only pushing the data the client needs (since the network is usually the biggest bottleneck).</p>
<p>And always do what James Black says...profile. That's the only way to know for sure.</p>
http://stackoverflow.com/questions/1602810/how-can-i-inject-an-object-into-an-wcf-ierrorhandler-implementation-with-castle-w0How can I inject an object into an WCF IErrorHandler implementation with Castle Windsor?Michael Johnson2009-10-21T18:47:52Z2009-10-22T09:20:29Z
<p>I'm developing a set of services using WCF. The application is doing dependency injection with Castle Windsor. I've added an <code>IErrorHandler</code> implementation that is added to services via an attribute. Everything is working thus far. The <code>IErrorHandler</code> object (of a class called <code>FaultHandler</code> is being applied properly and invoked.</p>
<p>Now I'm adding logging. Castle Windsor is set up to inject the logger object (an instance of <code>IOurLogger</code>). This is working. But when I try to add it to <code>FaultHandler</code> my logger is null.</p>
<p>The code for <code>FaultHandler</code> looks something like this:</p>
<pre><code>class FaultHandler : IErrorHandler
{
public IOurLogger logger { get; set; }
public bool HandleError(Exception error)
{
logger.Write("Exception type {0}. Message: {1}", error.GetType(), error.Message);
// Let WCF handle things its way. We only want to log.
return false;
}
public void ProvideFault(Exception error, MessageVersion version, Message fault)
{
}
}
</code></pre>
<p>This throws it's own exception, since <code>logger</code> is null when <code>HandleError()</code> is called.</p>
<p>The logger is being successfully injected into the service itself and is usable there, but for some reason I can't use it in <code>FaultHandler</code>.</p>
<p><strong>Update</strong>: Here is the relevant part of the Windsor configuration file (edited to protect the innocent):</p>
<pre><code><configuration>
<components>
<component id="Logger"
service="Our.Namespace.IOurLogger, Our.Namespace"
type="Our.Namespace.OurLogger, Our.Namespace"
/>
</components>
</configuration>
</code></pre>
http://stackoverflow.com/questions/952263/deep-recursive-array-of-directory-structure-in-php/952656#9526560Answer by Michael Johnson for Deep recursive array of directory structure in PHPMichael Johnson2009-06-04T19:35:50Z2009-06-04T19:35:50Z<p>I've had success with the PEAR File_Find package, specifically <a href="http://pear.php.net/manual/en/package.filesystem.file-find.maptreemultiple.php" rel="nofollow">the mapTreeMultiple() method</a>. Your code would become something like:</p>
<pre><code>require_once 'File/Find.php';
$fileList = File_Find::mapTreeMultiple($dirPath);
</code></pre>
<p>This should return an array similar to what you're asking for.</p>
http://stackoverflow.com/questions/119444/locking-binary-files-using-git-version-control-system/140931#1409316Answer by Michael Johnson for Locking binary files using git version control systemMichael Johnson2008-09-26T17:49:50Z2009-06-04T17:56:39Z<p>In response to Mario's additional concern with changes happening in multiple places on the binaries. So the scenario is Alice and Bob are both making changes to the same binary resource at the same time. They each have their own local repo, cloned from one central remote.</p>
<p>This is indeed a potential problem. So Alice finishes first and pushes to the central <code>alice/update</code> branch. Normally when this happens, Alice would make an announcement that it should be reviewed. Bob sees that and reviews it. He can either (1) incorporate those changes himself into his version (branching from <code>alice/update</code> and making his changes to that) or (2) publish his own changes to <code>bob/update</code>. Again, he makes an announcement.</p>
<p>Now, if Alice pushes to <code>master</code> instead, Bob has a dilemma when he pulls <code>master</code> and tries to merge into his local branch. His conflicts with Alice's. But again, the same procedure can apply, just on different branches. And even if Bob ignores all the warnings and commits over Alice's, it's always possible to pull out Alice's commit to fix things. This becomes simply a communication issue.</p>
<p>Since (AFAIK) the Subversion locks are just advisory, an e-mail or instant message could serve the same purpose. But even if you don't do that, Git lets you fix it.</p>
<p>No, there's no locking mechanism per se. But a locking mechanism tends to just be a substitute for good communication. I believe that's why the Git developers haven't added a locking mechanism.</p>
http://stackoverflow.com/questions/249664/best-practices-to-test-protected-methods-with-phpunit/254468#2544681Answer by Michael Johnson for Best practices to test protected methods with PHPUnitMichael Johnson2008-10-31T18:36:25Z2008-10-31T18:36:25Z<p>I think troelskn is close. I would do this instead:</p>
<pre><code>class ClassToTest
{
protected testThisMethod()
{
// Implement stuff here
}
}
</code></pre>
<p>Then, implement something like this:</p>
<pre><code>class TestClassToTest extends ClassToTest
{
public testThisMethod()
{
return parent::testThisMethod();
}
}
</code></pre>
<p>You then run your tests against TestClassToTest.</p>
<p>It should be possible to automatically generate such extension classes by parsing the code. I wouldn't be surprised if PHPUnit already offers such a mechanism (though I haven't checked).</p>
http://stackoverflow.com/questions/254244/php-strptime-format-bug/254398#2543980Answer by Michael Johnson for PHP strptime format bug?Michael Johnson2008-10-31T18:05:19Z2008-10-31T18:05:19Z<p>Nothing obvious since both versions work fine in PHP 5.2.0. I can't readily check 5.2.6 at the moment, though. That will have to wait until I get home.</p>
http://stackoverflow.com/questions/167697/can-i-map-local-branches-to-remote-branches-with-different-prefixes-in-git5Can I map local branches to remote branches with different prefixes in git?Michael Johnson2008-10-03T16:19:22Z2008-10-06T04:38:30Z
<p>We're working with a semi-centralized git repository here where I work. Each developer has their own subtree in the central git repository, so it looks something like this:</p>
<pre>master
alice/branch1
alice/branch2
bob/branch1
michael/feature
release/1.0
release/1.1</pre>
<p>Working locally in my tree I have <code>topic/feature</code>, which corresponds to <code>michael/feature</code> in the central tree.</p>
<p>I've been using</p>
<pre><code>git push origin topic/feature:michael/feature
</code></pre>
<p>to push my changes to the remote tree. However, this is cumbersome and prone to mistakes (e.g. omitting the developer name, misspelling the feature name, etc.).</p>
<p>I'm looking for a cleaner way to do this. For instance, "<code>git push</code>". I suspect that setting a different remote with a modified fetch refspec will do it, but I'm not sure how exactly to do it. I'm also not sure how to modify my current branch definitions to use the different remote.</p>
<p>My current <code>.git/config</code> looks something like:</p>
<pre>[remote "origin"]
url = git://central/git/project
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "topic/feature"]
remote = origin
merge = refs/heads/michael/project</pre>
<p><strong>Edit:</strong> I'd also like to apply this to pulls/fetches. But does the <code>branch.<name>.merge</code> take care of that?</p>
<p>I'll continue to research this and post here if I find something, but I'm hoping to get some other good ideas.</p>
<p><strong>Edit 2:</strong> I've decided I'll keep local and remote branch names the same. It appears it will be the least work and least prone to future problems.</p>
http://stackoverflow.com/questions/173057/does-anyone-write-really-long-complex-php-apps-and-if-so-what-is-your-problem/173213#1732131Answer by Michael Johnson for Does anyone write really long, complex php apps, and if so, what is your problem domain?Michael Johnson2008-10-06T04:33:37Z2008-10-06T04:33:37Z<p>My company works on educational software. We've recently started doing web-based content delivery, including video and audio, with the backend written entirely in PHP using MySQL. We have two primary apps, one which lives on our servers and one which is delivered to the customer. One clocks in at ~42,000 lines of code (using a physical line count) and one at ~68,000 lines.</p>
<p>We use <a href="http://pear.php.net/" rel="nofollow">PEAR</a> extensively and a recently started project is using the <a href="http://framework.zend.com/" rel="nofollow">Zend Framework</a>.</p>
http://stackoverflow.com/questions/173144/whats-the-best-way-to-only-allow-a-php-file-to-be-included/173197#1731974Answer by Michael Johnson for What's the best way to only allow a PHP file to be included?Michael Johnson2008-10-06T04:23:58Z2008-10-06T04:23:58Z<p>I have long kept everything except directly viewable scripts outside the web root. Then configure PHP to include your script directory in the path. A typical set up would be:</p>
<pre>appdir
include
html</pre>
<p>In the PHP config (either the global PHP config or in a <code>.htaccess</code> file in the <code>html</code> directory) add this:</p>
<pre>include_path = ".:/path/to/appdir/include:/usr/share/php"</pre>
<p>or (for Windows)</p>
<pre>include_path = ".;c:\path\to\appdir\include;c:\php\includes"</pre>
<p>Note that this line is probably already in your <code>php.ini</code> file, but may be commented out allowing the defaults to work. It might also include other paths. Be sure to keep those, as well.</p>
<p>If you are adding it to a .htaccess file, the format is:</p>
<pre>php_value include_path .:/path/to/appdir/include:/usr/share/php</pre>
<p>Finally, you can add the path programatically with something like this:</p>
<pre><code>$parentPath = dirname(dirname(__FILE__));
$ourPath = $parentPath . DIRECTORY_SEPARATOR . 'include';
$includePath = ini_get('include_path');
$includePaths = explode(PATH_SEPARATOR, $includePath);
// Put our path between 'current directory' and rest of search path
if ($includePaths[0] == '.') {
array_shift($includePaths);
}
array_unshift($includePaths, '.', $ourPath);
$includePath = implode(PATH_SEPARATOR, $includePaths);
ini_set('include_path', $includePath);
</code></pre>
<p><em>(Based on working code, but modified, so untested)</em></p>
<p>This should be run in your frontend file (e.g. <code>index.php</code>). I put it in a separate include file which, after modifying the above, can be included with something like <code>#include '../includes/prepPath.inc'</code>.</p>
<p>I've used all the versions I've presented here with success. The particular method used depends on preferences, and how the project will be deployed. In other words, if you can't modify <code>php.ini</code>, you obviously can't use that method</p>
http://stackoverflow.com/questions/171115/standard-connection-libraries-for-mysql-mssql-and-oracle-in-php/171495#1714951Answer by Michael Johnson for Standard connection libraries for MySQL, MSSQL, and Oracle in PHPMichael Johnson2008-10-05T04:36:59Z2008-10-05T04:36:59Z<p>I'm supprised *Zend_Db* hasn't been mentioned yet...</p>
<ul>
<li>PEAR's <strong>MDB2</strong>: very stable, also provides a layer that implements all <em>MDB2</em>-supported features in all databases where it can at least be simulated. I've used this one for years with much success.</li>
<li>Zend Framework's <strong>Zend_Db</strong>: I've just started using the higher levels of Zend's entire DB infrastructure, but it seems to be quite stable and extremely well thought out.</li>
<li>PHP5's native <strong>PDO</strong>: I've not used it at all, but I believe it is the simplest of all of these. In fact, both <em>MDB2</em> and *Zend_Db* can use PDO as an underlying layer.</li>
</ul>
<p>All of the above implement prepare and execute. Of the above, <em>MDB2</em> is the most mature, as it's been around for a long time and is based on <em>DB</em> and <em>MDB</em>. *Zend_Db* appears to be the most well thought out. I know there are others, but I don't have experience or any knowledge about any of them.</p>
http://stackoverflow.com/questions/169889/whats-the-best-process-app-for-automated-deployment-of-php-apps/169938#1699380Answer by Michael Johnson for What's the best process / app for automated deployment of PHP apps?Michael Johnson2008-10-04T07:51:46Z2008-10-04T07:51:46Z<p>I don't know if it works for deploying an app live, but <a href="http://www.phpundercontrol.org/" rel="nofollow">phpUnderControl</a> is a continuous integration suite (which I'm just now starting to look into). If it doesn't support doing deployments natively, it can probably be extended to do them.</p>
http://stackoverflow.com/questions/169889/whats-the-best-process-app-for-automated-deployment-of-php-apps/169935#1699352Answer by Michael Johnson for What's the best process / app for automated deployment of PHP apps?Michael Johnson2008-10-04T07:48:10Z2008-10-04T07:48:10Z<p>I've used a home-grown script for quite some time. It will (based on an application configuration file):</p>
<ol>
<li>Run <code>svn export</code> on the repository based on a tag.</li>
<li>Package the export into a tar or zip file, which includes the tag in the name.</li>
<li>Use <code>scp</code> to copy the package to the appropriate server (QA or release).</li>
<li>Connect to the server with <code>ssh</code> to install the package and run post-install scripts.</li>
</ol>
<p>The application configuration file is part of the project. It can tell the script (at step 2) to strip paths and otherwise process specified files. It also specifies server names and how to handle externals.</p>
<p>I've recently migrated the script to support Git as well as Subversion. I'm also probably going to migrate it to PHP since we're now running in a mixed (Linux and Windows) set up, with Linux now in the minority.</p>
<p>I have plans to automatically call the script with post-commit hooks, but haven't had the need to implement that just yet.</p>
http://stackoverflow.com/questions/125677/php-application-url-routing/127196#127196-1Answer by Michael Johnson for PHP Application URL RoutingMichael Johnson2008-09-24T13:41:34Z2008-09-24T13:41:34Z<p>Zend's MVC framework by default uses a structure like</p>
<pre><code>/router/controller/action/key1/value1/key2/value2
</code></pre>
<p>where <code>router</code> is the router file (mapped via <code>mod_rewrite</code>, <code>controller</code> is from a controller action handler which is defined by a class that derives from <code>Zend_Controller_Action</code> and <code>action</code> references a method in the controller, named <code>actionAction</code>. The key/value pairs can go in any order and are available to the action method as an associative array.</p>
<p>I've used something similar in the past in my own code, and so far it's worked fairly well.</p>
http://stackoverflow.com/questions/126917/php-object-caching/127098#1270981Answer by Michael Johnson for PHP object cachingMichael Johnson2008-09-24T13:24:22Z2008-09-24T13:24:22Z<p>What I always do if I have to be able to write is to ensure I'm not writing anywhere I have PHP code. Typically my directory structure looks something like this (it's varied between projects, but this is the general idea):</p>
<pre><code>project/
app/
html/
index.php
data/
cache/
</code></pre>
<p><code>app</code> is not writable by the web server (neither is index.php, preferably). <code>cache</code> is writable and used for caching things such as parsed templates and objects. <code>data</code> is possibly writable, depending on need. That is, if the users upload data, it goes into data.</p>
<p>The web server gets pointed to <code>project/html</code> and whatever method is convenient is used to set up <code>index.php</code> as the script to run for every page in the project. You can use mod_rewrite in Apache, or content negotiation (my preference but often not possible), or whatever other method you like.</p>
<p>All your real code lives in <code>app</code>, which is not directly accessible by the web server, but should be added to the PHP path.</p>
<p>This has worked quite well for me for several projects. I've even been able to get, for instance, Wikimedia to work with a modified version of this structure.</p>
<p>Oh... and I'd use serialize()/unserialize() to do the caching, although generating PHP code has a certain appeal. All the templating engines I know of generate PHP code to execute, making post-parse very fast.</p>
http://stackoverflow.com/questions/115983/how-do-i-add-an-empty-directory-to-a-git-repository/125729#1257293Answer by Michael Johnson for How do I add an empty directory to a git repositoryMichael Johnson2008-09-24T06:43:41Z2008-09-24T06:43:41Z<p>When you add a .gitignore file, if you are going to put any amount of content in it (that you want git to ignore) you might want to add a single line with just an asterisk (<code>*</code>) to make sure you don't add the ignored content accidentally.</p>
http://stackoverflow.com/questions/119444/locking-binary-files-using-git-version-control-system/125682#1256822Answer by Michael Johnson for Locking binary files using git version control systemMichael Johnson2008-09-24T06:22:07Z2008-09-24T06:22:07Z<p>We've just recently started using Git (used Subversion previously) and I have found a change to workflow that might help with your problem, without the need for locks. It takes advantage of how git is designed and how easy branches are.</p>
<p>Basically, it boils down to pushing to a non-master branch, doing a review of that branch, and then merging into the master branch (or whichever the target branch is).</p>
<p>The way git is "intended" to be used, each developer publishes their own public repository, which they request others to pull from. I've found that Subversion users have trouble with that. So, instead, we push to branch trees in the central repository, with each user having their own branch tree. For instance, a hierarchy like this might work:</p>
<pre><code>users/a/feature1
users/a/feature2
users/b/feature3
teams/d/featurey
</code></pre>
<p>Feel free to use your own structure. Note I'm also showing topic branches, another common git idiom.</p>
<p>Then in a local repo for user a:</p>
<pre><code>feature1
feature2
</code></pre>
<p>And to get it to central server (origin):</p>
<pre><code>git push origin feature1:users/a/feature1
</code></pre>
<p>(this can probably be simplified with configuration changes)</p>
<p>Anyway, once feature1 is reviewed, whomever is responsible (in our case, it's the developer of the feature, you could have a single user responsible for merges to master), does the following:</p>
<pre><code>git checkout master
git pull
git merge users/name/feature1
git push
</code></pre>
<p>The pull does a fetch (pulling any new master changes <em>and</em> the feature branch) and the updates master to what the central repository has. If user a did their job and tracked master properly, there should be no problems with the merge.</p>
<p>All this means that, even if a user or remote team makes a change to a binary resource, it gets reviewed before it gets incorporated into the master branch. And there is a clear delineation (based on process) as to when something goes into the master branch.</p>
<p>You can also programmatically enforce aspects of this using git hooks, but again, I've not worked with these yet, so can't speak on them.</p>
http://stackoverflow.com/questions/120804/difference-between-array-slice-and-array-slice/121087#1210870Answer by Michael Johnson for Difference between Array.slice and Array().sliceMichael Johnson2008-09-23T13:43:31Z2008-09-23T13:43:31Z<p>My guess is that Array is a prototype while Array() is an actual array object. Depending on the JavaScript interpretation, directly calling the prototype method of a builtin object type might work or it might not. I don't believe the spec says it has to work, just that calling it on a instantiated object works.</p>
http://stackoverflow.com/questions/112892/monthly-birthday-sql-query/113062#1130621Answer by Michael Johnson for Monthly Birthday SQL Query.Michael Johnson2008-09-22T03:37:19Z2008-09-22T03:37:19Z<p>I'd actually be tempted to add a birthmonth column, if you expect the list of customers to get very large. So far, the queries I've seen (including the example) will require a full table scan, as you're passing the the data column to a function and comparing that. If the table is of any size, this could take a fair amount of time since no index is going to be able to help.</p>
<p>So, I'd add the birthmonth column (indexed) and just do (with possible MySQLisms):</p>
<pre><code>SELECT name
FROM cust
WHERE birthmonth = MONTH(NOW())
ORDER BY name;
</code></pre>
<p>Of course, it should be easy to set the birthmonth column either with a trigger or with your client code.</p>
http://stackoverflow.com/questions/112964/how-do-i-add-another-run-level-level-7-in-ubuntu/113026#1130260Answer by Michael Johnson for How do I add another run level (level 7) in Ubuntu?Michael Johnson2008-09-22T03:24:12Z2008-09-22T03:24:12Z<p>I'm not sure how to add them (never needed to), but I'm pretty sure <code>/etc/inittab</code> is where you'd add runlevels.</p>
<p>Although I'd have to agree with Zathrus that other runlevels are available but unused. On Debian, only 1 and 2 are used, really. I'm not sure how Ubuntu has it set up, though. However, if you have a specific purpose, it should be possible to do. I've just never had to.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/110253#1102530Answer by Michael Johnson for What was your first home computer?Michael Johnson2008-09-21T04:37:05Z2008-09-21T04:37:05Z<p>Well.... an Apple IIe at school, which prompted me to get a Commodore 64 at home, which was my only computer from 5th grade until sometime in my first year of college (in '90-91). I did BASIC, Assembly, and Pascal on that little beastie.</p>
<p>Incidentally, I had my C64 modded to add a second SID (sound) chip for six-voice stereo music and a 512K memory cartridge (I think... it might have just been 256K) for use with GeOS.</p>
<p>I'd add pictures... but there's already plenty ;)</p>
http://stackoverflow.com/questions/110205/want-to-download-a-git-repository-what-do-i-need-windows-machine/110237#1102370Answer by Michael Johnson for Want to download a Git repository, what do I need (windows machine)?Michael Johnson2008-09-21T04:25:18Z2008-09-21T04:25:18Z<p>To change working directory in GitMSYS's Git Bash you can just use <code>cd</code></p>
<p>cd /path/do/directory</p>
<p>Note that:</p>
<ul>
<li>Directory separators use the forward-slash (<code>/</code>) instead of backslash.</li>
<li>Drives are specified with a lower case letter and no colon, e.g. "<code>C:\stuff</code>" should be represented with "<code>/c/stuff</code>".</li>
<li>Spaces can be escaped with a backslash (<code>\</code>)</li>
<li>Command line completion is your friend. Press TAB at anytime to expand stuff, including Git options, branches, tags, and directories.</li>
</ul>
<p>Also, you can right click in Windows Explorer on a directory and "Git Bash here".</p>
http://stackoverflow.com/questions/109488/is-it-bad-design-to-use-table-tags-when-displaying-forms-in-html/110200#1102000Answer by Michael Johnson for Is it bad design to use table tags when displaying forms in html?Michael Johnson2008-09-21T03:51:49Z2008-09-21T03:51:49Z<p>Most of the answers I've seen here seem appropriate. The only thing I'd add, specifically to apathetic's or Mr. Matt's is to use <code><dl>/<dt>/<dd></code>. I believe these represent the list semantically.</p>
<pre><code><dl>
<dt><label for="nameTextBox">Name:</label></dt>
<dd><input value="input value" type="text" name="fieldName" id="fieldName" /></dd>
</dl>
</code></pre>
<p>You might want to restyle these, but this says semantically what's going on, that is you've got a list of "terms" (<code><dt></code>) and "definitions" (<code><dd></code>), with the term being the label and the definition being the user entered values.</p>
http://stackoverflow.com/questions/103857/what-is-your-favorite-bash-prompt/104088#1040881Answer by Michael Johnson for What is your favorite bash prompt?Michael Johnson2008-09-19T17:54:38Z2008-09-19T17:54:38Z<p>I use a custom version of Glandium.org's <a href="http://glandium.org/blog/?p=170" rel="nofollow">Adding some VCS information in bash prompt</a> prompt. The biggest thing I've done pulled out the VCS collection bits into a separate script.</p>
<p>This prompt is great because it gives me a lot of information I need to know about the current project I'm working on, based in VCS information. I've also customized mine to show command return results, Screen window number, user and machine names, and the current time. It's pretty long (42 characters or more) but I use wide terminals, so it's not a big deal.</p>
<p>For instance, my current prompt (after a bit of editing) looks like:</p>
<pre><code>[0-1]michael@hal(g:proj1[topic/fix-123]app)[10:50]|$
</code></pre>
<p>Which means last command had a result of 0, in screen window 1, as michael logged into hal. Current directory is a Git working directory for proj1, inside branch topic/fix-123 in directory app at 10:50 am. Logged in as a regular user.</p>
<p>BTW, if anyone would like my customized script, please let me know... I'll be happy to put it either here or somewhere else easily accessible.</p>
http://stackoverflow.com/questions/99528/what-is-a-good-php-library-to-handle-file-uploads/99543#995433Answer by Michael Johnson for What is a good PHP library to handle file uploads?Michael Johnson2008-09-19T04:07:37Z2008-09-19T04:07:37Z<p>I personally use <a href="http://pear.php.net/package/HTTP_Upload" rel="nofollow">HTTP_Upload</a> from PEAR. It works pretty well for our purposes (uplaoding media files into a development system and uploading arbitrary files for an educational system)</p>
http://stackoverflow.com/questions/1744984/trouble-using-iauthorizationpolicy-with-wcf-and-castle-windsor/1746536#1746536Comment by Michael Johnson on Trouble using IAuthorizationPolicy with WCF and Castle-WindsorMichael Johnson2009-11-17T09:14:21Z2009-11-17T09:14:21ZThat seems to match what I'm seeing. I wonder though, is there another way to do something similar without having to mark up each method?http://stackoverflow.com/questions/1650784/execute-code-segment-only-if-loop-reaches-its-last-cycle-end-of-loop/1650859#1650859Comment by Michael Johnson on Execute Code Segment only if Loop reaches its last cycle (End of Loop)Michael Johnson2009-10-31T06:06:13Z2009-10-31T06:06:13ZYou could also drop the $aborted flag in GZipp's example and instead use if ($i <= $limit).http://stackoverflow.com/questions/1650784/execute-code-segment-only-if-loop-reaches-its-last-cycle-end-of-loop/1650859#1650859Comment by Michael Johnson on Execute Code Segment only if Loop reaches its last cycle (End of Loop)Michael Johnson2009-10-31T06:05:27Z2009-10-31T06:05:27Z@porg: while that is true for some languages (e.g. C and its descendants), it is not for PHP and some other loosely typed and especially script-like languages (e.g. Bash and other shell scripting languages, Python (I think)). As a rule of thumb, if you don't have to explicitly declare your variables, they survive the entire method.http://stackoverflow.com/questions/1653520/how-can-i-make-the-url-search-engine-friendly/1653525#1653525Comment by Michael Johnson on How can I make the URL search engine friendly?Michael Johnson2009-10-31T05:56:23Z2009-10-31T05:56:23ZBTW, got that from <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html" rel="nofollow">httpd.apache.org/docs/2.2/…</a> as the official reference docs. You should also check out <a href="http://httpd.apache.org/docs/2.2/rewrite/" rel="nofollow">httpd.apache.org/docs/2.2/rewrite</a> for more rewrite-foo.http://stackoverflow.com/questions/1653520/how-can-i-make-the-url-search-engine-friendly/1653525#1653525Comment by Michael Johnson on How can I make the URL search engine friendly?Michael Johnson2009-10-31T05:54:35Z2009-10-31T05:54:35Z!-d means "if it's not a directory"
-f means "if it's a regular file"
So... if the requested filename isn't a directory, but the same path with .php is appended, send the PHP file.http://stackoverflow.com/questions/1648562/what-are-some-good-open-source-ecommerce-applications-with-subscription-supportComment by Michael Johnson on What are some good open source ecommerce applications with subscription support?Michael Johnson2009-10-31T04:04:09Z2009-10-31T04:04:09ZProbably would be better at sibling trilogy site <a href="http://superuser.com" rel="nofollow">superuser.com</a>http://stackoverflow.com/questions/1650939/phpunit-testing-behaves-like-a/1651804#1651804Comment by Michael Johnson on PHPUnit, Testing "Behaves Like A..."Michael Johnson2009-10-31T03:43:24Z2009-10-31T03:43:24ZAgreed. Also, of A and B simply implement the same interface, you could have a base test case C that test cases A and B extend.http://stackoverflow.com/questions/1652964/php-how-to-check-a-script-version/1653013#1653013Comment by Michael Johnson on PHP - How to check a script version Michael Johnson2009-10-31T03:41:37Z2009-10-31T03:41:37ZI'd go for downloading the file only on occasion (every 'x' days, as DOOManiac says). This avoids relying on JavaScript, as, despite what you might think, many clients won't have JavaScript (mobile phones, text browsers (yes, they're still used), automated tools). And only do the download in a scheduled job so it doesn't impact the user.http://stackoverflow.com/questions/1652964/php-how-to-check-a-script-version/1652996#1652996Comment by Michael Johnson on PHP - How to check a script version Michael Johnson2009-10-31T03:36:56Z2009-10-31T03:36:56ZBut that's not why it's going slow.http://stackoverflow.com/questions/1641256/cannot-redeclare-class-mdb2error-in-pear-mdb2-packageComment by Michael Johnson on Cannot redeclare class mdb2_error in Pear MDB2 packageMichael Johnson2009-10-29T03:55:50Z2009-10-29T03:55:50ZYou'll probably need to share the full error message, at least. Also, by your "two PCs" do you mean Windows machines? That is, what is your specific local setup? Finally, I assume you mean a virtual hosting provider when you say "in virtual host". In some cases it's useful to know which one.http://stackoverflow.com/questions/1628699/test-if-a-directory-is-a-sub-directory-of-another-folder/1632513#1632513Comment by Michael Johnson on Test if a directory is a sub directory of another folderMichael Johnson2009-10-29T03:44:41Z2009-10-29T03:44:41ZYou should change !$dir to $dir === false (same with !$folder) to properly check for false. Also, strcasecmp() is the wrong method to use, I believe. strpos($path, $parent_folder) > 0 is the correct comparison I think. The call in the posted code checks if $parent_folder is lexically greater than $path - so strcasecmp("z", "a") would pass. Obviously not what you're looking for. Finally, I wouldn't do a case-insensitive comparison here, unless you're running exclusively on Windows. Otherwise gooddir/path would compare equal to GOODDIR/path, which under Linux would be two different directories.http://stackoverflow.com/questions/1628699/test-if-a-directory-is-a-sub-directory-of-another-folder/1628896#1628896Comment by Michael Johnson on Test if a directory is a sub directory of another folderMichael Johnson2009-10-28T20:38:40Z2009-10-28T20:38:40ZIt should still be possible to use this method. If you set the group sticky bit, the group remains the same for subdirectories. Then, if your administrators are members of that group they can create subdirectories and they are still viable.http://stackoverflow.com/questions/1602810/how-can-i-inject-an-object-into-an-wcf-ierrorhandler-implementation-with-castle-w/1602882#1602882Comment by Michael Johnson on How can I inject an object into an WCF IErrorHandler implementation with Castle Windsor?Michael Johnson2009-10-22T02:45:57Z2009-10-22T02:45:57ZI've updated the question with the relevant part of the config file.http://stackoverflow.com/questions/1602810/how-can-i-inject-an-object-into-an-wcf-ierrorhandler-implementation-with-castle-wComment by Michael Johnson on How can I inject an object into an WCF IErrorHandler implementation with Castle Windsor?Michael Johnson2009-10-22T02:45:15Z2009-10-22T02:45:15ZYes. And as far as I can tell, it's working fine.http://stackoverflow.com/questions/753533/populating-a-filteringselect-datastore-from-an-onchange-event/890848#890848Comment by Michael Johnson on Populating a FilteringSelect datastore from an onChange event.Michael Johnson2009-06-04T17:53:17Z2009-06-04T17:53:17ZActually, all you have to do is set the searchAttr on the control to make it work. You can either add it to the HTML (searchAttr="description") or in the JS (filteringSelect2.searchAttr = "description").