reger
688f7b2a5c
allow/display svg images in image results previews
...
svg is not supported by awt but by most browser. Image content is delivered as received (without size adjustment)
9 years ago
reger
d5330391de
remove some unused var allocation in parser
9 years ago
Michael Peter Christen
3d7dd9d3aa
follow-up to latest commit: also flush the search cache if all crawls
...
had been terminated.
9 years ago
Michael Peter Christen
225200194a
every time a crawl is started, the user expects a different search
...
result behaviour. This requires that the search cache is flushed for
each crawl start. TODO: this should also be done if a crawl is
terminated.
9 years ago
Michael Peter Christen
c737ff235d
in case that the include_string contains several entries including
...
1-char tokens and also more-than-1-char tokens, then remove the 1-char
tokens to prevent that we are to strict. This will make it possible to
be a bit more fuzzy in the search where it is appropriate.
9 years ago
Michael Peter Christen
8e555d79a3
add also 1-character tokens to the token list because that could be also
...
searched for. A full-string search for a filename may fail if those
1-char tokens are omitted
9 years ago
sixcooler
1091e25f4c
Merge branch 'master' of https://github.com/yacy/yacy_search_server
9 years ago
luc
eb7989b17b
Merge branch 'master' of https://github.com/yacy/yacy_search_server.git
9 years ago
reger
7c82cd4415
add a end condition to svgParser for wrong content
...
(if parser choosen just by file extension)
9 years ago
luc
82f4f221e9
Merge branch 'master' of https://github.com/yacy/yacy_search_server.git
9 years ago
sixcooler
9c2cd7e87b
Merge branch 'master' of https://github.com/yacy/yacy_search_server
9 years ago
reger
b92d81b073
remove double caching of inputstream in ViewImage
9 years ago
reger
c7c5e2dff9
fix old/obsolete solr dependency to stax
...
delete obsolete jar
9 years ago
reger
beed1c417e
Add report profile with OWASP Dependency-Check to maven pom
9 years ago
reger
356d4d1301
remove rdfParser from init (current function identical with genericParser)
9 years ago
reger
c647d899e3
add svgParser to parse metadate from svg images
...
Reads document level included title and description and skips the graphic content to save bandwidth.
svg metadata element is not interpreted
- remove rdfParser from init (current function identical with genericParser)
9 years ago
reger
bad34804fe
optimize parseInt for <img> tag attribute parsing
...
Performance better as using Numberformat.parse or parseInt(substring())
9 years ago
sixcooler
68c6d6ca7a
Merge branch 'master' of https://github.com/yacy/yacy_search_server
9 years ago
Michael Peter Christen
3c31bf845f
fix for latest merge
9 years ago
Michael Peter Christen
6ebc2451a9
Merge pull request #14 from luccioman/master
...
Translator refactoring : no more regular expression processing
9 years ago
luc
8615556dd5
Merge branch 'master' of https://github.com/yacy/yacy_search_server.git
9 years ago
reger
2f51baff4f
check for loading error (includs unsupported formats)
...
to prevent blank thumbnail display in image search because of not handled source which don't load on click.
Now the cross icon indicates the problem (inlcuding not supported format)
9 years ago
luc
5578886f6f
Merge branch 'master' of https://github.com/luccioman/yacy_search_server.git
9 years ago
luc
c38d6c1f37
Correction for mantis 535: inurl: parameter doesn't work on URLs with
...
upper-case letters
9 years ago
reger
52e3eb4ce8
harmonize/correct assignment to Ymarkmeta.mime
...
replace use of deprecated
9 years ago
Michael Peter Christen
87f358058e
Fix for index entries which have id's not computed as hash from the url.
...
This makes it possible to operate with outside-computed url hashes in
enterprise environments not using the build-in crawler from YaCy.
9 years ago
reger
2951c9fc40
remove unused check for known fileextension in searchtrailer
...
(check is done on add to filetype-nav)
9 years ago
reger
3f2b8ab5e5
optionally include mime in p2p url exchange string
...
if doctype decodes to ambiguous mime and default conversion is not equal to original
9 years ago
sixcooler
de01b25805
Merge branch 'master' of https://github.com/yacy/yacy_search_server
9 years ago
reger
a3195d78ae
add Portuguese month names to date recognition
9 years ago
reger
d2cc11ea8f
fix html parser taking <style> content as text.
...
Noticed some result description contain css content from style tag.
Added <style> to tag list to scrape it's content not as text
+ test case included
9 years ago
sixcooler
9ace7876ef
Merge branch 'master' of https://github.com/yacy/yacy_search_server
9 years ago
Michael Peter Christen
5f706797cb
patch for a bug inside of solr since solr 5.0 when using a boost
...
function with a numeric date field:
"unexpected docvalues type NUMERIC for field 'last_modified' (expected
one of [SORTED, SORTED_SET]). Use UninvertingReader or index with
docvalues."
This is a well-known bug inside solr which prevents that now the 'sort
by date' in the YaCy search interface can be used. Without this patch no
results at all is displayed (since the exception prevents that). Now
there is at least a result but it is not ordered properly.
9 years ago
sixcooler
c9da652249
Merge branch 'master' of https://github.com/yacy/yacy_search_server
9 years ago
reger
733d725dec
limit css scrolling to result/content window x
...
from pull request #10
9 years ago
Burkhard
4c38083a11
Merge pull request #10 from Raegdan/raegdan-css-layout-fix
...
Fixed CSS scrolling
9 years ago
reger
7889fc2389
Hack to prevent Solr issue on partial update on a document containing multivalued date field
...
(regardless if these fields part of update).
Switch partial update option off in postprocessing if schema contains *_dts (multivalued date field).
see http://mantis.tokeek.de/view.php?id=601
9 years ago
reger
b4cbdea1e7
adapt SolrServerConnector.add to handle error on partial update input document.
...
In case of error we deleted the original document and added the new doc to the index.
This is not valid for partial update documents (which contain only a subset of the fields).
Remove the "delete" error handling step.
9 years ago
reger
e594130aec
add test case for partial update - to discover effect on YaCy for update of documents with multivalued date fields (like dates_in_content_dts)
...
current result: loss of fields/information in index document, see EmbeddedSolrConnectorTest.testUdate_withMultivaluedDateField()
9 years ago
reger
98ab655917
on reindex delete index document with invalid url
...
if discovered
9 years ago
reger
1e8369e18b
use a parsed date in Document.toString
9 years ago
reger
d5da9e5a38
fix test methode (add throw for URIMetadataNode)
9 years ago
sixcooler
1dcec73c19
Merge branch 'master' of https://github.com/yacy/yacy_search_server
9 years ago
luccioman
a7179138ce
Returned again to main repository location : does anyone want to
...
consider mantis 597 ? (http://mantis.tokeek.de/view.php?id=597 )
9 years ago
luccioman
199b2ce52d
Translator refactoring : to simplify locale files writing, process keys
...
as simple string and no more as regular expressions.
Updated all locale files to adapt to refectored Translator : removed
useless escaped characters and did minor corrections.
Performed minor syntax corrections on some html source files.
Added an util to translate all html source files with all locales
without launching full YaCy application.
Corrected main arguments parsing on other translation utils.
9 years ago
luccioman
711183bd72
Merge branch 'master' of ssh://git@github.com/yacy/yacy_search_server
9 years ago
luccioman
4dd9c0d5d9
Merge from main repository
9 years ago
reger
3428b6f13b
improve filtering by filetype navigator.
...
The used url-filter for filetype doesn't require ".ext" resulting in too many matches,
add a sort-out filter for RWI results.
9 years ago
reger
e37a4f0b3d
prevent metadata records in index w/o valid url
...
by throwing MalformedURL exception on URIMetadataNode creation
9 years ago
reger
41c4eade51
extract modification date from vCard (vcfParser)
9 years ago