Merge branch 'master' of ssh://git@gitorious.org/yacy/rc1.git

pull/1/head
Michael Peter Christen 10 years ago
commit ee2490ab98

@ -322,8 +322,17 @@ public class URIMetadataNode extends SolrDocument {
return getDate(CollectionSchema.load_date_dt);
}
/**
* Get calculated date until resource shall be considered as fresh
* this may be a date in future
*
* @return Date initally calculated to (loaddate + (loaddate - lastmodified)/2)
*/
public Date freshdate() {
return getDate(CollectionSchema.fresh_date_dt);
// getDate() can't be used as it checks for date <= now
Date x = (Date) this.getFieldValue(CollectionSchema.fresh_date_dt.getSolrFieldName());
if (x == null) return new Date(0);
return x;
}
public String md5() {

Loading…
Cancel
Save