📄 _login.pm
字号:
package URI::URL::_login;
require URI::URL::_generic;
@ISA = qw(URI::URL::_generic);
# Generic terminal logins. This is used as a base class for 'telnet',
# 'tn3270', and 'rlogin' URL schemes.
sub _parse {
my($self, $init) = @_;
# All we want from _generic is the 'netloc' handling.
$self->URI::URL::_generic::_parse($init, 'netloc');
}
*path = \&URI::URL::bad_method;
*epath = \&URI::URL::bad_method;
*query = \&URI::URL::bad_method;
*equery = \&URI::URL::bad_method;
*params = \&URI::URL::bad_method;
*eparams = \&URI::URL::bad_method;
*frag = \&URI::URL::bad_method;
1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -