Template:Fmbox/doc: Difference between revisions From Online Manual

Jump to: navigation, search
mNo edit summary
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 8: Line 8:
It can be used to build message boxes for system messages such as [[MediaWiki:Sp-contributions-footer-anon]]. It can also be used for footer and header boxes on user pages and for [[Wikipedia:Editnotice|editnotices]].
It can be used to build message boxes for system messages such as [[MediaWiki:Sp-contributions-footer-anon]]. It can also be used for footer and header boxes on user pages and for [[Wikipedia:Editnotice|editnotices]].


This template works similarly to {{tl|ambox}} and mostly uses the same parameters. The main differences are that this box is 100% wide and has different colour styles.
This template works similarly to {{tl|ambox}} and mostly uses the same parameters. The main differences are that this box is 100% wide and has different color styles.


=== Usage ===
=== Usage ===
Line 26: Line 26:
{{fmbox
{{fmbox
| type      = editnotice
| type      = editnotice
| image    = [[Image:Emblem-question-yellow.svg|40px]]
| image    = [[Image:Emblem-question-yellow.png|40px]]
| style    = border: 1px solid #f4c430;
| style    = border: 1px solid #f4c430;
| textstyle = color: red; font-weight: bold; font-style: italic;
| textstyle = color: red; font-weight: bold; font-style: italic;
Line 35: Line 35:
{{fmbox
{{fmbox
| type = editnotice
| type = editnotice
| image    = [[Image:Emblem-question-yellow.svg|40px]]
| image    = [[Image:Emblem-question-yellow.png|40px]]
| style    = border: 1px solid #f4c430;
| style    = border: 1px solid #f4c430;
| textstyle = color: red; font-weight: bold; font-style: italic;
| textstyle = color: red; font-weight: bold; font-style: italic;
Line 65: Line 65:


{{fmbox
{{fmbox
| image = [[Image:User-info.svg|40px]]
| image = [[Image:User-info.png|40px]]
| text  = image = <nowiki>[[Image:User-info.svg|40px]]</nowiki> <br> This image is used for [[MediaWiki:Sp-contributions-footer]].
| text  = image = <nowiki>[[Image:User-info.png|40px]]</nowiki> <br> This image is used for [[MediaWiki:Sp-contributions-footer]].  
}}
{{fmbox
| image = [[Image:Commons-logo.svg|40x40px]]
| text  = image = <nowiki>[[Image:Commons-logo.svg|40x40px]]</nowiki> <br> Note the use of "40x40px" to also limit the height of the image. This image is used for [[MediaWiki:Sharedupload-desc-here]].
}}
}}


Line 85: Line 81:
}}
}}
{{fmbox
{{fmbox
| image = [[Image:User-info.svg|40px]]
| image = [[Image:User-info.png|40px]]
| imageright = [[Image:Nuvola apps bookcase.svg|40px]]
| imageright = [[Image:Nuvola apps bookcase.png|40px]]
| text  = image = <nowiki>[[Image:User-info.svg|40px]]</nowiki> <br> imageright = <nowiki>[[Image:Nuvola apps bookcase.svg|40px]]</nowiki>
| text  = image = <nowiki>[[Image:User-info.png|40px]]</nowiki> <br> imageright = <nowiki>[[Image:Nuvola apps bookcase.png|40px]]</nowiki>
}}
}}


Line 97: Line 93:
{{fmbox
{{fmbox
| type  = system / editnotice / warning
| type  = system / editnotice / warning
| image = none / [[Image:Some image.svg|40px]]
| image = none / [[Image:Some image.png|40px]]
| imageright = [[Image:Some image.svg|40px]]
| imageright = [[Image:Some image.png|40px]]
| id = CSS id
| id = CSS id
| class = CSS class names
| class = CSS class names
Line 113: Line 109:
:'''No parameter''' = If no '''image''' parameter is given the template uses a default image. Which default image it uses depends on the '''type''' parameter.
:'''No parameter''' = If no '''image''' parameter is given the template uses a default image. Which default image it uses depends on the '''type''' parameter.
:'''An image''' = Should be an image with usual wiki notation. 40px - 50px width are usually about right depending on the image height to width ratio. (But the message box can handle images of any size.) For example:  
:'''An image''' = Should be an image with usual wiki notation. 40px - 50px width are usually about right depending on the image height to width ratio. (But the message box can handle images of any size.) For example:  
::<code><nowiki>image = [[Image:User-info.svg|40px]]</nowiki></code>
::<code><nowiki>image = [[Image:User-info.png|40px]]</nowiki></code>
:'''none''' = Means that no image is used.
:'''none''' = Means that no image is used.


Line 123: Line 119:


'''id'''
'''id'''
:Optional [http://en.wikipedia.org/wiki/Cascading_Style_Sheets CSS] id used by the entire message box table. Without quotation marks <code>" "</code>. Mostly meant to be used to tag a message box with its name, to make it easy to detect the presence of the message from javascript. For instance [[MediaWiki:Sp-contributions-footer]] would use:
:Optional [[Wikipedia:Cascading Style Sheets|CSS]] id used by the entire message box table. Without quotation marks <code>" "</code>. Mostly meant to be used to tag a message box with its name, to make it easy to detect the presence of the message from javascript. For instance [[MediaWiki:Sp-contributions-footer]] would use:
::<code>id = sp-contributions-footer</code>
::<code>id = sp-contributions-footer</code>


'''class'''
'''class'''
:Optional [http://en.wikipedia.org/wiki/Cascading_Style_Sheets CSS] class names used by the entire message box table. Without quotation marks <code>" "</code>. Mostly meant to be used to tag a message box with its name so it can be individually skinned. For instance [[MediaWiki:Sp-contributions-footer]] would use:
:Optional [[Wikipedia:Cascading Style Sheets|CSS]] class names used by the entire message box table. Without quotation marks <code>" "</code>. Mostly meant to be used to tag a message box with its name so it can be individually skinned. For instance [[MediaWiki:Sp-contributions-footer]] would use:
::<code>class = sp-contributions-footer</code>
::<code>class = sp-contributions-footer</code>


'''style'''
'''style'''
:Optional [http://en.wikipedia.org/wiki/Cascading_Style_Sheets CSS] values used by the entire message box table. Without quotation marks <code>" "</code> but with the ending semicolons <code>;</code>. For example:
:Optional [[Wikipedia:Cascading Style Sheets|CSS]] values used by the entire message box table. Without quotation marks <code>" "</code> but with the ending semicolons <code>;</code>. For example:
::<code>style = margin-top: 1em;</code>
::<code>style = margin-top: 1em;</code>


'''textstyle'''
'''textstyle'''
:Optional [http://en.wikipedia.org/wiki/Cascading_Style_Sheets CSS] values used by the text cell. For example:
:Optional [[Wikipedia:Cascading Style Sheets|CSS]] values used by the text cell. For example:
::<code>textstyle = font-size: 90%; text-align: center;</code>
::<code>textstyle = font-size: 90%; text-align: center;</code>


Line 169: Line 165:
Internally this meta-template uses HTML wikimarkup instead of wikimarkup for the table code. That is the usual way we make meta-templates since wikimarkup has several drawbacks. For instance it makes it harder to use [[m:Help:ParserFunctions|parser functions]] and some special characters in parameters.  
Internally this meta-template uses HTML wikimarkup instead of wikimarkup for the table code. That is the usual way we make meta-templates since wikimarkup has several drawbacks. For instance it makes it harder to use [[m:Help:ParserFunctions|parser functions]] and some special characters in parameters.  


The default images for this meta-template are in png format instead of svg format. The main reason is that some older web browsers have trouble with the transparent background that MediaWiki renders for svg images. The png images here have hand optimised transparent background colour so they look good in all browsers. Note that svg icons only look somewhat bad in the old browsers, thus such hand optimisation is only worth the trouble for very widely used icons.
The default images for this meta-template are in png format instead of svg format. The main reason is that some older web browsers have trouble with the transparent background that MediaWiki renders for svg images. The png images here have hand optimized transparent background color so they look good in all browsers. Note that svg icons only look somewhat bad in the old browsers, thus such hand optimization is only worth the trouble for very widely used icons.


'''Note to admins:''' MediaWiki does not parse and convert HTML wikimarkup in system messages the same way as it does for normal pages. This means for instance that <code>&lt;br></code> is not automatically converted to <code>&lt;br /></code> and missing <code>&lt;/td></code> and <code>&lt;/tr></code> tags are not automatically added. Thus see to that any HTML code you use in system messages are valid XHTML. That is, close all tags that you begin. However, regular wikimarkup works fine in most system messages.
'''Note to admins:''' MediaWiki does not parse and convert HTML wikimarkup in system messages the same way as it does for normal pages. This means for instance that <code>&lt;br></code> is not automatically converted to <code>&lt;br /></code> and missing <code>&lt;/td></code> and <code>&lt;/tr></code> tags are not automatically added. Thus see to that any HTML code you use in system messages are valid XHTML. That is, close all tags that you begin. However, regular wikimarkup works fine in most system messages.
Line 177: Line 173:
=== See also ===
=== See also ===


* {{tl|fmbox warning ruler}} – A horizontal ruler in the same colour as the red border for the warning type. Used inside some system warning notices.
* {{tl|fmbox warning ruler}} – A horizontal ruler in the same color as the red border for the warning type. Used inside some system warning notices.


{{Mbox templates see also}}
{{Mbox templates see also}}
<includeonly>
<!-- CATEGORIES AND INTERWIKIS HERE, THANKS -->
[[Category:Wikipedia metatemplates|{{PAGENAME}}]]
[[be-x-old:Шаблён:Службовае паведамленьне]]
[[et:Mall:Fmbox]]
[[id:Templat:Fmbox]]
[[it:Template:Fmbox]]
[[ja:Template:Fmbox]]
[[mk:Шаблон:Fmbox]]
[[no:mal:Fmbox]]
[[pl:Szablon:Fmbox]]
[[pt:Predefinição:Fmbox]]
[[ro:Format:Meta-casetămas]]
[[ur:سانچہ:Fmbox]]
</includeonly>

Latest revision as of 12:50, 10 July 2013

Template-info.png Message box templates {{ambox}} • {{asbox}} • {{cmbox}} • {{dmbox}} • {{fmbox}} • {{imbox}} • {{ombox}} • {{tmbox}}

This is the {{fmbox}} or footer & header message box template.

It can be used to build message boxes for system messages such as MediaWiki:Sp-contributions-footer-anon. It can also be used for footer and header boxes on user pages and for editnotices.

This template works similarly to {{ambox}} and mostly uses the same parameters. The main differences are that this box is 100% wide and has different color styles.

Usage

Simple usage example:

{{fmbox | text = Some text.}}


Complex example:

{{fmbox
| type      = editnotice
| image     = [[Image:Emblem-question-yellow.png|40px]]
| style     = border: 1px solid #f4c430;
| textstyle = color: red; font-weight: bold; font-style: italic;
| text      = The message body text.
}}

Footer and header message box types

The following examples use different type parameters but use no image parameters thus they use the default images for each type.

Other images

The default images shown above are mostly for testing and demonstration. In most cases it is more appropriate to use a more specific image or no image at all. These examples use the image parameter to specify an image other than the default image.

Special

Some other parameter combinations.

Parameters

List of all parameters:

{{fmbox
| type  = system / editnotice / warning
| image = none / [[Image:Some image.png|40px]]
| imageright = [[Image:Some image.png|40px]]
| id = CSS id
| class = CSS class names
| style = CSS values
| textstyle = CSS values
| text  = The message body text.
}}

type

If no type parameter is given the template defaults to type system. That means it gets a light grey background.

image

No parameter = If no image parameter is given the template uses a default image. Which default image it uses depends on the type parameter.
An image = Should be an image with usual wiki notation. 40px - 50px width are usually about right depending on the image height to width ratio. (But the message box can handle images of any size.) For example:
image = [[Image:User-info.png|40px]]
none = Means that no image is used.

imageright

No parameter = If no imageright parameter is given then no image is shown on the right side.
An image = Should be an image with usual wiki notation. 40px - 50px width are usually about right depending on the image height to width ratio. (But the message box can handle images of any size.) For example:
imageright = [[Image:Nuvola apps bookcase.png|40px]]
Anything = Any other object that you want to show on the right side.

id

Optional CSS id used by the entire message box table. Without quotation marks " ". Mostly meant to be used to tag a message box with its name, to make it easy to detect the presence of the message from javascript. For instance MediaWiki:Sp-contributions-footer would use:
id = sp-contributions-footer

class

Optional CSS class names used by the entire message box table. Without quotation marks " ". Mostly meant to be used to tag a message box with its name so it can be individually skinned. For instance MediaWiki:Sp-contributions-footer would use:
class = sp-contributions-footer

style

Optional CSS values used by the entire message box table. Without quotation marks " " but with the ending semicolons ;. For example:
style = margin-top: 1em;

textstyle

Optional CSS values used by the text cell. For example:
textstyle = font-size: 90%; text-align: center;

text

The message body text.

Technical details

This template currently uses hard coded styles and class names. Later it will only use CSS classes making it easier to skin. (In the meantime it can be skinned by using the "!important" keyword.)

If you need to make a box that is less than 100% wide, then do not use this box, instead use the {{ombox}}. Since this box doesn't have the "1px empty image cell" code that makes it so the other mboxes get proper box flow in all browsers when less than 100% wide.

If you need to use special characters in the text parameter then you need to escape them like this:

{{fmbox
| text  = <div>
Equal sign = and a start and end brace { } work fine as they are. 
But here is a pipe {{!}} and two end braces <nowiki>}}</nowiki>. 
And now a pipe and end braces <nowiki>|}}</nowiki>.
</div>
}}

Internally this meta-template uses HTML wikimarkup instead of wikimarkup for the table code. That is the usual way we make meta-templates since wikimarkup has several drawbacks. For instance it makes it harder to use parser functions and some special characters in parameters.

The default images for this meta-template are in png format instead of svg format. The main reason is that some older web browsers have trouble with the transparent background that MediaWiki renders for svg images. The png images here have hand optimized transparent background color so they look good in all browsers. Note that svg icons only look somewhat bad in the old browsers, thus such hand optimization is only worth the trouble for very widely used icons.

Note to admins: MediaWiki does not parse and convert HTML wikimarkup in system messages the same way as it does for normal pages. This means for instance that <br> is not automatically converted to <br /> and missing </td> and </tr> tags are not automatically added. Thus see to that any HTML code you use in system messages are valid XHTML. That is, close all tags that you begin. However, regular wikimarkup works fine in most system messages.

For more technical details see the talk page. Since this template works almost exactly like {{ambox}}, {{tmbox}}, {{imbox}}, {{cmbox}} and {{ombox}} their talk pages and related pages might also contain more details.

See also

  • {{fmbox warning ruler}} – A horizontal ruler in the same color as the red border for the warning type. Used inside some system warning notices.

There are several meta-templates in the mbox family:

  • {{ambox}} – For article message boxes.
  • {{tmbox}} – For talk page message boxes.
  • {{imbox}} – For file (image) page message boxes.
  • {{cmbox}} – For category message boxes.
  • {{ombox}} – For other pages message boxes.
  • {{mbox}} – Has namespace detection, for message boxes that are used on several types of pages and thus need to change style depending on what page they are used on.

Closely related meta-templates:

  • {{fmbox}} – For header and footer message boxes.
  • {{dmbox}} – For disambiguation and set index message boxes.
  • {{asbox}} – For article stub message boxes.


Advertisement: