mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
remove deprecated duplicate feed detection
This commit is contained in:
@@ -1,50 +0,0 @@
|
||||
<div class="row">
|
||||
|
||||
<div>
|
||||
Limit <input type="number" ng-model="limit" />
|
||||
Page <input type="number" ng-model="page" />
|
||||
Min. count <input type="number" ng-model="minCount" />
|
||||
</div>
|
||||
<div>
|
||||
Mode
|
||||
<select ng-model="mode">
|
||||
<option value="NORMALIZED_URL">Normalized URLs</option>
|
||||
<option value="LAST_CONTENT">Last content</option>
|
||||
<option value="PUSH_TOPIC">Pubsubhubbub topic URL</option>
|
||||
</select>
|
||||
<input type="button" class="btn" ng-click="refreshData()" value="Refresh" />
|
||||
<input type="button" class="btn" ng-click="autoMerge()" value="Auto merge selected" />
|
||||
</div>
|
||||
|
||||
<table class="table table-condensed table-hover" ng-if="counts">
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>url</th>
|
||||
<th>count</h>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="count in counts" ng-click="focus(count)" class="pointer">
|
||||
<td><input type="checkbox" ng-model="count.autoMerge" /> </td>
|
||||
<td>{{count.feeds[0].url}}</td>
|
||||
<td>{{count.feeds.length}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div ng-if="current">
|
||||
<div>
|
||||
Merge
|
||||
<select ng-model="mergeData.feedIds" size="30" multiple="multiple" class="input-block-level"
|
||||
ng-options="feed.id as feed.url for feed in current.feeds">
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
Into
|
||||
<select ng-model="mergeData.intoFeedId" ng-options="feed.id as feed.url for feed in current.feeds" class="input-block-level">
|
||||
</select>
|
||||
</div>
|
||||
<input type="button" class="btn" ng-click="merge()" value="Merge" />
|
||||
</div>
|
||||
</div>
|
||||
@@ -5,10 +5,6 @@
|
||||
<small>
|
||||
<a ng-click="toUsers()" class="pointer">Manage users</a>
|
||||
</small>
|
||||
-
|
||||
<small>
|
||||
<a ng-click="toCleanup()" class="pointer">Cleanup feeds</a>
|
||||
</small>
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user