aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/templates/Default/bbcode.tpl
diff options
context:
space:
mode:
authornatec <natec@users.sourceforge.net>2001-09-26 22:48:28 +0000
committernatec <natec@users.sourceforge.net>2001-09-26 22:48:28 +0000
commit131d2ed20e61f84f698a9017142f2764e62e88c3 (patch)
tree9a8d20b374ac7b018fa3c660f1f2dd4223039a14 /phpBB/templates/Default/bbcode.tpl
parent275f67a5075df42530c1622733fe908a172e27dc (diff)
downloadforums-131d2ed20e61f84f698a9017142f2764e62e88c3.tar
forums-131d2ed20e61f84f698a9017142f2764e62e88c3.tar.gz
forums-131d2ed20e61f84f698a9017142f2764e62e88c3.tar.bz2
forums-131d2ed20e61f84f698a9017142f2764e62e88c3.tar.xz
forums-131d2ed20e61f84f698a9017142f2764e62e88c3.zip
Templated bbcode.
git-svn-id: file:///svn/phpbb/trunk@1095 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates/Default/bbcode.tpl')
-rwxr-xr-xphpBB/templates/Default/bbcode.tpl119
1 files changed, 119 insertions, 0 deletions
diff --git a/phpBB/templates/Default/bbcode.tpl b/phpBB/templates/Default/bbcode.tpl
new file mode 100755
index 0000000000..2cfdb4b0fe
--- /dev/null
+++ b/phpBB/templates/Default/bbcode.tpl
@@ -0,0 +1,119 @@
+// bbcode.tpl -- bbcode replacement templates.
+
+<!-- BEGIN ulist_open -->
+<ul>
+<!-- END ulist_open -->
+<!-- BEGIN ulist_close -->
+</ul>
+<!-- END ulist_close -->
+
+
+<!-- BEGIN olist_open -->
+<ol type="{LIST_TYPE}">
+<!-- END olist_open -->
+<!-- BEGIN olist_close -->
+</ol>
+<!-- END olist_close -->
+
+<!-- BEGIN listitem -->
+<li>
+<!-- END listitem -->
+
+<!-- BEGIN quote_open -->
+<table border="0" align="center" width="85%">
+ <tr>
+ <td>
+ <font size="-1">{L_QUOTE}</font>
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <font size="-1">
+ <blockquote>
+<!-- END quote_open -->
+<!-- BEGIN quote_close -->
+ </blockquote>
+ </font>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <hr />
+ </td>
+ </tr>
+</table>
+<!-- END quote_close -->
+
+<!-- BEGIN code_open -->
+<table width="85%" border="0" align="center">
+ <tr>
+ <td>
+ <font size="-1">{L_CODE}</font>
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <font size="-1">
+ <pre>
+<!-- END code_open -->
+<!-- BEGIN code_close -->
+ </pre>
+ </font>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <hr />
+ </td>
+ </tr>
+</table>
+<!-- END code_close -->
+
+<!-- BEGIN b_open -->
+<b>
+<!-- END b_open -->
+<!-- BEGIN b_close -->
+</b>
+<!-- END b_close -->
+
+<!-- BEGIN u_open -->
+<u>
+<!-- END u_open -->
+<!-- BEGIN u_close -->
+</u>
+<!-- END u_close -->
+
+<!-- BEGIN i_open -->
+<i>
+<!-- END i_open -->
+<!-- BEGIN i_close -->
+</i>
+<!-- END i_close -->
+
+<!-- BEGIN color_open -->
+<font color="{COLOR}">
+<!-- END color_open -->
+<!-- BEGIN color_close -->
+</font>
+<!-- END color_close -->
+
+<!-- BEGIN size_open -->
+<font size="{SIZE}">
+<!-- END size_open -->
+<!-- BEGIN size_close -->
+</font>
+<!-- END size_close -->
+
+<!-- BEGIN img -->
+<img src="{URL}" border="0"></img>
+<!-- END img -->
+
+<!-- BEGIN url -->
+<a href="{URL}" target="_blank">{DESCRIPTION}</a>
+<!-- END url -->
+
+<!-- BEGIN email -->
+<a href="mailto:{EMAIL}">{EMAIL}</A>
+<!-- END email -->