Διαφορά μεταξύ των αναθεωρήσεων του "Module:IsValidPageName"
Από Γνωσιακή Βάση Υπηρεσιών και Διαδικασιών του Δημοσίου Τομέα
(use pcall in case we are over the expensive function count) |
(Καμία διαφορά)
|
Αναθεώρηση της 14:23, 2 Απριλίου 2014
Documentation for this module may be created at Module:IsValidPageName/τεκμηρίωση
-- This module implements [[Template:isValidPageName]].
local export = {}
function export.isValidPageName(frame)
local success, res = pcall(mw.title.new, frame.args[1])
if success and res then
return "valid"
else
return ""
end
end
return export