You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yacy_search_server/htroot/Load_RSS_p.html

91 lines
3.2 KiB

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>YaCy '#[clientname]#': Configuration of a Wiki Search</title>
#%env/templates/metas.template%#
<script type="text/javascript">
<!--
function setall(name, check){
var selectForm = document.forms.namedItem(name);
var count = selectForm.elements["num"].value;
if (check) for(i = 0; i < count; i++) {
if (selectForm.elements["item_" + i].checked) {
check = false;
break;
}
}
for(i = 0; i < count; i++){
selectForm.elements["item_" + i].checked = check;
}
}
-->
</script>
<script type="text/javascript" src="/js/sorttable.js"></script>
</head>
<body id="IndexCreate">
#%env/templates/header.template%#
#%env/templates/submenuIndexCreate.template%#
<h2>Loading of RSS Feeds</h2>
<p>
RSS feeds can be loaded into the YaCy search index.
This does not load the rss file as such into the index but all the messages inside the RSS feeds as individual documents.
</p>
<form action="Load_RSS_p.html" method="get">
<fieldset>
<dl>
<dt><b>URL of the RSS feed</b></dt>
<dd><input type="text" name="url" value="#[url]#" size="60" maxlength="256"/></dd>
<dt>Simulation Mode</dt>
<dd><input type="submit" name="showrss" value="Show RSS Items" /></dd>
<dt>Indexing Mode</dt>
<dd>#(showload)#Available after successful loading of rss feed in simulation mode::
<!--<input type="submit" name="loadrss" value="Index RSS Items" />-->not yet implemented <b>THIS INTERFACE IS A STUB - DEVELOPMENT IS ONGOING</b>
#(/showload)#</dd>
</dl>
</fieldset>
</form>
#(showitems)#::
<form name="rssfeed"><fieldset>
<legend><label for="table">RSS Feed</label></legend>
<dl>
<dt>Title</dt><dd>#[title]#</dd>
<dt>Author</dt><dd>#[author]#</dd>
<dt>Description</dt><dd>#[description]#</dd>
<dt>Language</dt><dd>#[language]#</dd>
<dt>Date</dt><dd>#[date]#</dd>
<dt>Time-to-live</dt><dd>#[ttl]#</dd>
<dt>Docs</dt><dd>#[docs]#</dd>
</dl>
<table class="sortable" border="0" cellpadding="2" cellspacing="1">
<tr class="TableHeader" valign="bottom">
<td><input type="checkbox" name="allswitch" onclick="setall(this.form.name, this.value)" /></td>
<td>Title</td>
<td>URL</td>
<td>Author</td>
<td>Language</td>
<td>Date</td>
<td>Description</td>
</tr>
#{item}#
<tr class="TableCellLight">
<td align="left"><input type="checkbox" name="item_#[count]#" value="mark_#[hash]#" /></td>
<td><a href="#[link]#">#[title]#</a></td>
<td><a href="#[link]#">#[link]#</a></td>
<td>#[author]#</td>
<td>#[language]#</td>
<td>#[date]#</td>
<td>#[description]#</td>
</tr>
#{/item}#
</table>
<input type="hidden" name="num" value="#[num]#" />
</fieldset></form>
#(/showitems)#
#%env/templates/footer.template%#
</body>
</html>