-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBConf.pm
66 lines (62 loc) · 1.41 KB
/
BConf.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright (c) 2010 CAL54, Inc. All rights reserved.
# $Id$
package Cal54::BConf;
use strict;
use base 'Bivio::BConf';
sub IS_2014STYLE {
return 1;
}
sub merge_overrides {
my($proto, $host) = @_;
return Bivio::IO::Config->merge_list({
$proto->merge_class_loader({
delegates => [
'Bivio::Agent::TaskId',
'Bivio::Auth::RealmType',
'Bivio::Type::Location',
'Bivio::Type::RowTagKey',
],
maps => {
Action => ['Cal54::Action'],
Bivio => ['Cal54'],
Delegate => ['Cal54::Delegate'],
Facade => ['Cal54::Facade'],
Model => ['Cal54::Model'],
Scraper => ['Cal54::Scraper'],
SearchParser => ['Cal54::SearchParser'],
ShellUtil => ['Cal54::Util'],
TestLanguage => ['Cal54::Test'],
Type => ['Cal54::Type'],
View => ['Cal54::View'],
XHTMLWidget => ['Cal54::XHTMLWidget'],
},
}),
'Bivio::Type::TimeZone' => {
default => 'AMERICA_DENVER',
},
'Bivio::UI::Facade' => {
default => 'Cal54',
http_host => 'www.cal54.com',
mail_host => 'cal54.com',
},
'Bivio::UI::View::ThreePartPage' => {
center_replaces_middle => 1,
},
$proto->merge_http_log({
ignore_list => [
'NOT_FOUND.* referer=<undef>',
],
error_list => [
],
critical_list => [
],
}),
},
$proto->default_merge_overrides({
version => $proto->CURRENT_VERSION,
root => 'Cal54',
prefix => 'c4',
owner => 'CAL54, Inc.',
}));
}
1;