__section__
default
__description__
You should describe stuff here.
__title__
Useless title to template
__page__
misc
__lang__
en_US
__name__
fhadvprefpane
__seclev__
10000
__template__
<table width="100%">
<tr>
	<td>
		[% paused = 0;
	   	IF form.pause.defined;
			paused = form.pause;
		ELSE;
			paused = user.firehose_pause;
		END;
		%]
		[% IF paused %]
			<span id="advplay" onclick="firehose_play()"><a href="#">Paused</a></span>
		[% ELSE %]
			<span id="advpause" onclick="firehose_pause()"><a href="#">Updating</a></span>
		[% END %]
	</td>
	<td>Toggles between a paused or dynamically updating Firehose</td>
	<td rowspan="4">
<input type="checkbox" name="nodates" onchange="firehose_set_options('nodates', !this.checked)" [% IF !options.nodates; constants.markup_checked_attribute; END %]> Dates<br>
<input type="checkbox" name="nobylines" onchange="firehose_set_options('nobylines', !this.checked)" [% IF !options.nobylines; constants.markup_checked_attribute; END %]> Bylines <br>
<input type="checkbox" name="nothumbs" onchange="firehose_set_options('nothumbs', !this.checked)" [% IF !options.nothumbs; constants.markup_checked_attribute; END %]> Thumbs <br>
<input type="checkbox" name="nocolors" onchange="firehose_set_options('nocolors', !this.checked)" [% IF !options.nocolors; constants.markup_checked_attribute; END %]> Color Swatches<br>
<input type="checkbox" name="mixedmode" onchange="firehose_set_options('mixedmode', this.checked)" [% IF options.mixedmode; constants.markup_checked_attribute; END %]> Expand Top Rated<br>
<input type="checkbox" name="nocommentcount" onchange="firehose_set_options('nocommentcnt', !this.checked)" [% IF !options.nocommentcnt; constants.markup_checked_attribute; END %]> Show comment count for abbreviated<br>
[% default = options.pagesize || "small" %]
Page size: [% Slash.createSelect('pagesize', { 'small' => 'Small', 'large' => 'Large'}, { default => default, onchange => "firehose_set_options('pagesize',this.options[this.selectedIndex].value)", return => 1} ) %]<br>
[% IF user.is_admin %]
	<input type="hidden" name="setusermode" value="1">
	<input type="checkbox" value="1" name="firehose_usermode" onchange="firehose_set_options('firehose_usermode', this.checked)" [% constants.markup_checked_attribute IF options.firehose_usermode || user.firehose_usermode %]> User Mode
[% END %]
	<div align="right">
<form method="POST" action="[% env.script_name %]"><div>
<input type="hidden" name="fhfilter" value="">
<input type="hidden" name="color" value="indigo">
<input type="hidden" name="orderby" value="createtime">
<input type="hidden" name="orderdir" value="DESC">
<input type="hidden" name="mode" value="fulltitle">
<input type="hidden" name="pause" value="1">
<input type="hidden" name="duration" value="7">
<input type="submit" value="Reset to Defaults">
</div></form>
</div>
	</td>
</tr>
<tr>
	<td>
		[% IF options.mode == "fulltitle" || !options.mode %]
			<span id="advabbrev" onclick="firehose_set_options('mode','full')"><a href="#">Headlines</a></span>
		[% ELSE %]
			<span id="advfull"  onclick="firehose_set_options('mode','fulltitle')"><a href="#">Full Article</a></span>
		[% END %]
	</td>
	<td>Display stories in a brief or verbose format</td>
</tr>
<tr>
	<td>
		[% IF options.orderdir == "ASC" %]
			<span id="advdesc"  onclick="firehose_set_options('orderdir','DESC')"><a href="#">Ascending</a></span>
		[% ELSE %]
			<span id="advasc" onclick="firehose_set_options('orderdir','ASC')"><a href="#">Descending</a></span>
		[% END %]
	</td>
	<td>Forwards or Backwards.  You make the call!</td>
</tr>
<tr>
	<td>
		[% IF options.orderby == "popularity" || options.orderby == "editorpop" || options.orderby == "popularity2" %]
			<span id="advpopularity" onclick="firehose_set_options('orderby','createtime')"><a href="#">Popularity</a></span>
		[% ELSE  %]
			<span id="advtime" onclick="firehose_set_options('orderby','popularity')"><a href="#">Time</a></span>
		[% END %]
	</td>
	<td>Choose if you want your Firehose ordered by date
	or popularity</td>
</tr>

</table>
__version__
$Id: fhadvprefpane;misc;default,v 1.17 2007/08/15 14:23:40 tvroom Exp $
