Template:Forum url: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(Template fix as the {{[[Template:project infrastructure|project infrastructure}} template no longer adds "/" to the end of URLs.)
(Added an example showing the failure of the 'hilit' parameter when 'p' is supplied.)
Line 106: Line 106:


{{forum url|t=10805|hilit=board+index}}
{{forum url|t=10805|hilit=board+index}}
==== Highlight a post ====
{{obr}}forum url{{!}}p=111333{{!}}hilit=contains+a+problem{{cbr}}
{{forum url|p=111333|hilit=contains+a+problem}}


== Related templates ==
== Related templates ==

Revision as of 09:39, 6 June 2019

https://forum.flightgear.org

The following template description is not displayed when the template is inserted in an article.

Goal

This template is used to create URLs for subforums, topics or posts on the FlightGear forum.

Usage

{{forum url
| f      =
| t      =
| p      =
| anchor =
| hilit  =
}}
f
Forum number to be passed to phpBB's viewtopic.php (optional).
t
Thread number to be passed to phpBB's viewtopic.php (optional).
p
Post number to be passed to phpBB's viewtopic.php (optional).
anchor
HTML anchor, used for jumping to posts (optional).
hilit
Words on the forum posts to be highlighted (optional). Words should be separated by the plus character "+".

Technical details

The protocol and domain name part of the URI is built using the {{project infrastructure}} template.

Examples

No arguments

{{forum url}}

https://forum.flightgear.org

A subforum (The FlightGear project)

{{forum url|f=42}}

https://forum.flightgear.org/viewforum.php?f=42

A topic (FlightGear Newsletter)

{{forum url|t=7794}}

https://forum.flightgear.org/viewtopic.php?t=7794

A post (Re: Marking topics as "solved")

{{forum url|p=111333}}

https://forum.flightgear.org/viewtopic.php?p=111333#p111333

Subforum, topic and post

Note  The f and t parameters are redundant in this URL.
{{forum url|f=8|t=10805|p=111333}}

https://forum.flightgear.org/viewtopic.php?f=8&t=10805&p=111333#p111333

Topic and post

Note  The t parameter is redundant in this URL.
{{forum url|t=10805|p=111333}}

https://forum.flightgear.org/viewtopic.php?t=10805&p=111333#p111333

Anchoring

{{forum url|t=10805|anchor=p111333}}

https://forum.flightgear.org/viewtopic.php?t=10805#p111333

Highlighting

{{forum url|t=10805|hilit=board+index}}

https://forum.flightgear.org/viewtopic.php?t=10805&hilit=board+index

Highlight a post

{{forum url|p=111333|hilit=contains+a+problem}}

https://forum.flightgear.org/viewtopic.php?p=111333#p111333&hilit=contains+a+problem

Related templates