0
votes
0answers
18 views
VMWare Workstation: How to access the virtual disk from the host system? [closed]
Hi there,
I would like to access the disk of a VM from host or even better from LAN. The VM runs a Windows XP. The easiest way would be an access to the c$ share.
Peace,
Ice
1
vote
1answer
28 views
Is it possible to have file-system-like routes with acts_as_tree?
I have a Folder model which acts_as_tree.
Is it possible that the routes represent the folder structure?
Folders:
1: Folder A
2: Folder B
3: Folder C
4: Folder D
5: Fold …
0
votes
2answers
41 views
Rails routing with date and has many
I've got the following setup:
map.resources :articles
map.resources :users, :has_many => [:articles]
Which is fine as I can do /users/2/articles to get a list of articles b …
1
vote
2answers
56 views
How can I do this ASP.NET MVC 1.0 code in MVC 2.0 ?
Hi folks,
I'm converting one of our ASP.NET MVC application from 1.0 to 2.0.
This is code that is erroring :-
string virtualPath = HttpContext.Request.ServerName() +
RouteTa …
0
votes
5answers
57 views
Session Fixation in ASP.Net MVC
Is it possible to block an action to be executed directly from the browser, but still be able to redirect to it from inside the site? I know it sounds stupid but this is what I wan …
1
vote
1answer
29 views
MVC 2 AreaRegistration Routes Order
I noticed that in MVC 2 Preview 2, AreaRegistration is loading the routes for each area in an arbitrary order. Is there a good way to get one before the other?
For example, I have …
0
votes
4answers
81 views
problem with friendly URLs routing by name instead of ID
I have a route in my code that looks like this:
map.app 'applications/:title_header', :controller => 'apps', :action => 'show'
I also changed my show method in the control …
0
votes
1answer
16 views
routing urls and paths in rails
I have a controller which has a method called history
class UsersController < ApplicationController
def history
User.return_history(params[:id])
end
end
I have the …
0
votes
1answer
39 views
map.resource and naming convention for singleton
Hello,
I am relatively new to ruby on rails, so this question might be easy. Rails does a lot of magic and I am not sure where to look up such things, because I don't know which …
1
vote
3answers
72 views
Can a custom path be appended to the ‘new’ path for Rails routes?
What I'm trying to do:
I'm building a system where there are different types of post. Setting aside the models, this question is about the routes and the controller
Basically /p …
0
votes
2answers
45 views
Ruby on Rails: Using a “complete_tasks_controller” for RESTful Rails
I'm having troubling completing a task the RESTful way. I have a "tasks" controller, and also a "complete_tasks" controller.
I have this in the complete_tasks_controller create ac …
0
votes
2answers
83 views
Rails - link_to, routes and nested resources
As my understanding on nested resources, on edge Rails, should not
link_to 'User posts', @user.posts
point to
/users/:id/posts
?
The routes.rb file contains
map.resources : …
2
votes
7answers
263 views
Algorithm Optimization - Shortest Route Between Multiple Points
Problem: I have a large collection of points. Each of these points has a list with references to other points with the distance between them already calculated and stored. I nee …
0
votes
2answers
106 views
Rails named routes using complex parameter names
I need to create a pretty route for an action that is expecting ugly nested parameter names (this is set and not something I can change at this time).
So instead of
http://domain …
0
votes
1answer
61 views
redirect() Not Actually Redirecting (Routes for Pylons)
I am constructing a table of routes in my Pylons app. I can't get redirect() to work the way that it should work. I'm not sure what I'm doing wrong.
Here is an example of redi …
