July 10, 2011
5:39 p.m.
10.07.2011 17:19, James Cloos wrote:
"MY" == Mykyta Yevstifeyev<evnikita2@gmail.com> writes: MY> Yes, there probably is a mistake here. I think the following MY> expression will be better:
!^ftp://(([^@]*)@)?([^:/?#]*).*$!\\3!i That can be simplified to:
!^ftp://([^@]*@)?([^:/?#]*).*$!\\2!i I agree with you here. Yet, actually this may be simplified far to !^ftp://(.*@)?([^:/?#]*).*$!\\2!i as "@" chars are not generally allowed in in <userinfo> without percent encoding, as well as in other parts of the URI. It is in <gen-delims>. So, I think the aforementioned expression will be requested in my document.
If there are no objections, I'll notify the consensus to apps-discuss list. Mykyta Yevstifeyev
-JimC