search for: brittain

Displaying 17 results from an estimated 17 matches for "brittain".

Did you mean: britain
2006 Aug 24
10
MongrelCluster - How can I make a request to a specific mongrel instance?
...but we''d like to fix this now. Had considered writing a quicky "broadcaster" that would iterate over our known mongrel ports and hit them directly. But we''re not sure if (a) that would work and (b) the best way to read the current running ports. Thanks in advance. Brittain -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20060824/2f88ccf3/attachment.html
2007 Aug 22
4
DO NOT REPLY [Bug 4912] New: rsync crashes with a double free or corrupted memory detection in glibc
...detection in glibc Product: rsync Version: 2.6.9 Platform: x86 OS/Version: Linux Status: NEW Severity: major Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: Richard.Brittain@dartmouth.edu QAContact: rsync-qa@samba.org Running rsync 2.6.9 on Fedora Core 6, 32-bit x86 architecture, I get frequent aborts due to a free() error detected by glibc. Error message is appended. The error is reproducible if I run with the exact same set of arguments, but if the file...
2006 Jul 29
6
Anyway for a model to call url_for?
Or better yet, a named route? Tried lots of searches and ugly hacks ... Thanks in advance.
2006 Aug 14
6
Testing fails with fixtures not when invoked directly
I have three files organization.rb, company.rb, and department.rb. I want to ensure the department always has a company require File.dirname(__FILE__) + ''/../test_helper'' class OrganizationTest < Test::Unit::TestCase fixtures :organizations def setup @smo = organizations(:smo) end def test_department_company_defaults_to_parent org = Department.new(:name =>
2006 Jul 26
4
yhtml plugin
I have released a yhtml plugin, which is available at http://http://svn.visualjquery.com/admin_console/trunk/admin_console/vendor/plugins/yhtml You can also get my other plugins, specificlly: the pre-alpha administrative console (AJAX-based scaffolding engine), acts_as_automatic, which allows you to define associations in a single yaml file, and not need to define has_many, has_one,
2006 Jul 10
0
Strange acts_as_paranoid behavior
...an see, both statements have 1 too many AND clauses (the first should have 1, the second none). Other methods (e.g. find) exhibit the same behavior. I''m new to RoR and after googling all day I''ve no idea why this would be happening. Any help appreciated. Thanks in advance. Brittain
2006 Jul 18
2
2-column select lists (Available/Selected)
I''m trying to get one of those 2-column select lists (where there''s an "Add>>" and a "<<Remove" button between them) working for a Rails application. First of all, what the heck is this thing called? You''d list all of the available items in one select list, and the selected ones in the other. Items move from one list to the other, but
2006 Jul 21
0
Questions about akismet and rails
...is data being misused? Lack of a privacy policy? - also, ultimately I''d prefer that this checking happen asynchronously to the rest of my comment collection. Can anyone point me to any solid examples or references for asynch rails calls from a model or controller? Thanks in advance, Brittain
2006 Jun 30
4
Strange behaviour from assert_redirected_to
I have this assertion in my tests: assert_redirected_to :controller => ''user'', :action => ''change_password'' It fails with: response is not a redirection to all of the options supplied (redirection is <"http://test.host/user/change_password">), difference: <{:controller=>"user"}> The redirection was: redirect_to
2013 Jun 05
0
[R-pkgs] bpcp package for pointwise confidence intervals for a survival distribution
...duces to the exact Clopper-Pearson intervals for binomial data at each time) or when there is progressive type II censoring. Simulations show at least nominal coverage for independent censoring. Also, it is fast so it can be used routinely. For a complete description of the new method see Fay, Brittain, and Proschan (2013). Pointwise confidence intervals for a survival distribution with small samples or heavy censoring. Biostatistics doi:10.1093/biostatistics/kxt016 (available at http://www.niaid.nih.gov/about/organization/dcr/brb/staff/Pages/michael.aspx ). Mike ******************************...
2006 Aug 04
1
Rails to web analytics integration
Anyone have experience (or plugins) available for pulling web analytics into the rails environment? Our marketing folks want to combine the page view data together with our registration/activity info, not too different than advocated here: http://www.thinkvitamin.com/features/webapps/how-to-measure-the-success- of-your-web-app We''re using Apache 2/mongrel. Thanks.
2006 Jun 24
3
Performance vs normalization best practice
I have a common situation and would like best practice suggestions from some of you more experienced rails developers. In my DB I''ve normalized tables in a traditional manner, e.g. I have Posts which have authors stored in a Users table. My problem is when I go to show a list of Posts and I want to display the author name (e.g. post.author.name) ActiveRecord appears to do a SELECT
2011 Apr 07
3
Windrose Percent Interval Frequencies Are Non Linear! Help!
Hi All - I have been using the windrose function found in the circular library to create great looking windroses.  But the dashed, circular percent interval lines that indicate the frequency at which each "pedal" occurs are not evenly spaced (the corresponding parameter is "cir.ind").  That is, the 5% interval closest to the heart of the windrose is wider than the 5-10 chuck,
2006 Jul 13
6
Render partial questions
Hello, what is the preferred way to do this... I have 2 controllers. Each has an index action. Now I want to include the rendered index view from TwoController in the index view of OneController. But a render :partial doesn''t execute the TwoController index action which sets variables for its index view. So maybe you can give me a short example how to do it. Thank you Markus
2006 Nov 01
17
So how can I rewrite my app without using with_scope?
So, I hear that with_scope is going to be deprecated. Which is a bit of a shame, given the stuff I''ve been writing recently. I have a CMS with multiple clients. A ''client'' is essentially a company, with multiple users. Content on the site belongs to a client - content could be messages, images, schedules, etc etc. People belonging to one client should not be able
2006 Jul 17
22
Rails - where are the BIG web apps?
Ok, Rails has been out for some time now. I''ve kept an eye on it pretty closely. I''ve heard Basecamp, Robot Coop, 43 Things, etc. are running on it. However, those have been the same apps people point to when the dreaded scalability question comes up. Are there any new web apps (large scale) in Rails or is it still the same old one? Something like on the scale of
2006 May 19
0
Works in model but not in mixin
Disclaimer: RoR newbie. Using the acts_as_taggable plugin. As an exercise I wanted to switch from the destructive TAG_WITH method to adding tags while preserving the existing ones. On the surface this seemed easy enough and eventually I got it working. However, the following method: def add_tags(list) Tag.transaction do Tag.parse(list).each do |name| if