Zum Inhalt springen

Modul:URLutil: Unterschied zwischen den Versionen

Füge Funktion "isProtocolMW()" hinzu (alle Protokolle die grundsätzlich vom MediaWiki erkannt werden)
w>PerfektesChaos
(Änderung 121181334 von Patrick87 rückgängig gemacht. Besser vorher die Doku zu der Funktion lesen, und noch besser vorher absprechen. Was Protokolle sein könnten, weiß ich selber; siehe isProtocolDialog.)
w>Patrick87
(Füge Funktion "isProtocolMW()" hinzu (alle Protokolle die grundsätzlich vom MediaWiki erkannt werden))
Zeile 18: Zeile 18:
* isMailAddress()
* isMailAddress()
* isMailLink()
* isMailLink()
* isProtocolDialog
* isProtocolMW()
* isProtocolWiki
* isProtocolDialog()
* isProtocolWiki()
* isResourceURL()
* isResourceURL()
* isSuspiciousURL()
* isSuspiciousURL()
Zeile 328: Zeile 329:
     return false
     return false
end -- isProtocolAccepted()
end -- isProtocolAccepted()
URLutil.isProtocolMW = function ( prot )
    return isProtocolAccepted( prot,
                              " http https ftp ftps ssh sftp irc ircs xmpp sip sips gopher telnet nntp worldwind mailto tel sms news svn git mms bitcoin magnet urn geo " )
end -- URLutil.isProtocolMW()




Zeile 472: Zeile 480:
function p.isMailLink( frame )
function p.isMailLink( frame )
     return URLutil.isMailLink( frame.args[ 1 ] ) and "1" or ""
     return URLutil.isMailLink( frame.args[ 1 ] ) and "1" or ""
end
function p.isProtocolMW( frame )
    return URLutil.isProtocolMW( frame.args[ 1 ] ) and "1" or ""
end
end
function p.isProtocolDialog( frame )
function p.isProtocolDialog( frame )
Anonymer Benutzer