Re: [RFE][PATCH] Allow cd smb://, cd sh://, cd mc:// vfs requests

2005-02-12 Thread Roland Illig
Jindrich Novy wrote: +} url_table[] = { {"ftp://";, 6, "/#ftp:"}, + {"mc://", 5, "/#mc:"}, + {"smb://", 6, "/#smb:"}, + {"sh://", 5, "/#sh:"}, Here I added {"ssh://", 6, "/#sh:"}, + {"a:", 2, "/#a"} +}; + char * vfs_translate_ur

Re: [RFE][PATCH] Allow cd smb://, cd sh://, cd mc:// vfs requests

2005-02-07 Thread buc
Jindrich Novy wrote: <>Hello Dmitry, I only wanted to propose a more intuitive way to access various VFSes to the most of users and to let them use the functionality ASAP. Some further work to let them make their life with mc more comfortable is welcome so if you have any pending patches similar to

Re: [RFE][PATCH] Allow cd smb://, cd sh://, cd mc:// vfs requests

2005-02-07 Thread Jindrich Novy
Hello Dmitry, On Mon, 2005-02-07 at 16:14 +0300, buc wrote: > Jindrich Novy wrote: > >since we can access ftp filesystems either like cd /#ftp: or more > >intuitively like cd ftp:// it's not a bad idea IMNSHO to add such > >extensions also for other filesystems. The attached patch implements > >su

Re: [RFE][PATCH] Allow cd smb://, cd sh://, cd mc:// vfs requests

2005-02-07 Thread buc
Jindrich Novy wrote: Hi, since we can access ftp filesystems either like cd /#ftp: or more intuitively like cd ftp:// it's not a bad idea IMNSHO to add such extensions also for other filesystems. The attached patch implements such an extension and it makes vfs_translate_url() more comprehensive in

[RFE][PATCH] Allow cd smb://, cd sh://, cd mc:// vfs requests

2005-02-07 Thread Jindrich Novy
Hi, since we can access ftp filesystems either like cd /#ftp: or more intuitively like cd ftp:// it's not a bad idea IMNSHO to add such extensions also for other filesystems. The attached patch implements such an extension and it makes vfs_translate_url() more comprehensive in the way that the ali