1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

Numerous updates and additions for polling and assorted fixes ... or bugs, whichever they turn out to be

git-svn-id: file:///svn/phpbb/trunk@988 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-09-06 00:34:40 +00:00
parent ef36331c3e
commit 5db9d42145
4 changed files with 40 additions and 27 deletions

View File

@ -49,6 +49,10 @@ $images['pm_savebox'] = "images/msg_savebox.gif";
$images['pm_sentbox'] = "images/msg_sentbox.gif";
$images['pm_readmsg'] = "images/msg_read.gif";
$images['pm_unreadmsg'] = "images/msg_unread.gif";
$images['pm_postmsg'] = "templates/PSO/images/post.giff";
$images['pm_replymsg'] = "templates/PSO/images/reply.gif";
$images['pm_editmsg'] = "images/icon_edit.gif";
$images['pm_quotemsg'] = "images/icon_quote.gif";
$images['topic_watch'] = "";
$images['topic_un_watch'] = "";
@ -58,6 +62,12 @@ $images['topic_mod_split'] = "images/topic_split.gif";
$images['topic_mod_move'] = "images/topic_move.gif";
$images['topic_mod_delete'] = "images/topic_delete.gif";
$images['voting_graphic'][0] = "images/voting/bar_1.gif";
$images['voting_graphic'][1] = "images/voting/bar_2.gif";
$images['voting_graphic'][2] = "images/voting/bar_3.gif";
$images['voting_graphic'][3] = "images/voting/bar_4.gif";
$images['voting_graphic'][4] = "images/voting/bar_5.gif";
$images['auth_can_read'] = "";
$images['auth_cannot_read'] = "";
$images['auth_can_post'] = "";
@ -70,6 +80,12 @@ $images['auth_can_delete'] = "";
$images['auth_cannot_delete'] = "";
$images['auth_mod'] = "";
//
// Vote graphic length defines the maximum length of a vote result
// graphic, ie. 100% = this length
//
$board_config['vote_graphic_length'] = 300;
//
// Default theme to use (can be blank if
// themes aren't supported by this template)

View File

@ -1,20 +1,17 @@
<br clear="all" />
<h1>Forum Pruning</h1>
<h1>{L_FORUM_PRUNE}</h1>
<h2>Forum: {FORUM_NAME}</h2>
<p>{L_FORUM_PRUNE_EXPLAIN}</p>
<table cellspacing="1" cellpadding="4" border="0" align="center">
<tr><form method="post" action="{S_FORUMPRUNE_ACTION}">{S_HIDDEN_VARS}
<td>{S_PRUNE_DATA}</td>
<h2>{L_FORUM}: {FORUM_NAME}</h2>
<form method="post" action="{S_FORUMPRUNE_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center">
<tr>
<td class="row1"> {S_PRUNE_DATA} </td>
</tr>
<tr>
<td align="center"><input type="submit" name="submit" value="Prune"></td>
<td class="cat" align="center">{S_HIDDEN_VARS}<input type="submit" name="doprune" value="{L_DO_PRUNE}"></td>
</tr>
<tr>
<td><span class="gensmall">Note: This will not prune announcements or sticky topics, these must be removed manually.</span></td>
</form></tr>
</table>
<br clear="all" />
</table></form>

View File

@ -1,21 +1,21 @@
<br clear="all" />
<h1>Forum Pruning</h1>
<h1>{L_FORUM_PRUNE}</h1>
<p>Here are the results from your forum pruning:</p>
<p>{L_PRUNE_RESULT}</p>
<table cellspacing="1" cellpadding="4" border="0" align="center">
<tr>
<th>FORUM NAME</th>
<th>TOPICS PRUNED</th>
<th>POSTS PRUNED</th>
<th>{L_FORUM}</th>
<th>{L_TOPICS_PRUNED}</th>
<th>{L_POSTS_PRUNED}</th>
</tr>
<!-- BEGIN prune_results -->
<tr>
<td class="row1" align="center">{prune_results.FORUM_NAME}</td>
<td class="row1" align="center">{prune_results.FORUM_TOPICS}</td>
<td class="row1" align="center">{prune_results.FORUM_POSTS}</td>
<td class="{prune_results.ROW_CLASS}" align="center">{prune_results.FORUM_NAME}</td>
<td class="{prune_results.ROW_CLASS}" align="center">{prune_results.FORUM_TOPICS}</td>
<td class="{prune_results.ROW_CLASS}" align="center">{prune_results.FORUM_POSTS}</td>
</tr>
<!-- END prune_results -->
</table>

View File

@ -1,15 +1,15 @@
<br clear="all" />
<h1>Forum Pruning</h1>
<h1>{L_FORUM_PRUNE}</h1>
<table cellspacing="1" cellpadding="4" border="0" align="center">
<form method="get" action="{S_FORUMPRUNE_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center">
<tr>
<th bgcolor="#CCCCCC">Select a Forum</th>
<td class="cat" align="center"><span class="cattitle"><b>{L_SELECT_FORUM}</td>
</tr>
<tr><form method="get" action="{S_FORUMPRUNE_ACTION}">
<td class="row1" align="center">{S_FORUMS_SELECT}&nbsp;&nbsp;<input type="submit" value="Select">&nbsp;</td>
</form></tr>
</table>
<tr>
<td class="row1" align="center">{S_FORUMS_SELECT} &nbsp;<input type="submit" name="pruneset" value="{L_LOOK_UP}">&nbsp;</td>
</tr>
</table></form>
<br clear="all" />