[freeside-commits] freeside/FS/FS svc_acct.pm, 1.268.2.22, 1.268.2.23 svc_domain.pm, 1.56.2.10, 1.56.2.11 Schema.pm, 1.168.2.33, 1.168.2.34

Ivan,,, ivan at wavetail.420.am
Mon Apr 19 21:14:06 PDT 2010


Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv32021/FS/FS

Modified Files:
      Tag: FREESIDE_1_9_BRANCH
	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.168.2.33
retrieving revision 1.168.2.34
diff -u -w -d -r1.168.2.33 -r1.168.2.34
--- Schema.pm	20 Apr 2010 01:51:54 -0000	1.168.2.33
+++ Schema.pm	20 Apr 2010 04:14:04 -0000	1.168.2.34
@@ -1515,7 +1515,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
@@ -1587,7 +1587,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.268.2.22
retrieving revision 1.268.2.23
diff -u -w -d -r1.268.2.22 -r1.268.2.23
--- svc_acct.pm	20 Apr 2010 01:51:54 -0000	1.268.2.22
+++ svc_acct.pm	20 Apr 2010 04:14:04 -0000	1.268.2.23
@@ -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.56.2.10
retrieving revision 1.56.2.11
diff -u -w -d -r1.56.2.10 -r1.56.2.11
--- svc_domain.pm	20 Apr 2010 01:51:54 -0000	1.56.2.10
+++ svc_domain.pm	20 Apr 2010 04:14:04 -0000	1.56.2.11
@@ -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