Repository: lucy Updated Branches: refs/heads/master 212c0664d -> 946304aae
Fix POD links to Lucy::Docs These changes produce wrong links for the C documentation but are a temporary fix for the generated Perl POD. Project: http://git-wip-us.apache.org/repos/asf/lucy/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/946304aa Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/946304aa Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/946304aa Branch: refs/heads/master Commit: 946304aae5727fef612260625768f669b9854193 Parents: 212c066 Author: Nick Wellnhofer <[email protected]> Authored: Sun Jan 4 20:37:02 2015 +0100 Committer: Nick Wellnhofer <[email protected]> Committed: Sun Jan 4 20:37:02 2015 +0100 ---------------------------------------------------------------------- core/Lucy/Index/BackgroundMerger.cfh | 8 ++++---- core/Lucy/Index/Indexer.cfh | 5 +++-- core/Lucy/Index/Posting.cfh | 2 +- core/Lucy/Index/PostingList.cfh | 4 ++-- 4 files changed, 10 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy/blob/946304aa/core/Lucy/Index/BackgroundMerger.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Index/BackgroundMerger.cfh b/core/Lucy/Index/BackgroundMerger.cfh index 6e92b97..a19886b 100644 --- a/core/Lucy/Index/BackgroundMerger.cfh +++ b/core/Lucy/Index/BackgroundMerger.cfh @@ -20,11 +20,11 @@ parcel Lucy; * * Adding documents to an index is usually fast, but every once in a while the * index must be compacted and an update takes substantially longer to - * complete. See L<Lucy::Docs::Cookbook::FastUpdates> for how to use - * this class to control worst-case index update performance. + * complete. See [FastUpdates](Lucy::Docs::Cookbook::FastUpdates) for how to + * use this class to control worst-case index update performance. * - * As with [](cfish:Indexer), see - * L<Lucy::Docs::FileLocking> if your index is on a shared volume. + * As with [](cfish:Indexer), see [FileLocking](Lucy::Docs::FileLocking) + * if your index is on a shared volume. */ public class Lucy::Index::BackgroundMerger nickname BGMerger inherits Clownfish::Obj { http://git-wip-us.apache.org/repos/asf/lucy/blob/946304aa/core/Lucy/Index/Indexer.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Index/Indexer.cfh b/core/Lucy/Index/Indexer.cfh index 52947d5..b421c0c 100644 --- a/core/Lucy/Index/Indexer.cfh +++ b/core/Lucy/Index/Indexer.cfh @@ -29,7 +29,8 @@ parcel Lucy; * identify itself by supplying an * [](cfish:IndexManager) with a unique * `host` id to Indexer's constructor or index corruption will - * occur. See L<Lucy::Docs::FileLocking> for a detailed discussion. + * occur. See [FileLocking](Lucy::Docs::FileLocking) for a detailed + * discussion. * * Note: at present, [](cfish:.Delete_By_Term) and [](cfish:.Delete_By_Query) only affect * documents which had been previously committed to the index -- and not any @@ -114,7 +115,7 @@ public class Lucy::Index::Indexer inherits Clownfish::Obj { /** Mark the document identified by the supplied document ID as deleted. * - * @param doc_id A L<document id|Lucy::Docs::DocIDs>. + * @param doc_id A [document id](Lucy::Docs::DocIDs). */ public void Delete_By_Doc_ID(Indexer *self, int32_t doc_id); http://git-wip-us.apache.org/repos/asf/lucy/blob/946304aa/core/Lucy/Index/Posting.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Index/Posting.cfh b/core/Lucy/Index/Posting.cfh index b6fa3d4..ff2a638 100644 --- a/core/Lucy/Index/Posting.cfh +++ b/core/Lucy/Index/Posting.cfh @@ -19,7 +19,7 @@ parcel Lucy; /** Vessel holding statistical data for a posting. * * A Posting, in Apache Lucy, is a vessel which stores information about a - * term-document match. (See L<Lucy::Docs::IRTheory> for the + * term-document match. (See [IRTheory](Lucy::Docs::IRTheory) for the * academic definition of "posting".) * * Subclasses include http://git-wip-us.apache.org/repos/asf/lucy/blob/946304aa/core/Lucy/Index/PostingList.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Index/PostingList.cfh b/core/Lucy/Index/PostingList.cfh index f3e4b0a..23262ac 100644 --- a/core/Lucy/Index/PostingList.cfh +++ b/core/Lucy/Index/PostingList.cfh @@ -21,8 +21,8 @@ parcel Lucy; * PostingList is an iterator which supplies a list of document ids that match * a given term. * - * See L<Lucy::Docs::IRTheory> for definitions of "posting" and "posting - * list". + * See [IRTheory](Lucy::Docs::IRTheory) for definitions of "posting" and + * "posting list". */ public class Lucy::Index::PostingList nickname PList inherits Lucy::Search::Matcher {
