search for: controlling

Displaying 20 results from an estimated 63501 matches for "controlling".

2010 Feb 16
0
Strange routing(?) Issue
I have a Model event and the following two lines in routes.rb 1 - map.connect "events/:action", :controller => ''events'', :action => / [a-z_]+/i 2 - map.resources :events, :has_many => :comments, :has_one => :address #, :collection => {:mapit => :get} I have #1 so that I can call custom actions from a link_to_remote link from my index page t0 update a
2017 Jul 20
0
[PATCH 000/102] Convert drivers to explicit reset API
On Wed, Jul 19, 2017 at 05:25:04PM +0200, Philipp Zabel wrote: > The reset control API has two modes: exclusive access, where the driver > expects to have full and immediate control over the state of the reset > line, and shared (clock-like) access, where drivers only request reset > deassertion while active, but don't care about the state of the reset line > while inactive.
2006 Jun 08
8
another routes question
i need help setting up the routes for my app. I have created about 10 controllers in the app/controllers/pro directory: app/controllers/pro/address_controller.rb app/controllers/pro/certification_controller.rb app/controllers/pro/program_controller.rb app/controllers/pro/program_controller.rb and so on... The problem is that I would like to also use app/controllers/pro as a controller; so
2017 Jul 19
7
[PATCH 000/102] Convert drivers to explicit reset API
The reset control API has two modes: exclusive access, where the driver expects to have full and immediate control over the state of the reset line, and shared (clock-like) access, where drivers only request reset deassertion while active, but don't care about the state of the reset line while inactive. Commit a53e35db70d1 ("reset: Ensure drivers are explicit when requesting reset
2008 Jun 04
1
Determine what physical port a USB device is attatched to
How does one do this? For example: # lspci | grep USB 00:1a.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 02) 00:1a.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 02) 00:1a.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 02) 00:1a.7 USB Controller: Intel Corporation 82801I (ICH9
2019 Nov 24
2
My ethernet is not listed in centOS 8 boot.iso
On Sun, Nov 24, 2019 at 12:00 AM Phil Perry <pperry at elrepo.org> wrote: > This list does not accept attachments. Please just post the relevant > line for your ethernet device. or if you're not sure, paste the whole output inline in your message.... something like.... # lspci 00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] RS880 Host Bridge 00:01.0 PCI bridge:
2007 Mar 18
1
Choppy sound with chan_capi + Fritz Card USB
Hi everybody, I have a problem which I cannot eliminate on my own. Has anybody any idea for the following: I am using the asterisk-version from Debian-Testing (1.2.13) with the latest chan_capi (also tried an older version). When using the Capi-Channel, everything works fine except from the sound it sounds extremely choppy and is unusable :-( When e.g. capisuite is used for fax, everything
2008 Dec 09
1
suspend/resume system crash
Hi all, I've installed CentOS 5.2 i386 (with all updates) on notebook Fujutsu Siemens Esprimo U9200 Suspending works normal, but after resuming my system crashes. There are no messages about that in /var/log/messages, only after reboot system I see in gnome: " Resume Problem Your system did not appear to resume correctly from Suspend/Hibernate. This may be a driver problem or a
2008 Feb 18
3
Calling a controller inside a module
I tryied everything: :controller => ''MyModule::Core::Controller'' require ''MyModule/core/controller'' include MyModule::Core But nothing works !!! Question is very simple: How to call a controller that belongs to a Module inside the router.rb file? This cannot be that difficult! Thanks! -Sergio -------------- next part -------------- An HTML attachment
2006 Apr 13
8
Controller paths
Hi there. Suppose I create some controllers like ruby script/generate controller Admin::product add remove ruby script/generate controller Admin::user add remove ruby script/generate controller Login login logout the directory structure will be app/controllers/admin/product_controller.rb app/controllers/admin/user_controller.rb app/controllers/login_controller.rb Now suppose I need some links
2005 Jul 15
2
Strange problem with SIP and CAPI
Hi, I?ve strange problem when I?m making a call from SIP (Cisco 7960) to capi (Fritz PCI). When I call a national number, I?m hearing the ringtone when the called party is ringing but when I call an international number, I don?t hear the ringtone and I?ve a silence until the called party answers. Both call are going through the same extension. Here?s 2 log files, one with a national number and
2006 Mar 31
11
Model and Controller relationship
...e specifically the relationship between Model and Controllers. Does an Model class contain a Controller class, the otherway round, or are they two seperate classes that talk? 1. Should the Models be treated as the primary objects within a program and the matching controller is simply a way of controlling access to the class via the web. 2. The Controller classes are the primary object and simply use an ActiveRecord class to store data. 3. Other? -- Posted via http://www.ruby-forum.com/.
2007 Dec 28
5
Problem with RTL-8110SC/8169SC Gigabit Ethernet
Hi guys; I'm having a problem with a new pc that has an Realtec ethernet device. Don't know why the driver is not loading and is not detected during installation process. I tried to load r8169.ko unsuccessfully. It load but no device is detected. No dmesg or /var/log/message. ?Any help on how I can configure correctly this ethernet device? This are the data that I have: # lspci
2016 Jul 15
1
[PATCH v3 0/4] nouveau RPM fixes for Optimus (final)
On Fri, Jul 15, 2016 at 12:41:49PM -0400, Ilia Mirkin wrote: > On Fri, Jul 15, 2016 at 12:36 PM, Peter Wu <peter at lekensteyn.nl> wrote: > > On Fri, Jul 15, 2016 at 12:10:23PM -0400, Ilia Mirkin wrote: > >> On Fri, Jul 15, 2016 at 9:12 AM, Peter Wu <peter at lekensteyn.nl> wrote: > >> > Hi, > >> > > >> > Here are two patches to fix
2019 Nov 24
0
My ethernet is not listed in centOS 8 boot.iso
Hi, Here it is... 00:00.0 Host bridge [0600]: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub [8086:2a00] (rev 0c) 00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) [8086:2a02] (rev 0c) 00:02.1 Display controller [0380]: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (secondary)
2006 Feb 16
9
calling a controller/action from another controller
Hi, Is there a way to call a controller/action pair from another controller as well as render the view for that pair? I have tried using "render ''ctrl/action''" and that works, but the controller code isn''t called (only the view is rendered). A redirect_to isn''t desirable either as I want the resulting content to be rendered in the current
2016 Jul 28
6
LSI SATA MegaRaid & Centos 7 build 1511
On 7/28/2016 3:41 PM, Fawzy Ibrahim wrote: > LSI SATA MEGARAID 95Q9 afaik, the megaraid cards are mostly all SAS, which support SATA drives, except very old ones were SCSI. Ok, I do see they had a series of MegaRAID SATA 150-xx and 300-xx cards, these were 64 bit PCI or PCI-X cards. 95Q9 does not appear to be a valid card number, 9240, 9260, 9280 are some pci-express SAS MegaRaid
2009 Jan 26
7
Auto Detect
Which command to run which will auto detect all hardwares present in the system ? OS : CentOS Running Asterisk -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090126/5e064cf8/attachment.htm
2008 Feb 27
7
older version of rails -- Unknown action error
Hi, I''m using Rails 1.2.3 (constraint of the hosting company). I''m getting this error Unknown action No action responded to subscriber upon visiting http://mydomain.com/super_admin/subscriber/search I have these files: app/controllers/super_admin_controller.rb app/controllers/super_admin/subscriber_controller.rb app/views/super_admin/subscriber/search.rhtml and below is my
2010 Mar 23
1
:has_many and :controller specified in routes.rb
Have an app using older version of Rails (2.3.2) that I need some routing assistance with if anyone has a minute. The app was originally designed to be purely html view, and an xml and json api was hacked on. To keep it clean, we are now moving the first version of the api (v1) under its own directory (v1) under app/ controllers but still responding to the old paths. One of the parts of the new