aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/task_interface.php
diff options
context:
space:
mode:
authorZoddo <git@zoddo.fr>2018-04-23 10:49:53 +0200
committerZoddo <git@zoddo.fr>2018-04-23 10:49:53 +0200
commit1f00f48e717d1a9e82ef627c16353595ddb8ae61 (patch)
treeace8ae10035c6a3d645c069e1e87b5173dabcdf9 /phpBB/phpbb/install/task_interface.php
parent7c839470b7cf0942758feccdc70c083aacec2699 (diff)
downloadforums-1f00f48e717d1a9e82ef627c16353595ddb8ae61.tar
forums-1f00f48e717d1a9e82ef627c16353595ddb8ae61.tar.gz
forums-1f00f48e717d1a9e82ef627c16353595ddb8ae61.tar.bz2
forums-1f00f48e717d1a9e82ef627c16353595ddb8ae61.tar.xz
forums-1f00f48e717d1a9e82ef627c16353595ddb8ae61.zip
[ticket/13128] Remove deprecated Sphinx options
These configuration options are deprecated: * sql_query_info (since sphinx 2.2.2; used only by the "search" command which was removed; wiki need to be updated accordingly) * max_matches (since sphinx 2.2.3; should be set in the sphinx query) * charset_type (since sphinx 2.2.2; sphinx now supports only utf-8) * compat_sphinxql_magics (since sphinx 2.2.1) PHPBB3-13128
Diffstat (limited to 'phpBB/phpbb/install/task_interface.php')
0 files changed, 0 insertions, 0 deletions
n124' href='#n124'>124 125
package urpm::xml_info_pkg;

use strict;

=head1 NAME

urpm::xml_info_pkg - XML Package data retrieving related routines for urpmi

=head1 SYNOPSIS

=head1 DESCRIPTION

=over

=item new($class, $hash, $pkg)

Returns a proxy object
It enable to get the XML info if available, otherwise redirects to URPM::Package

=cut

sub new {
    my ($class, $hash, $pkg) = @_;

    $pkg and $hash->{pkg} = $pkg;

    bless $hash, $class;
}


=item id($pkg)

=item group($pkg)

=item size($pkg)

=item epoch($pkg)

=item buildhost($pkg)

=item packager($pkg)

=item summary($pkg)

Only available in synthesis/hdlist
=cut

sub id        { $_[0]{pkg}->id }
sub group     { $_[0]{pkg}->group }
sub size      { $_[0]{pkg}->size }
sub epoch     { $_[0]{pkg}->epoch }
sub buildhost { $_[0]{pkg}->buildhost }
sub packager  { $_[0]{pkg}->packager }
sub summary   { $_[0]{pkg}->summary }
sub conflicts { $_[0]{pkg}->conflicts }
sub obsoletes { $_[0]{pkg}->obsoletes }
sub provides  { $_[0]{pkg}->provides }
sub requires  { $_[0]{pkg}->requires }
sub suggests  { $_[0]{pkg}->recommends_nosense }
sub recommends{ $_[0]{pkg}->recommends_nosense }


=item url($pkg)

=item license($pkg)

=item sourcerpm($pkg)

=item description($pkg)

=item changelogs($pkg)

=item files($pkg)

Can be directly available in xml_info

=cut