Name

search-region — container for search results

ATTRIBUTES

Attribute Pos. Req. Default Description
arg Yes
search search specification
prefix item
list_prefix search-list
more No enable paginating with [more_list]
ml 50 number of items to display
more_template template for [more_list]
form form parameters embedded into more links
more_routine custom routine for [more_list]
interpolate     0 interpolate input?
reparse     1 interpolate output?
hide     0 Hide the tag return value?

DESCRIPTION

BEHAVIOR

This tag does not appear to be affected by, or affect, the rest of Interchange.

EXAMPLES

No examples are available at this time. We do consider this a problem and will try to supply some.

NOTES

AVAILABILITY

search-region is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: code/SystemTag/search_region.coretag
Lines: 18


# Copyright 2002-2007 Interchange Development Group and others
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.  See the LICENSE file for details.
# 
# $Id: search_region.coretag,v 1.4 2007-03-30 23:40:49 pajamian Exp $

UserTag search-region       Order        arg
UserTag search-region       addAttr
UserTag search-region       attrAlias    args arg
UserTag search-region       attrAlias    params arg
UserTag search-region       attrAlias    search arg
UserTag search-region       hasEndTag
UserTag search-region       PosNumber    0
UserTag search-region       Version      $Revision: 1.4 $
UserTag search-region       MapRoutine   Vend::Interpolate::tag_search_region

Source: lib/Vend/Interpolate.pm
Lines: 3155

sub tag_search_region {
my($params, $opt, $text) = @_;
$opt->{search} = $params if $params;
$opt->{prefix}      ||= 'item';
$opt->{list_prefix} ||= 'search[-_]list';
# LEGACY
list_compat($opt->{prefix}, \$text) if $text;
# END LEGACY
return region($opt, $text);
}

AUTHORS

Interchange Development Group

SEE ALSO

DocBook! Interchange!