Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
bbcode.html
01 <!-- BEGIN ulist_open --><ul style="list-style-type: {LIST_TYPE}"><!-- END ulist_open -->
02 <!-- BEGIN ulist_open_default --><ul><!-- END ulist_open_default -->
03 <!-- BEGIN ulist_close --></ul><!-- END ulist_close -->
04
05 <!-- BEGIN olist_open --><ol style="list-style-type: {LIST_TYPE}"><!-- END olist_open -->
06 <!-- BEGIN olist_close --></ol><!-- END olist_close -->
07
08 <!-- BEGIN listitem --><li><!-- END listitem -->
09 <!-- BEGIN listitem_close --></li><!-- END listitem_close -->
10
11 <!-- BEGIN quote_username_open --><blockquote><div><cite>{USERNAME} {L_WROTE}{L_COLON}</cite><!-- END quote_username_open -->
12 <!-- BEGIN quote_open --><blockquote class="uncited"><div><!-- END quote_open -->
13 <!-- BEGIN quote_close --></div></blockquote><!-- END quote_close -->
14 <!-- BEGIN quote_extended -->
15 <blockquote>
16 <xsl:if test="@post_url">
17 <xsl:attribute name="cite"><xsl:value-of select="@post_url"/></xsl:attribute>
18 </xsl:if>
19 <xsl:if test="not(@author)">
20 <xsl:attribute name="class">uncited</xsl:attribute>
21 </xsl:if>
22 <div>
23 <xsl:if test="@author">
24 <cite>
25 <xsl:choose>
26 <xsl:when test="@url">
27 <a href="{@url}" class="postlink"><xsl:value-of select="@author"/></a>
28 </xsl:when>
29 <xsl:when test="@profile_url">
30 <a href="{@profile_url}"><xsl:value-of select="@author"/></a>
31 </xsl:when>
32 <xsl:otherwise>
33 <xsl:value-of select="@author"/>
34 </xsl:otherwise>
35 </xsl:choose>
36 <xsl:text> </xsl:text>
37 <xsl:value-of select="$L_WROTE"/>
38 <xsl:value-of select="$L_COLON"/>
39 <xsl:if test="@post_url">
40 <xsl:text> </xsl:text>
41 <a href="{@post_url}" aria-label="{L_VIEW_QUOTED_POST}" data-post-id="{@post_id}" onclick="if(document.getElementById(hash.substr(1)))href=hash"><i class="icon fa-arrow-circle-up fa-fw" aria-hidden="true"></i></a>
42 </xsl:if>
43 <xsl:if test="@msg_url">
44 <xsl:text> </xsl:text>
45 <a href="{@msg_url}" aria-label="{L_VIEW_QUOTED_POST}" data-msg-id="{@msg_id}"><i class="icon fa-arrow-circle-up fa-fw" aria-hidden="true"></i></a>
46 </xsl:if>
47 <xsl:if test="@date">
48 <span class="responsive-hide"><xsl:value-of select="@date"/></span>
49 </xsl:if>
50 </cite>
51 </xsl:if>
52 <xsl:apply-templates/>
53 </div>
54 </blockquote>
55 <!-- END quote_extended -->
56
57 <!-- BEGIN code_open --><div class="codebox"><p>{L_CODE}{L_COLON} <a href="#" onclick="selectCode(this); return false;">{L_SELECT_ALL_CODE}</a></p><pre><code><!-- END code_open -->
58 <!-- BEGIN code_close --></code></pre></div><!-- END code_close -->
59
60 <!-- BEGIN inline_attachment_open --><div class="inline-attachment"><!-- END inline_attachment_open -->
61 <!-- BEGIN inline_attachment_close --></div><!-- END inline_attachment_close -->
62
63 <!-- BEGIN b_open --><strong class="text-strong"><!-- END b_open -->
64 <!-- BEGIN b_close --></strong><!-- END b_close -->
65
66 <!-- BEGIN u_open --><span style="text-decoration: underline"><!-- END u_open -->
67 <!-- BEGIN u_close --></span><!-- END u_close -->
68
69 <!-- BEGIN i_open --><em class="text-italics"><!-- END i_open -->
70 <!-- BEGIN i_close --></em><!-- END i_close -->
71
72 <!-- BEGIN color --><span style="color: {COLOR}">{TEXT}</span><!-- END color -->
73
74 <!-- BEGIN size --><span style="font-size: {SIZE}%; line-height: 116%;">{TEXT}</span><!-- END size -->
75
76 <!-- BEGIN img --><img src="{URL}" class="postimage" alt="{L_IMAGE}" /><!-- END img -->
77
78 <!-- BEGIN url --><a href="{URL}" class="postlink">{DESCRIPTION}</a><!-- END url -->
79
80 <!-- BEGIN email -->
81 <a>
82 <xsl:attribute name="href">
83 <xsl:text>mailto:</xsl:text>
84 <xsl:value-of select="@email"/>
85 <xsl:if test="@subject or @body">
86 <xsl:text>?</xsl:text>
87 <xsl:if test="@subject">subject=<xsl:value-of select="@subject"/></xsl:if>
88 <xsl:if test="@body"><xsl:if test="@subject">&</xsl:if>body=<xsl:value-of select="@body"/></xsl:if>
89 </xsl:if>
90 </xsl:attribute>
91 <xsl:apply-templates/>
92 </a>
93 <!-- END email -->
94
95 <!-- BEGIN flash --><object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=5,0,0,0" width="{WIDTH}" height="{HEIGHT}"><param name="movie" value="{URL}" /><param name="play" value="false" /><param name="loop" value="false" /><param name="quality" value="high" /><param name="allowScriptAccess" value="never" /><param name="allowNetworking" value="internal" /><embed src="{URL}" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" width="{WIDTH}" height="{HEIGHT}" play="false" loop="false" quality="high" allowscriptaccess="never" allownetworking="internal"></embed></object><!-- END flash -->
96