User Don Kirkby - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T15:49:02Zhttp://stackoverflow.com/feeds/user/4794http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1915533/using-subversion-as-a-versioning-engine-within-an-application/1917274#19172743Answer by Don Kirkby for Using subversion as a versioning engine within an applicationDon Kirkby2009-12-16T20:00:56Z2009-12-16T21:53:36Z<p><a href="http://code.google.com/" rel="nofollow">Google Code</a> uses Subversion to manage the versions of a project's wiki pages. Your wiki shows up as a folder in the Subversion repository. There is an open-source clone of Google Code called <a href="http://code.google.com/p/longhouse/" rel="nofollow">Longhouse</a>. From the project description:</p>
<blockquote>
<p>Longhouse employs a unique means of storing project data and making data accessible, storing information in XML format on your organization's Subversion repository. This means that you can edit any project artifacts outside the Longhouse Web UI, commit the modified XML files to your Subversion repository, and have Longhouse automatically take into account your changes.</p>
</blockquote>
<p>Personally, I would be cautious about trying to version a large XML file. I tried it with <a href="http://freemind.sourceforge.net/wiki/index.php/Main%5FPage" rel="nofollow">Freemind</a> mind maps, and the couple of times I had to merge were nightmares. My hunch is that YAML would be a better fit, although changing indentation levels could cause headaches. Maybe just avoiding large files with many levels is the best bet when you need to put data files under version control.</p>
<p><strong>Update:</strong> As Josh Kelley commented, there are several other wiki engines that can use a revision control system (RCS) for data storage. According to <a href="http://www.wikimatrix.org/compare/DokuWiki+MediaWiki+TWiki+TikiWiki-CMS-Groupware+PmWiki+PhpWiki+Confluence+MoinMoin+XWiki+bitweaver+JSPWiki+MindTouch+Foswiki+WackoWiki+TiddlyWiki+BusinessWiki+WikkaWiki+Wikispaces+ScrewTurn-Wiki+Daisy+PBwiki+MoniWiki+PukiWiki+Midgard-Wiki+MojoMojo" rel="nofollow">WikiMatrix</a>, Twiki, PhpWiki, JSPWiki, Foswiki, MoniWiki, and MidgardWiki are the ones in the top 25 that support this feature.</p>
http://stackoverflow.com/questions/1902748/net-dependency-management-and-tagging-branching/1909271#19092710Answer by Don Kirkby for .NET Dependency Management and Tagging/BranchingDon Kirkby2009-12-15T18:06:47Z2009-12-15T18:06:47Z<p>Can you clarify why you don't like branching all four applications at the same time?</p>
<blockquote>
<p>This makes it very hard to branch/tag a single application because you are branching all 4 at the same time</p>
</blockquote>
<p>I usually put all my projects directly under trunk as you are currently doing. Then when I create a release branch or a feature branch, I just ignore the other projects that get carried along. Remember, the copies are cheap, so they're not taking up space on your server.</p>
<p>To be specific, here's how I would lay out the source tree you've described:</p>
<ul>
<li>trunk
<ul>
<li>WPF1</li>
<li>WPF2</li>
<li>ASP.NET 1</li>
<li>ASP.NET 2</li>
<li>lib1</li>
<li>lib2</li>
</ul></li>
<li>branches
<ul>
<li>WPF1 v 1.0
<ul>
<li>WPF1</li>
<li>WPF2</li>
<li>ASP.NET 1</li>
<li>ASP.NET 2</li>
<li>lib1</li>
<li>lib2</li>
</ul></li>
<li>WPF1 v 1.1
<ul>
<li>WPF1</li>
<li>WPF2</li>
<li>ASP.NET 1</li>
<li>ASP.NET 2</li>
<li>lib1</li>
<li>lib2</li>
</ul></li>
<li>lib1 payment plan
<ul>
<li>WPF1</li>
<li>WPF2</li>
<li>ASP.NET 1</li>
<li>ASP.NET 2</li>
<li>lib1</li>
<li>lib2</li>
</ul></li>
</ul></li>
</ul>
http://stackoverflow.com/questions/1903597/how-do-i-automatically-have-the-build-date-inserted-at-design-time/1903701#19037011Answer by Don Kirkby for How do I automatically have the build date inserted at design timeDon Kirkby2009-12-14T21:43:34Z2009-12-14T21:43:34Z<p>I used <a href="http://www.codeproject.com/KB/vb/aboutbox.aspx" rel="nofollow">this about box</a> from codeproject.com. It was actually written by Jeff Atwood way back in 2004. It figures out the compile time by looking at the date stamp on the assembly file, or calculating it from the assembly version. Perhaps you could extract the relevant code from there.</p>
http://stackoverflow.com/questions/1870917/help-with-passing-arguments-to-function/1871069#18710690Answer by Don Kirkby for help with passing arguments to functionDon Kirkby2009-12-09T01:26:39Z2009-12-09T01:26:39Z<p>The CakePHP framework often uses associative arrays to specify a set of options. It will even let you specify either individual parameters or an associative array. See the <a href="http://book.cakephp.org/view/73/Retrieving-Your-Data" rel="nofollow">find methods</a> on the model class as an example.</p>
<p>Here's my attempt at making your function more flexible:</p>
<pre><code><?php
function get_tags_by_criteria(
$gender = '%',
$min_age_of_birth = '%',
$max_age_of_birth = '%',
$country = '%',
$region = '%',
$city = '%',
$tag = '')
{
if (is_array($gender))
{
$options = $gender;
$gender = '%'; // reset to default
extract($options);
}
$msg = "gender=$gender, min_age=$min_age_of_birth, " .
"max_age=$max_age_of_birth, country=$country, region=$region, " .
"city=$city, tag=$tag";
return $msg;
}
?>
<p><?php echo get_tags_by_criteria('M'); ?></p>
<p><?php echo get_tags_by_criteria('M', 10); ?></p>
<p><?php echo get_tags_by_criteria(array(
'country' => 'ca',
'tag' => 'sample')); ?></p>
</code></pre>
http://stackoverflow.com/questions/1869615/how-to-effectively-work-with-devices-over-a-serial-connection/1869844#18698441Answer by Don Kirkby for How to effectively work with devices over a serial connection?Don Kirkby2009-12-08T21:07:16Z2009-12-08T21:07:16Z<p>I work for <a href="http://www.zaber.com/" rel="nofollow">Zaber Technologies</a>, and I built a control library for our precision stepper motor controllers that communicate over a daisy-chained serial connection. I used three layers:</p>
<ol>
<li>The port - this layer is just concerned with the communication protocol. It exposes methods for sending a message, and it converts the message parameters into a byte stream. It also listens on the incoming line, converts the byte stream into a message structure, and raises an event when the complete message has been received.</li>
<li>The device - this layer knows how to send messages to a specific device in the daisy chain and how to filter out responses from other devices in the daisy chain.</li>
<li>The conversation - this layer coordinates requests and responses and lets calling code make a request that will block the thread until a response comes back.</li>
</ol>
<p>Calling code then has the choice of whether to use synchronous requests with the conversation layer, or use asynchronous requests with the device layer.</p>
<p>If you're interested in more details, you can download <a href="http://www.zaber.com/software/ZaberConsole-1.0.41.558.zip" rel="nofollow">the source code</a> or look at the <a href="http://www.zaber.com/wiki/Software/Zaber%5FConsole" rel="nofollow">user documentation</a> that talks about writing scripts against the library.</p>
http://stackoverflow.com/questions/1858150/run-java-code-online/1858178#18581781Answer by Don Kirkby for Run Java Code OnlineDon Kirkby2009-12-07T06:20:03Z2009-12-07T06:26:36Z<p><a href="http://opencode.media.mit.edu/" rel="nofollow">OpenCode</a> appears to be a project at the MIT Media Lab for running Java Code online in a web browser interface. Years ago, I played around a lot at <a href="http://www.topcoder.com/tc" rel="nofollow">TopCoder</a>. It runs a Java Web Start app, though, so you would need a Java run time installed.</p>
http://stackoverflow.com/questions/1848627/type-dictionary/1848669#18486692Answer by Don Kirkby for Type Dictionary?Don Kirkby2009-12-04T18:07:17Z2009-12-04T19:42:13Z<p>You should be able to use a dictionary with a <a href="http://msdn.microsoft.com/en-us/library/ms132072.aspx" rel="nofollow">custom comparer</a> that uses <a href="http://msdn.microsoft.com/en-us/library/system.type.isassignablefrom.aspx" rel="nofollow">Type.IsAssignableFrom</a> to compare the keys.</p>
<p><strong>Update:</strong> As Qwertie pointed out, this doesn't work because you can't implement a repeatable hash code calculation based on a type, its interfaces, and ancestor classes. <a href="http://stackoverflow.com/questions/1848627/type-dictionary/1848882#1848882">His answer</a> provides a possible solution by repeatedly doing hash table look ups for the type, interfaces, and ancestor classes until it finds a match. </p>
<p>The only problem with that solution is that you don't have any way to specify which match to take when there are multiple matches. If you need that flexibility and control, I suggest you consider the <a href="http://en.wikipedia.org/wiki/Chain-of-responsibility%5Fpattern" rel="nofollow">chain-of-responsibility</a> design pattern. Each transformer could be a link in the chain, and it's responsible for determining whether it can be applied to the object. If not, it passes the request to the next link. The order of transformers in the chain determines priority. You lose the speed of a hash table, but you were losing some of that speed anyway because of multiple look ups.</p>
http://stackoverflow.com/questions/1805012/unit-testing-how-to-access-a-text-file/1816348#18163480Answer by Don Kirkby for Unit testing: how to access a text file?Don Kirkby2009-11-29T18:38:39Z2009-11-29T18:38:39Z<p>When I need a chunk of text as part of a unit test and it's more than a line or two, I use an <a href="http://support.microsoft.com/kb/319292" rel="nofollow">embedded resource</a>. It doesn't clutter your test code, because it's a separate text file in the souce code. It gets compiled right into the assembly, so you don't have to worry about copying around a separate file after compilation. Your object under test can accept a TextReader, and you pass in the StreamReader that you get from loading the embedded resource.</p>
http://stackoverflow.com/questions/1811265/how-can-make-all-my-user-control-dependency-values-load-before-they-control-acces/1811281#18112810Answer by Don Kirkby for How can make all my user control dependency values load before they control accesses their values?Don Kirkby2009-11-28T01:47:32Z2009-11-28T01:47:32Z<p>Any way you can do the setup processing in the Load event instead of the property accessors? Then all the needed properties will be set by load time.</p>
http://stackoverflow.com/questions/288047/user-controls-not-showing-up-in-the-toolbox/1792636#17926360Answer by Don Kirkby for User Controls not showing up in the toolboxDon Kirkby2009-11-24T20:14:17Z2009-11-24T20:14:17Z<ol>
<li><p>Build your project to make sure it compiles.</p></li>
<li><p>With the form that you want your user control on, open the toolbox, right click and select "choose items"</p></li>
<li><p>Browse to your .exe or dll that you compiled in step 1.</p></li>
<li><p>make sure that your user control has a tick next to it, press OK.</p></li>
<li><p>Your user control should appear in the toolbox, so drag it onto your form.</p></li>
</ol>
<p>This is adapted from <a href="http://stackoverflow.com/questions/1116311/c-how-to-put-extended-winforms-control-on-toolbox/1116335#1116335">Calanus's answer to a similar question</a>.</p>
http://stackoverflow.com/questions/1712301/can-i-declare-a-character-encoding-when-using-xstreamingelement-to-write-a-large0Can I declare a character encoding when using XStreamingElement to write a large XML file?Don Kirkby2009-11-11T00:51:37Z2009-11-16T22:13:50Z
<p>I'm using XDocument and XElement objects to write a large XML file (currently 8MB). I'd like to switch to XStreamingElement so that I can write the file without having all the data in memory at once. Unfortunately, I need to include an encoding declaration. Can I do that without using an XDocument?</p>
http://stackoverflow.com/questions/1712301/can-i-declare-a-character-encoding-when-using-xstreamingelement-to-write-a-large/1712303#17123032Answer by Don Kirkby for Can I declare a character encoding when using XStreamingElement to write a large XML file?Don Kirkby2009-11-11T00:52:04Z2009-11-16T22:13:50Z<p>The trick is to use XmlWriterSettings to specify the encoding when you create the XmlWriter. It generates the declaration automatically.</p>
<pre><code>var doc =
new XStreamingElement("openerp",
LoadReferenceData(),
LoadAccounts(),
LoadPartners(),
LoadComponents());
var settings = new XmlWriterSettings();
settings.Indent = true;
settings.Encoding = Encoding.GetEncoding("latin1");
using (var writer = XmlWriter.Create(
outputFilename.Text,
settings))
{
doc.WriteTo(writer);
}
</code></pre>
<p>Each of the Load methods returns IEnumerable and uses <code>yield return</code> to generate XML as it loops through a database query result.</p>
http://stackoverflow.com/questions/1702905/tutorial-on-generating-msi/1703105#17031050Answer by Don Kirkby for tutorial on generating MSIDon Kirkby2009-11-09T19:13:42Z2009-11-09T19:13:42Z<p>Visual Studio supports several types of <a href="http://msdn.microsoft.com/en-us/library/wx3b589t.aspx" rel="nofollow">deployment projects</a>. The express versions of Visual Studio also have some support, but it was very limited when I looked into it.</p>
http://stackoverflow.com/questions/1675400/xml-timezone-daylight-saving/1675433#16754331Answer by Don Kirkby for XML Timezone - Daylight SavingDon Kirkby2009-11-04T17:35:00Z2009-11-04T17:35:00Z<p>Check out the <a href="http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx" rel="nofollow">TimeZoneInfo class</a>. It lets you convert between time zones, and determine the local timezone using the <code>TimeZoneInfo.Local</code> property.</p>
http://stackoverflow.com/questions/550887/testing-smtp-with-net/1664211#16642111Answer by Don Kirkby for Testing SMTP with .netDon Kirkby2009-11-02T22:44:32Z2009-11-02T22:44:32Z<p>The <a href="http://smtp4dev.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28858" rel="nofollow">smtp4dev</a> project is another dummy SMTP server. I like it because it has a nice, simple UI that logs the messages and lets you view the contents of recent messages. Written in C# with an MSI installer. Source code is available.</p>
http://stackoverflow.com/questions/550887/testing-smtp-with-net/1664193#16641930Answer by Don Kirkby for Testing SMTP with .netDon Kirkby2009-11-02T22:40:42Z2009-11-02T22:40:42Z<p>The <a href="http://www.aboutmyip.com/AboutMyXApp/DevNullSmtp.jsp" rel="nofollow">DevNull SMTP server</a> logs all the gory details about communication between the client and the SMTP server. Looks like it would be useful if you were trying to diagnose why your sending code wasn't working.</p>
<p>It's written in Java and deploys as an executable jar. Source code doesn't seem to be available.</p>
http://stackoverflow.com/questions/1651444/modifying-parameter-values-before-sending-to-base-constructor/1651467#16514673Answer by Don Kirkby for Modifying parameter values before sending to Base constructor?Don Kirkby2009-10-30T18:14:49Z2009-10-30T18:14:49Z<p>I expect you could call static methods in the parameter list of the base class constructor.</p>
<pre><code>public class DerivedClass : BaseClass
{
public DerivedClass(int i)
: base(ChooseInputType(i))
{
}
private static InputType ChooseInputType(int i)
{
// Logic
return InputType.Number;
}
}
</code></pre>
http://stackoverflow.com/questions/1639199/xslt-remove-xmlns-attribute/1645751#16457510Answer by Don Kirkby for XSLT remove xmlns attributeDon Kirkby2009-10-29T18:42:12Z2009-10-29T18:42:12Z<p>I think you can remove the namespace declarations as described in <a href="http://www.xml.com/pub/a/2001/04/04/trxml/index.html" rel="nofollow">this article</a>. It looks like you might have to declare a prefix for the namespace in your stylesheet before adding it to the exclude-result-prefixes attribute.</p>
<blockquote>
<p>You can prevent this from happening with the xsl:stylesheet element's exclude-result-prefixes attribute. This attribute's name can be confusing, because the namespace prefixes will still show up in the result tree. It doesn't mean "exclude the prefixes in the result"; it means "exclude the namespaces with these prefixes".</p>
</blockquote>
http://stackoverflow.com/questions/86096/how-do-i-disable-a-button-cell-in-a-winforms-datagrid1How do I disable a button cell in a WinForms DataGrid?Don Kirkby2008-09-17T18:20:30Z2009-10-29T14:55:57Z
<p>I have a WinForms application with a DataGridView control and a column of DataGridViewButtonCell cells within that. When I click on one of these buttons, it starts a background task, and I'd like to disable the buttons until that task completes.</p>
<p>I can disable the DataGridView control, but it gives no visual indication that the buttons are disabled. I want the user to see that the buttons are disabled, and to notice that the task has finished when the buttons are enabled again.</p>
<p>Bonus points for a method that allows me to disable the buttons individually, so I can leave one of the buttons enabled while the task runs. (Note that I can't actually give out bonus points.)</p>
http://stackoverflow.com/questions/699138/any-support-for-optimistic-locking-in-cakephp1Any support for optimistic locking in CakePHP?Don Kirkby2009-03-30T21:37:58Z2009-10-27T20:44:04Z
<p>I'm just starting out with CakePHP, and I can't find any support for implementing an optimistic locking scheme. The closest I could find was a comment on this <a href="http://debuggable.com/posts/how-to-do-group-by-conditions-in-model-find%28%29-calls:483fdc1c-8454-4593-a55e-37244834cda3" rel="nofollow">CakePHP blog post</a> saying that it wasn't supported in June 2008.</p>
<p>Does anyone know if that has changed, or if someone has published an extension or a tutorial on how to implement it yourself?</p>
<p>For a description of optimistic locking, see <a href="http://stackoverflow.com/questions/129329/optimistic-vs-pessimistic-locking/129397#129397">this answer</a>.</p>
http://stackoverflow.com/questions/1633393/how-do-i-remove-a-file-from-svn-versioning-without-deleting-it-from-every-working/1633420#16334202Answer by Don Kirkby for How do I remove a file from svn versioning without deleting it from every working copy?Don Kirkby2009-10-27T20:21:09Z2009-10-27T20:21:09Z<p>What I usually do in similar situations is to rename the repository copy of log4j.properties to log4j.properties.template or log4j.properties.default, and I add log4j.properties to the svn:ignore list. Then every user has to copy that file to log4j.properties in their working copy. To make it a little more friendly, you can put a check in your build script that prints out a reminder message if it doesn't find the local copy.</p>
http://stackoverflow.com/questions/1627807/stand-alone-build-system-for-visual-studio-projects/1627878#16278780Answer by Don Kirkby for Stand-alone build system for Visual Studio projectsDon Kirkby2009-10-26T23:18:43Z2009-10-26T23:18:43Z<p>We use Nant to drive msbuild. If you're worried about different versions of the framework, particularly service packs, use FxCop to check that you're not letting unexpected dependencies creep in. Details are in <a href="http://stackoverflow.com/questions/233211/detect-net-framework-3-5-sp1-dependency-cmp-3-5-w-o-sp1/675306#675306">this answer</a>.</p>
http://stackoverflow.com/questions/1563123/what-is-the-best-way-to-debug-a-windows-service-program-in-visual-studio-2008/1563214#15632141Answer by Don Kirkby for What is the Best Way to Debug a Windows Service program in Visual Studio 2008Don Kirkby2009-10-13T22:06:12Z2009-10-13T22:06:12Z<p>I think fat cat's suggestion of attaching your debugger to the service process sounds right. If that still doesn't work, try using <a href="http://blogs.msdn.com/csharpfaq/archive/2006/10/09/How-do-I-send-out-simple-debug-messages-to-help-with-my-debugging%5F3F00%5F.aspx" rel="nofollow">Debug.WriteLine</a> and <a href="http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx" rel="nofollow">DebugView</a>.</p>
http://stackoverflow.com/questions/1562913/timer-on-user-form-in-excel-vba0Timer on user form in Excel VBADon Kirkby2009-10-13T21:11:08Z2009-10-13T21:51:41Z
<p>I've got some old Excel VBA code where I want to run a task at regular intervals. If I were using VB6, I would have used a timer control.</p>
<p>I found the <a href="http://msdn.microsoft.com/en-us/library/aa195809%28office.11%29.aspx" rel="nofollow">Application.OnTime()</a> method, and it works well for code that's running in an Excel worksheet, but I can't make it work in a user form. The method never gets called.</p>
<p>How can I make Application.OnTime() call a method in a user form, or are there other ways to schedule code to run in VBA?</p>
http://stackoverflow.com/questions/1562913/timer-on-user-form-in-excel-vba/1562921#15629210Answer by Don Kirkby for Timer on user form in Excel VBADon Kirkby2009-10-13T21:13:06Z2009-10-13T21:51:41Z<p>I found a workaround for this. If you write a method in a module that just calls a method in your user form, then you can schedule the module method using Application.OnTime().</p>
<p>Kind of a kludge, but it'll do unless somebody has a better suggestion.</p>
<p>Here's an example:</p>
<pre><code>''//Here's the code that goes in the user form
Dim nextReadTime As Date
Private Sub UserForm_Initialize()
ScheduleNextRead
End Sub
Private Sub ScheduleNextRead()
nextReadTime = Now + TimeValue("00:00:01")
Application.OnTime nextReadTime, "modUserformTimer.ReadInput"
End Sub
Public Sub ReadInput()
''//... Do the actual reading
End Sub
''// Now the code in the modUserformTimer module
Public Sub ReadInput()
DemoForm.ReadInput
End Sub
</code></pre>
http://stackoverflow.com/questions/1209087/how-to-resolve-accidentally-deleting-renaming-or-moving-without-using-the-svn-c/1562059#15620590Answer by Don Kirkby for How to resolve Accidentally Deleting, Renaming, or Moving without Using the SVN CommandsDon Kirkby2009-10-13T18:23:58Z2009-10-13T18:23:58Z<p>Until recently, I also used the techniques that <a href="http://stackoverflow.com/questions/1209087/how-to-resolve-accidentally-deleting-renaming-or-moving-without-using-the-svn-c/1209119#1209119">Nick mentioned</a>. However, I just stumbled across a much simpler way to tell TortoiseSVN about a file rename.</p>
<p>To tell TortoiseSVN that a file was renamed, right click the folder that contains it and choose Commit... or Check for modifications. You will see the old file name with status "missing" and the new file name with status "unversioned". Use control-click to select those two file names and nothing else, then right click and choose Repair move. Bam! You're done. See the <a href="http://tortoisesvn.net/node/351" rel="nofollow">TortoiseSVN</a> web site for all the details.</p>
<p>As Nick said, you can deal with deleted files in those same dialog boxes. Right click on the missing file and either choose Delete to tell TortoiseSVN you really want to delete it, or choose Revert to bring it back.</p>
http://stackoverflow.com/questions/1536334/running-nunit-tests-in-a-multithreaded-fashion/1546658#15466580Answer by Don Kirkby for Running nUnit tests in a multithreaded fashionDon Kirkby2009-10-10T00:23:57Z2009-10-10T00:23:57Z<p>I'm working on a .NET port of the <a href="http://www.cs.umd.edu/projects/PL/multithreadedtc/overview.html" rel="nofollow">MultithreadedTC Java library</a>. My port is called <a href="http://code.google.com/p/donkirkby/source/browse/#svn/trunk/TickingTest" rel="nofollow">Ticking Test</a>, and the source code is published on Google Code.</p>
<p>TickingTest wasn't originally intended to do what you're attempting, but it might work. It lets you write a test class with several methods marked with a TestThread attribute. Each thread can wait for a certain tick count to arrive, or assert what it thinks the current tick count should be. When all current threads are blocked, a coordinator thread advances the tick count and wakes up any threads that are waiting for the next tick count. If you're interested, check out the <a href="http://www.cs.umd.edu/projects/PL/multithreadedtc/overview.html" rel="nofollow">MultithreadedTC overview</a> for examples. MultithreadedTC was written by some of the same people that wrote <a href="http://findbugs.sourceforge.net/" rel="nofollow">FindBugs</a>.</p>
<p>I've used my port successfully on a small project. The major missing feature is that I have no way to track newly created threads during the test.</p>
http://stackoverflow.com/questions/1489981/specifying-order-parameter-through-a-belongsto-table-in-cakephp0Specifying order parameter through a belongsTo table in CakePHPDon Kirkby2009-09-29T00:20:05Z2009-10-06T22:43:55Z
<p>Let's say I've got two tables: <code>cities</code> and <code>countries</code>. The <code>City</code> model <code>belongsTo</code> a <code>Country</code>. Now, when I display lists of cities, I want them to be ordered by country name and then city name.</p>
<p>I tried this in my <code>City</code> model class:</p>
<pre><code>var $order = array('Country.name' => 'asc', 'City.name' => 'asc');
</code></pre>
<p>The sort order works correctly for my index page, but I get errors in several places where the model has been asked not to load associated models. Do I have to change the order parameters when I change which tables are loaded, or is there a smarter way to do this?</p>
<p>For now, I think I'll make the default order definition be <code>City.name</code> and then just change it to <code>Country.name</code> and <code>City.name</code> on the index page. That way it's safe by default, and I shouldn't get unexpected errors.</p>
<p><strong>Update:</strong> As <a href="http://stackoverflow.com/questions/1489981/specifying-order-parameter-through-a-belongsto-table-in-cakephp/1492327#1492327">Rob suggested</a> you can specify order parameters in the model associations. The query builder applies them like this:</p>
<ol>
<li>If there is an <code>order</code> field on the main model, apply it first.</li>
<li>Walk through all the associated models in the order they appear. If the association includes an <code>order</code> parameter, add it to the end of the list.</li>
</ol>
<p>To implement my example, I would do it like this:</p>
<pre><code>class City extends AppModel {
var $belongsTo = array(
'Country' => array(
'order' => array('Country.name' => 'asc', 'City.name' => 'asc')));
}
</code></pre>
<p>One caution: if you turn off <code>City.recursive</code>, then the cities will be unsorted. However, I'm usually retrieving only one record when I've turned off recursion.</p>
http://stackoverflow.com/questions/1479961/can-i-add-a-condition-to-cakephps-update-statement0Can I add a condition to CakePHP's update statement?Don Kirkby2009-09-25T23:26:59Z2009-09-26T05:23:41Z
<p>Since there doesn't seem to be any support for <a href="http://stackoverflow.com/questions/699138/any-support-for-optimistic-locking-in-cakephp">optimistic locking in CakePHP</a>, I'm taking a stab at building a behaviour that implements it. After a little research into behaviours, I think I could run a query in the beforeSave event to check that the version field hasn't changed. </p>
<p>However, I'd rather implement the check by changing the update statement's WHERE clause from </p>
<pre><code>WHERE id = ?
</code></pre>
<p>to</p>
<pre><code>WHERE id = ? and version = ?
</code></pre>
<p>This way I don't have to worry about other requests changing the database record between the time I read the version and the time I execute the update. It also means I can do one database call instead of two.</p>
<p>I can see that the <code>DboSource.update()</code> method supports conditions, but <code>Model.save()</code> never passes any conditions to it.</p>
<p>It seems like I have a couple of options:</p>
<ol>
<li>Do the check in <code>beforeSave()</code> and live with the fact that it's not bulletproof.</li>
<li>Hack my local copy of CakePHP to check for a <code>conditions</code> key in the <code>options</code> array of <code>Model.save()</code> and pass it along to the <code>DboSource.update()</code> method.</li>
</ol>
<p>Right now, I'm leaning in favour of the second option, but that means I can't share my behaviour with other users unless they apply my hack to their framework.</p>
<p>Have I missed an easier option?</p>
http://stackoverflow.com/questions/1479544/transforming-xml-with-ant/1479716#14797163Answer by Don Kirkby for Transforming XML with antDon Kirkby2009-09-25T21:39:51Z2009-09-25T21:39:51Z<p>Have you looked at the <a href="http://ant.apache.org/manual/CoreTasks/style.html" rel="nofollow">XSLT</a> task? It sounds like you particularly want to use a DOM manipulation style, but I thought I should mention it just in case you're open to transformations instead of DOM manipulation. If you're unfamiliar with XSLT, there's a good introduction at <a href="http://w3schools.com/xsl/default.asp" rel="nofollow">w3schools.com</a></p>
http://stackoverflow.com/questions/1902748/net-dependency-management-and-tagging-branching/1909271#1909271Comment by Don Kirkby on .NET Dependency Management and Tagging/BranchingDon Kirkby2009-12-16T01:24:33Z2009-12-16T01:24:33ZIn your situation, I would check out trunk or a single branch, whatever I'm working on. Then use switch to work on another branch. I might check out two working copies so I can leave one on my main work branch and use the other to switch around when doing small jobs on other branches.
Something else to consider is shallow checkouts: check out the whole repository from the root, but don't recurse that checkout down to the branches until you need them. I find this more annoying because getting rid of a branch from your checkout is a hassle.http://stackoverflow.com/questions/1848627/type-dictionary/1848669#1848669Comment by Don Kirkby on Type Dictionary?Don Kirkby2009-12-04T19:46:02Z2009-12-04T19:46:02ZI clarified the chain of responsibility a bit. Each transformer becomes a link in the chain. It's up to you whether you make the calling code implement the entire link class or just pass in a function and a type to be held by your own link class in the chain. By the way, if the ambiguity isn't a problem, I think Qwertie's suggestion is simpler.http://stackoverflow.com/questions/1848627/type-dictionary/1848669#1848669Comment by Don Kirkby on Type Dictionary?Don Kirkby2009-12-04T18:56:08Z2009-12-04T18:56:08ZYou're right, I didn't think that through.http://stackoverflow.com/questions/1811265/how-can-make-all-my-user-control-dependency-values-load-before-they-control-acces/1811281#1811281Comment by Don Kirkby on How can make all my user control dependency values load before they control accesses their values?Don Kirkby2009-11-28T01:49:18Z2009-11-28T01:49:18ZSorry, I just noticed you're asking about WPF. I don't know if it has the same kind of events.http://stackoverflow.com/questions/1809958/hide-stderr-output-in-unit-tests/1809977#1809977Comment by Don Kirkby on Hide stderr output in unit testsDon Kirkby2009-11-27T17:54:31Z2009-11-27T17:54:31ZThis also has the advantage that you could check the output in your test if you wanted to.http://stackoverflow.com/questions/1757529/advantage-of-creating-a-temporary-buffer-when-iterating-over-and-modifying-a-coll/1757548#1757548Comment by Don Kirkby on advantage of creating a temporary buffer when iterating over and modifying a collection in javaDon Kirkby2009-11-18T17:22:01Z2009-11-18T17:22:01ZI think there's some confusion here. The method is iterating over sandwichType.getIngredients() and modifying availableIngredients. Perhaps an earlier version was iterating and modifying the same collection, but I don't think it's necessary here.http://stackoverflow.com/questions/1349491/how-can-i-split-an-ienumerablestring-into-groups-of-ienumerablestring/1349503#1349503Comment by Don Kirkby on How can I split an IEnumerable<String> into groups of IEnumerable<string>Don Kirkby2009-11-14T00:27:34Z2009-11-14T00:27:34ZDoes the GroupBy have to iterate the whole sequence before you get any results, or do you still get deferred execution here?http://stackoverflow.com/questions/1702923/regex-for-four-digit-numbers-or-default/1702938#1702938Comment by Don Kirkby on regex for four-digit numbers (or "default")Don Kirkby2009-11-09T19:05:26Z2009-11-09T19:05:26ZWorks for me at this regex test page: <a href="http://www.regular-expressions.info/javascriptexample.html" rel="nofollow">regular-expressions.info/javascriptexample.html/…</a> (Note: I had to remove the slashes at the beginning and the end.) Could there be some other reason that things aren't working for you? Namespace problems, perhaps?http://stackoverflow.com/questions/1689530/how-useful-is-cs-operator/1689560#1689560Comment by Don Kirkby on How useful is C#'s ?? operator?Don Kirkby2009-11-06T19:43:03Z2009-11-06T19:43:03Z@Dan, if you care whether the object exists or not, then check someObject == null. If you just want to display something readable to the user, then use SomeType.DefaultObject. FYI, this refactoring is called Introduce Null Object.http://stackoverflow.com/questions/1675400/xml-timezone-daylight-saving/1675433#1675433Comment by Don Kirkby on XML Timezone - Daylight SavingDon Kirkby2009-11-04T17:50:32Z2009-11-04T17:50:32ZI think daylight saving is a separate time zone from standard, and there's a method that lists all the time zones your system knows about. You'll probably find EST and EDT as two of the time zones in the list. TimeZoneInfo.Local should just return whichever one your system is currently set to. If you want a specific time zone, there's probably another method that will look it up based on the code.http://stackoverflow.com/questions/550887/testing-smtp-with-net/550902#550902Comment by Don Kirkby on Testing SMTP with .netDon Kirkby2009-11-02T22:47:26Z2009-11-02T22:47:26ZDumbster lets your unit test start the SMTP service, test some sending code, and then make assertions about how many e-mails were sent, what their contents were, and so on.http://stackoverflow.com/questions/333056/regarding-passing-many-parameters/333358#333358Comment by Don Kirkby on Regarding Passing Many Parameters.Don Kirkby2009-10-30T17:38:06Z2009-10-30T17:38:06ZDon't forget that in more recent versions of C# you can save some typing by using read-only automatic properties like this: public string UserName { get; private set; }http://stackoverflow.com/questions/699138/any-support-for-optimistic-locking-in-cakephp/1603065#1603065Comment by Don Kirkby on Any support for optimistic locking in CakePHP?Don Kirkby2009-10-27T20:49:09Z2009-10-27T20:49:09ZThanks for the tip. I added a link to the book for others to follow. The book preview is actually missing the two pages from chapter 10 that talk about optimistic locking, but you can download the source code. I think I'll use some features like the way they use validation errors, but they seem to be updating the lock value on read, not on write. That seems wrong to me.http://stackoverflow.com/questions/86096/how-do-i-disable-a-button-cell-in-a-winforms-datagrid/86166#86166Comment by Don Kirkby on How do I disable a button cell in a WinForms DataGrid?Don Kirkby2009-10-26T19:20:08Z2009-10-26T19:20:08ZLink is now broken.http://stackoverflow.com/questions/1489981/specifying-order-parameter-through-a-belongsto-table-in-cakephp/1528486#1528486Comment by Don Kirkby on Specifying order parameter through a belongsTo table in CakePHPDon Kirkby2009-10-07T19:35:51Z2009-10-07T19:35:51ZIn my testing, the $order field on the City model is applied before any order options in the associated models. In this case, I think it would order by City.name, Country.name. Not what I want, unfortunately.