Subversion Repositories Kolibri OS

Rev

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

Rev 7742 Rev 7743
Line 174... Line 174...
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;
177
	if(!strncmp(_in,"tel:",4)) return true;
178
	if(!strncmp(_in,"#",1)) return true;
178
	if(!strncmp(_in,"#",1)) return true;
-
 
179
	if(!strncmp(_in,"WebView:",8)) return true;
179
	if(check_is_the_adress_local(_in)) return true;
180
	if(check_is_the_adress_local(_in)) return true;
180
	return false;
181
	return false;
181
}
182
}
Line 182... Line 183...
182
 
183