similar to: Named routes - which one has been used?

Displaying 20 results from an estimated 10000 matches similar to: "Named routes - which one has been used?"

2006 Mar 30
0
Page navigation using named routes (need your help)
Hello, I want to use named routes to create page navigation. For instance I have these named routes: map.homepage ''/'', ... map.links ''/links'', ... map.catalog ''/products/catalog/'', ... map.catalog2 ''/catalog/:year/'', ... And then have a map which defines navigation on the basis of the named routes (just for imagination):
2006 Jul 07
1
question about routes and using flash for navigation
I have a flash movie that I''m using for site navigation.. I have links such as: ''/site/signup'', ''/site/login'' and ''/site/faq'' where site is my controller and signup, login or faq are my actions.. I also have the following routes defined in routes.rb: map.connect "/", :controller => "site", :action =>
2009 Oct 30
2
MatLab SimBiology
Is there any R package that implements the same capability of MatLab toolbox called SimBiology ? We are expecially interested in protein-protein interactions and network analysis. As far as I know SimBiology implements a system of ODEs reflecting the kinetic chemical reactions. We would be more interested in stochastic simulations. Thank you in advance. Maura tutti i telefonini TIM!
2014 Jun 13
2
[PATCH] Support for ASEM UPS on Linux/i2c
As said in previous mail, I just finished a first working version of a driver for the UPS found on ASEM PB1300 device (http://www.asem.it/prodotti/industrial-automation/box-pcs/performance/pb1300/) Linux only, accessed through i2c/SMBUS. If you can spare some time, please review. Expecially my autotools skills are ehm... a bit rusty. -- Giuseppe Corbelli WASP Software Engineer,
2009 Mar 12
4
log to cdr each dialpan action, not only one record for each call
Hi to all. What can i do if a customer needs to log in the CDR all the dialpan actions related to a call? I mean, not only the lastapp e the lastdata but all the dialpan actions! I know that the actual CDR system store one record for each call (and for billing purposes this can be correct) but in some cases the approach needed is something similar to the queue_log. I know that exists ResetCDR
2010 Oct 31
2
[LLVMdev] how to maximize speed of x86 jit
Hi! Is it possible to tune a jit execution engine, expecially the one for x86, for compilation speed at the cost of optimization quality? -Jochen
2011 Feb 21
2
How to use Winedebug variable or winedbg?
Hi, I'm trying to understand how to use the debugging system built-in wine.. I've tried yet to use both "winedbg <app.to.launch.exe>" and "wine <app.to.launch.exe> WINDEBUG=+all but doesn't work at all =( Where's the mistake? It should be very useful understand why programs doesn't work and expecially try possible solutions... :)
2005 Jun 10
1
Call inband progress indication and zaphfc
Hello all, I've a little clue with zaphfc used to connect to a BRI linethat probably can be a configuration issue.... (really I hope so) Here, telcos (expecially mobile operators) use to substitute the dialtone with some vocal indication without answer the line. (Indications like "The customer is not reachable" or "wait because the customer is on the phone" ecc..) For
2005 Sep 26
1
voipbuster advise
Hi, I'm using voipbuster at work, and I've got 2 questions: 1) Is it possible to send faxes using voipbuster connex? 2) Is it possible to cut off or cover the voice that say the charge per minute?(I've payed the '5' euro, and from that moment I've got it!). Of course I understand that is to let me know how much I'm going to spend, but I do not like it, expecially when
2006 Nov 24
1
upgraded polycom to 2.0.1.0291 and...
Now i'm receiving this and my phone no longer can dial out... ERROR[4391]: chan_sip.c:11169 handle_request: Missing Cseq. Dropping this SIP message, it's incomplete. I'm having to use the configs that came with the zip because apparently my previous configs no longer are valid and lock the phone from dialing with a url disabled message... anyway, these polycom phones are driving
2002 Feb 15
1
Win 2000 Prof in workgroup with samba 2.2.2
Hi folks, this is the problem: we have several Win2000 PRO SP2 working in workgroup (not joining the domain) with a unique local user. The server Samba acts with security = user, with no encrypted password and keeps the username/password of people who want to connect to it. People log on the W2000 with the same username/password kept into samba server but when we map a network drive, the samba
2014 Jun 18
0
[PATCH] Support for ASEM UPS on Linux/i2c
On Jun 13, 2014, at 2:53 AM, Giuseppe Corbelli <giuseppe.corbelli at copanitalia.com> wrote: > As said in previous mail, I just finished a first working version of a driver for the UPS found on ASEM PB1300 device > (http://www.asem.it/prodotti/industrial-automation/box-pcs/performance/pb1300/) > Linux only, accessed through i2c/SMBUS. > If you can spare some time, please review.
2007 Jun 07
1
Adding robustness to Speex on wireless networks.
I've not so much bandwidth to add channel coding but i've few bytes to spare for error detection. With a polynomial CRC-8 i've already more than 99.6 % to detect a burst error in a frame. So let's suppose the critical fields of Speex are: Wideband bit Mode ID LSP OL pitch OL pitch gain OL Exc gain So my plans are to calculate a CRC on these fields for each frame i send, then if i
2009 Jun 10
1
problem with transfer application (REFER)
I'm experiencing some problem using the transfer() application,expecially when a call in received from a queue. I'm using Asterisk 1.4.22.1 This is my scenario: ; this is the piece of code in extensions.conf that place the call in the queue when 1111 is called exten => 1111,1,Answer exten => 1111,n,Queue(2000|t) ;this is the piece of code that calls the user test when 2222 is
2006 Nov 04
0
Question about named routes - getting "No url can be generated for the hash"
So I''ve decided to clean up the structure of my rails app and have been using named routes and storing certain controllers underneath other controllers where appropriate.. For example, I have an AdminController, as well as a ContentController. I decided to make ContentController a subclass of the AdminController, because the content management portion of the site is only accessible to
2007 Nov 07
0
Named routes raising nil.rewrite error
Hi all. I''m having a little problem with named routes. I have the following named route: map.with_options :controller => ''snippets'' do |map| map.snippets ''faq/'', :action => ''index'' map.new_snippet ''faq/ new'', :action
2006 Jul 08
0
Different URL generation in regular and named routes.
Obviously I am missed something, but why the way a path is generating using named routes is a little bit different from using regular url_for? 1. Parameters from current request did not affect named routes, the way it is in the url_for. 2. only_path=>false by default in named routes. It is true by default whe using *_path instead of *_url, by why not to set it true by default in *_url and
2006 Jul 11
0
Named routes raising exception
Hi, I''m trying to follow some of the Rails Recipies, in particular the authentication one. In the logout action there is redirect_to home_url. I''ve tried to set up a route using map.home_url '''' in the routes.rb file. That seems to cause an error > undefined local variable or method `home'' for #<AdminController:0x3ab97f0> > > I
2007 Jul 31
0
Edit not working with named routes
HELP! I''m a relatively new rails user and I''m stuck. I''m trying to build a relatively simple blog and I decided that I liked the way named routes look in the code. So I added map.resources :posts to my routes.db file. I then went through and updated my controller to take advantage of the named routes that were generated. I also updated all of my views and everything
2006 Aug 08
1
Named routes and url generation?
Hi all In my application I''ve some named routes defined this way... map.label_context1 '':context1/label'', :controller => ''mycontroller'' map.label_context2 '':context1/:context2/label'', :controller => ''mycontroller'' map.label_context3 '':context1/:context2/:context3/label'', :controller =>