⧼vector-jumptocontent⧽

Search.pl: Difference between revisions

From EPrints Documentation
Dkane (talk | contribs)
Created page with '=Simple Search= $c->{search}->{simple} = { search_fields => [ { id => "q", meta_fields => [ …'
 
Added page about config file
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=Simple Search=
{{dirs}}
{{cfgd}}
$c->{search}->{simple} = {
        search_fields => [
                {
                        id => "q",
                        meta_fields => [
                                $EPrints::Utils::FULLTEXT,
                                "title",
                                "abstract",
                                "creators_name",
                                "date"
                        ]
                },
        ],
        preamble_phrase => "cgi/search:preamble",
        title_phrase => "cgi/search:simple_search",
        citation => "result",
        page_size => 20,
        order_methods => {
                "byyear"        => "-date/creators_name/title",
                "byyearoldest"  => "date/creators_name/title",
                "byname"        => "creators_name/-date/title",
                "bytitle"        => "title/creators_name/-date"
        },
        default_order => "byyear",
};


=Advanced Search=
'''search.pl''' contains generic configution for search.  Specific configuration for individual searches exist in their own configuration files:
* '''[[eprint_search_simple.pl]]''' - Simple search over eprints.
* '''[[eprint_search_advanced.pl]]''' - Advanced search over eprints.
* '''[[eprint_search_staff.pl]]''' - Restricted staff-only search over eprints.
* '''[[issues_search.pl]]''' - Search over issues with eprints.
* '''[[latest_tool.pl]]''' - Displaying different listings for latest eprints.
* '''[[user_review_scope.pl]]''' - Managing which eprinst an EPrints ''editor'' user  review.
* '''[[user_search.pl]]''' - Search over user records.
 
The configuration within the file includes:
* '''<code>$c->{match_start_of_name}</code>''' - Text entered in name search field should only match from the start of name.
* '''<code>$c->{latest_citation}</code>''' - What citation style should be used in latest item listing, if no citation style is specified for that listing mode.

Latest revision as of 19:35, 30 January 2022


Back to cfg.d

search.pl contains generic configution for search. Specific configuration for individual searches exist in their own configuration files:

The configuration within the file includes:

  • $c->{match_start_of_name} - Text entered in name search field should only match from the start of name.
  • $c->{latest_citation} - What citation style should be used in latest item listing, if no citation style is specified for that listing mode.