search for: beland

Displaying 13 results from an estimated 13 matches for "beland".

Did you mean: reland
2013 Mar 22
3
Broken 2.x download links
...0250.html http://downloads.lustre.org/public/lustre/ http://wiki.lustre.org/index.php/Main_Page I was able to find 2.x releases linked properly from this wiki: https://wiki.hpdd.intel.com/ I thought someone might want to update pointers on the old wiki or fix up redirects on the server side. --Beland
2006 May 13
8
Which Linux flavor for a Rails server?
Hi folks, I''m a linux noob, and I''m trying to pick a distro for my rails server. I don''t want to start a flame-war about linux distros! I''m interested in the best distribution for these criteria: 1 - Simplicity of getting ruby and rails set-up (gem updates) 2 - Stability (it is a server, after all) 3 - Support resources (community, and as a fall-back, paid
2006 Apr 29
3
Noob question... confused
If I have several controller actions which have this same line of code (or more), how can I DRY up the line without running into complaints about redirecting or rendering only once? If I put the line in another method in my controller, won''t it think I''m redirecting? I want to dry up lines like this: @listing = Listing.find(params[:id]) def customerview @listing =
2006 May 08
2
Documentation for rails
I''m trying to convince a co-founder of the startup I''m working on that rails is the new black, or possibly the next sliced bread. Does rails ship with doc, or the API? I can''t even figure out how to download it from api.rubyonrails.com, or if that''s possible. When I look in C:\ruby\lib\ruby\gems\1.8\gems\rails-1.1.2\doc I see nothing of use. I have to admit
2006 Apr 07
1
Help... Ajax scaffold problems
Hi all, Any help is appreciated. I used the ajax scaffold generator to make 3 scaffoldings. Then I put them together as components in a combined layout and created a master controller, which happens to be named "dataentry''. That works fine. Within each of the components, I was able to set up links that paginate and update the div (for the component) with correctly paginated
2007 Nov 22
1
Installation problem of SAMBA 3.0.23a on HP-UX 11.23
...39;' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_BUGREPORT "" #define PACKAGE_NAME "" #define PACKAGE_STRING "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" configure: exit 77 Best Regards, Richard Beland
2006 Aug 01
2
tab characters with Rails 1.1 on Windows
We just upgraded to Ruby 1.8.4 and Rails 1.1. It works fine on my Mac OSX, but in Windows, Rails spits out errors like "Invalid char `\002'' in expression". Apparently, Ruby or Rails on Windows has a problem parsing tab characters. This seems to be a common problem: http://softiesonrails.com/articles/2006/04/27/spaces-not-tabs However, the only recommended solutions seems
2007 Nov 25
0
_net_auth2: creds_server_check failed Error
...> #define PACKAGE_BUGREPORT "" > #define PACKAGE_NAME "" > #define PACKAGE_STRING "" > #define PACKAGE_TARNAME "" > #define PACKAGE_VERSION "" > > configure: exit 77 > > > > Best Regards, > > Richard Beland > > > > > - -- ---- _ _ _ _ ___ _ _ _ |Y#| | | |\/| | \ |\ | | |Ryan Novosielski - Systems Programmer II |$&| |__| | | |__/ | \| _| |novosirj@umdnj.edu - 973/972.0922 (2-0922) \__/ Univ. of Med. and Dent.|IST/AST - NJMS Medical Science Bldg - C630 -----BEGIN...
2009 Sep 27
3
CRAN (and crantastic) updates this week
...http://crantastic.org/packages/csampling Monte Carlo conditional inference for the parameters of a linear nonnormal regression model * desire (1.0.5) Olaf Mersmann http://crantastic.org/packages/desire Harrington and Derringer-Suich type desirability functions * difR (1.0) Sebastien Beland http://crantastic.org/packages/difR The difR package contains several traditional methods to detect DIF in dichotomously scored items. Both uniform and non-uniform DIF effects can be detected, with methods relying upon item response models or not. Some methods deal with more than one foc...
2006 Jun 21
0
text_field_with_auto_complete broken in firefox?
I am seeing a problem with text_field_with_auto_complete in which the input does not get populated with the selected value, but only in firefox (1.5.0.4). Works in IE just fine. I have a super-simple mockup that shows this problem below. Can anyone please confirm for me that this does/does not work in firefox or point out my mistake? I''m wondering if I need to submit a bug? The example
2006 May 09
0
Passing params between actions?
I am wondering what are the rules for the availability of params in controller actions? If I redirect, are the params still available? How about when I render a different action? It doesn''t seem so... What are the best ways to pass them? I''m trying to use an ajax scaffold component with 2 actions which load different data for the component. I have an ajax scaffold component
2006 May 26
0
has_and_belongs_to_many with fk constraints?
Hi folks, I''m wondering if it''s possible to use foreign key constraints on the join tables of a has_and_belongs_to_many relation. Specifically, I get this error when I try and delete a model I''m using, named saved_search, which is many-to-many with neighborhoods. Any ideas? Thanks for any help. :-) -Eric Code: @saved_search.destroy Error: Mupdate or delete on
2006 Mar 21
0
Passing named command arguments to a generator
Hi folks, I''ve been looking at how to create generators for a lot of little tasks. Does anyone know how to pass, recieve, and then use named arguments to a generator? I''ve been looking at this argument, but I''m not clear on what''s possible. Is it solely based on the order of the arguments? http://wiki.rubyonrails.org/rails/pages/UnderstandingGenerators For