[freeside-commits] freeside/FS/FS svc_acct.pm, 1.291, 1.292 svc_domain.pm, 1.66, 1.67 Schema.pm, 1.210, 1.211
Ivan,,,
ivan at wavetail.420.am
Mon Apr 19 21:13:35 PDT 2010
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv32010/FS/FS
Modified Files:
svc_acct.pm svc_domain.pm Schema.pm
Log Message:
communigate (phase 2): Account Preferences (& Domain::Account Defaults:Preferences): ProntoSkinName RT#7514
Index: Schema.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Schema.pm,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -w -d -r1.210 -r1.211
--- Schema.pm 20 Apr 2010 01:51:24 -0000 1.210
+++ Schema.pm 20 Apr 2010 04:13:33 -0000 1.211
@@ -1680,7 +1680,7 @@
'cgp_language', 'varchar', 'NULL', $char_d, '', '', #Language
'cgp_timezone', 'varchar', 'NULL', $char_d, '', '', #TimeZone
'cgp_skinname', 'varchar', 'NULL', $char_d, '', '', #SkinName
- #XXX pronto style?
+ 'cgp_prontoskinname', 'varchar', 'NULL', $char_d, '', '',#ProntoSkinName
'cgp_sendmdnmode', 'varchar', 'NULL', $char_d, '', '', #SendMDNMode
#mail
#vacation message, redirect all mail, mail rules
@@ -1752,7 +1752,7 @@
'acct_def_cgp_language', 'varchar', 'NULL', $char_d, '', '',
'acct_def_cgp_timezone', 'varchar', 'NULL', $char_d, '', '',
'acct_def_cgp_skinname', 'varchar', 'NULL', $char_d, '', '',
- #XXX pronto style?
+ 'acct_def_cgp_prontoskinname', 'varchar', 'NULL', $char_d, '', '',
'acct_def_cgp_sendmdnmode', 'varchar', 'NULL', $char_d, '', '',
#mail
#XXX rules, archive rule, spam foldering rule(s)
Index: svc_acct.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/svc_acct.pm,v
retrieving revision 1.291
retrieving revision 1.292
diff -u -w -d -r1.291 -r1.292
--- svc_acct.pm 20 Apr 2010 01:51:23 -0000 1.291
+++ svc_acct.pm 20 Apr 2010 04:13:33 -0000 1.292
@@ -538,7 +538,13 @@
disable_inventory => 1,
disable_select => 1,
},
- #XXX pronto style?
+ 'cgp_prontoskinname' => {
+ label => 'Communigate Pronto style',
+ type => 'select',
+ select_list => [ '', 'Pronto', 'Pronto-darkflame', 'Pronto-steel', 'Pronto-twilight', ],
+ disable_inventory => 1,
+ disable_select => 1,
+ },
'cgp_sendmdnmode' => {
label => 'Communigate send read receipts',
type => 'select',
@@ -1239,7 +1245,7 @@
|| $self->ut_alphan('cgp_language')
|| $self->ut_textn('cgp_timezone')
|| $self->ut_textn('cgp_skinname')
- #XXX pronto style?
+ || $self->ut_textn('cgp_prontoskinname')
|| $self->ut_alphan('cgp_sendmdnmode')
#XXX vacation message, redirect all mail, mail rules
#XXX RPOP settings
Index: svc_domain.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/svc_domain.pm,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -w -d -r1.66 -r1.67
--- svc_domain.pm 20 Apr 2010 01:51:24 -0000 1.66
+++ svc_domain.pm 20 Apr 2010 04:13:33 -0000 1.67
@@ -295,7 +295,13 @@
disable_inventory => 1,
disable_select => 1,
},
- #XXX pronto style?
+ 'acct_def_cgp_prontoskinname' => {
+ label => 'Acct. default Pronto style',
+ type => 'select',
+ select_list => [ '', 'Pronto', 'Pronto-darkflame', 'Pronto-steel', 'Pronto-twilight', ],
+ disable_inventory => 1,
+ disable_select => 1,
+ },
'acct_def_cgp_sendmdnmode' => {
label => 'Acct. default send read receipts',
type => 'select',
@@ -552,7 +558,7 @@
|| $self->ut_alphan('acct_def_cgp_language')
|| $self->ut_textn('acct_def_cgp_timezone')
|| $self->ut_textn('acct_def_cgp_skinname')
- #XXX pronto style?
+ || $self->ut_textn('acct_def_cgp_prontoskinname')
|| $self->ut_alphan('acct_def_cgp_sendmdnmode')
#mail
#XXX rules, archive rule, spam foldering rule(s)
More information about the freeside-commits
mailing list