mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 08:31:29 +00:00
add catchup button to main toolbar
This commit is contained in:
@@ -4115,23 +4115,20 @@
|
|||||||
<li onclick=\"$tog_unread_link\"> ".__('Unread')."</li>
|
<li onclick=\"$tog_unread_link\"> ".__('Unread')."</li>
|
||||||
<li onclick=\"$tog_marked_link\"> ".__('Starred')."</li>
|
<li onclick=\"$tog_marked_link\"> ".__('Starred')."</li>
|
||||||
<li onclick=\"$tog_published_link\"> ".__('Published')."</li>
|
<li onclick=\"$tog_published_link\"> ".__('Published')."</li>
|
||||||
<!-- <li><span class=\"insensitive\">--------</span></li> -->
|
<li class=\"insensitive\">".__('Selection:')."</li>
|
||||||
<li class=\"insensitive\">".__('Mark as read:')."</li>
|
<li onclick=\"$catchup_sel_link\"> ".__('Mark as read')."</li>";
|
||||||
<li onclick=\"$catchup_sel_link\"> ".__('Selection')."</li>";
|
|
||||||
|
|
||||||
print "<li onclick=\"$catchup_feed_link\"> ".__('Entire feed').
|
// print "<li onclick=\"$catchup_feed_link\"> ".__('Entire feed').
|
||||||
"</li>";
|
// "</li>";
|
||||||
|
|
||||||
if ($feed_id != "0") {
|
if ($feed_id != "0") {
|
||||||
print "<li class=\"insensitive\">".__('Selection:')."</li>
|
print "<li onclick=\"$archive_sel_link\"> ".__('Archive')."</li>";
|
||||||
<li onclick=\"$archive_sel_link\"> ".__('Archive')."</li>
|
|
||||||
<li onclick=\"$delete_sel_link\"> ".__('Delete')."</li>";
|
|
||||||
} else {
|
} else {
|
||||||
print "<li class=\"insensitive\">".__('Selection:')."</li>
|
print "<li onclick=\"$archive_sel_link\"> ".__('Move back')."</li>";
|
||||||
<li onclick=\"$archive_sel_link\"> ".__('Move back')."</li>
|
|
||||||
<li onclick=\"$delete_sel_link\"> ".__('Delete')."</li>";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
print "<li onclick=\"$delete_sel_link\"> ".__('Delete')."</li>";
|
||||||
|
|
||||||
//print "<li><span class=\"insensitive\">--------</span></li>";
|
//print "<li><span class=\"insensitive\">--------</span></li>";
|
||||||
print "<li class=\"insensitive\">".__('Assign label:')."</li>";
|
print "<li class=\"insensitive\">".__('Assign label:')."</li>";
|
||||||
|
|
||||||
|
|||||||
@@ -244,7 +244,6 @@
|
|||||||
<option value="score"><?php echo __('Score') ?></option>
|
<option value="score"><?php echo __('Score') ?></option>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
||||||
<?php echo __('Limit:') ?>
|
<?php echo __('Limit:') ?>
|
||||||
<?php
|
<?php
|
||||||
$limits = array(15 => 15, 30 => 30, 60 => 60, 0 => __("All"));
|
$limits = array(15 => 15, 30 => 30, 60 => 60, 0 => __("All"));
|
||||||
@@ -263,7 +262,7 @@
|
|||||||
|
|
||||||
print_select_hash("limit", $def_art_limit, $limits,
|
print_select_hash("limit", $def_art_limit, $limits,
|
||||||
'onchange="viewLimitChanged()"');
|
'onchange="viewLimitChanged()"');
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
@@ -272,6 +271,10 @@
|
|||||||
onclick="return viewCurrentFeed('ForceUpdate')"
|
onclick="return viewCurrentFeed('ForceUpdate')"
|
||||||
value="<?php echo __('Update') ?>"/>
|
value="<?php echo __('Update') ?>"/>
|
||||||
|
|
||||||
|
<input class="button" type="submit" name="update"
|
||||||
|
onclick="return catchupCurrentFeed()"
|
||||||
|
value="<?php echo __('Mark as read') ?>"/>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user