blob: dd7374ad452b64a3af2acf7e208894d271e72f42 (
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
|
{* $Header: /cvsroot/bitweaver/_bit_boards/templates/Attic/topic.tpl,v 1.17 2006/09/03 20:05:20 squareing Exp $ *}
{strip}
<div class="listing bitboard">
<div class="floaticon">
{if $print_page ne 'y'}
{if $gBitUser->hasPermission( 'p_bitboard_edit' )}
<a title="{tr}Remove this message board{/tr}" href="{$smarty.const.BITBOARDS_PKG_URL}edit.php?b={$board->mInfo.board_id}">{biticon ipackage="icons" iname="accessories-text-editor" iexplain="Edit Message Board"}</a>
{/if}
{if $gBitUser->hasPermission( 'p_bitboard_remove' )}
<a title="{tr}Remove this message board{/tr}" href="{$smarty.const.BITBOARDS_PKG_URL}remove.php?b={$board->mInfo.board_id}">{biticon ipackage="icons" iname="edit-delete" iexplain="Remove Message Board"}</a>
{/if}
{/if}<!-- end print_page -->
</div><!-- end .floaticon -->
<div class="header">
<h1>{$board->mInfo.title|escape|default:"Message Board Topic"}</h1>
{if $boards->mInfo.parsed_data}
<h2>{$board->mInfo.parsed_data}</h2>
{/if}
Back to <a href="{$cat_url}">{$board->mInfo.content_type.content_description}s</a>
</div>
<div class="body">
{minifind sort_mode=$sort_mode b=$smarty.request.b}
{* looks horrible, but leave for now - xing *}
<div class="navbar">
<a title="{tr}New Topic{/tr}" href="{$comments_return_url}&post_comment_request=1#editcomments">{tr}New Topic{/tr} {biticon ipackage="icons" iname="mail-message-new" iexplain="New Topic"}</a>
</div>
{form id="checkform"}
<input type="hidden" name="board_id" value="{$smarty.request.board_id}" />
<input type="hidden" name="offset" value="{$control.offset|escape}" />
<input type="hidden" name="sort_mode" value="{$control.sort_mode|escape}" />
<table class="data">
{if !$gBitSystem->isFeatureActive('bitboards_thread_verbrose')}
<tr>
<th style="width:5%;"> </th>
<th style="width:40%;">{tr}Title{/tr}</th>
<th style="width:5%;">{tr}Replies{/tr}</th>
<th style="width:20%;">{tr}Started{/tr}</th>
<th style="width:20%;">{tr}Last Post{/tr}</th>
{if $gBitUser->hasPermission('p_bitboards_edit') || $gBitUser->hasPermission('p_bitboards_post_edit')}
<th style="width:1%;"><abbr title="{tr}Number of posts by Anonymous users{/tr}">Anon</abbr></th>
{/if}
{if $gBitUser->hasPermission('p_bitboards_edit')}
<th style="width:10%;" colspan="2">Actions</th>
{/if}
</tr>
{/if}
{foreach item=thread from=$threadList}
<tr class="{cycle values="even,odd"} {
if $gBitSystem->isFeatureActive('bitboards_post_anon_moderation') && $thread.unreg > 0
}unapproved{
elseif $thread.th_moved>0
}moved{
/if}
{if $thread.th_sticky==1} highlight{/if}"
>
<td style="white-space:nowrap;">{* topic status icons *}
{if $thread.th_moved>0}
{biticon ipackage="icons" iname="go-jump" iexplain="Moved Topic"}
{else}
{assign var=flip value=$thread.flip}
{foreach from=$flip item=flip_s key=flip_name}
{include file="bitpackage:bitboards/flipswitch.tpl"}
{/foreach}
{/if}
</td>
<td>
<a href="{$thread.url}" title="{$thread.title|escape}">{$thread.title|escape}</a>
</td>
<td style="text-align:center;">{if $thread.post_count-1}{$thread.post_count-1}{/if}</td>
<td style="text-align:center;">
{$thread.flc_created|reltime:short|escape}<br/>
{if $thread.flc_user_id < 0}{$thread.anon_name|escape}{else}{displayname user_id=$thread.flc_user_id}{/if}
</td>
<td style="text-align:center;">
{if $thread.post_count > 1}{$thread.llc_last_modified|reltime:short|escape}{else}{/if}<br/>
{if $thread.post_count > 1}{if $thread.llc_user_id < 0}{$thread.l_anon_name|escape}{else}{displayname user_id=$thread.llc_user_id}{/if}{else}{/if}
</td>
{if $gBitUser->hasPermission('p_bitboards_edit') || $gBitUser->hasPermission('p_bitboards_post_edit')}
<td style="text-align:center;">{if $thread.unreg > 0}<a class="highlight" href="{$thread.url}" title="{$thread.title}">{$thread.unreg}</a>{/if}</td>
{/if}
{if $gBitUser->hasPermission('p_bitboards_edit') || $gBitUser->hasPermission('p_bitboards_post_edit')}
<td class="actionicon">
{if $thread.flc_user_id<0 && $thread.first_approved==0}
<a title="{tr}Approve First Post{/tr}" href="{$smarty.const.BITBOARDS_PKG_URL}topic.php?b={$board->mInfo.board_id}&action=1&comment_id={$thread.th_thread_id}">
{biticon ipackage="icons" iname="list-add" iexplain="Approve First Post"}
</a>
<a title="{tr}Reject First Post{/tr}" href="{$smarty.const.BITBOARDS_PKG_URL}topic.php?b={$board->mInfo.board_id}&action=2&comment_id={$thread.th_thread_id}">
{biticon ipackage="icons" iname="list-remove" iexplain="Reject First Post"}
</a>
{/if}
{if $thread.th_moved==0}
{if $gBitUser->hasPermission( 'p_bitboards_edit' )}
{*smartlink ititle="Edit" ifile="edit.php" ibiticon="liberty/edit" board_id=$thread.board_id*}
<a onclick="
document.getElementById('move_block_{$thread.th_thread_id|escape:"url"}').style['display']='inline';
var url = '{$smarty.const.BITBOARDS_PKG_URL}ajax.php?req=1&seq=' + new Date().getTime();
var element = 'move_{$thread.th_thread_id|escape:"url"}';
var params = null;
{literal}
var ajax = new Ajax.Updater(
{success: element},
url, {method: 'get', parameters: params, onFailure: reportError}
);
{/literal}
this.oldonclick=this.onclick;
this.onclick=new Function('
document.getElementById(\'move_block_{$thread.th_thread_id|escape:"url"}\').style[\'display\']=\'none\';
document.getElementById(\'move_{$thread.th_thread_id|escape:"url"}\').innerHTML=\'\';
this.onclick=this.oldonclick;
return false;
');
return false;" title="{tr}Move Thread{/tr}" href="{$smarty.const.BITBOARDS_PKG_URL}topic_move.php?t={$thread.th_thread_id|escape:"url"}"
>{biticon ipackage=icons iname="go-jump" iexplain="Move Thread"}</a>
{/if}
{/if}
{if $thread.th_moved==0 && $gBitUser->hasPermission( 'p_bitboards_remove' )}
<a title="{tr}Delete Thread{/tr}" href="{$smarty.const.BITBOARDS_PKG_URL}remove_bitboard.php?thread_id={$thread.th_thread_id|escape:"url"}">{biticon ipackage="icons" iname="edit-delete" iexplain="Delete Thread"}</a>
{else}
{biticon ipackage=liberty iname=spacer iforce=icon}
{/if}
{if $thread.th_moved==0}
{if $gBitUser->hasPermission( 'p_bitboards_edit' )}
<br />
<div style="display:none;" id="move_block_{$thread.th_thread_id|escape:"url"}">
Move to: <select onchange="window.location=('{$smarty.const.BITBOARDS_PKG_URL}topic_move.php?t={$thread.th_thread_id|escape:"url"}&target='+
document.getElementById('move_{$thread.th_thread_id|escape:"url"}').value);" id="move_{$thread.th_thread_id|escape:"url"}">
</select>
</div>
{/if}
{/if}
</td>
{if $thread.th_moved==0 && $gBitUser->hasPermission( 'p_bitboards_remove' )}
<td>
<input type="checkbox" name="checked[]" title="{$thread.title|escape}" value="{$thread.th_thread_id}" />
</td>
{/if}
{/if}
</tr>
{foreachelse}
<tr class="norecords"><td colspan="16">
{tr}No records found{/tr}
</td></tr>
{/foreach}
</table>
<div class="navbar">
<a title="{tr}New Topic{/tr}" href="{$comments_return_url}&post_comment_request=1#editcomments">{tr}New Topic{/tr} {biticon ipackage="icons" iname="mail-message-new" iexplain="New Topic"}</a>
</div>
{if $gBitUser->hasPermission( 'p_bitboards_remove' )}
<div style="text-align:right;">
<script type="text/javascript">/* <![CDATA[ check / uncheck all */
document.write("<label for=\"switcher\">{tr}Select All{/tr}</label> ");
document.write("<input name=\"switcher\" id=\"switcher\" type=\"checkbox\" onclick=\"switchCheckboxes(this.form.id,'checked[]','switcher')\" /><br />");
/* ]]> */</script>
<select name="submit_mult" onchange="this.form.submit();">
<option value="" selected="selected">{tr}with checked{/tr}:</option>
{if $gBitUser->hasPermission( 'p_bitboards_remove' )}
<option value="remove_bitboards">{tr}remove{/tr}</option>
{/if}
</select>
<noscript><div><input type="submit" value="{tr}Submit{/tr}" /></div></noscript>
</div>
{/if}
{/form}
{pagination b=$smarty.request.b}
{include file="bitpackage:bitboards/legend_inc.tpl" topicicons=1}
</div><!-- end .body -->
</div><!-- end .admin -->
{if $gBitSystem->isFeatureActive('bitboards_post_anon_moderation') && $smarty.request.post_comment_request && !$gBitUser->isRegistered()}
{formfeedback warning="Your post will not be shown immediately it will have to be approved by a moderator"}
{/if}
{include file="bitpackage:liberty/comments_post_inc.tpl" post_title="Post" hide=1}
{/strip}
|