Update code_sniffer build.xml file to be executable on our system
[phpbb.git] / phpBB / styles / prosilver / template / posting_buttons.html
blob4d866681f0432729c63c6ac4020aea38105694ef
2 <script type="text/javascript">
3 // <![CDATA[
4 var form_name = 'postform';
5 var text_name = <!-- IF $SIG_EDIT -->'signature'<!-- ELSE -->'message'<!-- ENDIF -->;
6 var load_draft = false;
7 var upload = false;
9 // Define the bbCode tags
10 var bbcode = new Array();
11 var bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list]','[/list]','[list=]','[/list]','[img]','[/img]','[url]','[/url]','[flash=]', '[/flash]','[size=]','[/size]'<!-- BEGIN custom_tags -->, {custom_tags.BBCODE_NAME}<!-- END custom_tags -->);
12 var imageTag = false;
14 // Helpline messages
15 var help_line = {
16 b: '{LA_BBCODE_B_HELP}',
17 i: '{LA_BBCODE_I_HELP}',
18 u: '{LA_BBCODE_U_HELP}',
19 q: '{LA_BBCODE_Q_HELP}',
20 c: '{LA_BBCODE_C_HELP}',
21 l: '{LA_BBCODE_L_HELP}',
22 o: '{LA_BBCODE_O_HELP}',
23 p: '{LA_BBCODE_P_HELP}',
24 w: '{LA_BBCODE_W_HELP}',
25 a: '{LA_BBCODE_A_HELP}',
26 s: '{LA_BBCODE_S_HELP}',
27 f: '{LA_BBCODE_F_HELP}',
28 e: '{LA_BBCODE_E_HELP}',
29 d: '{LA_BBCODE_D_HELP}'
30 <!-- BEGIN custom_tags -->
31 ,cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}'
32 <!-- END custom_tags -->
35 var panels = new Array('options-panel', 'attach-panel', 'poll-panel');
36 var show_panel = 'options-panel';
39 // ]]>
40 </script>
41 <script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>
43 <!-- IF S_BBCODE_ALLOWED -->
44 <div id="colour_palette" style="display: none;">
45 <dl style="clear: left;">
46 <dt><label>{L_FONT_COLOR}:</label></dt>
47 <dd>
48 <script type="text/javascript">
49 // <![CDATA[
50 function change_palette()
52 dE('colour_palette');
53 e = document.getElementById('colour_palette');
55 if (e.style.display == 'block')
57 document.getElementById('bbpalette').value = '{LA_FONT_COLOR_HIDE}';
59 else
61 document.getElementById('bbpalette').value = '{LA_FONT_COLOR}';
65 colorPalette('h', 15, 10);
66 // ]]>
67 </script>
68 </dd>
69 </dl>
70 </div>
72 <div id="format-buttons">
73 <input type="button" class="button2" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px" onclick="bbstyle(0)" title="{L_BBCODE_B_HELP}" />
74 <input type="button" class="button2" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px" onclick="bbstyle(2)" title="{L_BBCODE_I_HELP}" />
75 <input type="button" class="button2" accesskey="u" name="addbbcode4" value=" u " style="text-decoration: underline; width: 30px" onclick="bbstyle(4)" title="{L_BBCODE_U_HELP}" />
76 <!-- IF S_BBCODE_QUOTE -->
77 <input type="button" class="button2" accesskey="q" name="addbbcode6" value="Quote" style="width: 50px" onclick="bbstyle(6)" title="{L_BBCODE_Q_HELP}" />
78 <!-- ENDIF -->
79 <input type="button" class="button2" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onclick="bbstyle(8)" title="{L_BBCODE_C_HELP}" />
80 <input type="button" class="button2" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onclick="bbstyle(10)" title="{L_BBCODE_L_HELP}" />
81 <input type="button" class="button2" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onclick="bbstyle(12)" title="{L_BBCODE_O_HELP}" />
82 <input type="button" class="button2" accesskey="t" name="addlitsitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" title="{L_BBCODE_LISTITEM_HELP}" />
83 <!-- IF S_BBCODE_IMG -->
84 <input type="button" class="button2" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onclick="bbstyle(14)" title="{L_BBCODE_P_HELP}" />
85 <!-- ENDIF -->
86 <!-- IF S_LINKS_ALLOWED -->
87 <input type="button" class="button2" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onclick="bbstyle(16)" title="{L_BBCODE_W_HELP}" />
88 <!-- ENDIF -->
89 <!-- IF S_BBCODE_FLASH -->
90 <input type="button" class="button2" accesskey="d" name="addbbcode18" value="Flash" onclick="bbstyle(18)" title="{L_BBCODE_D_HELP}" />
91 <!-- ENDIF -->
92 <select name="addbbcode20" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" title="{L_BBCODE_F_HELP}">
93 <option value="50">{L_FONT_TINY}</option>
94 <option value="85">{L_FONT_SMALL}</option>
95 <option value="100" selected="selected">{L_FONT_NORMAL}</option>
96 <!-- IF not MAX_FONT_SIZE or MAX_FONT_SIZE >= 150 -->
97 <option value="150">{L_FONT_LARGE}</option>
98 <!-- IF not MAX_FONT_SIZE or MAX_FONT_SIZE >= 200 -->
99 <option value="200">{L_FONT_HUGE}</option>
100 <!-- ENDIF -->
101 <!-- ENDIF -->
102 </select>
103 <input type="button" class="button2" name="bbpalette" id="bbpalette" value="{L_FONT_COLOR}" onclick="change_palette();" title="{L_BBCODE_S_HELP}" />
104 <!-- BEGIN custom_tags -->
105 <input type="button" class="button2" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})" title="{custom_tags.BBCODE_HELPLINE}" />
106 <!-- END custom_tags -->
107 </div>
108 <!-- ENDIF -->