Hot answers tagged routing
3
The code in your rulesFactory was only ever running once - the first time the service itself was instantiated.
It does this on resolve the first time:
Angular sees it's looking for something to inject called 'rulesFactory'
Angular finds a service called rulesFactory. It sees no one has used rulesFactory yet, and instantiates the service.
The service ...
2
It seems that in views/products/show_name.html.erb at line 42 you have something like this:
<%= edit_product_path %>
And this route doesn't exist. edit route requires product id. Try this:
<%= edit_product_path(@product) %>
1
To check your routes you can run
rake routes
to inspect if you have the routes defined correctly. Also I would suggest to use
<%= link_to "New Setting", new_setting_pah %>
For your routes definition you are not defining the routes for other methods than add or remove.
I advise you to read this great tutorial on rails routes
1
If you just want to get to alpha.mydomain.com and never to mydomain.com, you could make root_url always point to the alpha subdomain by doing this:
root :to => 'static#home', :subdomain => 'alpha'
And in the view you can just use:
<%= link_to 'home', root_url %>
Was that something like what you had in mind?
1
Finally I found the problem. I'm using a free HTML5 template (Charisma by Usman - here a demo: http://usman.it/themes/charisma/), which includes jQuery History plugin. I removed this plugin, along with some initialization code, and now all is working as expected.
My fault, I didn't inspect the code carefully.
1
Try this on your routes.rb
dminStagingPuzzleflowUs::Application.routes.draw do
devise_for :users
resources :sessions, :only => [:new, :create, :destroy]
devise_scope :user do
match 'signup' => 'users#new', :as => :signup
match 'register' => 'users#create', :as => :register
match 'login' => 'sessions#new', :as => ...
1
What I do is use "#toolbox" as the href, but I still call preventDefault on the click event.
That way:
the app handles the navigation, and simply updates the URL fragment
the user can open a link in a new window (or load a bookmark) and land on the expected page (because the route gets triggered by the routing controller)
Essentially, once a route has ...
1
1) You already have some implementations for tcp tunelling with java. Below are some examples:
http://jtcpfwd.sourceforge.net/
http://sourceforge.net/projects/jttt/
2) Even with these existing implementations, you can still do you own by forwarding packets arriving in the proxy using java.net.Socket.
3) I still think that a better option would be a ...
1
I don't know of a route exposing bundle with a plugin for TinyMCE but you can easily write one yourself with:
FOSJSRoutingBundle
For security reasons not all routes will be exposed by default.
After installing the bundle as described in the README. Expose routes like this:
my_route_to_expose:
pattern: /foo/{id}/bar
defaults: { _controller: ...
1
I needed this for a recent project, I plan to release this code as open source at some point, but you can do something like this:
Create a global router to handle all routing:
App.GlobalRouter = Backbone.Router.extend({
initialize: function(){
this._routes = {};
},
registerRoute: function(route, rootRoute){
var rootName;
...
Only top voted, non community-wiki answers of a minimum length are eligible

