Mercurial > repos > phpBB-MODs > Special_And_Normal_Rank_Images
comparison subsilver2.xml @ 1:26a2404a2f38
Initial commit of v1.0.1 instructions
no-open-ticket
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 07 Jun 2009 17:55:54 +0000 |
parents | |
children | ff8527bb5116 |
comparison
equal
deleted
inserted
replaced
0:3e2c3e355f94 | 1:26a2404a2f38 |
---|---|
1 <?xml version="1.0" encoding="utf-8" standalone="yes"?> | |
2 <?xml-stylesheet type="text/xsl" href="modx.prosilver.en.xsl"?> | |
3 <!--For security purposes, please check: http://www.phpbb.com/mods/ for the | |
4 latest version of this MOD. Although MODs are checked before being | |
5 allowed in the MODs Database there is no guarantee that there are no | |
6 security problems within the MOD. No support will be given for MODs not | |
7 found within the MODs Database which can be found at | |
8 http://www.phpbb.com/mods/--> | |
9 <mod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.phpbb.com/mods/xml/modx-1.2.1.xsd"> | |
10 | |
11 <header> | |
12 <license>http://opensource.org/licenses/gpl-license.php GNU General Public License v2</license> | |
13 <title lang="en-gb">Special and Normal Rank Images - Subsilver2 style</title> | |
14 <description lang="en-gb">This MOD will allow users with special ranks (e.g. Administrators) to have a normal rank image in addition to their special rank image in topics and on their profile page.</description> | |
15 <author-notes lang="en-gb"><![CDATA[While this mod doesn't have to be installed along-side the "Multi-Race Rank Theme" mod, it is compatible with the mod and can be used to compliment it. Instructions on how to alter the Multi-Race Rank Theme mod to allow users with special ranks to choose a theme can be found in the /contrib folder. | |
16 | |
17 The styling used by this mod is entirely arbitrary and was included as an example. You may wish to use different HTML in memberlist_view.html and viewtopic_body.html.]]></author-notes> | |
18 <author-group> | |
19 <author> | |
20 <realname>IBBoard</realname> | |
21 <email>phpbb@ibboard.co.uk</email> | |
22 <username>IBBoard</username> | |
23 <homepage>http://www.ibboard.co.uk</homepage> | |
24 </author> | |
25 </author-group> | |
26 <link-group> | |
27 <link type="parent" href="Install.xml" lang="en-gb">Main instructions</link> | |
28 </link-group> | |
29 <mod-version>1.0.0</mod-version> | |
30 <installation> | |
31 <level>intermediate</level> | |
32 <time>180</time> | |
33 <target-version>3.0.1</target-version> | |
34 </installation> | |
35 <history> | |
36 <entry> | |
37 <date>2008-11-09</date> | |
38 <rev-version>0.1.0</rev-version> | |
39 <changelog lang="en-gb"> | |
40 <change>No code changes - update for release in MODX 1.2.1 format</change> | |
41 </changelog> | |
42 </entry> | |
43 <entry> | |
44 <date>2008-04-28</date> | |
45 <rev-version>0.1.0</rev-version> | |
46 <changelog lang="en-gb"> | |
47 <change>Change: Separate out subsilver instructions to templates/subsilver2.xml</change> | |
48 </changelog> | |
49 </entry> | |
50 </history> | |
51 </header> | |
52 <action-group> | |
53 <open src="styles/subsilver2/template/memberlist_view.html"> | |
54 <edit> | |
55 <find><![CDATA[ | |
56 <!-- IF RANK_IMG --> | |
57 <tr> | |
58 <td align="center">{RANK_IMG}</td> | |
59 </tr> | |
60 <!-- ENDIF -->]]></find> | |
61 <action type="after-add"><![CDATA[ | |
62 <!-- IF EXTRA_RANK_TITLE --> | |
63 <tr> | |
64 <td class="postdetails" align="center">{EXTRA_RANK_TITLE}</td> | |
65 </tr> | |
66 <!-- ENDIF --> | |
67 <!-- IF EXTRA_RANK_IMG --> | |
68 <tr> | |
69 <td align="center">{EXTRA_RANK_IMG}</td> | |
70 </tr> | |
71 <!-- ENDIF -->]]> | |
72 </action> | |
73 </edit> | |
74 </open> | |
75 <open src="styles/subsilver2/template/viewtopic_body.html"> | |
76 <edit> | |
77 <find><![CDATA[ <!-- IF postrow.RANK_IMG --> | |
78 <tr> | |
79 <td>{postrow.RANK_IMG}</td> | |
80 </tr> | |
81 <!-- ENDIF -->]]></find> | |
82 <action type="after-add"><![CDATA[ | |
83 <!-- IF postrow.EXTRA_RANK_TITLE --> | |
84 <tr> | |
85 <td class="postdetails">{postrow.EXTRA_RANK_TITLE}</td> | |
86 </tr> | |
87 <!-- ENDIF --> | |
88 <!-- IF postrow.EXTRA_RANK_IMG --> | |
89 <tr> | |
90 <td>{postrow.EXTRA_RANK_IMG}</td> | |
91 </tr> | |
92 <!-- ENDIF -->]]> | |
93 </action> | |
94 </edit> | |
95 </open> | |
96 </action-group> | |
97 </mod> |