⧼vector-jumptocontent⧽

Search.pl: Difference between revisions

From EPrints Documentation
Dkane (talk | contribs)
Added page about config file
 
(3 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.


$c->{search}->{advanced} ={
The configuration within the file includes:
        search_fields => [
* '''<code>$c->{match_start_of_name}</code>''' - Text entered in name search field should only match from the start of name.
                { meta_fields => [ $EPrints::Utils::FULLTEXT ] },
* '''<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.
                { meta_fields => [ "title" ] },
                { meta_fields => [ "creators_name" ] },
                { meta_fields => [ "creators_id" ] },
                { meta_fields => [ "abstract" ] },
                { meta_fields => [ "keywords" ] },
                { meta_fields => [ "subjects" ] },
                { meta_fields => [ "divisions" ] },
                { meta_fields => [ "type" ] },
                { meta_fields => [ "department" ] },
                { meta_fields => [ "editors_name" ] },
                { meta_fields => [ "ispublished" ] },
                { meta_fields => [ "refereed" ] },
                { meta_fields => [ "publication" ] },
                { meta_fields => [ "date" ] }
        ],
        preamble_phrase => "cgi/advsearch:preamble",
        title_phrase => "cgi/advsearch:adv_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",
};
=Search by Email=
Searching by email can be the best way to get publications by an individual. To add this functionality to the advanced search simply add this line:
                { meta_fields => [ "creators_name" ] },

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.