User ahsteele - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:26:30Zhttp://stackoverflow.com/feeds/user/61654http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1912332/using-wcf-to-consume-service-and-receieving-varying-errors-depending-on-binding-c0Using WCF to consume service and receieving varying errors depending on binding configurationahsteele2009-12-16T04:41:38Z2009-12-22T00:36:08Z
<p>I am attempting to consume an intranet web service with WCF. I added reference to the service via the <em>Add Service Reference</em> feature in VS2008. In doing so I was prompted for network credentials to access the service which I provided and the service reference was added.</p>
<p>I then wrote some code that I would expect to fail as it doesn't pass credentials along with the call of the service:</p>
<pre><code>FooServiceClient proxy = new FooServiceClient();
bool isValid = proxy.ValidateBar(baz);
</code></pre>
<p>When I use this code I receieve the exception:<br><em>The HTTP request is unauthorized with client authentication scheme 'Negotiate'.<br>The authentication header received from the server was 'Basic realm="Kerberos"'.</em><br>Which is the same error I receieve when using either of the two code examples below.</p>
<pre><code>FooServiceClient proxy = new FooServiceClient();
proxy.ClientCredentials.UserName.UserName = "USERNAME";
proxy.ClientCredentials.UserName.Password = "PASSWORD";
bool isValid = proxy.ValidateBar(baz);
</code></pre>
<p>or</p>
<pre><code>FooServiceClient proxy = new FooServiceClient();
NetworkCredential creds = new NetworkCredential("USERNAME", "PASSWORD");
proxy.ClientCredentials.Windows.AllowedImpersonationLevel =
TokenImpersonationLevel.Identification;
proxy.ClientCredentials.Windows.AllowNtlm = false;
proxy.ClientCredentials.Windows.ClientCredential = creds;
bool isValid = proxy.ValidateBar(baz);
</code></pre>
<p>My gut tells me that I have the security mode configured incorrectly. According to the server manager the end point that I am attempting to bind to is looking for a Basic Http Credential via SSL. Which after reading about <a href="http://msdn.microsoft.com/en-us/library/bb226322%28BTS.10%29.aspx" rel="nofollow">WCF-BasicHttp Transport Properties</a> lead me to believe that I should use this configuration:</p>
<pre><code><security mode="Transport">
<transport clientCredentialType="Windows" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</code></pre>
<p>Unfortunately, I continued to receive the same error.</p>
<p>Again, I am sure my troubles have to do with a configuration issue on my part as I've previously consumed this service in other projects with the outdated <em>Add Web Reference</em>.</p>
http://stackoverflow.com/questions/1912332/using-wcf-to-consume-service-and-receieving-varying-errors-depending-on-binding-c/1943530#19435300Answer by ahsteele for Using WCF to consume service and receieving varying errors depending on binding configurationahsteele2009-12-22T00:36:08Z2009-12-22T00:36:08Z<p>The below WCF <em>binding configuration</em> ended up being the solution.</p>
<pre><code><security mode="Transport">
<transport clientCredentialType="Basic" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</code></pre>
http://stackoverflow.com/questions/1890178/limit-removeall-to-a-certain-number-of-objects0Limit RemoveAll to a certain number of objectsahsteele2009-12-11T19:00:47Z2009-12-11T19:28:14Z
<p>I am working with a <code>List<T></code> which contains both parent and children objects. In this list children objects are aware of their related parent object and vice versa. Using this list I am trying to implement a business rule where up to 4 children objects will be removed from the list when their parent is of a certain type. Put differently if a parent of this type has 20 children 4 of them should be removed from the list.</p>
<p>The code I have outlined here will <code>RemoveAll</code> of the children objects that meet the condition. This is expected but what I'd like to do is limit the <code>RemoveAll</code> to removing only 4 children. Is there a means to do this with <code>RemoveAll</code> or is there another method I should be using?</p>
<pre><code>myList.RemoveaAll(item =>
item.Child && "Foo".Equals(item.Parent.SpecialType));
</code></pre>
http://stackoverflow.com/questions/1869908/efficent-way-of-retrieveing-httpwebresponse-and-putting-it-in-xdocument0Efficent way of retrieveing HttpWebResponse and putting it in XDocumentahsteele2009-12-08T21:17:29Z2009-12-08T22:21:59Z
<p>There is a local service from which I need to consume a generated XML Document Stream. Though the end point is not a REST service per se. I wanted to be sure the method I've outlined below is the most efficient way of getting the response returned into an <code>XDocument</code>.</p>
<pre><code>Uri requestUri = null;
Uri.TryCreate(String.Format(SearchAddress, filter),
UriKind.Absolute, out requestUri);
NetworkCredential nc =
new NetworkCredential("Login", "Password");
CredentialCache cCache = new CredentialCache();
cCache.Add(requestUri, "Basic", nc);
HttpWebRequest request =
(HttpWebRequest)HttpWebRequest.Create(requestUri);
request.Credentials = cCache;
request.PreAuthenticate = true;
request.Method = WebRequestMethods.Http.Get;
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
XDocument xDoc =
XDocument.Load(new StreamReader(response.GetResponseStream()));
</code></pre>
http://stackoverflow.com/questions/1869597/jquery-hover-and-fadeto-effect-is-slow-in-ie-8/1870054#18700540Answer by ahsteele for jQuery hover and fadeTo effect is slow in IE 8ahsteele2009-12-08T21:43:09Z2009-12-08T21:43:09Z<p>I have found that jQuery's animation effects have issues in all versions of IE when an element has a CSS <code>position</code> attribute applied to it. Typically wrapping the element in a div without a <code>position </code> attribute applied will fix the issue. More information can be found <a href="http://www.ndoherty.biz/2007/09/jquery-slidetoggle-and-internet-explorer/" rel="nofollow">in jQuery slideToggle and Internet Explorer</a>.</p>
http://stackoverflow.com/questions/1862053/jquery-set-value-only-if-empty0jQuery set value only if emptyahsteele2009-12-07T18:47:24Z2009-12-07T19:07:26Z
<p>I am utilizing a modal for setting a default value for a series of text box fields. However, I only want to set the field to the default value if no value already exists. Is there a way to do that with a jQuery selector?</p>
<p><strong>Current Code</strong></p>
<pre><code>var fooVal = $('#cboxLoadedContent').find('#SetFoo').val();
var barVal = $('#cboxLoadedContent').find('#SetBar').val();
$('.foo').val(fooVal);
$('.bar').val(barVal);
</code></pre>
http://stackoverflow.com/questions/1433773/should-an-intranet-web-application-utilize-a-cdn1Should an intranet web application utilize a CDNahsteele2009-09-16T15:37:35Z2009-12-04T21:52:15Z
<p>With the <a href="http://weblogs.asp.net/scottgu/archive/2009/09/15/announcing-the-microsoft-ajax-cdn.aspx" rel="nofollow">Announcement of the Microsoft AJAX CDN</a> a debate arouse this morning about whether utilizing a public CDN for common libraries was a good idea for intranet applications. I can see both sides of the argument but without revealing too much of our discussion I wanted to put forth the topic on Stack Overflow to see other's opinions.</p>
http://stackoverflow.com/questions/1842069/remove-row-from-one-table-and-add-it-to-another-with-jquery0Remove row from one table and add it to another with jQueryahsteele2009-12-03T18:52:08Z2009-12-03T19:03:11Z
<p>I am trying to remove a row from one table and add it to another with jQuery. I've examined <a href="http://stackoverflow.com/questions/702551/moving-table-row-from-one-table-to-the-other-using-jquery">this similar Stack Overflow post</a> and feel like I am doing roughly the same thing but am obviously missing something as what I am doing is not working. I know I've got the right row as the remove is working but the row is not being added to the new table.</p>
<p>jQuery</p>
<pre><code>var row = $($.fn.colorbox.element()).parents('tr');
row.fadeOut(1000, function() {
$('#NewTableBody').append(row.remove());
});
</code></pre>
<p>Table Body</p>
<pre><code><tbody id="NewTableBody">
</code></pre>
http://stackoverflow.com/questions/1822750/return-an-empty-collection-when-linq-where-returns-nothing4Return an empty collection when Linq where returns nothingahsteele2009-11-30T22:10:24Z2009-12-01T07:26:37Z
<p>I am using the below statement with the intent of getting all of the machine objects from the <code>MachineList</code> collection (type IEnumerable) that have a <code>MachineStatus</code> of <em>i</em>. The <code>MachineList</code> collection will not always contain machines with a status of <em>i</em>.</p>
<p>At times when no machines have a <code>MachineStatus</code> of <em>i</em> I'd like to return an empty collection. My call to <code>ActiveMachines</code> (which is used first) works but <code>InactiveMachines</code> does not.</p>
<pre><code>public IEnumerable<Machine> ActiveMachines
{
get
{
return Customer.MachineList
.Where(m => m.MachineStatus == "a");
}
}
public IEnumerable<Machine> InactiveMachines
{
get
{
return Customer.MachineList
.Where(m => m.MachineStatus == "i");
}
}
</code></pre>
<p><strong>Edit</strong></p>
<p>Upon further examination it appears that any enumeration of <code>MachineList</code> will cause subsequent enumerations of <code>MachineList</code> to throw an exeception: <code>Object reference not set to an instance of an object</code>.</p>
<p>Therefore, it doesn't matter if a call is made to <code>ActiveMachines</code> or <code>InactiveMachines</code> as its an issue with the <code>MachineList</code> collection. This is especially troubling because I can break calls to <code>MachineList</code> simply by enumerating it in a Watch before it is called in code. At its lowest level <code>MachineList</code> implements <code>NHibernate.IQuery</code> being returned as an <code>IEnumerable</code>. What's causing <code>MachineList</code> to lose its contents after an initial enumeration?</p>
http://stackoverflow.com/questions/1785038/state-of-ruby-on-rails-community-and-framework4State of Ruby on Rails Community and Frameworkahsteele2009-11-23T18:24:34Z2009-11-24T09:37:08Z
<p>As an exercise I have spent the past 2 months learning Ruby on Rails. In learning RoR I relied heavily upon <a href="http://www.pragprog.com/titles/rails3/agile-web-development-with-rails" rel="nofollow">Agile Development with Rails</a>. This book was an invaluable resource. From a learning perspective the <a href="http://37signals.com/" rel="nofollow">37Signals</a> sponsored site <a href="http://rubyonrails.org/documentation" rel="nofollow">Learn All About Ruby on Rails</a> was also a great jumping off point.</p>
<p>The issues that I ran into that were not covered by the above resources ended up as <a href="http://stackoverflow.com/search?q=user:61654+%5Bruby-on-rails%5D">my RoR questions on Stack Overflow</a>. In attempting to self help before posting many of those questions I would find little or no documentation. What documentation I did find came in the form of blog posts circa 2006. I have no issues with using blog posts as a resource but am concerned that seemingly little documentation is still being generated by the community.</p>
<p>That said it does seem like plenty of RoR development continues. It is actively being taught at <a href="http://www.cmu.edu/silicon-valley/" rel="nofollow">Carnegie Mellon Silicon Valley</a> and company's like <a href="http://www.pivotallabs.com/" rel="nofollow">Pivotal Labs</a> are still huge proponents of the framework. That said, I do find it disconcerting that a post from 2006 listing <a href="http://www.rubyinside.com/6-ruby-and-rails-job-sites-312.html" rel="nofollow">6 job sites for Rails programmers</a> was consolidated in 2009.</p>
<p>What I am driving at is:</p>
<ul>
<li>Has the RoR community begun to dry up?</li>
<li>Have people moved onto other frameworks and abandoned RoR?</li>
<li>Is the state of the framework such that not a lot of new things are occurring limiting the amount/need for discussion?</li>
<li>Am I looking in all the wrong places and jumping to conclusions?</li>
</ul>
<p>My intention is not to incite a flame war but begin an honest and unbiased dialog to better understand where RoR stands as a framework and the current state of its community.</p>
http://stackoverflow.com/questions/1786835/using-the-conditional-operator-in-conjunction-with-isajaxrequest-to-return-action0Using the conditional operator in conjunction with IsAjaxRequest to return ActionResultahsteele2009-11-23T23:39:33Z2009-11-24T04:51:27Z
<p>Since there is no implicit conversion between <code>Mvc.JsonResult</code> and <code>Mvc.ViewResult</code> I cannot just utilize a conditional operator but instead end up with a cast.</p>
<p>Which leads me to my question is the performance hit I will take for boxing the JsonResult worth it or should I just do a normal <code>if...else</code> block?</p>
<p>The code below appears inside a normal controller action: <code>public ActionResult Inactivate()</code></p>
<p><strong>No Boxing</strong></p>
<pre><code>if (Request.IsAjaxRequest())
{
return Json(foo);
}
else
{
return View(bar);
}
</code></pre>
<p><strong>VS Boxing</strong></p>
<pre><code>return Request.IsAjaxRequest() ? (ActionResult)Json(foo) : View(bar);
</code></pre>
http://stackoverflow.com/questions/1786610/html-beginform-and-html-attributes-w-o-specifying-controller-and-action0Html.BeginForm and HTML Attributes w/o specifying Controller and Actionahsteele2009-11-23T22:47:58Z2009-11-23T22:57:01Z
<p>I like the cleanliness of </p>
<pre><code>using (Html.BeginForm())
</code></pre>
<p>And hate that adding HTML attributes requires specifying the controller, action, and form method.</p>
<pre><code>using (Html.BeginForm("Action", "Controller", FormMethod.Post,
new { id = "inactivate-form" })
</code></pre>
<p>Is there a way to use <code>Html.BeginForm</code> and specify HTML attributes for the form without manually wiring everything else up?</p>
http://stackoverflow.com/questions/1750700/using-a-method-in-seeds-rb-in-ruby-on-rails1Using a method in seeds.rb in Ruby On Railsahsteele2009-11-17T18:06:23Z2009-11-17T18:19:14Z
<p>I am trying to add a method to my <em>seeds.rb</em> so that I don't have to write a bunch of verbose code. However, depending on the placement of the <code>create_deliverable</code> method I get one of two error messages when running <code>db:setup</code>.</p>
<p>When method is before call</p>
<blockquote>
<p>rake aborted!
private method 'create_deliverable' called for #</p>
</blockquote>
<p>When method is after call</p>
<blockquote>
<p>rake aborted!
undefined method `create_deliverable' for #</p>
</blockquote>
<p>Is it not possible to uses methods in <em>seeds.rb</em>? Am I somehow calling the method incorrectly (I've tried calling with and without the <code>self.</code>)?</p>
<p><strong>Method</strong></p>
<pre><code>def create_deliverable(complexity, project_phase_id, deliverable_type_id)
Deliverable.create(:name => (0...8).map{65.+(rand(25)).chr}.join,
:size => 2 + rand(6) + rand(6),
:rate => 2 + rand(6) + rand(6),
:deliverable_type_id => deliverable_type_id,
:project_phase_id => project_phase_id,
:complexity => complexity)
end
</code></pre>
<p><strong>Calling Code</strong></p>
<pre><code>@wf_project.project_phases.each do |phase|
DeliverableType.find_by_lifecycle_phase(phase.lifecycle_phase_id).each do
|type|
self.create_deliverable("Low", type.id, phase.id)
self.create_deliverable("Medium", type.id, phase.id)
self.create_deliverable("High", type.id, phase.id)
end
end
</code></pre>
http://stackoverflow.com/questions/1228146/nhibernate-querysyntaxexception1NHibernate QuerySyntaxExceptionahsteele2009-08-04T15:22:54Z2009-11-17T14:20:15Z
<p>I am following along with the <a href="http://www.summerofnhibernate.com/" rel="nofollow">Summer of NHibernate Screencast Series</a> and am running into a strange NHibernate Exception.</p>
<pre><code>NHibernate.Hql.Ast.ANTLR.QuerySyntaxException:
Exception of type
'Antlr.Runtime.NoViableAltException' was thrown.
[select from DataTransfer.Person p where p.FirstName=:fn].
</code></pre>
<p>I have deviated from the Screencast Series in the following ways:</p>
<ol>
<li>Running against an MS SQL Server Compact Database</li>
<li>I am using MSTest instead of MbUnit</li>
</ol>
<p>I've tried any number of combination of queries always with the same result. My present CreateQuery syntax</p>
<pre><code>public IList<Person> GetPersonsByFirstName(string firstName)
{
ISession session = GetSession();
return session.CreateQuery("select from Person p " +
"where p.FirstName=:fn").SetString("fn", firstName)
.List<Person>();
}
</code></pre>
<p>While not a direct query this method works</p>
<pre><code>public Person GetPersonById(int personId)
{
ISession session = GetSession();
return session.Get<Person>(personId);
}
</code></pre>
<p>My <em>hibernate.cfg.xml</em></p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory name="BookDb">
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.driver_class">NHibernate.Driver.SqlServerCeDriver</property>
<property name="dialect">NHibernate.Dialect.MsSqlCeDialect</property>
<property name="connection.connection_string">Data Source=C:\Code\BookCollection\DataAccessLayer\BookCollectionDb.sdf</property>
<property name="show_sql">true</property>
<property name="proxyfactory.factory_class">NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle</property>
<mapping assembly="DataTransfer"/>
</session-factory>
</hibernate-configuration>
</code></pre>
<p><em>Person.hbm.xml</em></p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="DataTransfer" namespace="DataTransfer">
<class name="DataTransfer.Person,DataTransfer" table="Person">
<id name="PersonId" column="PersonId" type="Int32" unsaved-value="0">
<generator class="native"/>
</id>
<property name="FirstName" column="FirstName" type="String" length="50" not-null="false" />
<property name="LastName" column="LastName" type="String" length="50" not-null="false" />
</class>
</hibernate-mapping>
</code></pre>
http://stackoverflow.com/questions/1713284/the-beforedestroy-callback-prevents-child-records-from-being-deleted-in-ruby-on0The before_destroy callback prevents child records from being deleted in Ruby on Railsahsteele2009-11-11T05:42:03Z2009-11-12T02:30:23Z
<p>Because RoR does not offer a <em>validate_on_destroy</em>, I am essentially implementing one by using the <code>before_destroy</code> callback.</p>
<p>Using <code>before_destory</code> works and prevents a <em>project</em> that has had <code>effort_logged?</code> from being deleted. The below implementation does not work because when no has been logged I want to delete the project and all of its dependents. As long as <code>before_destroy</code> is implemented as it is below I am unable to do so.</p>
<p>If I understand how <code>:dependent => :destroy</code> works in relation to <code>before_destroy</code> the dependent children are deleted before the parent's <code>before_destroy</code> method is called. If my assumption is correct is accessing the children in the <code>effort_logged?</code> method somehow causing them to not be deleted? Is there a better means to check to see if a parent can be deleted based on its children?</p>
<p>Aside from curiosity on how RoR works my goal is to pass the following two tests:</p>
<ul>
<li>when no effort logged project deletion deletes dependents (<strong><em>this test fails</em></strong>)</li>
<li>cannot delete project with effort logged (<strong><em>this test passes</em></strong>)</li>
</ul>
<p>Given everything outlined below I would expect both of these tests to pass.</p>
<p><strong>Project Model</strong></p>
<pre><code>class Project < ActiveRecord::Base
has_many :project_phases, :dependent => :destroy
def before_destroy
if effort_logged?
errors.add_to_base("A project with effort logged cannot be deleted")
false
else
true
end
end
def effort_logged?
project_phases.each do |project_phase|
project_phase.deliverables.each do |deliverable|
if (deliverable.effort_logged?)
return true
end
end
end
end
end
</code></pre>
<p><strong>Project Phase Model</strong></p>
<pre><code>class ProjectPhase < ActiveRecord::Base
belongs_to :project
has_many :deliverables, :dependent => :destroy
end
</code></pre>
<p><strong>Deliverable Model</strong></p>
<pre><code>class Deliverable < ActiveRecord::Base
has_many :effort_logs, :dependent => :destroy
def effort_logged?
total_effort_logged != 0
end
def total_effort_logged
effort_logs.to_a.sum {|log| log.duration}
end
end
</code></pre>
<p><strong>Effort Log Model</strong></p>
<pre><code>class EffortLog < ActiveRecord::Base
belongs_to :deliverable
end
</code></pre>
<p><strong>Test cannot delete project with effort logged</strong></p>
<pre><code>test "cannot delete project with effort logged" do
project = projects(:ProjectOne)
assert !project.destroy, "#{project.errors.full_messages.to_sentence}"
end
</code></pre>
<p><strong>Test when no effort logged project deletion deletes dependents</strong></p>
<pre><code>test "when no effort logged project deletion deletes dependents" do
project = projects(:ProjectNoEffort)
# all phases of the project
project_phases = project.project_phases
# all deliverables of all phases of the project
project_phases_deliverables = {}
# all effort logs of all deliverables of the project
deliverables_effort_logs = {}
project_phases.each do |project_phase|
project_phases_deliverables[project_phase.name + "-" + project_phase.id.to_s] =
project_phase.deliverables
end
project_phases_deliverables.each { |project_phase, project_phase_deliverables|
project_phase_deliverables.each do |deliverable|
deliverables_effort_logs[deliverable.name + "-" + deliverable.id.to_s] =
deliverable.effort_logs
end
}
project.destroy
assert_equal(0, project_phases.count,
"Project phases still exist for the deleted project")
project_phases_deliverables.each { |project_phase, project_phases_deliverables|
assert_equal(0, project_phases_deliverables.count,
"Deliverables still exist for the project phase \"" + project_phase + "\"")
}
deliverables_effort_logs.each { |deliverable, deliverables_effort_logs|
assert_equal(0, deliverables_effort_logs.count,
"Effort logs still exist for the deliverable \"" + deliverable + "\"")
}
end
</code></pre>
http://stackoverflow.com/questions/1713284/the-beforedestroy-callback-prevents-child-records-from-being-deleted-in-ruby-on/1719517#17195170Answer by ahsteele for The before_destroy callback prevents child records from being deleted in Ruby on Railsahsteele2009-11-12T02:30:23Z2009-11-12T02:30:23Z<p>After debugging the tests and keeping a close eye on the values of my methods and variables I was able to determine that the <code>effort_logged?</code> method was having issues. When there was logged effort it would return true. However, when there was no logged effort it would return the array of the <code>project_phases</code>. I modified <code>effort_logged?</code> to utilize a <code>retval</code> and that fixed the issue. The below method could stand for a refactoring.</p>
<pre><code> def effort_logged?
retval = false
project_phases.each do |project_phase|
project_phase.deliverables.each do |deliverable|
if (deliverable.effort_logged?)
retval = true
end
end
end
return retval
end
</code></pre>
http://stackoverflow.com/questions/1694118/does-a-free-mysql-relationship-diagram-generator-exist0Does a free MySQL Relationship Diagram Generator Existahsteele2009-11-07T19:23:14Z2009-11-07T19:52:18Z
<p>Are there any free tools available for generating ERDs from an existing MySQL database? I've been given the requirement to generate such documentation for a legacy database and would prefer to not have to do it by hand.</p>
http://stackoverflow.com/questions/1682491/javascript-mechanism-for-holding-onto-a-value-from-a-user-action1JavaScript mechanism for holding onto a value from a user actionahsteele2009-11-05T18:12:54Z2009-11-06T10:25:49Z
<p>I've created a JavaScript object to hold onto a value set by a user checking a checbox in a <a href="http://colorpowered.com/colorbox/" rel="nofollow">ColorBox</a>.</p>
<p>I am relatively new to jQuery and programming JavaScript "the right way" and wanted to be sure that the below mechanism for capturing the users <em>check action</em> was a best practice for JavaScript in general. Further, since I am employing jQuery is there a simpler method to hold onto their action that I should be utilizing?</p>
<pre><code>function Check() {
this.Checked = false;
}
obj = new Check;
$(document).ready(function() {
$('.cboxelement').colorbox({ html: '<input id="inactivate" type="checkbox" name="inactivatemachine">&nbsp;<label for="inactivate">Inactivate Machine</label>' });
$(document).bind('cbox_cleanup', function() {
obj.Checked = $.fn.colorbox.getContent().children('#inactivate').is(':checked');
});
$(document).bind('cbox_closed', function() {
if ($($.fn.colorbox.element()).attr('id').match('Remove') && obj.Checked) {
var row = $($.fn.colorbox.element()).parents('tr');
row.fadeOut(1000, function() {
row.remove();
});
}
});
});
</code></pre>
http://stackoverflow.com/questions/1676093/bind-to-jquery-event-only-for-particular-elements1Bind to jQuery event only for particular elementsahsteele2009-11-04T19:38:12Z2009-11-04T20:54:35Z
<p>I am relatively new to jQuery but the below code seems logical but is not working as I would expect. I am utilizing the <a href="http://colorpowered.com/colorbox/" rel="nofollow">Colorbox jQuery plugin</a>.</p>
<p>My intention is to only add a listener for the 'cbox_closed' event on 'a' elements who have an id that contains 'Remove'. Unfortunately, as presently implemented this adds the listener on all raisings of the 'cbox_closed' event.</p>
<p>Am I missing something or is this not a valid means of adding an event listener?</p>
<pre><code>$('a[id*="Remove"]').bind('cbox_closed', function() {
var row = $($.fn.colorbox.element()).parents('tr');
row.fadeOut(1000, function() {
row.remove();
});
});
</code></pre>
http://stackoverflow.com/questions/1641538/ruby-time-calculations1Ruby Time Calculationsahsteele2009-10-29T03:57:59Z2009-10-29T04:07:43Z
<p>I am trying to determine the duration of elapsed time minus any interruptions. The method below seems inefficient and silly is there a better method?</p>
<p>The user specifies an end_time and a start_time are and records any interruptions as an integer representing minutes.</p>
<pre><code>def duration
((end_time - start_time).seconds - interrupt.minutes) / 60
end
</code></pre>
http://stackoverflow.com/questions/1342025/extreme-programming-for-distributed-teams-tools-and-advice2Extreme Programming for Distributed Teams Tools and Adviceahsteele2009-08-27T15:57:12Z2009-10-26T21:28:49Z
<p>A group of us are starting a new project and are working in a distributed fashion. Our intention is to use agile development methodologies and in particular Extreme Programming (XP). This is intended as a learning experience, but while some of us have experience with XP in a "traditional" team none of us has experience doing XP with a remote group. Both <a href="http://stackoverflow.com/questions/86784/agile-development-in-a-distributed-team">Agile Development in a Distributed Team</a> and <a href="http://stackoverflow.com/questions/365016/distributed-development-team-tools-needed">Distributed Development Team - Tools Needed</a> offer some great suggestions but are not specific to XP.</p>
<p>Please elaborate on methodologies and tools used to stay true to the spirit of XP while working remotely. Specifically, what technologies were employed for story cards and peer programming.</p>
<p><strong>Edited to include technology stack per Felix's recomendation</strong></p>
<p>We are writing a Ruby on Rails on Windows Machines. We are interested in what tools can be used to adapt the primary practices of Extreme Programming for a remote team.</p>
http://stackoverflow.com/questions/1569264/how-do-the-examples-in-asp-net-mvc-in-action-avoid-specifying-the-proxyfactory-fa1How do the examples in ASP.NET MVC in Action avoid specifying the proxyfactory.factory_class when using NHibernate 2.1ahsteele2009-10-14T22:01:38Z2009-10-17T17:00:15Z
<p>I realize that <a href="http://nhforge.org/blogs/nhibernate/archive/2008/10/11/nh2-1-0-reference-to-castle-removed.aspx" rel="nofollow">NHibernate 2.1 removed its dependency on the Castle Project</a>. In fact, <a href="http://stackoverflow.com/users/28664/joshua-ewer">Joshua Ewer</a> did a great post summarizing the <a href="http://stackoverflow.com/questions/1110766/is-proxy-factory-necessary-in-nhibernate/1111238#1111238">necessity of a proxy factory for an NHibernate</a> implementation.</p>
<p>Presently, I am working through the examples in <a href="http://www.manning.com/ASP.NETMVCinAction" rel="nofollow">ASP.NET MVC in Action</a> by <a href="http://jeffreypalermo.com/" rel="nofollow">Jeffrey Palermo</a> and am confused. The source code examples for both the Chapter 13 NHibernate project and the Code Camp Server project are using NHibernate 2.1.0.1001. Neither project specifies <em>proxyfactory.factory_class</em> in its <em>hibernate.cfg.xml</em>. I am using NHibernate 2.1.0.4000 and am receiving the infamous "The ProxyFactoryFactory was not configured" error message.</p>
<p>I was under the impression that the <em>proxyfactory.factory_class</em> had to be specified in all revisions of NHibernate 2.1. Am I missing something in the provided examples that is specifying <em>proxyfactory.factory_class</em> outside of the <em>hibernate.cfg.xml</em>?</p>
http://stackoverflow.com/questions/1529442/rails-modal-form-validation1Rails Modal Form Validationahsteele2009-10-07T04:12:29Z2009-10-09T10:40:09Z
<p>I am using <a href="http://particletree.com/features/lightbox-gone-wild/" rel="nofollow">Lightbox Gone Wild</a> to display a modal dialog with a form inside. I am using a vanilla New view. This works like a champ up until a user doesn't input valid form data. Invalid data causes the controller to direct the user to the New view directly with the error message. Obviously, I would prefer the error be returned to the modal, though I understand the reason the user is being directed to a regular New view with errors.</p>
<p>One obvious but impractical option would be to write custom client-side validation. Another would be to generate the client-side validation logic based on the Models validations. To that end, I found two infant plugins which utilize <a href="http://github.com/redinger/validation%5Freflection" rel="nofollow">validation_reflection</a>. While <a href="http://github.com/grimen/validatious-on-rails/" rel="nofollow">validatious-on-rails</a> is literally weeks old <a href="http://www.schuerig.de/michael/blog/index.php/2006/12/15/rails-almost-automatic-client-side-validation/" rel="nofollow">client_side_validation</a> seems to be abandoned. Finally, using form_remote_tag also seems promising as it performs an AJAX postback and that seems like it wouldn't do the refresh on error.</p>
<p>In summary I am looking the most conventional way of validating user input to a form presented to a user in a modal dialog and on error returning them to that dialog with the errors.</p>
<p><strong>Code to Open Modal</strong></p>
<pre><code><% link_to 'New Project...', new_project_path, :class => 'lbOn' %>
</code></pre>
<p><strong>New View</strong></p>
<pre><code><% form_for(@project) do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p>
<%= f.label :description %><br />
<%= f.text_field :description %>
</p>
<p>
<%= f.submit 'Create' %><br />
<a href="#" class="lbAction" rel="deactivate">Cancel</a>
</p>
<% end %>
</code></pre>
http://stackoverflow.com/questions/1493679/suggestion-for-semantic-markup2Suggestion for Semantic Markupahsteele2009-09-29T16:41:03Z2009-09-29T16:47:22Z
<p>I am creating a web GUI for an application I am working on. This particular section will sit within a larger page that is of a good semantic makeup. However, I am unsure what the best option to markup the below screen semantically.</p>
<p>My initial thought is to separate the top half from the bottom half via divs. Therefore, markup for the top is pretty easy. Leaving the bottom which is where I feel stumped. The easiest answer is a table but this content doesn't easily fit the only use tables for tabular data rule. Especially considering that headers would look conspicuous in this layout. Suggestions?</p>
<p><img src="http://img183.imageshack.us/img183/2261/semanticmarkup.png" alt="Need Semantic Markup for this Image" /></p>
http://stackoverflow.com/questions/1475260/return-only-available-items-in-ruby-on-rails0Return only available items in Ruby on Railsahsteele2009-09-25T03:18:12Z2009-09-28T04:39:37Z
<p>I've created a method that allows me to return all of the Books. I'd like to limit the books returned to those that are not not loaned. What do I need to add to *available_books* to ensure only unloaned books are returned. Can I leverage my preexisting loaned? method?</p>
<pre><code>class Book < ActiveRecord::Base
has_many :book_loans
has_many :borrowers, :through => :book_loans, :source => :person
def loaned?
book_loans.exists?(:return_date => nil)
end
def self.available_books
@books = find(:all, :order => "title")
end
end
</code></pre>
http://stackoverflow.com/questions/1480054/assert-difference-of-number-of-children-in-relationship-in-ruby-on-rails0Assert difference of number of children in relationship in Ruby on Railsahsteele2009-09-26T00:13:43Z2009-09-26T00:28:13Z
<p>My controller is able to create a child book_loan. I am trying to test this behavior in a functional test but am having a hard time using the assert_difference method. I've tried a number of ways of passing the count of book_loans to assert_difference with no luck.</p>
<pre><code> test "should create loan" do
@request.env['HTTP_REFERER'] = 'http://test.com/sessions/new'
assert_difference(books(:ruby_book).book_loans.count, 1) do
post :loan, {:id => books(:ruby_book).to_param,
:book_loan => {:person_id => 1,
:book_id =>
books(:dreaming_book).id}}
end
end
</code></pre>
<p><strong>can't convert BookLoan into String</strong></p>
<pre><code>assert_difference(books(:ruby_book).book_loans,:count, 1)
</code></pre>
<p><strong>NoMethodError: undefined method 'book_loans' for #</strong></p>
<pre><code>assert_difference('Book.book_loans.count', +1)
</code></pre>
<p><strong>can't convert Proc into String</strong></p>
<pre><code>assert_difference( lambda{books(:ruby_book).book_loans.count}, :call, 1 )
</code></pre>
http://stackoverflow.com/questions/1479068/ruby-on-rails-beforedestroy-causing-nameerror0Ruby on Rails before_destroy causing NameErrorahsteele2009-09-25T19:11:03Z2009-09-25T19:26:52Z
<p>I am trying to implement <em>before_destroy</em> on a model. While I am following this <a href="http://stackoverflow.com/questions/123078/how-do-i-validate-on-destroy-in-rails/123190#123190"><em>before_destroy</em> example</a> I either receive a NameError or end up with something which doesn't do the <em>before_destroy</em>. What's wrong with my syntax?</p>
<pre><code>class Person < ActiveRecord::Base
has_many :book_loans, :order => 'return_date desc'
has_many :books, :through => :book_loans
before_destroy
errors.add_to_base "Cannot delete borrower with loans" unless
book_loans.count == 0
end
</code></pre>
<p><strong>Doesn't Compile</strong></p>
<pre><code> before_destroy
errors.add_to_base "Cannot delete borrower with loans" unless
book_loans.count == 0
</code></pre>
<p><strong>Doesn't Work</strong></p>
<pre><code>def before_destroy
errors.add_to_base "Cannot delete borrower with loans" unless
book_loans.count == 0
end
</code></pre>
http://stackoverflow.com/questions/1476572/invoke-action-to-send-email-in-ruby-on-rails0Invoke action to send email in ruby on railsahsteele2009-09-25T10:33:28Z2009-09-25T15:36:25Z
<p>I am attempting to send an email to the present borrower of a book. I've created an ActionMailer called ReturnRequestMailer which has a method called please_return.</p>
<pre><code>class ReturnRequestMailer < ActionMailer::Base
def please_return(book_loan)
subject 'Book Return Request'
recipients book_loan.person.email
from 'andrew.steele@west.cmu.edu'
sent_on Time.now
body :book_loan => book_loan
end
end
</code></pre>
<p>I am attempting to call this method from an action inside of my BooksController</p>
<pre><code>def request_return
@book = Book.find(params[:id])
ReturnRequestMailer.please_return(@book.current_loan)
end
</code></pre>
<p>Which I invoke from my books index with the following link_to (ignoring for the time being that doing this in this manner probably isn't the smartest permanent solution).</p>
<pre><code><%= link_to 'Request Return', {:action => 'request_return' , :id => book} %>
</code></pre>
<p>Everything links up correctly but I get a NoMethodError in BooksController#request_return stating that it cannot find the method please_return for ReturnRequestMailer. What is going on that is preventing the please_return method from being visible to the BooksController?</p>
http://stackoverflow.com/questions/1472869/how-to-save-an-associating-record-between-has-many-classes-in-ruby-on-rails0How to save an associating record between has-many classes in Ruby on Railsahsteele2009-09-24T16:42:15Z2009-09-24T20:11:04Z
<p>I've created three classes to represent <em>Books</em>, <em>People</em>, and <em>BookLoans</em>. While I am able to show the association of People to Books through BookLoans I've been seeding my database.</p>
<p>I now need to save a checkout of a book. It was my intention to do this action through the book controller. Specifically, creating a loan action in the BooksController. While this makes sense to me in theory I am having a terrible time implementing the appropriate syntax.</p>
<p>I've added the ability to loan a book from the show view of a book. This view now contains a form which uses the loan action of the book controller to record the loan.</p>
<p>I've added what I believe are the appropriate methods to my Book model. With the help of <a href="http://stackoverflow.com/users/124674/theiv">theIV</a> I have captured the appropriate information in the Controller. Unfortunately, when I press Loan on the book show view a book_loan record is no being recorded.</p>
<p>What am I missing?</p>
<p><strong>Book Model</strong></p>
<pre><code>class Book < ActiveRecord::Base
has_many :book_loans
has_many :borrowers, :through => :book_loans, :source => :person
accepts_nested_attributes_for :book_loans, :allow_destroy => true
def loaned?
book_loans.exists?(:return_date => nil)
end
def current_borrower
if loaned?
book_loans.first(:order => "out_date desc").person
end
end
def add_loan (person_id)
book_loans.create(:book_id => id,
:person_id => person_id,
:out_date => Date.current)
end
end
</code></pre>
<p><strong>Loan Method from BooksController</strong></p>
<pre><code>def loan
@book.add_loan(params[:book_loan][:person_id])
redirect_to :action => 'book', :id => params[:id]
end
</code></pre>
<p><strong>Book Show View w/ Loan Form</strong></p>
<pre><code><p>
<b>Title:</b>
<%=h @book.title %>
</p>
<p>
<b>Isbn10:</b>
<%=h @book.isbn10 %>
</p>
<p>
Currently loaned to:
<%=h borrower_name(@book) %>
</p>
<% form_for(@book) do |x| %>
<p>
<%= x.label :loan_person_id %><br/>
<%= collection_select(:book_loan, :person_id,
Person.find(:all, :order => 'name ASC'), :id, :name) %>
<%= x.submit 'Loan', :action => 'loan' %>
</p>
<% end %>
</code></pre>
<p><strong>BookLoan Model</strong></p>
<pre><code>class BookLoan < ActiveRecord::Base
belongs_to :book
belongs_to :person
end
</code></pre>
<p><strong>Person Model</strong></p>
<pre><code>class Person < ActiveRecord::Base
has_many :book_loans
has_many :books, :through => :book_loans
end
</code></pre>
<p><strong>Development Log</strong></p>
<pre><code>Processing BooksController#update (for 127.0.0.1 at 2009-09-24 13:43:05) [PUT]
Parameters: {"commit"=>"Loan", "authenticity_token"=>"XskHLuco7Q7aoEnDfVIiYwVrMEh5uwidvJZdrMbYYWs=", "id"=>"1", "book_loan"=>{"person_id"=>"3"}}
[4;35;1mBook Columns (3.0ms)[0m [0mSHOW FIELDS FROM `books`[0m
[4;36;1mBook Load (4.0ms)[0m [0;1mSELECT * FROM `books` WHERE (`books`.`id` = 1) [0m
[4;35;1mSQL (0.0ms)[0m [0mBEGIN[0m
[4;36;1mBook Load (1.0ms)[0m [0;1mSELECT `books`.id FROM `books` WHERE (`books`.`title` = BINARY 'Dreaming in Code: Two Dozen Programmers, Three Years, 4,732 Bugs, and One Quest for Transcendent Software' AND `books`.id <> 1) LIMIT 1[0m
[4;35;1mSQL (1.0ms)[0m [0mCOMMIT[0m
Redirected to http://localhost:3000/books/1
Completed in 19ms (DB: 10) | 302 Found [http://localhost/books/1]
[4;36;1mSQL (0.0ms)[0m [0;1mSET NAMES 'utf8'[0m
[4;35;1mSQL (0.0ms)[0m [0mSET SQL_AUTO_IS_NULL=0[0m
</code></pre>
http://stackoverflow.com/questions/1472318/what-is-the-history-of-the-creation-of-c/1472914#147291413Answer by ahsteele for What is the history of the creation of C#?ahsteele2009-09-24T16:50:25Z2009-09-24T17:18:38Z<p>Below is a brief outline I did for someone a while back answering this question:</p>
<p><strong>C#</strong></p>
<ul>
<li>intended as a simple general - purpose object-oriented programming </li>
<li>development led by Anders Hejlsberg
<ul>
<li>Hejlsberg previously had designed Borland's Turbo Pascal</li>
</ul></li>
<li>syntax similar to C++</li>
<li>initially called COOL for C-like Object Orientated Language</li>
<li>renamed C# because it is a step above C/C++
<ul>
<li># (sharp) means a semi-tone above in music</li>
<li>can also be viewed as a stacked 4 pluses so C++++</li>
</ul></li>
<li>C# is the .NET language that is most similar to the CLR</li>
<li>Hejlsberg strived to create constructs as answers to issues he saw in (C++, Java, Delphi etc.)
<ul>
<li>Stated Goals
<ul>
<li>support for software engineering
<ul>
<li>strong type checking</li>
<li>array bounds checking</li>
<li>detection of attempts to utilize uninitialized variables</li>
<li>automatic garbage collection</li>
</ul></li>
<li>software robustness and durability are important</li>
<li>allow for use in distributed environments</li>
<li>not intended as direct competitor C/C++</li>
</ul></li>
</ul></li>
</ul>
<p><strong>Further Reading</strong></p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/C%5FSharp%5F%28programming%5Flanguage%29" rel="nofollow">C Sharp (programming language)</a></li>
<li><a href="http://www.jameskovacs.com/blog/CNETHistoryLesson.aspx" rel="nofollow">C# / .NET History Lesson</a></li>
<li><a href="http://www.c2.com/cgi/wiki?HistoryOfCsharp" rel="nofollow">An Incomplete History of C#</a></li>
</ul>
http://stackoverflow.com/questions/1912332/using-wcf-to-consume-service-and-receieving-varying-errors-depending-on-binding-c/1912704#1912704Comment by ahsteele on Using WCF to consume service and receieving varying errors depending on binding configurationahsteele2009-12-16T20:10:42Z2009-12-16T20:10:42ZAdded end point clarification. Any help is greatly appreciated.http://stackoverflow.com/questions/1912332/using-wcf-to-consume-service-and-receieving-varying-errors-depending-on-binding-cComment by ahsteele on Using WCF to consume service and receieving varying errors depending on binding configurationahsteele2009-12-16T04:51:32Z2009-12-16T04:51:32ZYes it is an <i>https / ssl</i> endpoint. I am not the maintainer of the service I am trying to consume. For what it's worth I believe it is written in Java and hosted on a WebLogic server.http://stackoverflow.com/questions/503093/how-can-i-make-a-redirect-page-in-jquery/846724#846724Comment by ahsteele on How can I make a redirect page In jQuery?ahsteele2009-12-15T21:45:36Z2009-12-15T21:45:36ZThis doesn't appear to be an answer to the original poster's question.http://stackoverflow.com/questions/1890178/limit-removeall-to-a-certain-number-of-objects/1890305#1890305Comment by ahsteele on Limit RemoveAll to a certain number of objectsahsteele2009-12-11T20:10:42Z2009-12-11T20:10:42ZSweet that's almost more clear.http://stackoverflow.com/questions/1890178/limit-removeall-to-a-certain-number-of-objects/1890305#1890305Comment by ahsteele on Limit RemoveAll to a certain number of objectsahsteele2009-12-11T19:32:32Z2009-12-11T19:32:32ZWithout testing this does <code>i</code> get reset to 0 upon each iteration? It seems like it would work for the first find but wouldn't afterwards.http://stackoverflow.com/questions/1890178/limit-removeall-to-a-certain-number-of-objects/1890194#1890194Comment by ahsteele on Limit RemoveAll to a certain number of objectsahsteele2009-12-11T19:30:25Z2009-12-11T19:30:25ZWith @Randolpho's modification this works like a charm. Otherwise a .ToList had to be appended to matches before using <code>ForEach</code>. I had never seen the <code>Take</code> extension method. Thank you for pointing it out!http://stackoverflow.com/questions/1869908/efficent-way-of-retrieveing-httpwebresponse-and-putting-it-in-xdocument/1870021#1870021Comment by ahsteele on Efficent way of retrieveing HttpWebResponse and putting it in XDocumentahsteele2009-12-08T21:45:08Z2009-12-08T21:45:08ZGood idea about handling <code>WebException</code>. That said, what would your suggested modification be for an asynchronous request?http://stackoverflow.com/questions/1862053/jquery-set-value-only-if-empty/1862079#1862079Comment by ahsteele on jQuery set value only if emptyahsteele2009-12-07T18:57:34Z2009-12-07T18:57:34Z<code>$('.foo[value=""]').val(fooVal);</code> works in IE but not in Firefox while <code>$(".foo[value='']").val(fooVal);</code> works in both. Why is that?http://stackoverflow.com/questions/1433773/should-an-intranet-web-application-utilize-a-cdn/1849881#1849881Comment by ahsteele on Should an intranet web application utilize a CDNahsteele2009-12-06T05:35:36Z2009-12-06T05:35:36Zcheck the About and FAQ to more fully understand the site's workings. If you want to discuss them try <a href="http://meta.stackoverflow.com" rel="nofollow">meta.stackoverflow.com</a>http://stackoverflow.com/questions/1433773/should-an-intranet-web-application-utilize-a-cdn/1849881#1849881Comment by ahsteele on Should an intranet web application utilize a CDNahsteele2009-12-05T04:20:48Z2009-12-05T04:20:48ZStack Overflow doesn't work like most forums in that answers are not intended for continuing threads. http://stackoverflow.com/questions/1842069/remove-row-from-one-table-and-add-it-to-another-with-jquery/1842090#1842090Comment by ahsteele on Remove row from one table and add it to another with jQueryahsteele2009-12-03T18:58:32Z2009-12-03T18:58:32ZUnfortunately, this does not work. The fadeout still occurs but the row is not appended to the <code>NewTableBody</code>.http://stackoverflow.com/questions/1842069/remove-row-from-one-table-and-add-it-to-another-with-jquery/1842091#1842091Comment by ahsteele on Remove row from one table and add it to another with jQueryahsteele2009-12-03T18:57:44Z2009-12-03T18:57:44ZUnfortunately, this does not work. The fadeout still occurs but the row is not appended to the <code>NewTableBody</code>.http://stackoverflow.com/questions/1822750/return-an-empty-collection-when-linq-where-returns-nothing/1822779#1822779Comment by ahsteele on Return an empty collection when Linq where returns nothingahsteele2009-12-02T19:22:48Z2009-12-02T19:22:48ZThanks for pointing me in the right direction by asking if I was sure I was looking in the right place.http://stackoverflow.com/questions/1822750/return-an-empty-collection-when-linq-where-returns-nothing/1822771#1822771Comment by ahsteele on Return an empty collection when Linq where returns nothingahsteele2009-12-02T19:14:32Z2009-12-02T19:14:32ZThe error had to do w/ the way MachineList was being built. I had been consuming this method from another developer and hadn't checked the way it was being built up. Thanks for pointing me in the right direction by asking if I was sure I was looking in the right place.http://stackoverflow.com/questions/1822750/return-an-empty-collection-when-linq-where-returns-nothing/1822771#1822771Comment by ahsteele on Return an empty collection when Linq where returns nothingahsteele2009-12-01T06:54:49Z2009-12-01T06:54:49ZAdded some additional information to my question that might shed some light on what's going on. That said, I think I might be bordering on needing to open a new thread.