Subversion Repositories Kolibri OS

Rev

Rev 7422 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7422 Rev 7742
Line 172... Line 172...
172
{
172
{
173
	if(!strncmp(_in,"ftp:",4)) return true;
173
	if(!strncmp(_in,"ftp:",4)) return true;
174
	if(!strncmp(_in,"http:",5)) return true;
174
	if(!strncmp(_in,"http:",5)) return true;
175
	if(!strncmp(_in,"https:",6)) return true;
175
	if(!strncmp(_in,"https:",6)) return true;
176
	if(!strncmp(_in,"mailto:",7)) return true;
176
	if(!strncmp(_in,"mailto:",7)) return true;
-
 
177
	if(!strncmp(_in,"tel:",4)) return true;
-
 
178
	if(!strncmp(_in,"#",1)) return true;
177
	if(check_is_the_adress_local(_in)) return true;
179
	if(check_is_the_adress_local(_in)) return true;
178
	return false;
180
	return false;
179
}
181
}
Line 180... Line 182...
180
 
182