bugzilla-4intranet/Bugzilla/Config/Integration.pm

71 lines
1.4 KiB
Perl

#!/usr/bin/perl
# ëÏÎÆÉÇÕÒÁÃÉÑ ÉÎÔÅÇÒÁÃÉÉ ÓÏ ×ÓÅ×ÏÚÍÏÖÎÙÍÉ ÷ÉËÁÍÉ É ÷ØÀ×ÉÓÑÍÉ
package Bugzilla::Config::Integration;
use strict;
use warnings;
use Bugzilla::Config::Common;
sub get_param_list
{
return (
{
name => 'wiki_url',
type => 't',
default => 'http://wiki.office.custis.ru/wiki/index.php/',
},
{
name => 'viewvc_url',
type => 't',
default => 'http://viewvc.office.custis.ru/viewvc.py/',
},
{
name => 'smwiki_url',
type => 't',
default => 'http://penguin.office.custis.ru/smwiki/index.php/',
},
{
name => 'smboa_url',
type => 't',
default => 'http://penguin.office.custis.ru/smboa/index.php/',
},
{
name => 'sbwiki_url',
type => 't',
default => 'http://sobin.office.custis.ru/sbwiki/index.php/',
},
{
name => 'rdwiki_url',
type => 't',
default => 'http://radey.office.custis.ru/rdwiki/index.php/',
},
{
name => 'gzwiki_url',
type => 't',
default => 'http://gazprom.office.custis.ru/gzwiki/index.php/',
},
{
name => 'dpwiki_url',
type => 't',
default => 'http://depobraz.office.custis.ru/dpwiki/index.php/',
},
{
name => 'user_mailto',
type => 't',
default => 'mailto:',
},
);
}
1;