2cb4c58b50
API: * API classes now support C++11 move semantics when using a compiler which we are confident supports them (currently compilers which define __cplusplus >= 201103 plus a special check for MSVC 2015 or later). C++11 move semantics provide a clean and efficient way for threaded code to hand-off Xapian objects to worker threads, but in this case it's very unhelpful for availability of these semantics to vary by compiler as it quietly leads to a build with non-threadsafe behaviour. To address this, user code can #define XAPIAN_MOVE_SEMANTICS before #include <xapian.h> to force this on, and will then get a compilation failure if the compiler lacks suitable support. * MSet::snippet(): + We were only escaping output for HTML/XML in some cases, which would potentially allow HTML to be injected into output (this has been assigned CVE-2018-0499). + Include certain leading non-word characters in snippets. Previously we started the snippet at the start of the first actual word, but there are various cases where including non-word characters in front of the actual word adds useful context or otherwise aids comprehension. Reported by Robert Stepanek in https://github.com/xapian/xapian/pull/180 * Add MSetIterator::get_sort_key() method. The sort key has always been available internally, but wasn't exposed via the public API before, which seems like an oversight as the collapse key has long been available. Reported by 张少华 on xapian-discuss. * Database::compact(): + Allow Compactor::resolve_duplicate_metadata() implementations to delete entries. Previously if an implementation returned an empty string this would result in a user meta-data entry with an empty value, which isn't normally achievable (empty meta-data values aren't stored), and so will cause odd behaviour. We now handle an empty returned value by interpreting it in the natural way - it means that the merged result is to not set a value for that key in the output database. + Since 1.3.5 compacting a WritableDatabase with uncommitted changes throws Xapian::InvalidOperationError when compacting to a single-file glass database. This release adds similar checks for chert and when compacting to a multiple-file glass database. + In the unlikely event that the total number of documents or the total length of all documents overflow when trying to compact a multi-database, we throw an exception. This is now a DatabaseError exception instead of a const char* exception (a hang-over from before this code was turned into a public API in the library). * Document::remove_term(): Handle removing term at current TermIterator position - previously the underlying iterator was invalidated, leading to undefined behaviour (typically a segmentation fault). Reported by Gaurav Arora. * TermIterator::get_termfreq() now always returns an exact answer. Previously for multi-databases we approximated the result, which is probably either a hang-over from when this method was used during Enquire::get_eset(), or else due to a thinking that this method would be used in that situation (it certainly is not now). If the user creates a TermIterator object and asks it for term frequencies then we really should give them the correct answer - it isn't hugely costly and the documentation doesn't warn that it might be approximated. * QueryParser::parse_query(): + Now adds a colon after the prefix when prefixing a boolean term which starts with a colon. This means the mapping is reversible, and matches what omega actually does in this case when it tries to reverse the mapping. Thanks to Andy Chilton for pointing out this corner case. + The parser now makes use of newer features in the lemon parser generator to make parsing faster and use less memory. * Enquire::get_mset(): Fix bug with get_mset(0, 0, X) when X > 0 which was causing an attempt to access an element in an empty vector. Reported by sielicki in #xapian. * Stem: + Add Indonesian stemming algorithm. + Small optimisations to almost all stemming algorithms. * Stopper: + Add Indonesian stopword list. + The installed version of the Finnish stopword list now has one word per line. Previously it had several space-separated words on some lines, which works with C++'s std::istream_iterator but may be inconvenient for use from some other languages. + The installed versions of stopword lists are now sorted in byte order rather than whatever collation order is specified by LC_COLLATE or similar at build time. This makes the build more reproducible, and also may be more efficient for loading into some data structures. * WritableDatabase::replace_document(term, doc): Check for last_docid wrapping when used on a sharded database. * Database::locked(): Consistently throw FeatureUnavailableError on platforms where we can't test for a database lock without trying to take it. Previously GNU Hurd threw DatabaseLockError while platforms where we don't use fcntl() locking at all threw UnimplementedError. * Database and WritableDatabase constructors: Fix handling of entries for disabled backends in stub database files to throw FeatureUnavailableError instead of DatabaseError. * Database::get_value_lower_bound() now works correctly for sharded databases. Previously it returned the empty string if any shard had no values in the specified slot. * PostingIterator was failing to keep an internal reference to the parent Database object for sharded databases. * ValueIterator::skip_to() and check() had an off-by-one error in their docid calculations in some cases with sharded databases. * Add Database::get_total_length() method. Previously you had to calculate this from get_avlength() and get_doccount(), taking into account rounding issues. But even then you couldn't reliably get the exact value when total length is large since a double's mantissa has more limited precision than an unsigned long long. * Add Xapian::iterator_rewound() for bidirectional iterators, to test if the iterator is at the start (useful for testing whether we're done when iterating backwards). * DatabaseOpeningError exceptions now provide errno via get_error_string() rather than turning it into a string and including it in the exception message. * WritableDatabase::replace_document(): when passed a Document object which came from a database and has unmodified values, we used to always read those values into a memory structure. Now we only do this if the document is being replaced to the same document ID which it came from, which should make other cases a bit more efficient. * Enquire::get_eset(): When approximating term frequencies we now round to the nearest integer - previously we always rounded down. matcher: * OP_VALUE_*: When a value slot's lower and upper bound are equal, we know that exactly how many documents the subquery can match (either 0 or those bounds). This also avoids a division by zero which previously happened when trying to calculate the estimate. * Speed up sorting by keys. Use string::compare() to avoid having to call operator< if operator> returns false. * Fix clamping of maxitems argument to get_mset() - it was being clamped to db.get_doccount(), now it's clamped to db.get_doccount() - first. In practice this doesn't actually seem to cause any issues. * If a match time limit is in effect, when it expires we now clamp check_at_least to first + maxitems instead of to maxitems. In practice this also doesn't seem to actually cause any issues (at least we've failed to construct a testcase where it actually makes an observable difference). * Fix percentages when only some shards have positions. If the final shard didn't have positions this would lead to under-counting the total number leaf of subqueries which would lead to incorrect positional calculations (and a division by zero if the top level of the query was positional. This bug was introduced in 1.4.3. * OP_NEAR: Fix "phantom positions", where OP_NEAR would think a term without positional information occurred at position 1 if it had the lowest term frequency amongst the OP_NEAR's subqueries. * Fix termfreq used in weight calculations for a term occurring more than once in the query. Previously the termfreq for such terms was multiplied by the number of different query positions they appeared at. * OP_SYNONYM: We use the doclength upper bound for the wdf upper bound of a synonym - now we avoid fetching it twice when the doclength upper bound is explicitly needed. * Short-cut init() when factor is 0 in most Weight subclasses. This indicates the object is for the term-independent weight contribution, which is always 0 for most schemes, so there's no point fetching any stats or doing any calculations. This fixes a divide by zero for TfIdfWeight, detected by UBSan. * OP_OR: Fix bug which caused orcheck1 to fail once hooked up to run with the inmemory backend. * Iterating of positions has been sped up, which means phrase matching is now faster (by a little over 5% in some simple tests). * Fix use after free of QueryOptimiser hint in certain cases involving multiple databases only some of which have positional information. This bug was introduced by changes in xapian-core 1.4.3. Fixes #752, reported and analysed by Robert Stepanek. * An unweighted OP_AND_MAYBE is now optimised to just its left branch - the other branch or branches only contribute weight, so can be completely ignored when the operator is unweighted. glass backend: * Fix glass freelist bug when changes to a new database which didn't modify the termlist table were committed. In this corner case, a block which had been allocated to be the root block in the termlist table was leaked. This was largely harmless, except that it was detected by Database::check() and caused it to report an error. Reported by Antoine Beaupré and David Bremner. * Fix glass freelist bug with cancel_transaction(). The freelist wasn't reset to how it was before the transaction, resulting in leaked blocks. This was largely harmless, except that it was detected by Database::check() and caused it to report an error. * Improve the per-term wdf upper bound. Previously we used min(cf(term), wdf_upper_bound(db)) which is tight for any terms which attain that upper bound, and also for terms with termfreq == 1 (the latter are common in the database (e.g. 66% for a database of wikipedia), but probably much less common in searches). When termfreq > 1 we now use max(first_wdf(term), cf(term) - first_wdf(term)), which means terms with termfreq == 2 will also attain their bound (another 11% for the same database) while terms with higher termfreq but below the global bound will get a tighter bound. * Fix Database::locked() on single-file glass db to just return false (such databases can't be opened as a WritableDatabase so there can't be a write lock). Previously this failed with: "DatabaseLockError: Unable to get write lock on /flintlock: Testing lock" * Fix compaction when both the input and output are specified as a file descriptor. Previously this threw an exception due to an overeager check that destination != source. * Use O_TRUNC when compacting to single file. If the output already exists but is larger than our output we don't want to just overwrite the start of it. This case also used to result in confusing compaction percentages. * Enable glass's "open_nearby_postlist" optimisation (which especially helps large wildcard queries) for writable databases without any uncommitted changes as well. * Make get_unique_terms() more efficient for glass. We approximate get_unique_terms() by the length of the termlist (which counts boolean terms too) but clamp this to be no larger than the document length. Since we need to open the termlist to get its length, it makes more sense to get the document length from that termlist for no extra cost rather than looking it up in the postlist table. * Database::check() now checks document lengths against the stored document length lower and upper bounds. Patch from Uppinder Chugh. Fixes https://trac.xapian.org/ticket/617. * Fix bogus handling of most-recently-read value slot statistics. It seems that we get lucky and this can't actually cause a problem in practice due to another layer of caching above, but if nothing else it's a bug waiting to happen. * If we fail to create the directory for a new database because the path already exists, the exception now reports EEXIST as the errno value rather than whatever errno value happened to be set from an earlier library call. remote backend: * xapian-tcpsrv --one-shot no longer forks. We need fork to handle multiple concurrent connections, but when handling a single connection forking just adds overhead and potentially complicates process management for our caller. This aligns with the behaviour under __WIN32__ where we use threads instead of forking, and service the connection from the main thread with --one-shot. * Fix repeat call to ValueIterator::check() on the same docid to not always set valid to true for remote backend. inmemory backend: * Fix repeat call to ValueIterator::check() on the same docid to not always set valid to true for inmemory backend. * Use binary chop instead of linear search in all places where we're searching for a term or document - we weren't taking advantage of the sorted order everywhere. tools: * xapian-delve: + Document values can contain binary data, so escape them by default for output. Other options now supported are to decode as a packed integer (like omindex uses for last modified), decode using Xapian::sortable_unserialise(), and to show the raw form (which was the previous behaviour). + Report current database revision. * xapian-inspect: + Report entry count when opening table + Support inspecting single file DBs via a new --table option (which can also be used with a non-single-file DB instead of specifying the path to the table). + Add "first" and "last" commands which jump to the first/last entry in the current table respectively. + "until" now counts and reports the number of entries advanced by. + Document "until" with no arguments - this advances to the end of the table, but wasn't mentioned in the help. + Commands "goto" and "until" which take a key as an argument now expect the key in the same escaped form that's used for display. This makes it much simpler to interact with tables with binary keys. + Fix to expect .glass not .DB extension of glass tables.
524 lines
31 KiB
Text
524 lines
31 KiB
Text
@comment $NetBSD: PLIST,v 1.13 2018/07/06 16:21:56 schmonz Exp $
|
|
bin/copydatabase
|
|
bin/quest
|
|
bin/simpleexpand
|
|
bin/simpleindex
|
|
bin/simplesearch
|
|
bin/xapian-check
|
|
bin/xapian-compact
|
|
bin/xapian-config
|
|
bin/xapian-delve
|
|
bin/xapian-metadata
|
|
bin/xapian-progsrv
|
|
bin/xapian-replicate
|
|
bin/xapian-replicate-server
|
|
bin/xapian-tcpsrv
|
|
include/xapian.h
|
|
include/xapian/attributes.h
|
|
include/xapian/compactor.h
|
|
include/xapian/constants.h
|
|
include/xapian/constinfo.h
|
|
include/xapian/database.h
|
|
include/xapian/dbfactory.h
|
|
include/xapian/deprecated.h
|
|
include/xapian/derefwrapper.h
|
|
include/xapian/document.h
|
|
include/xapian/enquire.h
|
|
include/xapian/error.h
|
|
include/xapian/errorhandler.h
|
|
include/xapian/eset.h
|
|
include/xapian/expanddecider.h
|
|
include/xapian/geospatial.h
|
|
include/xapian/intrusive_ptr.h
|
|
include/xapian/iterator.h
|
|
include/xapian/keymaker.h
|
|
include/xapian/matchspy.h
|
|
include/xapian/mset.h
|
|
include/xapian/positioniterator.h
|
|
include/xapian/postingiterator.h
|
|
include/xapian/postingsource.h
|
|
include/xapian/query.h
|
|
include/xapian/queryparser.h
|
|
include/xapian/registry.h
|
|
include/xapian/stem.h
|
|
include/xapian/termgenerator.h
|
|
include/xapian/termiterator.h
|
|
include/xapian/types.h
|
|
include/xapian/unicode.h
|
|
include/xapian/valueiterator.h
|
|
include/xapian/valuesetmatchdecider.h
|
|
include/xapian/version.h
|
|
include/xapian/visibility.h
|
|
include/xapian/weight.h
|
|
lib/cmake/xapian/xapian-config-version.cmake
|
|
lib/cmake/xapian/xapian-config.cmake
|
|
lib/libxapian.la
|
|
lib/pkgconfig/xapian-core.pc
|
|
man/man1/copydatabase.1
|
|
man/man1/quest.1
|
|
man/man1/xapian-check.1
|
|
man/man1/xapian-compact.1
|
|
man/man1/xapian-config.1
|
|
man/man1/xapian-delve.1
|
|
man/man1/xapian-metadata.1
|
|
man/man1/xapian-progsrv.1
|
|
man/man1/xapian-replicate-server.1
|
|
man/man1/xapian-replicate.1
|
|
man/man1/xapian-tcpsrv.1
|
|
share/aclocal/xapian.m4
|
|
share/doc/xapian-core/admin_notes.html
|
|
share/doc/xapian-core/apidoc/html/annotated.html
|
|
share/doc/xapian-core/apidoc/html/bc_s.png
|
|
share/doc/xapian-core/apidoc/html/bdwn.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1AssertionError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1AssertionError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1AssertionError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BB2Weight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BB2Weight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BB2Weight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BM25PlusWeight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BM25PlusWeight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BM25PlusWeight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BM25Weight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BM25Weight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BM25Weight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BoolWeight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BoolWeight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1BoolWeight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Compactor-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Compactor.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1CoordWeight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1CoordWeight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1CoordWeight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DLHWeight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DLHWeight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DLHWeight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DPHWeight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DPHWeight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DPHWeight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Database-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Database.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseCorruptError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseCorruptError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseCorruptError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseCreateError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseCreateError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseCreateError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseLockError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseLockError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseLockError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseModifiedError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseModifiedError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseModifiedError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseOpeningError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseOpeningError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseOpeningError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseVersionError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseVersionError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DatabaseVersionError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Database__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DateRangeProcessor-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DateRangeProcessor.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DateRangeProcessor__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DateValueRangeProcessor-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DateValueRangeProcessor.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DateValueRangeProcessor__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DecreasingValueWeightPostingSource-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DecreasingValueWeightPostingSource.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DecreasingValueWeightPostingSource__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DocNotFoundError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DocNotFoundError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1DocNotFoundError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Document-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Document.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ESet-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ESet.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ESetIterator-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ESetIterator.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Enquire-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Enquire.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Error-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Error.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ErrorHandler-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ErrorHandler.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ErrorHandler__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Error__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDecider-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDecider.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderAnd-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderAnd.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderAnd__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterPrefix-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterPrefix.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterPrefix__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterTerms-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterTerms.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterTerms__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDecider__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1FeatureUnavailableError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1FeatureUnavailableError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1FeatureUnavailableError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1FieldProcessor-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1FieldProcessor.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1FieldProcessor__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1FixedWeightPostingSource-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1FixedWeightPostingSource.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1FixedWeightPostingSource__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1GreatCircleMetric-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1GreatCircleMetric.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1GreatCircleMetric__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1IfB2Weight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1IfB2Weight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1IfB2Weight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InL2Weight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InL2Weight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InL2Weight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1IneB2Weight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1IneB2Weight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1IneB2Weight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InternalError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InternalError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InternalError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InvalidArgumentError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InvalidArgumentError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InvalidArgumentError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InvalidOperationError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InvalidOperationError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1InvalidOperationError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1KeyMaker-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1KeyMaker.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1KeyMaker__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LMWeight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LMWeight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LMWeight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongCoords-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongCoords.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongCoordsIterator-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongCoordsIterator.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongDistanceKeyMaker-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongDistanceKeyMaker.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongDistanceKeyMaker__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongDistancePostingSource-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongDistancePostingSource.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongDistancePostingSource__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongMetric-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongMetric.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LatLongMetric__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LogicError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LogicError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1LogicError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MSet-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MSet.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MSetIterator-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MSetIterator.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MatchDecider-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MatchDecider.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MatchDecider__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MatchSpy-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MatchSpy.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MatchSpy__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MultiValueKeyMaker-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MultiValueKeyMaker.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1MultiValueKeyMaker__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NetworkError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NetworkError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NetworkError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NetworkTimeoutError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NetworkTimeoutError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NetworkTimeoutError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NumberRangeProcessor-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NumberRangeProcessor.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NumberRangeProcessor__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NumberValueRangeProcessor-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NumberValueRangeProcessor.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1NumberValueRangeProcessor__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PL2PlusWeight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PL2PlusWeight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PL2PlusWeight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PL2Weight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PL2Weight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PL2Weight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PositionIterator-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PositionIterator.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PostingIterator-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PostingIterator.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PostingSource-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PostingSource.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1PostingSource__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Query-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Query.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1QueryParser-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1QueryParser.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1QueryParserError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1QueryParserError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1QueryParserError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1RSet-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1RSet.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1RangeError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1RangeError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1RangeError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1RangeProcessor-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1RangeProcessor.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1RangeProcessor__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Registry-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Registry.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1RuntimeError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1RuntimeError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1RuntimeError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1SerialisationError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1SerialisationError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1SerialisationError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1SimpleStopper-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1SimpleStopper.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1SimpleStopper__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Stem-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Stem.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1StemImplementation-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1StemImplementation.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1StemImplementation__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Stopper-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Stopper.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Stopper__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1StringValueRangeProcessor-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1StringValueRangeProcessor.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1StringValueRangeProcessor__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1TermGenerator-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1TermGenerator.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1TermIterator-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1TermIterator.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1TfIdfWeight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1TfIdfWeight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1TfIdfWeight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1TradWeight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1TradWeight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1TradWeight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1UnimplementedError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1UnimplementedError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1UnimplementedError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Utf8Iterator-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Utf8Iterator.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueCountMatchSpy-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueCountMatchSpy.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueCountMatchSpy__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueIterator-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueIterator.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueMapPostingSource-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueMapPostingSource.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueMapPostingSource__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValuePostingSource-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValuePostingSource.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValuePostingSource__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueRangeProcessor-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueRangeProcessor.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueRangeProcessor__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueSetMatchDecider-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueSetMatchDecider.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueSetMatchDecider__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueWeightPostingSource-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueWeightPostingSource.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1ValueWeightPostingSource__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Weight-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Weight.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1Weight__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1WildcardError-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1WildcardError.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1WildcardError__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1WritableDatabase-members.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1WritableDatabase.html
|
|
share/doc/xapian-core/apidoc/html/classXapian_1_1WritableDatabase__inherit__graph.png
|
|
share/doc/xapian-core/apidoc/html/classes.html
|
|
share/doc/xapian-core/apidoc/html/closed.png
|
|
share/doc/xapian-core/apidoc/html/compactor_8h.html
|
|
share/doc/xapian-core/apidoc/html/constants_8h.html
|
|
share/doc/xapian-core/apidoc/html/constinfo_8h.html
|
|
share/doc/xapian-core/apidoc/html/database_8h.html
|
|
share/doc/xapian-core/apidoc/html/dbfactory_8h.html
|
|
share/doc/xapian-core/apidoc/html/deprecated.html
|
|
share/doc/xapian-core/apidoc/html/dir_f63502d618711192f85ccb772536c6ae.html
|
|
share/doc/xapian-core/apidoc/html/doc.png
|
|
share/doc/xapian-core/apidoc/html/document_8h.html
|
|
share/doc/xapian-core/apidoc/html/doxygen.css
|
|
share/doc/xapian-core/apidoc/html/doxygen.png
|
|
share/doc/xapian-core/apidoc/html/enquire_8h.html
|
|
share/doc/xapian-core/apidoc/html/error_8h.html
|
|
share/doc/xapian-core/apidoc/html/errorhandler_8h.html
|
|
share/doc/xapian-core/apidoc/html/eset_8h.html
|
|
share/doc/xapian-core/apidoc/html/expanddecider_8h.html
|
|
share/doc/xapian-core/apidoc/html/files.html
|
|
share/doc/xapian-core/apidoc/html/folderclosed.png
|
|
share/doc/xapian-core/apidoc/html/folderopen.png
|
|
share/doc/xapian-core/apidoc/html/functions.html
|
|
share/doc/xapian-core/apidoc/html/functions_0x7e.html
|
|
share/doc/xapian-core/apidoc/html/functions_b.html
|
|
share/doc/xapian-core/apidoc/html/functions_c.html
|
|
share/doc/xapian-core/apidoc/html/functions_d.html
|
|
share/doc/xapian-core/apidoc/html/functions_e.html
|
|
share/doc/xapian-core/apidoc/html/functions_enum.html
|
|
share/doc/xapian-core/apidoc/html/functions_eval.html
|
|
share/doc/xapian-core/apidoc/html/functions_f.html
|
|
share/doc/xapian-core/apidoc/html/functions_func.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_0x7e.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_b.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_c.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_d.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_e.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_f.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_g.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_h.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_i.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_k.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_l.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_m.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_n.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_o.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_p.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_q.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_r.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_s.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_t.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_u.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_v.html
|
|
share/doc/xapian-core/apidoc/html/functions_func_w.html
|
|
share/doc/xapian-core/apidoc/html/functions_g.html
|
|
share/doc/xapian-core/apidoc/html/functions_h.html
|
|
share/doc/xapian-core/apidoc/html/functions_i.html
|
|
share/doc/xapian-core/apidoc/html/functions_k.html
|
|
share/doc/xapian-core/apidoc/html/functions_l.html
|
|
share/doc/xapian-core/apidoc/html/functions_m.html
|
|
share/doc/xapian-core/apidoc/html/functions_n.html
|
|
share/doc/xapian-core/apidoc/html/functions_o.html
|
|
share/doc/xapian-core/apidoc/html/functions_p.html
|
|
share/doc/xapian-core/apidoc/html/functions_q.html
|
|
share/doc/xapian-core/apidoc/html/functions_r.html
|
|
share/doc/xapian-core/apidoc/html/functions_s.html
|
|
share/doc/xapian-core/apidoc/html/functions_t.html
|
|
share/doc/xapian-core/apidoc/html/functions_type.html
|
|
share/doc/xapian-core/apidoc/html/functions_u.html
|
|
share/doc/xapian-core/apidoc/html/functions_v.html
|
|
share/doc/xapian-core/apidoc/html/functions_vars.html
|
|
share/doc/xapian-core/apidoc/html/functions_w.html
|
|
share/doc/xapian-core/apidoc/html/geospatial_8h.html
|
|
share/doc/xapian-core/apidoc/html/globals.html
|
|
share/doc/xapian-core/apidoc/html/globals_defs.html
|
|
share/doc/xapian-core/apidoc/html/graph_legend.html
|
|
share/doc/xapian-core/apidoc/html/graph_legend.png
|
|
share/doc/xapian-core/apidoc/html/hierarchy.html
|
|
share/doc/xapian-core/apidoc/html/index.html
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_0.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_1.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_10.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_11.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_12.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_13.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_14.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_15.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_16.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_17.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_18.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_19.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_2.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_20.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_21.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_22.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_23.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_24.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_25.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_26.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_27.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_3.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_4.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_5.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_6.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_7.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_8.png
|
|
share/doc/xapian-core/apidoc/html/inherit_graph_9.png
|
|
share/doc/xapian-core/apidoc/html/inherits.html
|
|
share/doc/xapian-core/apidoc/html/keymaker_8h.html
|
|
share/doc/xapian-core/apidoc/html/matchspy_8h.html
|
|
share/doc/xapian-core/apidoc/html/mset_8h.html
|
|
share/doc/xapian-core/apidoc/html/namespaceXapian.html
|
|
share/doc/xapian-core/apidoc/html/namespaceXapian_1_1Auto.html
|
|
share/doc/xapian-core/apidoc/html/namespaceXapian_1_1Chert.html
|
|
share/doc/xapian-core/apidoc/html/namespaceXapian_1_1InMemory.html
|
|
share/doc/xapian-core/apidoc/html/namespaceXapian_1_1Remote.html
|
|
share/doc/xapian-core/apidoc/html/namespaceXapian_1_1Unicode.html
|
|
share/doc/xapian-core/apidoc/html/namespacemembers.html
|
|
share/doc/xapian-core/apidoc/html/namespacemembers_enum.html
|
|
share/doc/xapian-core/apidoc/html/namespacemembers_func.html
|
|
share/doc/xapian-core/apidoc/html/namespacemembers_type.html
|
|
share/doc/xapian-core/apidoc/html/namespacemembers_vars.html
|
|
share/doc/xapian-core/apidoc/html/namespaces.html
|
|
share/doc/xapian-core/apidoc/html/nav_f.png
|
|
share/doc/xapian-core/apidoc/html/nav_g.png
|
|
share/doc/xapian-core/apidoc/html/nav_h.png
|
|
share/doc/xapian-core/apidoc/html/open.png
|
|
share/doc/xapian-core/apidoc/html/pages.html
|
|
share/doc/xapian-core/apidoc/html/positioniterator_8h.html
|
|
share/doc/xapian-core/apidoc/html/postingiterator_8h.html
|
|
share/doc/xapian-core/apidoc/html/postingsource_8h.html
|
|
share/doc/xapian-core/apidoc/html/query_8h.html
|
|
share/doc/xapian-core/apidoc/html/queryparser_8h.html
|
|
share/doc/xapian-core/apidoc/html/registry_8h.html
|
|
share/doc/xapian-core/apidoc/html/splitbar.png
|
|
share/doc/xapian-core/apidoc/html/stem_8h.html
|
|
share/doc/xapian-core/apidoc/html/structXapian_1_1LatLongCoord-members.html
|
|
share/doc/xapian-core/apidoc/html/structXapian_1_1LatLongCoord.html
|
|
share/doc/xapian-core/apidoc/html/sync_off.png
|
|
share/doc/xapian-core/apidoc/html/sync_on.png
|
|
share/doc/xapian-core/apidoc/html/tab_a.png
|
|
share/doc/xapian-core/apidoc/html/tab_b.png
|
|
share/doc/xapian-core/apidoc/html/tab_h.png
|
|
share/doc/xapian-core/apidoc/html/tab_s.png
|
|
share/doc/xapian-core/apidoc/html/tabs.css
|
|
share/doc/xapian-core/apidoc/html/termgenerator_8h.html
|
|
share/doc/xapian-core/apidoc/html/termiterator_8h.html
|
|
share/doc/xapian-core/apidoc/html/types_8h.html
|
|
share/doc/xapian-core/apidoc/html/unicode_8h.html
|
|
share/doc/xapian-core/apidoc/html/valueiterator_8h.html
|
|
share/doc/xapian-core/apidoc/html/valuesetmatchdecider_8h.html
|
|
share/doc/xapian-core/apidoc/html/version_8h.html
|
|
share/doc/xapian-core/apidoc/html/weight_8h.html
|
|
share/doc/xapian-core/apidoc/html/xapian_8h.html
|
|
share/doc/xapian-core/bm25.html
|
|
share/doc/xapian-core/collapsing.html
|
|
share/doc/xapian-core/deprecation.html
|
|
share/doc/xapian-core/facets.html
|
|
share/doc/xapian-core/geospatial.html
|
|
share/doc/xapian-core/glossary.html
|
|
share/doc/xapian-core/index.html
|
|
share/doc/xapian-core/install.html
|
|
share/doc/xapian-core/internals.html
|
|
share/doc/xapian-core/intro_ir.html
|
|
share/doc/xapian-core/matcherdesign.html
|
|
share/doc/xapian-core/overview.html
|
|
share/doc/xapian-core/postingsource.html
|
|
share/doc/xapian-core/queryparser.html
|
|
share/doc/xapian-core/remote.html
|
|
share/doc/xapian-core/replication.html
|
|
share/doc/xapian-core/scalability.html
|
|
share/doc/xapian-core/serialisation.html
|
|
share/doc/xapian-core/sorting.html
|
|
share/doc/xapian-core/spelling.html
|
|
share/doc/xapian-core/stemming.html
|
|
share/doc/xapian-core/synonyms.html
|
|
share/doc/xapian-core/termgenerator.html
|
|
share/doc/xapian-core/tests.html
|
|
share/doc/xapian-core/valueranges.html
|
|
share/xapian-core/stopwords/arabic.list
|
|
share/xapian-core/stopwords/danish.list
|
|
share/xapian-core/stopwords/dutch.list
|
|
share/xapian-core/stopwords/english.list
|
|
share/xapian-core/stopwords/finnish.list
|
|
share/xapian-core/stopwords/french.list
|
|
share/xapian-core/stopwords/german.list
|
|
share/xapian-core/stopwords/hungarian.list
|
|
share/xapian-core/stopwords/indonesian.list
|
|
share/xapian-core/stopwords/italian.list
|
|
share/xapian-core/stopwords/norwegian.list
|
|
share/xapian-core/stopwords/portuguese.list
|
|
share/xapian-core/stopwords/russian.list
|
|
share/xapian-core/stopwords/spanish.list
|
|
share/xapian-core/stopwords/swedish.list
|