Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 

















Module:If preview






Afrikaans
ि
Аԥсшәа
العربية

Asturianu
Авар
تۆرکجه
Basa Bali

 / Bân-lâm-gú
Беларуская
Беларуская (тарашкевіца)

Bosanski
Català
Cebuano
Dansk
الدارجة
ދިވެހިބަސް
فارسی
Français
Galego
گیلکی
Хальмг

Հայերեն
ि
Ilokano
Bahasa Indonesia
Íslenska
Jawa

Kurdî
Magyar
ि
Македонски

Māori

مازِرونی
Bahasa Melayu
 
 / Mìng-dĕ̤ng-nḡ
Монгол

Na Vosa Vakaviti
Nederlands


Napulitano
Norsk bokmål
ି
Oʻzbekcha / ўзбекча



Português
Qaraqalpaqsha
Română
Русский

Scots

Simple English
سنڌي
Slovenščina
کوردی
Српски / srpski
Srpskohrvatski / српскохрватски
Suomi
Tagalog
ி
 

Türkçe
Türkmençe
Українська
اردو
Tiếng Vit
Winaray

Ghanaian Pidgin
 

Edit links
 









Module
Talk
 

















Read
View source
View history
 








Tools
   


Actions  



Read
View source
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Get shortened URL
Download QR code
Wikidata item
 




Print/export  



Download as PDF
Printable version
 




In other projects  



Wikisource
Wikiversity
 
















Appearance
   

 





Permanently protected module

From Wikipedia, the free encyclopedia
 


This module implements {{If preview}} and {{Preview warning}}. It helps templates/modules determine if they are being previewed.

Prefer implementing the template versions in other templates.

In a module to use the main(), you need to pass a frame table with an args table.

For the preview warning, use _warning().

local p = {}

local cfg = mw.loadData('Module:If preview/configuration')

--[[
main

This function returns either the first argument or second argument passed to
this module, depending on whether the page is being previewed.

]]
function p.main(frame)
 if cfg.preview then
  return frame.args[1] or ''
 else
  return frame.args[2] or ''
 end
end

--[[
pmain

This function returns either the first argument or second argument passed to
this module's parent (i.e. template using this module), depending on whether it
is being previewed.

]]
function p.pmain(frame)
 return p.main(frame:getParent())
end


local function warning_text(warning)
 return mw.ustring.format(
  cfg.warning_infrastructure,
  cfg.templatestyles,
  warning
 )
end

function p._warning(args)
 
 local warning = args[1] and args[1]:match('^%s*(.-)%s*$') or ''
 if warning == '' then
  return warning_text(cfg.missing_warning)
 end
 
 if not cfg.preview then return '' end
 
 return warning_text(warning)
end

--[[
warning

This function returns a "preview warning", which is the first argument marked
up with HTML and some supporting text, depending on whether the page is being previewed.

disabled since we'll implement the template version in general

]]
--function p.warning(frame)
-- return p._warning(frame.args)
--end

--[[
warning, but for pass-through templates like {{preview warning}}
]]
function p.pwarning(frame)
 return p._warning(frame:getParent().args)
end

return p

Retrieved from "https://en.wikipedia.org/w/index.php?title=Module:If_preview&oldid=1216624147"

Categories: 
Modules subject to page protection
Templates using TemplateStyles
Hidden category: 
Wikipedia template-protected modules
 



This page was last edited on 1 April 2024, at 03:11 (UTC).

Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



Privacy policy

About Wikipedia

Disclaimers

Contact Wikipedia

Code of Conduct

Developers

Statistics

Cookie statement

Mobile view



Wikimedia Foundation
Powered by MediaWiki