search for: balthazar

Displaying 10 results from an estimated 10 matches for "balthazar".

2019 Jan 02
2
Erratic local hostname resolution with Dnsmasq
...t=D4:85:64:B2:B2:1B,alphamule,192.168.2.2 dhcp-host=00:1E:C9:43:A7:BF,bernadette,192.168.2.3 dhcp-host=00:1D:09:15:4A:D8,raymonde,192.168.2.4 dhcp-host=00:1E:C9:42:84:7B,amandine,192.168.2.5 dhcp-host=B8:CA:3A:D6:5A:43,1C:3E:84:32:7E:87,buzz,192.168.2.6 dhcp-host=90:E6:BA:CF:04:8F,64:70:02:9A:AC:93,balthazar,192.168.2.7 dhcp-host=08:00:27:00:00:01,centosbox,192.168.2.10 dhcp-host=08:00:27:00:00:02,susebox,192.168.2.11 dhcp-host=10:62:E5:D4:95:60,hp-officejet,192.168.2.252 dhcp-host=00:11:32:26:63:A5,nas,192.168.2.253 Now here's the problem. Some of the hostname are correctly resolved, while others...
2007 Feb 07
3
Upgrade to Rails 1.2.2 : RESTful routes not working anymore
...of code <% form_for(:request, :url => admin_destroy_requests_path, :html => { :method => :delete, :id => :adminDeleteForm, :name => :adminDeleteForm }) do |f| %> If I switch my app back to 1.2.1, everything works fine. Any idea? Thanks in advance, Thomas. On 2/2/07, Thomas Balthazar <thomas.tmp-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > Yes, that''s it. > But there is still an error in my solution. > > Here is the final (I hope) solution : > map.with_options :path_prefix => "/admin", :name_prefix => "admin_"...
2005 Nov 25
2
acts_as_list with 2 fields in the scope
...s "SELECT * FROM categories WHERE (site_id = 1 AND parent_id = AND position = 3)" which gives me an error (because of "parent_id = AND"). So, my question is "how can I solve this problem?". Many thanks in advance for you help that will be much appreciated! Thomas Balthazar. P.S. : if I only set the scope to parent_id, I have no problem, the generated query is "SELECT * FROM categories WHERE (parent_id IS NULL)"
2007 Nov 05
29
Mongrel and memory usage
Hello, I''m running a Rails application which must sort and manipulate a lot of data which are loaded in memory. The Rails app runs on 2 mongrel processes. When I first load the app, both are 32Mb in memory. After some days, both are between 200Mb and 300Mb. My question is : is there some kind of garbage collector in Mongrel? I never see the two Mongrel processes memory footprint
2008 Nov 07
11
Rails requires RubyGems >= 1.1.1 : problem
Hello, On my local machine (Mac OS X 10.5.5), I get the following error when I try to run script/server start : "Rails requires RubyGems >= 1.1.1 (you have 1.0.1). Please `gem update --system` and try again." The Rails app was a former 1.2.6 upgraded to 2.1, and it worked fine. I''ve run the rake rails:update command. If I create a new Rails app, it starts with the command
2006 Apr 01
3
acts_as_list with scope : position update problem?
Hello, I''ve tried to set up a class with acts_as_list with a scope argument that restricts a list to records with the same foreign key. For example : database : CREATE TABLE `families` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL default '''', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; INSERT INTO
2007 Sep 06
3
routes, default_url_options and languages
Hello, My app is available in 2 languages, English (en) and French (fr). *I would like all my URLs to look like this :* /fr/companies /en/companies *I''ve setup this route :* map.connect '':lg/:controller/:action/:id'' I don''t want to specify the :lg parameter in every url_for calls. The language remains the same unless the params[:change_lg] is set. *In my
2008 Mar 11
7
sortable scroll in div problem : dragged element doesn't follow the mouse pointer
Hello, I''m facing a strange problem with a long list of Sortable items in a container that has an overflow:auto. If I drag an item from the top to the bottom, the container div is scrolling, but there is a difference between the position of the dragged element and the mouse pointer. An example is better that a thousand words. Try to drag the first item at the bottom of the
2006 Apr 12
0
Fatal trap 12: page fault while in kernel mode
...e inner to this frame (corrupt stack?) Copyright (c) 1992-2006 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.1-PRERELEASE #10: Fri Mar 24 20:34:13 CET 2006 root@balthazar.grumly.eu.org:/usr/obj/usr/src/sys/CED ACPI APIC Table: <PTLTD APIC > Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel Pentium III (789.10-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x686 Stepping = 6 Features=0x383fbff<FPU,VME,DE,PSE,TSC,MSR...
2007 Jan 06
0
undefined method 'markdown'
Hello, I''m facing a strange error. I''m using Rails 1.1.6 and I try to use Markdown. I''ve downloaded BlueCloth, and it is in my RAILS_ROOT/vendor/plugins/BlueCloth_1.0.0 In my environment.rb, I have the following lines : -- Rails::Initializer.run do |config| config.load_paths += %W( #{RAILS_ROOT}/vendor/plugins/BlueCloth_1.0.0/lib ) end -- In my view, I have : --