Modified: lucy/site/trunk/content/docs/perl/Lucy/Search/QueryParser.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Search/QueryParser.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Search/QueryParser.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Search/QueryParser.html Wed Dec 31 01:02:27 2014 @@ -41,7 +41,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> my $query_parser = Lucy::Search::QueryParser->new( schema => $searcher->get_schema, # required @@ -70,7 +70,7 @@ <h1 id="METHODS">METHODS</h1> -<h2 id="parse-query_string-">parse(query_string)</h2> +<h2 id="parse-query_string">parse(query_string)</h2> <p>Build a Query object from the contents of a query string. At present, implemented internally by calling tree(), expand(), and prune().</p> @@ -83,7 +83,7 @@ <p>Returns: a Query.</p> -<h2 id="tree-query_string-">tree(query_string)</h2> +<h2 id="tree-query_string">tree(query_string)</h2> <p>Parse the logical structure of a query string, building a tree comprised of Query objects. Leaf nodes in the tree will most often be LeafQuery objects but might be MatchAllQuery or NoMatchQuery objects as well. Internal nodes will be objects which subclass PolyQuery: ANDQuery, ORQuery, NOTQuery, and RequiredOptionalQuery.</p> @@ -98,7 +98,7 @@ <p>Returns: a Query.</p> -<h2 id="expand-query-">expand(query)</h2> +<h2 id="expand-query">expand(query)</h2> <p>Walk the hierarchy of a Query tree, descending through all PolyQuery nodes and calling expand_leaf() on any LeafQuery nodes encountered.</p> @@ -111,7 +111,7 @@ <p>Returns: A Query -- usually the same one that was supplied after in-place modification, but possibly another.</p> -<h2 id="expand_leaf-query-">expand_leaf(query)</h2> +<h2 id="expand_leaf-query">expand_leaf(query)</h2> <p>Convert a LeafQuery into either a TermQuery, a PhraseQuery, or an ORQuery joining multiple TermQueries/PhraseQueries to accommodate multiple fields. LeafQuery text will be passed through the relevant Analyzer for each field. Quoted text will be transformed into PhraseQuery objects. Unquoted text will be converted to either a TermQuery or a PhraseQuery depending on how many tokens are generated.</p> @@ -124,7 +124,7 @@ <p>Returns: A Query.</p> -<h2 id="prune-query-">prune(query)</h2> +<h2 id="prune-query">prune(query)</h2> <p>Prevent certain Query structures from returning too many results. Query objects built via tree() and expand() can generate "return the world" result sets, such as in the case of <code>NOT a_term_not_in_the_index</code>; prune() walks the hierarchy and eliminates such branches.</p> @@ -147,11 +147,11 @@ <p>Returns: a Query; in most cases, the supplied Query after in-place modification.</p> -<h2 id="set_heed_colons-heed_colons-">set_heed_colons(heed_colons)</h2> +<h2 id="set_heed_colons-heed_colons">set_heed_colons(heed_colons)</h2> <p>Enable/disable parsing of <code>fieldname:foo</code> constructs.</p> -<h2 id="make_term_query-labeled-params-">make_term_query( <i>[labeled params]</i> )</h2> +<h2 id="make_term_query-labeled-params">make_term_query( <i>[labeled params]</i> )</h2> <p>Factory method creating a TermQuery.</p> @@ -167,7 +167,7 @@ <p>Returns: A Query.</p> -<h2 id="make_phrase_query-labeled-params-">make_phrase_query( <i>[labeled params]</i> )</h2> +<h2 id="make_phrase_query-labeled-params">make_phrase_query( <i>[labeled params]</i> )</h2> <p>Factory method creating a PhraseQuery.</p> @@ -183,7 +183,7 @@ <p>Returns: A Query.</p> -<h2 id="make_and_query-children-">make_and_query(children)</h2> +<h2 id="make_and_query-children">make_and_query(children)</h2> <p>Factory method creating an ANDQuery.</p> @@ -196,7 +196,7 @@ <p>Returns: A Query.</p> -<h2 id="make_or_query-children-">make_or_query(children)</h2> +<h2 id="make_or_query-children">make_or_query(children)</h2> <p>Factory method creating an ORQuery.</p> @@ -209,7 +209,7 @@ <p>Returns: A Query.</p> -<h2 id="make_not_query-negated_query-">make_not_query(negated_query)</h2> +<h2 id="make_not_query-negated_query">make_not_query(negated_query)</h2> <p>Factory method creating a NOTQuery.</p> @@ -222,7 +222,7 @@ <p>Returns: A Query.</p> -<h2 id="make_req_opt_query-labeled-params-">make_req_opt_query( <i>[labeled params]</i> )</h2> +<h2 id="make_req_opt_query-labeled-params">make_req_opt_query( <i>[labeled params]</i> )</h2> <p>Factory method creating a RequiredOptionalQuery.</p>
Modified: lucy/site/trunk/content/docs/perl/Lucy/Search/RangeQuery.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Search/RangeQuery.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Search/RangeQuery.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Search/RangeQuery.html Wed Dec 31 01:02:27 2014 @@ -35,7 +35,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> my $range_query = Lucy::Search::RangeQuery->new( field => 'product_number', # required Modified: lucy/site/trunk/content/docs/perl/Lucy/Search/RequiredOptionalQuery.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Search/RequiredOptionalQuery.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Search/RequiredOptionalQuery.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Search/RequiredOptionalQuery.html Wed Dec 31 01:02:27 2014 @@ -26,7 +26,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> my $reqopt_query = Lucy::Search::RequiredOptionalQuery->new( required_query => $foo_query, # required @@ -45,19 +45,19 @@ <h1 id="METHODS">METHODS</h1> -<h2 id="get_required_query-">get_required_query()</h2> +<h2 id="get_required_query">get_required_query()</h2> <p>Getter for the required Query.</p> -<h2 id="set_required_query-required_query-">set_required_query(required_query)</h2> +<h2 id="set_required_query-required_query">set_required_query(required_query)</h2> <p>Setter for the required Query.</p> -<h2 id="get_optional_query-">get_optional_query()</h2> +<h2 id="get_optional_query">get_optional_query()</h2> <p>Getter for the optional Query.</p> -<h2 id="set_optional_query-optional_query-">set_optional_query(optional_query)</h2> +<h2 id="set_optional_query-optional_query">set_optional_query(optional_query)</h2> <p>Setter for the optional Query.</p> Modified: lucy/site/trunk/content/docs/perl/Lucy/Search/Searcher.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Search/Searcher.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Search/Searcher.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Search/Searcher.html Wed Dec 31 01:02:27 2014 @@ -21,7 +21,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> package MySearcher; use base qw( Lucy::Search::Searcher ); @@ -42,7 +42,7 @@ <h1 id="ABSTRACT-METHODS">ABSTRACT METHODS</h1> -<h2 id="collect-labeled-params-">collect( <i>[labeled params]</i> )</h2> +<h2 id="collect-labeled-params">collect( <i>[labeled params]</i> )</h2> <p>Iterate over hits, feeding them into a <a href="../../Lucy/Search/Collector.html">Collector</a>.</p> @@ -56,11 +56,11 @@ </li> </ul> -<h2 id="doc_max-">doc_max()</h2> +<h2 id="doc_max">doc_max()</h2> <p>Return the maximum number of docs in the collection represented by the Searcher, which is also the highest possible internal doc id. Documents which have been marked as deleted but not yet purged are included in this count.</p> -<h2 id="doc_freq-labeled-params-">doc_freq( <i>[labeled params]</i> )</h2> +<h2 id="doc_freq-labeled-params">doc_freq( <i>[labeled params]</i> )</h2> <p>Return the number of documents which contain the term in the given field.</p> @@ -74,7 +74,7 @@ </li> </ul> -<h2 id="fetch_doc-doc_id-">fetch_doc(doc_id)</h2> +<h2 id="fetch_doc-doc_id">fetch_doc(doc_id)</h2> <p>Retrieve a document. Throws an error if the doc id is out of range.</p> @@ -87,7 +87,7 @@ <h1 id="METHODS">METHODS</h1> -<h2 id="hits-labeled-params-">hits( <i>[labeled params]</i> )</h2> +<h2 id="hits-labeled-params">hits( <i>[labeled params]</i> )</h2> <p>Return a Hits object containing the top results.</p> @@ -107,11 +107,11 @@ </li> </ul> -<h2 id="glean_query-query-">glean_query(query)</h2> +<h2 id="glean_query-query">glean_query(query)</h2> <p>If the supplied object is a Query, return it; if it's a query string, create a QueryParser and parse it to produce a query against all indexed fields.</p> -<h2 id="get_schema-">get_schema()</h2> +<h2 id="get_schema">get_schema()</h2> <p>Accessor for the object's <code>schema</code> member.</p> Modified: lucy/site/trunk/content/docs/perl/Lucy/Search/SortRule.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Search/SortRule.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Search/SortRule.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Search/SortRule.html Wed Dec 31 01:02:27 2014 @@ -26,7 +26,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> my $by_title = Lucy::Search::SortRule->new( field => 'title' ); my $by_score = Lucy::Search::SortRule->new( type => 'score' ); @@ -51,11 +51,11 @@ <h1 id="METHODS">METHODS</h1> -<h2 id="get_field-">get_field()</h2> +<h2 id="get_field">get_field()</h2> <p>Accessor for "field" member.</p> -<h2 id="get_reverse-">get_reverse()</h2> +<h2 id="get_reverse">get_reverse()</h2> <p>Accessor for "reverse" member.</p> Modified: lucy/site/trunk/content/docs/perl/Lucy/Search/SortSpec.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Search/SortSpec.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Search/SortSpec.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Search/SortSpec.html Wed Dec 31 01:02:27 2014 @@ -34,7 +34,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> my $sort_spec = Lucy::Search::SortSpec->new( rules => \@rules );</code></pre> Modified: lucy/site/trunk/content/docs/perl/Lucy/Search/Span.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Search/Span.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Search/Span.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Search/Span.html Wed Dec 31 01:02:27 2014 @@ -29,7 +29,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> my $span = Lucy::Search::Span->new( offset => 75, # required @@ -52,27 +52,27 @@ <h1 id="METHODS">METHODS</h1> -<h2 id="set_offset-offset-">set_offset(offset)</h2> +<h2 id="set_offset-offset">set_offset(offset)</h2> <p>Setter for <code>offset</code> attribute.</p> -<h2 id="get_offset-">get_offset()</h2> +<h2 id="get_offset">get_offset()</h2> <p>Accessor for <code>offset</code> attribute.</p> -<h2 id="set_length-length-">set_length(length)</h2> +<h2 id="set_length-length">set_length(length)</h2> <p>Setter for <code>length</code> attribute.</p> -<h2 id="get_length-">get_length()</h2> +<h2 id="get_length">get_length()</h2> <p>Accessor for <code>length</code> attribute.</p> -<h2 id="set_weight-weight-">set_weight(weight)</h2> +<h2 id="set_weight-weight">set_weight(weight)</h2> <p>Setter for <code>weight</code> attribute.</p> -<h2 id="get_weight-">get_weight()</h2> +<h2 id="get_weight">get_weight()</h2> <p>Accessor for <code>weight</code> attribute.</p> Modified: lucy/site/trunk/content/docs/perl/Lucy/Search/TermQuery.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Search/TermQuery.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Search/TermQuery.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Search/TermQuery.html Wed Dec 31 01:02:27 2014 @@ -25,7 +25,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> my $term_query = Lucy::Search::TermQuery->new( field => 'content', # required @@ -44,11 +44,11 @@ <h1 id="METHODS">METHODS</h1> -<h2 id="get_field-">get_field()</h2> +<h2 id="get_field">get_field()</h2> <p>Accessor for object's <code>field</code> member.</p> -<h2 id="get_term-">get_term()</h2> +<h2 id="get_term">get_term()</h2> <p>Accessor for object's <code>term</code> member.</p> Modified: lucy/site/trunk/content/docs/perl/Lucy/Store/FSFolder.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Store/FSFolder.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Store/FSFolder.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Store/FSFolder.html Wed Dec 31 01:02:27 2014 @@ -23,7 +23,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> my $folder = Lucy::Store::FSFolder->new( path => '/path/to/folder', Modified: lucy/site/trunk/content/docs/perl/Lucy/Store/Lock.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Store/Lock.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Store/Lock.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Store/Lock.html Wed Dec 31 01:02:27 2014 @@ -29,7 +29,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> my $lock = Lucy::Store::Lock->new( name => 'commit', # required @@ -62,7 +62,7 @@ <h1 id="ABSTRACT-METHODS">ABSTRACT METHODS</h1> -<h2 id="request-">request()</h2> +<h2 id="request">request()</h2> <p>Make one attempt to acquire the lock.</p> @@ -70,23 +70,23 @@ <p>Returns: true on success, false on failure (sets Lucy->error).</p> -<h2 id="release-">release()</h2> +<h2 id="release">release()</h2> <p>Release the lock.</p> -<h2 id="is_locked-">is_locked()</h2> +<h2 id="is_locked">is_locked()</h2> <p>Indicate whether the resource identified by this lock's name is currently locked.</p> <p>Returns: true if the resource is locked, false otherwise.</p> -<h2 id="clear_stale-">clear_stale()</h2> +<h2 id="clear_stale">clear_stale()</h2> <p>Release all locks that meet the following three conditions: the lock name matches, the host id matches, and the process id that the lock was created under no longer identifies an active process.</p> <h1 id="METHODS">METHODS</h1> -<h2 id="obtain-">obtain()</h2> +<h2 id="obtain">obtain()</h2> <p>Call request() once per <code>interval</code> until request() returns success or the <code>timeout</code> has been reached.</p> Modified: lucy/site/trunk/content/docs/perl/Lucy/Store/LockFactory.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Store/LockFactory.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Store/LockFactory.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Store/LockFactory.html Wed Dec 31 01:02:27 2014 @@ -34,7 +34,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> my $lock_factory = Lucy::Store::LockFactory->new( folder => $folder, # required @@ -53,7 +53,7 @@ <h1 id="METHODS">METHODS</h1> -<h2 id="make_lock-labeled-params-">make_lock( <i>[labeled params]</i> )</h2> +<h2 id="make_lock-labeled-params">make_lock( <i>[labeled params]</i> )</h2> <p>Return a Lock object, which, once obtain() returns successfully, maintains an exclusive lock on a resource.</p> @@ -70,7 +70,7 @@ </li> </ul> -<h2 id="make_shared_lock-labeled-params-">make_shared_lock( <i>[labeled params]</i> )</h2> +<h2 id="make_shared_lock-labeled-params">make_shared_lock( <i>[labeled params]</i> )</h2> <p>Return a Lock object for which shared() returns true, and which maintains a non-exclusive lock on a resource once obtain() returns success.</p> Modified: lucy/site/trunk/content/docs/perl/Lucy/Store/RAMFolder.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/Lucy/Store/RAMFolder.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/Lucy/Store/RAMFolder.html (original) +++ lucy/site/trunk/content/docs/perl/Lucy/Store/RAMFolder.html Wed Dec 31 01:02:27 2014 @@ -26,7 +26,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <pre><code> my $folder = Lucy::Store::RAMFolder->new( path => $relative_path, # default: empty string Modified: lucy/site/trunk/content/docs/perl/LucyX/Search/MockMatcher.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/LucyX/Search/MockMatcher.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/LucyX/Search/MockMatcher.html (original) +++ lucy/site/trunk/content/docs/perl/LucyX/Search/MockMatcher.html Wed Dec 31 01:02:27 2014 @@ -19,7 +19,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( [<i>labeled params</i>] )</h2> +<h2 id="new-labeled-params">new( [<i>labeled params</i>] )</h2> <ul> Modified: lucy/site/trunk/content/docs/perl/LucyX/Search/ProximityQuery.html URL: http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/LucyX/Search/ProximityQuery.html?rev=1648641&r1=1648640&r2=1648641&view=diff ============================================================================== --- lucy/site/trunk/content/docs/perl/LucyX/Search/ProximityQuery.html (original) +++ lucy/site/trunk/content/docs/perl/LucyX/Search/ProximityQuery.html Wed Dec 31 01:02:27 2014 @@ -26,7 +26,7 @@ <h1 id="CONSTRUCTORS">CONSTRUCTORS</h1> -<h2 id="new-labeled-params-">new( <i>[labeled params]</i> )</h2> +<h2 id="new-labeled-params">new( <i>[labeled params]</i> )</h2> <ul> @@ -40,15 +40,15 @@ <h1 id="METHODS">METHODS</h1> -<h2 id="get_field-">get_field()</h2> +<h2 id="get_field">get_field()</h2> <p>Accessor for object's field attribute.</p> -<h2 id="get_terms-">get_terms()</h2> +<h2 id="get_terms">get_terms()</h2> <p>Accessor for object's array of terms.</p> -<h2 id="get_within-">get_within()</h2> +<h2 id="get_within">get_within()</h2> <p>Accessor for object's within attribute.</p>
