aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop/utf_normalizer_test.php
blob: 7705cd6851305f0bd61fbf37bb0a9c9ef50dfd31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
<?php
/**
*
* @package phpBB3
* @version $Id$
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

if (php_sapi_name() != 'cli')
{
	die("This program must be run from the command line.\n");
}

//
// Security message:
//
// This script is potentially dangerous.
// Remove or comment the next line (die(".... ) to enable this script.
// Do NOT FORGET to either remove this script or disable it after you have used it.
//
die("Please read the first lines of this script for instructions on how to enable it");

set_time_limit(0);
error_reporting(E_ALL);

define('IN_PHPBB', true);
$phpbb_root_path = '../';
$phpEx = substr(strrchr(__FILE__, '.'), 1);


/**
* Let's download some files we need
*/
download('http://www.unicode.org/Public/UNIDATA/NormalizationTest.txt');
download('http://www.unicode.org/Public/UNIDATA/UnicodeData.txt');

/**
* Those are the tests we run
*/
$test_suite = array(
	/**
	* NFC
	*   c2 ==  NFC(c1) ==  NFC(c2) ==  NFC(c3)
	*   c4 ==  NFC(c4) ==  NFC(c5)
	*/
	'NFC'	=>	array(
		'c2'	=>	array('c1', 'c2', 'c3'),
		'c4'	=>	array('c4', 'c5')
	),

	/**
	* NFD
	*   c3 ==  NFD(c1) ==  NFD(c2) ==  NFD(c3)
	*   c5 ==  NFD(c4) ==  NFD(c5)
	*/
	'NFD'	=>	array(
		'c3'	=>	array('c1', 'c2', 'c3'),
		'c5'	=>	array('c4', 'c5')
	),

	/**
	* NFKC
	*   c4 == NFKC(c1) == NFKC(c2) == NFKC(c3) == NFKC(c4) == NFKC(c5)
	*/
	'NFKC'	=>	array(
		'c4'	=>	array('c1', 'c2', 'c3', 'c4', 'c5')
	),

	/**
	* NFKD
	*   c5 == NFKD(c1) == NFKD(c2) == NFKD(c3) == NFKD(c4) == NFKD(c5)
	*/
	'NFKD'	=>	array(
		'c5'	=>	array('c1', 'c2', 'c3', 'c4', 'c5')
	)
);

require_once($phpbb_root_path . 'includes/utf/utf_normalizer.' . $phpEx);

$i = $n = 0;
$failed = false;
$tested_chars = array();

$fp = fopen($phpbb_root_path . 'develop/NormalizationTest.txt', 'rb');
while (!feof($fp))
{
	$line = fgets($fp);
	++$n;

	if ($line[0] == '@')
	{
		if ($i)
		{
			echo "done\n";
		}

		$i = 0;
		echo "\n", substr($line, 1), "\n\n";
		continue;
	}

	if (!strpos(' 0123456789ABCDEF', $line[0]))
	{
		continue;
	}

	if (++$i % 100 == 0)
	{
		echo $i, ' ';
	}

	list($c1, $c2, $c3, $c4, $c5) = explode(';', $line);

	if (!strpos($c1, ' '))
	{
		/**
		* We are currently testing a single character, we add it to the list of
		* characters we have processed so that we can exclude it when testing
		* for invariants
		*/
		$tested_chars[$c1] = 1;
	}

	foreach ($test_suite as $form => $serie)
	{
		foreach ($serie as $expected => $tests)
		{
			$hex_expected = ${$expected};
			$utf_expected = hexseq_to_utf($hex_expected);

			foreach ($tests as $test)
			{
				$utf_result = $utf_expected;
				call_user_func(array('utf_normalizer', $form), $utf_result);

				if (strcmp($utf_expected, $utf_result))
				{
					$failed = true;
					$hex_result = utf_to_hexseq($utf_result);

					echo "\nFAILED $expected == $form($test) ($hex_expected != $hex_result)";
				}
			}
		}

		if ($failed)
		{
			die("\n\nFailed at line $n\n");
		}
	}
}
fclose($fp);

/**
* Test for invariants
*/
echo "\n\nTesting for invariants...\n\n";

$fp = fopen($phpbb_root_path . 'develop/UnicodeData.txt', 'rt');

$n = 0;
while (!feof($fp))
{
	if (++$n % 100 == 0)
	{
		echo $n, ' ';
	}

	$line = fgets($fp, 1024);

	if (!$pos = strpos($line, ';'))
	{
		continue;
	}

	$hex_tested = $hex_expected = substr($line, 0, $pos);

	if (isset($tested_chars[$hex_tested]))
	{
		continue;
	}

	$utf_expected = hex_to_utf($hex_expected);

	if ($utf_expected >= UTF8_SURROGATE_FIRST
	 && $utf_expected <= UTF8_SURROGATE_LAST)
	{
		/**
		* Surrogates are illegal on their own, we expect the normalizer
		* to return a replacement char
		*/
		$utf_expected = UTF8_REPLACEMENT;
		$hex_expected = utf_to_hexseq($utf_expected);
	}

	foreach (array('nfc', 'nfkc', 'nfd', 'nfkd') as $form)
	{
		$utf_result = $utf_expected;
		utf_normalizer::$form($utf_result);
		$hex_result = utf_to_hexseq($utf_result);
//		echo "$form($utf_expected) == $utf_result\n";

		if (strcmp($utf_expected, $utf_result))
		{
			$failed = 1;

			echo "\nFAILED $hex_expected == $form($hex_tested) ($hex_expected != $hex_result)";
		}
	}

	if ($failed)
	{
		die("\n\nFailed at line $n\n");
	}
}
fclose($fp);

die("\n\nALL TESTS PASSED SUCCESSFULLY\n");

/**
* Download a file to the develop/ dir
*
* @param	string	$url		URL of the file to download
* @return	void
*/
function download($url)
{
	global $phpbb_root_path;

	if (file_exists($phpbb_root_path . 'develop/' . basename($url)))
	{
		return;
	}

	echo 'Downloading from ', $url, ' ';

	if (!$fpr = fopen($url, 'rb'))
	{
		die("Can't download from $url\nPlease download it yourself and put it in the develop/ dir, kthxbai");
	}

	if (!$fpw = fopen($phpbb_root_path . 'develop/' . basename($url), 'wb'))
	{
		die("Can't open develop/" . basename($url) . " for output... please check your permissions or something");
	}

	$i = 0;
	$chunk = 32768;
	$done = '';

	while (!feof($fpr))
	{
		$i += fwrite($fpw, fread($fpr, $chunk));
		echo str_repeat("\x08", strlen($done));

		$done = ($i >> 10) . ' KiB';
		echo $done;
	}
	fclose($fpr);
	fclose($fpw);

	echo "\n";
}

/**
* Convert a UTF string to a sequence of codepoints in hexadecimal
*
* @param	string	$utf	UTF string
* @return	integer			Unicode codepoints in hex
*/
function utf_to_hexseq($str)
{
	$pos = 0;
	$len = strlen($str);
	$ret = array();

	while ($pos < $len)
	{
		$c = $str[$pos];
		switch ($c & "\xF0")
		{
			case "\xC0":
			case "\xD0":
				$utf_char = substr($str, $pos, 2);
				$pos += 2;
				break;

			case "\xE0":
				$utf_char = substr($str, $pos, 3);
				$pos += 3;
				break;

			case "\xF0":
				$utf_char = substr($str, $pos, 4);
				$pos += 4;
				break;

			default:
				$utf_char = $c;
				++$pos;
		}

		$hex = dechex(utf_to_cp($utf_char));

		if (!isset($hex[3]))
		{
			$hex = substr('000' . $hex, -4);
		}

		$ret[] = $hex;
	}

	return strtr(implode(' ', $ret), 'abcdef', 'ABCDEF');
}

/**
* Convert a UTF-8 char to its codepoint
*
* @param	string	$utf_char	UTF-8 char
* @return	integer				Unicode codepoint
*/
function utf_to_cp($utf_char)
{
	switch (strlen($utf_char))
	{
		case 1:
			return ord($utf_char);

		case 2:
			return ((ord($utf_char[0]) & 0x1F) << 6) | (ord($utf_char[1]) & 0x3F);

		case 3:
			return ((ord($utf_char[0]) & 0x0F) << 12) | ((ord($utf_char[1]) & 0x3F) << 6) | (ord($utf_char[2]) & 0x3F);

		case 4:
			return ((ord($utf_char[0]) & 0x07) << 18) | ((ord($utf_char[1]) & 0x3F) << 12) | ((ord($utf_char[2]) & 0x3F) << 6) | (ord($utf_char[3]) & 0x3F);

		default:
			die('UTF-8 chars can only be 1-4 bytes long');
	}
}

/**
* Return a UTF string formed from a sequence of codepoints in hexadecimal
*
* @param	string	$seq		Sequence of codepoints, separated with a space
* @return	string				UTF-8 string
*/
function hexseq_to_utf($seq)
{
	return implode('', array_map('hex_to_utf', explode(' ', $seq)));
}

/**
* Convert a codepoint in hexadecimal to a UTF-8 char
*
* @param	string	$hex		Codepoint, in hexadecimal
* @return	string				UTF-8 char
*/
function hex_to_utf($hex)
{
	return cp_to_utf(hexdec($hex));
}

/**
* Convert a codepoint to a UTF-8 char
*
* @param	integer	$cp			Unicode codepoint
* @return	string				UTF-8 string
*/
function cp_to_utf($cp)
{
	if ($cp > 0xFFFF)
	{
		return chr(0xF0 | ($cp >> 18)) . chr(0x80 | (($cp >> 12) & 0x3F)) . chr(0x80 | (($cp >> 6) & 0x3F)) . chr(0x80 | ($cp & 0x3F));
	}
	else if ($cp > 0x7FF)
	{
		return chr(0xE0 | ($cp >> 12)) . chr(0x80 | (($cp >> 6) & 0x3F)) . chr(0x80 | ($cp & 0x3F));
	}
	else if ($cp > 0x7F)
	{
		return chr(0xC0 | ($cp >> 6)) . chr(0x80 | ($cp & 0x3F));
	}
	else
	{
		return chr($cp);
	}
}
1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391
acp_ban_cell_append
===
* Location: adm/style/acp_ban.html
* Since: 3.1.7-RC1
* Purpose: Add content at the end of the ban cell area

acp_ban_cell_prepend
===
* Location: adm/style/acp_ban.html
* Since: 3.1.7-RC1
* Purpose: Add content at the start of the ban cell area

acp_bbcodes_actions_append
===
* Location: adm/style/acp_bbcodes.html
* Since: 3.1.0-a3
* Purpose: Add actions to the BBCodes page, after edit/delete buttons

acp_bbcodes_actions_prepend
===
* Location: adm/style/acp_bbcodes.html
* Since: 3.1.0-a3
* Purpose: Add actions to the BBCodes page, before edit/delete buttons

acp_bbcodes_edit_fieldsets_after
===
* Location: adm/style/acp_bbcodes.html
* Since: 3.1.0-a3
* Purpose: Add settings to BBCode add/edit form

acp_email_group_options_append
===
* Location: adm/style/acp_email.html
* Since: 3.1.7-RC1
* Purpose: Add content at the end of the group options select box 

acp_email_group_options_prepend
===
* Location: adm/style/acp_email.html
* Since: 3.1.7-RC1
* Purpose: Add content at the start of the group options select box 

acp_email_find_username_append
===
* Location: adm/style/acp_email.html
* Since: 3.1.7-RC1
* Purpose: Add content at the end of the fimd username link

acp_email_find_username_prepend
===
* Location: adm/style/acp_email.html
* Since: 3.1.7-RC1
* Purpose: Add content at the start of the fimd username link

acp_email_options_after
===
* Location: adm/style/acp_email.html
* Since: 3.1.2-RC1
* Purpose: Add settings to mass email form

acp_forums_custom_settings
===
* Location: adm/style/acp_forums.html
* Since: 3.1.6-RC1
* Purpose: Add its own box (fieldset) for extension settings

acp_forums_main_settings_append
===
* Location: adm/style/acp_forums.html
* Since: 3.1.2-RC1
* Purpose: Add settings to forums at end of main settings section

acp_forums_main_settings_prepend
===
* Location: adm/style/acp_forums.html
* Since: 3.1.2-RC1
* Purpose: Add settings to forums before main settings section

acp_forums_normal_settings_append
===
* Location: adm/style/acp_forums.html
* Since: 3.1.0-a1
* Purpose: Add settings to forums at end of normal settings section

acp_forums_normal_settings_prepend
===
* Location: adm/style/acp_forums.html
* Since: 3.1.2-RC1
* Purpose: Add settings to forums before normal settings section

acp_forums_prune_settings_append
===
* Location: adm/style/acp_forums.html
* Since: 3.1.2-RC1
* Purpose: Add settings to forums at end of prune settings section

acp_forums_prune_settings_prepend
===
* Location: adm/style/acp_forums.html
* Since: 3.1.2-RC1
* Purpose: Add settings to forums before prune settings section

acp_forums_quick_select_button_append
===
* Location: adm/style/acp_forums.html
* Since: 3.1.7-RC1
* Purpose: Add content after the quick select forum submit button

acp_forums_quick_select_button_prepend
===
* Location: adm/style/acp_forums.html
* Since: 3.1.7-RC1
* Purpose: Add content before the quick select forum submit button

acp_forums_rules_settings_append
===
* Location: adm/style/acp_forums.html
* Since: 3.1.2-RC1
* Purpose: Add settings to forums at end of rules settings section

acp_forums_rules_settings_prepend
===
* Location: adm/style/acp_forums.html
* Since: 3.1.2-RC1
* Purpose: Add settings to forums before rules settings section

acp_group_options_before
===
* Location: adm/style/acp_groups.html
* Since: 3.1.0-b4
* Purpose: Add addtional options to group settings (before GROUP_FOUNDER_MANAGE)

acp_group_options_after
===
* Location: adm/style/acp_groups.html
* Since: 3.1.0-b4
* Purpose: Add addtional options to group settings (after GROUP_RECEIVE_PM)

acp_groups_find_username_append
===
* Location: adm/style/acp_groups.html
* Since: 3.1.7-RC1
* Purpose: Add content at the end of the find username link

acp_groups_find_username_prepend
===
* Location: adm/style/acp_groups.html
* Since: 3.1.7-RC1
* Purpose: Add content at the start of the find username link

acp_groups_manage_after
===
* Location: adm/style/acp_groups.html
* Since: 3.1.7-RC1
* Purpose: Add content after the manage groups table

acp_groups_manage_before
===
* Location: adm/style/acp_groups.html
* Since: 3.1.7-RC1
* Purpose: Add content before the manage groups table

acp_groups_position_legend_add_button_after
===
* Location: adm/style/acp_groups_position.html
* Since: 3.1.7-RC1
* Purpose: Add content after adding group to legend submit button

acp_groups_position_legend_add_button_before
===
* Location: adm/style/acp_groups_position.html
* Since: 3.1.7-RC1
* Purpose: Add content before adding group to legend submit button

acp_groups_position_teampage_add_button_after
===
* Location: adm/style/acp_groups_position.html
* Since: 3.1.7-RC1
* Purpose: Add content after adding group to teampage submit button

acp_groups_position_teampage_add_button_before
===
* Location: adm/style/acp_groups_position.html
* Since: 3.1.7-RC1
* Purpose: Add content before adding group to teampage submit button

acp_logs_quick_select_forum_button_append
===
* Location: adm/style/acp_logs.html
* Since: 3.1.7-RC1
* Purpose: Add content after the quick forum select form submit button

acp_logs_quick_select_forum_button_prepend
===
* Location: adm/style/acp_logs.html
* Since: 3.1.7-RC1
* Purpose: Add content before the quick forum select form submit button

acp_main_actions_append
===
* Location: adm/style/acp_main.html
* Since: 3.1.0-a1
* Purpose: Add actions to the ACP main page below the cache purge action

acp_main_notice_after
===
* Location: adm/style/acp_main.html
* Since: 3.1.0-a1
* Purpose: Add notices or other blocks in the ACP below other configuration notices

acp_overall_footer_after
===
* Location: adm/style/overall_footer.html
* Since: 3.1.0-a1
* Purpose: Add content below the footer in the ACP

acp_overall_header_body_before
===
* Location: adm/style/overall_header.html
* Since: 3.1.0-b2
* Purpose: Add content to the header body

acp_overall_header_head_append
===
* Location: adm/style/overall_header.html
* Since: 3.1.0-a1
* Purpose: Add assets within the `<head>` tags in the ACP

acp_overall_header_stylesheets_after
===
* Location: adm/style/overall_header.html
* Since: 3.1.0-RC3
* Purpose: Add assets after stylesheets within the `<head>` tags in the ACP.
Note that INCLUDECSS will not work with this event.

acp_permission_forum_copy_src_forum_append
===
* Location: adm/style/permission_forum_copy.html
* Since: 3.1.7-RC1
* Purpose: Add content after the sourse forum select form

acp_permission_forum_copy_src_forum_prepend
===
* Location: adm/style/permission_forum_copy.html
* Since: 3.1.7-RC1
* Purpose: Add content before the sourse forum select form

acp_permission_forum_copy_dest_forum_append
===
* Location: adm/style/permission_forum_copy.html
* Since: 3.1.7-RC1
* Purpose: Add content after the destiny forum select form

acp_permission_forum_copy_dest_forum_prepend
===
* Location: adm/style/permission_forum_copy.html
* Since: 3.1.7-RC1
* Purpose: Add content before the destiny forum select form

acp_permissions_add_group_options_append
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content after the group multiple select form

acp_permissions_add_group_options_prepend
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content before the group multiple select form

acp_permissions_find_username_append
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content after the find username link

acp_permissions_find_username_prepend
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content before the find username link

acp_permissions_select_forum_append
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content after the forum select form label

acp_permissions_select_forum_prepend
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content before the forum select form label

acp_permissions_select_group_after
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content after the group select form in usergroup view

acp_permissions_select_group_append
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content after the group select form label

acp_permissions_select_group_before
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content before the group select form in usergroup view

acp_permissions_select_group_prepend
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content before the group select form label

acp_permissions_select_multiple_forum_append
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content after the forum multiple select form label

acp_permissions_select_multiple_forum_prepend
===
* Location: adm/style/acp_permissions.html
* Since: 3.1.7-RC1
* Purpose: Add content before the forum multiple select form label

acp_posting_buttons_after
===
* Locations:
    + adm/style/acp_posting_buttons.html
* Since: 3.1.0-b4
* Purpose: Add content after BBCode posting buttons in the ACP

acp_posting_buttons_before
===
* Locations:
    + adm/style/acp_posting_buttons.html
* Since: 3.1.0-b4
* Purpose: Add content before BBCode posting buttons in the ACP

acp_profile_contact_before
===
* Locations:
    + adm/style/acp_profile.html
* Since: 3.1.6-RC1
* Purpose: Add extra options to custom profile field configuration in the ACP

acp_prune_forums_append
===
* Locations:
    + adm/style/acp_prune_forums.html
* Since: 3.1.7-RC1
* Purpose: Add content after the forum select form label

acp_prune_forums_prepend
===
* Locations:
    + adm/style/acp_prune_forums.html
* Since: 3.1.7-RC1
* Purpose: Add content before the forum select form label

acp_prune_users_find_username_append
===
* Locations:
    + adm/style/acp_prune_users.html
* Since: 3.1.7-RC1
* Purpose: Add content after the find username link

acp_prune_users_find_username_prepend
===
* Locations:
    + adm/style/acp_prune_users.html
* Since: 3.1.7-RC1
* Purpose: Add content before the find username link

acp_ranks_edit_after
===
* Locations:
    + adm/style/acp_ranks.html
* Since: 3.1.0-RC3
* Purpose: Add content after the rank details when editing a rank in the ACP

acp_ranks_edit_before
===
* Locations:
    + adm/style/acp_ranks.html
* Since: 3.1.0-RC3
* Purpose: Add content before the rank details when editing a rank in the ACP

acp_ranks_list_column_after
===
* Locations:
    + adm/style/acp_ranks.html
* Since: 3.1.0-RC3
* Purpose: Add content before the first column in the ranks list in the ACP

acp_ranks_list_column_before
===
* Locations:
    + adm/style/acp_ranks.html
* Since: 3.1.0-RC3
* Purpose: Add content after the last column (but before the action column)
in the ranks list in the ACP

acp_ranks_list_header_after
===
* Locations:
    + adm/style/acp_ranks.html
* Since: 3.1.0-RC3
* Purpose: Add content before the first header-column in the ranks list in the ACP

acp_ranks_list_header_before
===
* Locations:
    + adm/style/acp_ranks.html
* Since: 3.1.0-RC3
* Purpose: Add content after the last header-column (but before the action column)
in the ranks list in the ACP

acp_styles_list_before
===
* Locations:
    + adm/style/acp_styles.html
* Since: 3.1.7-RC1
* Purpose: Add content before list of styles

acp_users_profile_before
===
* Locations:
    + adm/style/acp_users_profile.html
* Since: 3.1.4-RC1
* Purpose: Add content before the profile details when editing a user in the ACP

acp_users_profile_after
===
* Locations:
    + adm/style/acp_users_profile.html
* Since: 3.1.4-RC1
* Purpose: Add content after the profile details but before the custom profile fields when editing a user in the ACP

acp_users_profile_custom_after
===
* Locations:
    + adm/style/acp_users_profile.html
* Since: 3.1.4-RC1
* Purpose: Add content after the the custom profile fields when editing a user in the ACP

acp_simple_footer_after
===
* Location: adm/style/simple_footer.html
* Since: 3.1.0-a1
* Purpose: Add content below the simple footer in the ACP

acp_simple_header_body_before
===
* Location: adm/style/simple_header.html
* Since: 3.1.0-b2
* Purpose: Add content to the header body

acp_simple_header_head_append
===
* Location: adm/style/simple_header.html
* Since: 3.1.0-a1
* Purpose: Add assets within the `<head>` tags in the simple header of the ACP

acp_simple_header_stylesheets_after
===
* Location: adm/style/simple_header.html
* Since: 3.1.0-RC3
* Purpose: Add assets after stylesheets within the `<head>` tags in the simple header
of the ACP. Note that INCLUDECSS will not work with this event.

acp_users_overview_options_append
===
* Location: adm/style/acp_users_overview.html
* Since: 3.1.0-a1
* Purpose: Add options and settings on user overview page

acp_users_prefs_append
===
* Location: adm/style/acp_users_prefs.html
* Since: 3.1.0-b3
* Purpose: Add user options fieldset to the bottom of ACP users prefs settings

acp_users_prefs_prepend
===
* Location: adm/style/acp_users_prefs.html
* Since: 3.1.0-b3
* Purpose: Add user options fieldset to the top of ACP users prefs settings

acp_users_prefs_personal_append
===
* Location: adm/style/acp_users_prefs.html
* Since: 3.1.0-b3
* Purpose: Add user options fieldset to the bottom of ACP users personal prefs settings

acp_users_prefs_personal_prepend
===
* Location: adm/style/acp_users_prefs.html
* Since: 3.1.0-b3
* Purpose: Add user options fieldset to the top of ACP users personal prefs settings

acp_users_prefs_post_append
===
* Location: adm/style/acp_users_prefs.html
* Since: 3.1.0-b3
* Purpose: Add user options fieldset to the bottom of ACP users post prefs settings

acp_users_prefs_post_prepend
===
* Location: adm/style/acp_users_prefs.html
* Since: 3.1.0-b3
* Purpose: Add user options fieldset to the top of ACP users post prefs settings

acp_users_prefs_view_append
===
* Location: adm/style/acp_users_prefs.html
* Since: 3.1.0-b3
* Purpose: Add user options fieldset to the bottom of ACP users view prefs settings

acp_users_prefs_view_prepend
===
* Location: adm/style/acp_users_prefs.html
* Since: 3.1.0-b3
* Purpose: Add user options fieldset to the top of ACP users view prefs settings

acp_users_select_group_after
===
* Location: adm/style/acp_users.html
* Since: 3.1.7-RC1
* Purpose: Add content after group select form

acp_users_select_group_before
===
* Location: adm/style/acp_users.html
* Since: 3.1.7-RC1
* Purpose: Add content before group select form

attachment_file_after
===
* Locations:
    + styles/prosilver/template/attachment.html
* Since: 3.1.6-RC1
* Purpose: Add content after the attachment.

attachment_file_append
===
* Locations:
    + styles/prosilver/template/attachment.html
* Since: 3.1.6-RC1
* Purpose: Add custom attachment types displaying to the bottom of attachment block.

attachment_file_before
===
* Locations:
    + styles/prosilver/template/attachment.html
* Since: 3.1.6-RC1
* Purpose: Add content before the attachment.

attachment_file_prepend
===
* Locations:
    + styles/prosilver/template/attachment.html
* Since: 3.1.6-RC1
* Purpose: Add custom attachment types displaying to the top of attachment block.

forumlist_body_category_header_after
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.0-a4
* Purpose: Add content after the header of the category on the forum list.

forumlist_body_category_header_before
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.0-a4
* Purpose: Add content before the header of the category on the forum list.

forumlist_body_category_header_row_append
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.5-RC1
* Purpose: Add content after the header row of the category on the forum list.

forumlist_body_category_header_row_prepend
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.5-RC1
* Purpose: Add content before the header row of the category on the forum list.

forumlist_body_forum_row_after
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.0-RC5
* Purpose: Add content after the forum list item.

forumlist_body_forum_row_append
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.0-RC5
* Purpose: Add content at the start of the forum list item.

forumlist_body_forum_row_before
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.0-RC5
* Purpose: Add content before the forum list item.

forumlist_body_forum_row_prepend
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.0-RC5
* Purpose: Add content at the end of the forum list item.

forumlist_body_last_post_title_prepend
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.0-a1
* Purpose: Add content before the post title of the latest post in a forum on the forum list.

forumlist_body_subforums_after
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.0-a4
* Purpose: Add content after the list of subforums (if any) for each forum on the forum list.

forumlist_body_subforums_before
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.0-a4
* Purpose: Add content before the list of subforums (if any) for each forum on the forum list.

forumlist_body_last_row_after
===
* Locations:
    + styles/prosilver/template/forumlist_body.html
* Since: 3.1.0-b2
* Purpose: Add content after the very last row of the forum list.

index_body_block_birthday_append
===
* Locations:
    + styles/prosilver/template/index_body.html
* Since: 3.1.0-b3
* Purpose: Append content to the birthday list on the Board index

index_body_block_birthday_prepend
===
* Locations:
    + styles/prosilver/template/index_body.html
* Since: 3.1.0-b3
* Purpose: Prepend content to the birthday list on the Board index

index_body_block_online_append
===
* Locations:
    + styles/prosilver/template/index_body.html
* Since: 3.1.0-b3
* Purpose: Append content to the online list on the Board index

index_body_block_online_prepend
===
* Locations:
    + styles/prosilver/template/index_body.html
* Since: 3.1.0-b3
* Purpose: Prepend content to the online list on the Board index

index_body_block_stats_append
===
* Locations:
    + styles/prosilver/template/index_body.html
* Since: 3.1.0-b3
* Purpose: Append content to the statistics list on the Board index

index_body_block_stats_prepend
===
* Locations:
    + styles/prosilver/template/index_body.html
* Since: 3.1.0-b3
* Purpose: Prepend content to the statistics list on the Board index

index_body_forumlist_body_after
===
* Locations:
    + styles/prosilver/template/index_body.html
* Since: 3.1.1
* Purpose: Add content after the forum list body on the index page

index_body_markforums_after
===
* Locations:
    + styles/prosilver/template/index_body.html
* Since: 3.1.0-RC2
* Purpose: Add content after the mark-read link above the forum list on Board index

index_body_markforums_before
===
* Locations:
    + styles/prosilver/template/index_body.html
* Since: 3.1.0-RC2
* Purpose: Add content before the mark-read link above the forum list on Board index

index_body_stat_blocks_after
===
* Locations:
    + styles/prosilver/template/index_body.html
* Since: 3.1.0-b3
* Purpose: Add new statistic blocks below the Who Is Online and Board Statistics blocks

index_body_stat_blocks_before
===
* Locations:
    + styles/prosilver/template/index_body.html
* Since: 3.1.0-a1
* Purpose: Add new statistic blocks above the Who Is Online and Board Statistics blocks

mcp_ban_fields_after
===
* Locations:
    + styles/prosilver/template/mcp_ban.html
* Since: 3.1.0-RC3
* Purpose: Add additional fields to the ban form in MCP

mcp_ban_fields_before
===
* Locations:
    + styles/prosilver/template/mcp_ban.html
* Since: 3.1.0-RC3
* Purpose: Add additional fields to the ban form in MCP

mcp_ban_unban_after
===
* Locations:
    + styles/prosilver/template/mcp_ban.html
* Since: 3.1.0-RC3
* Purpose: Add additional fields to the unban form in MCP

mcp_ban_unban_before
===
* Locations:
    + styles/prosilver/template/mcp_ban.html
* Since: 3.1.0-RC3
* Purpose: Add additional fields to the unban form in MCP

mcp_forum_topic_title_before
===
* Locations:
    + styles/prosilver/template/mcp_forum.html
* Since: 3.1.6-RC1
* Purpose: Add some information before the topic title

mcp_forum_topic_title_after
===
* Locations:
    + styles/prosilver/template/mcp_forum.html
* Since: 3.1.6-RC1
* Purpose: Add some information after the topic title

mcp_front_latest_logs_after
===
* Locations:
    + styles/prosilver/template/mcp_front.html
* Since: 3.1.3-RC1
* Purpose: Add content after latest logs list

mcp_front_latest_logs_before
===
* Locations:
    + styles/prosilver/template/mcp_front.html
* Since: 3.1.3-RC1
* Purpose: Add content before latest logs list

mcp_front_latest_reported_before
===
* Locations:
    + styles/prosilver/template/mcp_front.html
* Since: 3.1.3-RC1
* Purpose: Add content before latest reported posts list

mcp_front_latest_reported_pms_before
===
* Locations:
    + styles/prosilver/template/mcp_front.html
* Since: 3.1.3-RC1
* Purpose: Add content before latest reported private messages list

mcp_front_latest_unapproved_before
===
* Locations:
    + styles/prosilver/template/mcp_front.html
* Since: 3.1.3-RC1
* Purpose: Add content before latest unapproved posts list

mcp_post_additional_options
===
* Locations:
    + styles/prosilver/template/mcp_post.html
* Since: 3.1.5-RC1
* Purpose: Add content within the list of post moderation actions

mcp_topic_options_after
===
* Locations:
    + styles/prosilver/template/mcp_topic.html
* Since: 3.1.6-RC1
* Purpose: Add some options (field, checkbox, ...) after the subject field when split a subject

mcp_topic_options_before
===
* Locations:
    + styles/prosilver/template/mcp_topic.html
* Since: 3.1.6-RC1
* Purpose: Add some options (field, checkbox, ...) before the subject field when split a subject

mcp_topic_topic_title_after
===
* Locations:
    + styles/prosilver/template/mcp_topic.html
* Since: 3.1.6-RC1
* Purpose: Add some information after the topic title

mcp_topic_topic_title_before
===
* Locations:
    + styles/prosilver/template/mcp_topic.html
* Since: 3.1.6-RC1
* Purpose: Add some information before the topic title

mcp_warn_post_add_warning_field_after
===
* Locations:
    + styles/prosilver/template/mcp_warn_post.html
* Since: 3.1.0-RC4
* Purpose: Add content during warning for a post - after add warning field.

mcp_warn_post_add_warning_field_before
===
* Locations:
    + styles/prosilver/template/mcp_warn_post.html
* Since: 3.1.0-RC4
* Purpose: Add content during warning for a post - before add warning field.

mcp_warn_user_add_warning_field_after
===
* Locations:
    + styles/prosilver/template/mcp_warn_user.html
* Since: 3.1.0-RC4
* Purpose: Add content during warning a user - after add warning field.

mcp_warn_user_add_warning_field_before
===
* Locations:
    + styles/prosilver/template/mcp_warn_user.html
* Since: 3.1.0-RC4
* Purpose: Add content during warning a user - before add warning field.

memberlist_body_rank_append
===
* Locations:
    + styles/prosilver/template/memberlist_body.html
* Since: 3.1.6-RC1
* Purpose: Add information after rank in memberlist. Works in
all display modes (leader, group and normal memberlist).

memberlist_body_rank_prepend
===
* Locations:
    + styles/prosilver/template/memberlist_body.html
* Since: 3.1.6-RC1
* Purpose: Add information before rank in memberlist. Works in
all display modes (leader, group and normal memberlist).

memberlist_body_username_append
===
* Locations:
    + styles/prosilver/template/memberlist_body.html
* Since: 3.1.0-a1
* Purpose: Add information after every username in the memberlist. Works in
all display modes (leader, group and normal memberlist).

memberlist_body_username_prepend
===
* Locations:
    + styles/prosilver/template/memberlist_body.html
* Since: 3.1.0-a1
* Purpose: Add information before every username in the memberlist. Works in
all display modes (leader, group and normal memberlist).

memberlist_search_fields_after
===
* Locations:
    + styles/prosilver/template/memberlist_search.html
* Since: 3.1.2-RC1
* Purpose: Add information after the search fields column.

memberlist_search_fields_before
===
* Locations:
    + styles/prosilver/template/memberlist_search.html
* Since: 3.1.2-RC1
* Purpose: Add information before the search fields column.

memberlist_search_sorting_options_before
===
* Locations:
    + styles/prosilver/template/memberlist_search.html
* Since: 3.1.2-RC1
* Purpose: Add information before the search sorting options field.

memberlist_view_contact_after
===
* Locations:
    + styles/prosilver/template/memberlist_view.html
* Since: 3.1.0-b2
* Purpose: Add content after the user contact part of any user profile

memberlist_view_contact_before
===
* Locations:
    + styles/prosilver/template/memberlist_view.html
* Since: 3.1.0-b2
* Purpose: Add content before the user contact part of any user profile

memberlist_view_content_append
===
* Locations:
    + styles/prosilver/template/memberlist_view.html
* Since: 3.1.0-b2
* Purpose: Add custom content to the user profile view after the main content

memberlist_view_content_prepend
===
* Locations:
    + styles/prosilver/template/memberlist_view.html
* Since: 3.1.0-b3
* Purpose: Add custom content to the user profile view before the main content

memberlist_view_rank_avatar_after
===
* Locations:
    + styles/prosilver/template/memberlist_view.html
* Since: 3.1.6-RC1
* Purpose: Add information after rank in memberlist (with avatar)

memberlist_view_rank_avatar_before
===
* Locations:
    + styles/prosilver/template/memberlist_view.html
* Since: 3.1.6-RC1
* Purpose: Add information before rank in memberlist (with avatar)

memberlist_view_rank_no_avatar_after
===
* Locations:
    + styles/prosilver/template/memberlist_view.html
* Since: 3.1.6-RC1
* Purpose: Add information after rank in memberlist (without avatar)

memberlist_view_rank_no_avatar_before
===
* Locations:
    + styles/prosilver/template/memberlist_view.html
* Since: 3.1.6-RC1
* Purpose: Add information before rank in memberlist (without avatar)

memberlist_view_user_statistics_after
===
* Locations:
    + styles/prosilver/template/memberlist_view.html
* Since: 3.1.0-a1
* Purpose: Add entries after the user statistics part of any user profile

memberlist_view_user_statistics_before
===
* Locations:
    + styles/prosilver/template/memberlist_view.html
* Since: 3.1.0-a1
* Purpose: Add entries before the user statistics part of any user profile

navbar_header_logged_out_content
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-RC1
* Purpose: Add text and HTML in place of the username when not logged in.

navbar_header_profile_list_after
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-RC2
* Purpose: Add links to the bottom of the profile drop-down menu in the header navbar

navbar_header_profile_list_before
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-RC2
* Purpose: Add links to the top of the profile drop-down menu in the header navbar

navbar_header_quick_links_after
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-RC2
* Purpose: Add links to the bottom of the quick-links drop-down menu in the header

navbar_header_quick_links_before
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-RC2
* Purpose: Add links to the top of the quick-links drop-down menu in the header

navbar_header_user_profile_append
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.8-RC1
* Purpose: Add links to the right of the user drop down area

navbar_header_user_profile_prepend
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.8-RC1
* Purpose: Add links to the left of the notification area

navbar_header_username_append
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-RC1
* Purpose: Add text and HTMl after the username shown in the navbar.

navbar_header_username_prepend
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-RC1
* Purpose: Add text and HTMl before the username shown in the navbar.

overall_footer_after
===
* Locations:
    + styles/prosilver/template/overall_footer.html
* Since: 3.1.0-a1
* Purpose: Add content at the end of the file, directly prior to the `</body>` tag

overall_footer_body_after
===
* Locations:
    + styles/prosilver/template/overall_footer.html
* Since: 3.1.3-RC1
* Purpose: Add content before the `</body>` tag but after the $SCRIPTS var, i.e. after the js scripts have been loaded

overall_footer_breadcrumb_append
===
* Locations:
    + styles/prosilver/template/navbar_footer.html
* Since: 3.1.0-a1
* Purpose: Add links to the list of breadcrumbs in the footer

overall_footer_breadcrumb_prepend
===
* Locations:
    + styles/prosilver/template/navbar_footer.html
* Since: 3.1.0-RC3
* Purpose: Add links to the list of breadcrumbs in the footer (after site-home, but before board-index)

overall_footer_content_after
===
* Locations:
    + styles/prosilver/template/overall_footer.html
* Since: 3.1.0-a3
* Purpose: Add content on all pages after the main content, before the footer

overall_footer_copyright_append
===
* Locations:
    + styles/prosilver/template/overall_footer.html
* Since: 3.1.0-a1
* Purpose: Add content after the copyright line (no new line by default), before the ACP link

overall_footer_copyright_prepend
===
* Locations:
    + styles/prosilver/template/overall_footer.html
* Since: 3.1.0-a1
* Purpose: Add content before the copyright line

overall_footer_page_body_after
===
* Locations:
    + styles/prosilver/template/overall_footer.html
* Since: 3.1.0-b3
* Purpose: Add content after the page-body, but before the footer

overall_footer_teamlink_after
===
* Locations:
    + styles/prosilver/template/navbar_footer.html
* Since: 3.1.0-b3
* Purpose: Add contents after the team-link in the footer

overall_footer_teamlink_before
===
* Locations:
    + styles/prosilver/template/navbar_footer.html
* Since: 3.1.0-b3
* Purpose: Add contents before the team-link in the footer

overall_footer_timezone_after
===
* Locations:
    + styles/prosilver/template/navbar_footer.html
* Since: 3.1.0-b3
* Purpose: Add content to the navbar in the page footer, after "Timezone"

overall_footer_timezone_before
===
* Locations:
    + styles/prosilver/template/navbar_footer.html
* Since: 3.1.0-b3
* Purpose: Add content to the navbar in the page footer, before "Timezone"

overall_header_body_before
===
* Locations:
    + styles/prosilver/template/overall_header.html
* Since: 3.1.0-b2
* Purpose: Add content to the header body

overall_header_breadcrumb_append
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-a1
* Purpose: Add links to the list of breadcrumbs in the header

overall_header_breadcrumb_prepend
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-RC3
* Purpose: Add links to the list of breadcrumbs in the header (after site-home, but before board-index)

overall_header_breadcrumbs_after
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-RC3
* Purpose: Add content after the breadcrumbs (outside of the breadcrumbs container)

overall_header_breadcrumbs_before
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-RC3
* Purpose: Add content before the breadcrumbs (outside of the breadcrumbs container)

overall_header_content_before
===
* Locations:
    + styles/prosilver/template/overall_header.html
* Since: 3.1.0-a3
* Purpose: Add content on all pages before the main content, after the header

overall_header_feeds
===
* Locations:
    + styles/prosilver/template/overall_header.html
* Since: 3.1.6-RC1
* Purpose: Add custom feeds

overall_header_head_append
===
* Locations:
    + styles/prosilver/template/overall_header.html
* Since: 3.1.0-a1
* Purpose: Add asset calls directly before the `</head>` tag

overall_header_navbar_before
===
* Locations:
    + styles/prosilver/template/overall_header.html
* Since: 3.1.4-RC1
* Purpose: Add content before the navigation bar

overall_header_navigation_append
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-a1
* Purpose: Add links after the navigation links in the header

overall_header_navigation_prepend
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-a1
* Purpose: Add links before the navigation links in the header

overall_header_navlink_append
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-b3
* Purpose: Add content after each individual navlink (breadcrumb)

overall_header_navlink_prepend
===
* Locations:
    + styles/prosilver/template/navbar_header.html
* Since: 3.1.0-b3
* Purpose: Add content before each individual navlink (breadcrumb)

overall_header_page_body_before
===
* Locations:
    + styles/prosilver/template/overall_header.html
* Since: 3.1.0-b3
* Purpose: Add content after the page-header, but before the page-body

overall_header_searchbox_before
===
* Locations:
    + styles/prosilver/template/overall_header.html
* Since: 3.1.4-RC1
* Purpose: Add content before the search box in the header

overall_header_stylesheets_after
===
* Locations:
    + styles/prosilver/template/overall_header.html
* Since: 3.1.0-RC3
* Purpose: Add asset calls after stylesheets within the `</head>` tag.
Note that INCLUDECSS will not work with this event.

posting_editor_add_panel_tab
===
* Locations:
    + styles/prosilver/template/posting_editor.html
* Since: 3.1.6-RC1
* Purpose: Add custom panel to post editor

posting_editor_bbcode_status_after
===
* Locations:
    + styles/prosilver/template/posting_editor.html
* Since: 3.1.4-RC1
* Purpose: Add content after bbcode status

posting_editor_buttons_after
===
* Locations:
    + styles/prosilver/template/posting_buttons.html
* Since: 3.1.0-a3
* Purpose: Add content after the BBCode posting buttons

posting_editor_buttons_before
===
* Locations:
    + styles/prosilver/template/posting_buttons.html
* Since: 3.1.0-a3
* Purpose: Add content before the BBCode posting buttons

posting_editor_buttons_custom_tags_before
===
* Locations:
    + styles/prosilver/template/posting_buttons.html
* Since: 3.1.2-RC1
* Purpose: Add content inside the BBCode posting buttons and before the customs BBCode

posting_editor_message_after
===
* Locations:
    + styles/prosilver/template/posting_editor.html
* Since: 3.1.0-a2
* Purpose: Add field (e.g. textbox) to the posting screen after the message

posting_editor_message_before
===
* Locations:
    + styles/prosilver/template/posting_editor.html
* Since: 3.1.0-a2
* Purpose: Add field (e.g. textbox) to the posting screen before the message

posting_editor_options_prepend
===
* Locations:
    + styles/prosilver/template/posting_editor.html
* Since: 3.1.0-a1
* Purpose: Add posting options on the posting screen

posting_editor_smilies_after
===
* Locations:
    + styles/prosilver/template/posting_editor.html
* Since: 3.1.4-RC1
* Purpose: Add content after smilies

posting_editor_smilies_before
===
* Locations:
    + styles/prosilver/template/posting_editor.html
* Since: 3.1.4-RC1
* Purpose: Add content before the smilies

posting_editor_subject_after
===
* Locations:
    + styles/prosilver/template/posting_editor.html
* Since: 3.1.0-a2
* Purpose: Add field (e.g. textbox) to the posting screen after the subject

posting_editor_subject_before
===
* Locations:
    + styles/prosilver/template/posting_editor.html
* Since: 3.1.0-a2
* Purpose: Add field (e.g. textbox) to the posting screen before the subject

posting_editor_submit_buttons
===
* Locations:
    + styles/prosilver/template/posting_editor.html
* Since: 3.1.6-RC1
* Purpose: Add custom buttons in the posting editor

posting_layout_include_panel_body
===
* Locations:
    + styles/prosilver/template/posting_layout.html
* Since: 3.1.6-RC1
* Purpose: Add include of custom panel template body in posting editor

posting_pm_header_find_username_after
===
* Locations:
    + styles/prosilver/template/posting_pm_header.html
* Since: 3.1.0-RC4
* Purpose: Add content after the find username link on composing pm

posting_pm_header_find_username_before
===
* Locations:
    + styles/prosilver/template/posting_pm_header.html
* Since: 3.1.0-RC4
* Purpose: Add content before the find username link on composing pm

posting_pm_layout_include_pm_header_after
===
* Locations:
    + styles/prosilver/template/posting_pm_layout.html
* Since: 3.1.4-RC1
* Purpose: Add content after the include of posting_pm_header.html

posting_pm_layout_include_pm_header_before
===
* Locations:
    + styles/prosilver/template/posting_pm_layout.html
* Since: 3.1.4-RC1
* Purpose: Add content before the include of posting_pm_header.html

posting_poll_body_options_after
===
* Locations:
    + styles/prosilver/template/posting_poll_body.html
* Since: 3.1.4-RC1
* Purpose: Add content after the poll options on creating a poll

posting_preview_poll_after
===
* Locations:
    + styles/prosilver/template/posting_preview.html
* Since: 3.1.7-RC1
* Purpose: Add content after the poll preview block

posting_topic_title_after
===
* Locations:
    + styles/prosilver/template/posting_layout.html
* Since: 3.1.7-RC1
* Purpose: Allows to add some information after the topic title in the posting form

posting_topic_title_before
===
* Locations:
    + styles/prosilver/template/posting_layout.html
* Since: 3.1.6-RC1
* Purpose: Allows to add some information on the left of the topic title in the posting form

quickreply_editor_panel_after
===
* Locations:
    + styles/prosilver/template/quickreply_editor.html
* Since: 3.1.0-b2
* Purpose: Add content after the quick reply panel (but inside the form)

quickreply_editor_panel_before
===
* Locations:
    + styles/prosilver/template/quickreply_editor.html
* Since: 3.1.0-b2
* Purpose: Add content before the quick reply panel (but inside the form)

quickreply_editor_message_after
===
* Locations:
    + styles/prosilver/template/quickreply_editor.html
* Since: 3.1.0-a4
* Purpose: Add content after the quick reply textbox

quickreply_editor_message_before
===
* Locations:
    + styles/prosilver/template/quickreply_editor.html
* Since: 3.1.0-a4
* Purpose: Add content before the quick reply textbox

quickreply_editor_subject_before
===
* Locations:
    + styles/prosilver/template/quickreply_editor.html
* Since: 3.1.7-RC1
* Purpose: Add content before the quick reply subject textbox

search_body_form_after
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Add content after the search form

search_body_form_before
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.5-RC1
* Purpose: Add content before the search form

search_body_recent_search_after
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Add content after the recent search queries list

search_body_recent_search_before
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Add content before the recent search queries list

search_body_search_display_options_append
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Put content at the bottom of the search query display options fields set

search_body_search_display_options_prepend
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Put content at the top of the search query display options fields set

search_body_search_options_after
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Add content after the search query options fields set

search_body_search_options_append
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Put content at the bottom of the search query options fields set

search_body_search_options_before
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Add content before the search query options fields set

search_body_search_options_prepend
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Put content at the top of the search query options fields set

search_body_search_query_after
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Add content after the search query fields set

search_body_search_query_append
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Put content at the bottom of the search query fields set

search_body_search_query_before
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Add content before the search query fields set

search_body_search_query_prepend
===
* Locations:
    + styles/prosilver/template/search_body.html
* Since: 3.1.7-RC1
* Purpose: Put content at the top of the search query fields set

search_results_header_after
===
* Locations:
    + styles/prosilver/template/search_results.html
* Since: 3.1.4-RC1
* Purpose: Add content after the header of the search results

search_results_header_before
===
* Locations:
    + styles/prosilver/template/search_results.html
* Since: 3.1.4-RC1
* Purpose: Add content before the header of the search results.

search_results_post_after
===
* Locations:
    + styles/prosilver/template/search_results.html
* Since: 3.1.0-b3
* Purpose: Add data after search result posts

search_results_post_before
===
* Locations:
    + styles/prosilver/template/search_results.html
* Since: 3.1.0-b3
* Purpose: Add data before search result posts

search_results_postprofile_after
===
* Locations:
    + styles/prosilver/template/search_results.html
* Since: 3.1.0-b3
* Purpose: Add content after the post author and stats in search results (posts view mode)

search_results_postprofile_before
===
* Locations:
    + styles/prosilver/template/search_results.html
* Since: 3.1.0-b3
* Purpose: Add content directly before the post author in search results (posts view mode)

search_results_searchbox_after
===
* Locations:
    + styles/prosilver/template/search_results.html
* Since: 3.1.4-RC1
* Purpose: Add content right after the searchbox of the search results.

search_results_topic_after
===
* Locations:
    + styles/prosilver/template/search_results.html
* Since: 3.1.0-b4
* Purpose: Add data after search result topics

search_results_topic_before
===
* Locations:
    + styles/prosilver/template/search_results.html
* Since: 3.1.0-b4
* Purpose: Add data before search result topics

simple_footer_after
===
* Locations:
    + styles/prosilver/template/simple_footer.html
* Since: 3.1.0-a1
* Purpose: Add content directly prior to the `</body>` tag of the simple footer

simple_header_body_before
===
* Locations:
    + styles/prosilver/template/simple_header.html
* Since: 3.1.0-b2
* Purpose: Add content to the header body

simple_header_head_append
===
* Locations:
    + styles/prosilver/template/simple_header.html
* Since: 3.1.0-b4
* Purpose: Add asset calls directly before the `</head>` tag

simple_header_stylesheets_after
===
* Locations:
    + styles/prosilver/template/simple_header.html
* Since: 3.1.0-RC3
* Purpose: Add asset calls after stylesheets within the `</head>` tag.
Note that INCLUDECSS will not work with this event.

topiclist_row_prepend
===
* Locations:
    + styles/prosilver/template/search_results.html
    + styles/prosilver/template/viewforum_body.html
    + styles/prosilver/template/mcp_forum.html
* Since: 3.1.0-a1
* Changed: 3.1.6-RC1 Added event to mcp_forum.html
* Purpose: Add content into topic rows (inside the elements containing topic titles)

topiclist_row_append
===
* Locations:
    + styles/prosilver/template/search_results.html
    + styles/prosilver/template/viewforum_body.html
    + styles/prosilver/template/mcp_forum.html
* Since: 3.1.0-a1
* Changed: 3.1.6-RC1 Added event to mcp_forum.html
* Purpose: Add content into topic rows (inside the elements containing topic titles)

ucp_agreement_terms_after
===
* Locations:
    + styles/prosilver/template/ucp_agreement.html
* Since: 3.1.0-b3
* Purpose: Add content after the terms of agreement text at user registration

ucp_agreement_terms_before
===
* Locations:
    + styles/prosilver/template/ucp_agreement.html
* Since: 3.1.0-b3
* Purpose: Add content before the terms of agreement text at user registration

ucp_main_front_user_activity_after
===
* Locations:
    + styles/prosilver/template/ucp_main_front.html
* Since: 3.1.6-RC1
* Purpose: Add content right after the user activity info viewing UCP front page

ucp_main_front_user_activity_before
===
* Locations:
    + styles/prosilver/template/ucp_main_front.html
* Since: 3.1.6-RC1
* Purpose: Add content right before the user activity info viewing UCP front page

ucp_pm_history_post_buttons_after
===
* Locations:
    + styles/prosilver/template/ucp_pm_history.html
* Since: 3.1.6-RC1
* Purpose: Add post button to private messages in history review (next to quote etc), at
the end of the list.

ucp_pm_history_post_buttons_before
===
* Locations:
    + styles/prosilver/template/ucp_pm_history.html
* Since: 3.1.6-RC1
* Purpose: Add post button to private messages in history review (next to quote etc), at
the start of the list.

ucp_pm_history_post_buttons_list_after
===
* Locations:
    + styles/prosilver/template/ucp_pm_history.html
* Since: 3.1.6-RC1
* Purpose: Add post button custom list to private messages in history review (next to quote etc),
after the original list.

ucp_pm_history_post_buttons_list_before
===
* Locations:
    + styles/prosilver/template/ucp_pm_history.html
* Since: 3.1.6-RC1
* Purpose: Add post button custom list to private messages in history review (next to quote etc),
before the original list.

ucp_pm_history_review_after
===
* Locations:
    + styles/prosilver/template/ucp_pm_history.html
* Since: 3.1.6-RC1
* Purpose: Add content after the private messages history review.

ucp_pm_history_review_before
===
* Locations:
    + styles/prosilver/template/ucp_pm_history.html
* Since: 3.1.6-RC1
* Purpose: Add content before the private messages history review.

ucp_pm_viewmessage_avatar_after
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.0-RC3
* Purpose: Add content right after the avatar when viewing a private message

ucp_pm_viewmessage_avatar_before
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.0-RC3
* Purpose: Add content right before the avatar when viewing a private message

ucp_pm_viewmessage_contact_fields_after
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.0-b1
* Purpose: Add data after the contact fields on the user profile when viewing
a private message

ucp_pm_viewmessage_contact_fields_before
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.0-b1
* Purpose: Add data before the contact fields on the user profile when viewing
a private message

ucp_pm_viewmessage_custom_fields_after
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.0-a1
* Purpose: Add data after the custom fields on the user profile when viewing
a private message

ucp_pm_viewmessage_custom_fields_before
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.0-a1
* Purpose: Add data before the custom fields on the user profile when viewing
a private message

ucp_pm_viewmessage_post_buttons_after
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.0-RC3
* Purpose: Add post button to private messages (next to edit, quote etc), at
the end of the list.

ucp_pm_viewmessage_post_buttons_before
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.0-RC3
* Purpose: Add post button to private messages (next to edit, quote etc), at
the start of the list.

ucp_pm_viewmessage_post_buttons_list_after
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.6-RC1
* Purpose: Add post button custom list to private messages (next to edit, quote etc),
after the original list.

ucp_pm_viewmessage_post_buttons_list_before
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.6-RC1
* Purpose: Add post button custom list to private messages (next to edit, quote etc),
before the original list.

ucp_pm_viewmessage_print_head_append
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage_print.html
* Since: 3.1.0-a1
* Purpose: Add asset calls directly before the `</head>` tag of the Print PM screen

ucp_pm_viewmessage_rank_after
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.6-RC1
* Purpose: Add data after the rank on the user profile when viewing
a private message

ucp_pm_viewmessage_rank_before
===
* Locations:
    + styles/prosilver/template/ucp_pm_viewmessage.html
* Since: 3.1.6-RC1
* Purpose: Add data before the rank on the user profile when viewing
a private message

ucp_prefs_personal_prepend
===
* Locations:
    + styles/prosilver/template/ucp_prefs_personal.html
* Since: 3.1.0-a1
* Purpose: Add user options to the top of the Edit Global Settings block

ucp_prefs_personal_append
===
* Locations:
    + styles/prosilver/template/ucp_prefs_personal.html
* Since: 3.1.0-a1
* Purpose: Add user options to the bottom of the Edit Global Settings block

ucp_prefs_post_prepend
===
* Locations:
    + styles/prosilver/template/ucp_prefs_post.html
* Since: 3.1.0-a1
* Purpose: Add user options to the top of the Edit Posting Defaults block

ucp_prefs_post_append
===
* Locations:
    + styles/prosilver/template/ucp_prefs_post.html
* Since: 3.1.0-a1
* Purpose: Add user options to the bottom of the Edit Posting Defaults block

ucp_prefs_view_radio_buttons_prepend
===
* Locations:
    + styles/prosilver/template/ucp_prefs_view.html
* Since: 3.1.0-a1
* Purpose: Add options to the top of the radio buttons block of the Edit
Display Options screen

ucp_prefs_view_radio_buttons_append
===
* Locations:
    + styles/prosilver/template/ucp_prefs_view.html
* Since: 3.1.0-a1
* Purpose: Add options to the bottom of the radio buttons block of the Edit
Display Options screen

ucp_prefs_view_select_menu_prepend
===
* Locations:
    + styles/prosilver/template/ucp_prefs_view.html
* Since: 3.1.0-a1
* Purpose: Add options to the top of the drop-down lists block of the Edit
Display Options screen

ucp_prefs_view_select_menu_append
===
* Locations:
    + styles/prosilver/template/ucp_prefs_view.html
* Since: 3.1.0-a1
* Purpose: Add options to the bottom of the drop-down lists block of the Edit
Display Options screen

ucp_profile_profile_info_before
===
* Locations:
    + styles/prosilver/template/ucp_profile_profile_info.html
* Since: 3.1.4-RC1
* Purpose: Add options in profile page fieldset - before jabber field.

ucp_profile_profile_info_after
===
* Locations:
    + styles/prosilver/template/ucp_profile_profile_info.html
* Since: 3.1.4-RC1
* Purpose: Add options in profile page fieldset - after custom profile fields.

ucp_profile_register_details_before
===
* Locations:
    + styles/prosilver/template/ucp_profile_reg_details.html
* Since: 3.1.4-RC1
* Purpose: Add options in profile page fieldset - before first field.

ucp_profile_register_details_after
===
* Locations:
    + styles/prosilver/template/ucp_profile_reg_details.html
* Since: 3.1.4-RC1
* Purpose: Add options in profile page fieldset - after confirm password field.

ucp_register_credentials_before
===
* Locations:
    + styles/prosilver/template/ucp_register.html
* Since: 3.1.0-b5
* Purpose: Add options in registration page fieldset - before first field.

ucp_register_profile_fields_after
===
* Locations:
    + styles/prosilver/template/ucp_register.html
* Since: 3.1.0-b5
* Purpose: Add options in registration page fieldset - after last field.

ucp_register_credentials_after
===
* Locations:
    + styles/prosilver/template/ucp_register.html
* Since: 3.1.0-b5
* Purpose: Add options in registration page fieldset - after password field.

ucp_register_options_before
===
* Locations:
    + styles/prosilver/template/ucp_register.html
* Since: 3.1.0-b5
* Purpose: Add options in registration page fieldset - before language selector.

ucp_register_profile_fields_before
===
* Locations:
    + styles/prosilver/template/ucp_register.html
* Since: 3.1.0-b5
* Purpose: Add options in registration page fieldset - before profile fields.

ucp_friend_list_before
===
* Locations:
    + styles/prosilver/template/ucp_zebra_friends.html
* Since: 3.1.0-a4
* Purpose: Add optional elements before list of friends in UCP

ucp_friend_list_after
===
* Locations:
    + styles/prosilver/template/ucp_zebra_friends.html
* Since: 3.1.0-a4
* Purpose: Add optional elements after list of friends in UCP

viewforum_body_topic_row_after
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.7-RC1
* Purpose: Add content after the topic list item.

viewforum_body_topic_row_append
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.7-RC1
* Purpose: Add content at the start of the topic list item.

viewforum_body_topic_row_before
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.7-RC1
* Purpose: Add content before the topic list item.

viewforum_body_topic_row_prepend
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.7-RC1
* Purpose: Add content at the end of the topic list item.

viewforum_buttons_bottom_before
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.0-RC5
* Purpose: Add buttons before New Topic button on the bottom of the topic's list

viewforum_buttons_bottom_after
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.0-RC5
* Purpose: Add buttons after New Topic button on the bottom of the topic's list

viewforum_buttons_top_before
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.0-RC5
* Purpose: Add buttons before New Topic button on the top of the topic's list

viewforum_buttons_top_after
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.0-RC5
* Purpose: Add buttons after New Topic button on the top of the topic's list

viewtopic_buttons_bottom_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-RC5
* Purpose: Add buttons before Post Reply button on the bottom of the posts's list

viewtopic_buttons_bottom_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-RC5
* Purpose: Add buttons after Post Reply button on the bottom of the posts's list

viewtopic_buttons_top_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-RC5
* Purpose: Add buttons before Post Reply button on the top of the posts's list

viewtopic_buttons_top_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-RC5
* Purpose: Add buttons after Post Reply button on the top of the posts's list

viewtopic_dropdown_bottom_custom
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.6-RC1
* Purpose: Create a custom dropdown menu

viewtopic_dropdown_top_custom
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.6-RC1
* Purpose: Create a custom dropdown menu

viewforum_forum_name_append
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.0-b3
* Purpose: Add content directly after the forum name link on the View forum screen

viewforum_forum_name_prepend
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.0-b3
* Purpose: Add content directly before the forum name link on the View forum screen

viewforum_forum_title_after
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.5-RC1
* Purpose: Add content directly after the forum title on the View forum screen

viewforum_forum_title_before
===
* Locations:
    + styles/prosilver/template/viewforum_body.html
* Since: 3.1.5-RC1
* Purpose: Add content directly before the forum title on the View forum screen

viewtopic_print_head_append
===
* Locations:
    + styles/prosilver/template/viewtopic_print.html
* Since: 3.1.0-a1
* Purpose: Add asset calls directly before the `</head>` tag of the Print Topic screen

viewtopic_body_pagination_top_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.4-RC1
* Purpose: Add content after the pagination at top

viewtopic_body_avatar_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-RC3
* Purpose: Add content right after the avatar when viewing topics

viewtopic_body_avatar_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-RC3
* Purpose: Add content right before the avatar when viewing topics

viewtopic_body_contact_fields_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-b3
* Purpose: Add data after the contact fields on the user profile when viewing
a post

viewtopic_body_contact_fields_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-b3
* Purpose: Add data before the contact fields on the user profile when viewing
a post

viewtopic_body_footer_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-a1
* Purpose: Add content to the bottom of the View topic screen below the posts
and quick reply, directly before the jumpbox in Prosilver.

viewtopic_body_poll_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.6-RC1
* Purpose: Add content after the poll panel.

viewtopic_body_poll_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.6-RC1
* Purpose: Add content before the poll panel.

viewtopic_body_poll_option_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-b3
* Purpose: Add content after the poll option
the list.

viewtopic_body_poll_option_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-b3
* Purpose: Add content before the poll option
the list.

viewtopic_body_poll_question_append
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-b3
* Purpose: Add content directly after the poll question on the View topic screen

viewtopic_body_poll_question_prepend
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-b3
* Purpose: Add content directly before the poll question on the View topic screen

viewtopic_body_post_author_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.3-RC1
* Purpose: Add content directly after the post author on the view topic screen

viewtopic_body_post_author_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.3-RC1
* Purpose: Add content directly before the post author on the view topic screen

viewtopic_body_post_buttons_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-a1
* Purpose: Add post button to posts (next to edit, quote etc), at the end of
the list.

viewtopic_body_post_buttons_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-a1
* Purpose: Add post button to posts (next to edit, quote etc), at the start of
the list.

viewtopic_body_post_buttons_list_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.5-RC1
* Purpose: Add post button custom list to posts (next to edit, quote etc),
after the original list.

viewtopic_body_post_buttons_list_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.5-RC1
* Purpose: Add post button custom list to posts (next to edit, quote etc),
before the original list.

viewtopic_body_post_subject_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.7-RC1
* Purpose: Add data before post icon and subject

viewtopic_body_postrow_back2top_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.8-RC1
* Purpose: Add content to the post's bottom after the back to top link 

viewtopic_body_postrow_back2top_append
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.8-RC1
* Purpose: Add content to the post's bottom directly before the back to top link 

viewtopic_body_postrow_back2top_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.8-RC1
* Purpose: Add content to the post's bottom before the back to top link 

viewtopic_body_postrow_back2top_prepend
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.8-RC1
* Purpose: Add content to the post's bottom directly before the back to top link 

viewtopic_body_postrow_custom_fields_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-a1
* Purpose: Add data after the custom fields on the user profile when viewing
a post

viewtopic_body_postrow_custom_fields_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-a1
* Purpose: Add data before the custom fields on the user profile when viewing
a post

viewtopic_body_postrow_post_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-a4
* Purpose: Add data after posts

viewtopic_body_postrow_post_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-a4
* Purpose: Add data before posts

viewtopic_body_postrow_post_content_footer
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-RC4
* Purpose: Add data at the end of the posts.

viewtopic_body_postrow_post_details_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.4-RC1
* Purpose: Add content after the post details

viewtopic_body_postrow_post_details_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.4-RC1
* Purpose: Add content before the post details

viewtopic_body_postrow_post_notices_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-b2
* Purpose: Add posts specific custom notices at the notices bottom.

viewtopic_body_postrow_post_notices_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-b2
* Purpose: Add posts specific custom notices at the notices top.

viewtopic_body_postrow_rank_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.6-RC1
* Purpose: Add data after the rank on the user profile when viewing
a post

viewtopic_body_postrow_rank_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.6-RC1
* Purpose: Add data before the rank on the user profile when viewing
a post

viewtopic_body_topic_actions_before
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-a4
* Purpose: Add data before the topic actions buttons (after the posts sorting options)

viewtopic_topic_title_after
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.7-RC1
* Purpose: Add content directly after the topic title link on the View topic screen (outside of the h2 HTML tag)

viewtopic_topic_title_append
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-b3
* Purpose: Add content directly after the topic title link on the View topic screen

viewtopic_topic_title_prepend
===
* Locations:
    + styles/prosilver/template/viewtopic_body.html
* Since: 3.1.0-a1
* Purpose: Add content directly before the topic title link on the View topic screen

viewtopic_topic_tools_after
===
* Locations:
    + styles/prosilver/template/viewtopic_topic_tools.html
* Since: 3.1.0-a3
* Purpose: Add a new topic tool after the rest of the existing ones

viewtopic_topic_tools_before
===
* Locations:
    + styles/prosilver/template/viewtopic_topic_tools.html
* Since: 3.1.0-a3
* Purpose: Add a new topic tool before the rest of the existing ones