tbrehm
2011-11-07 e01f81c8cd2ca4f0cd489f0931491a0c2fc3bae0
interface/web/sites/form/web_domain.tform.php
@@ -82,11 +82,22 @@
         'datatype'   => 'VARCHAR',
         'formtype'   => 'SELECT',
         'default'   => '',
         'datasource'   => array (    'type'   => 'SQL',
                              'querystring' => 'SELECT ip_address,ip_address FROM server_ip WHERE {AUTHSQL} ORDER BY ip_address',
         /*'datasource'   => array (    'type'   => 'SQL',
                              'querystring' => "SELECT ip_address,ip_address FROM server_ip WHERE ip_type = 'IPv4' AND {AUTHSQL} ORDER BY ip_address",
                              'keyfield'=> 'ip_address',
                              'valuefield'=> 'ip_address'
                            ),
                            ),*/
         'value'      => ''
      ),
      'ipv6_address' => array (
         'datatype'   => 'VARCHAR',
         'formtype'   => 'SELECT',
         'default'   => '',
         /*'datasource'   => array (    'type'   => 'SQL',
                              'querystring' => "SELECT ip_address,ip_address FROM server_ip WHERE ip_type = 'IPv6' AND {AUTHSQL} ORDER BY ip_address",
                              'keyfield'=> 'ip_address',
                              'valuefield'=> 'ip_address'
                            ),*/
         'value'      => ''
      ),
      'domain' => array (
@@ -171,7 +182,7 @@
      'suexec' => array (
         'datatype'   => 'VARCHAR',
         'formtype'   => 'CHECKBOX',
         'default'   => 'n',
         'default'   => 'y',
         'value'      => array(0 => 'n',1 => 'y')
      ),
      'errordocs' => array (
@@ -200,6 +211,12 @@
         'value'      => array('no' => 'disabled_txt', 'fast-cgi' => 'Fast-CGI', 'cgi' => 'CGI', 'mod' => 'Mod-PHP', 'suphp' => 'SuPHP')
      ),
      'ruby' => array (
         'datatype'   => 'VARCHAR',
         'formtype'   => 'CHECKBOX',
         'default'   => 'n',
         'value'      => array(0 => 'n',1 => 'y')
      ),
      'python' => array (
         'datatype'   => 'VARCHAR',
         'formtype'   => 'CHECKBOX',
         'default'   => 'n',
@@ -236,7 +253,7 @@
      'redirect_path' => array (
         'datatype'   => 'VARCHAR',
         'validators'   => array (    0 => array (   'type'   => 'REGEX',
                                          'regex' => '@^(([.]{0})|(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.\,\-\+\?\~]*(\?\S+)?)?)?)|(/[\w/_\.\-]{1,255}/))$@',
                                          'regex' => '@^(([.]{0})|(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.\,\-\+\?\~]*(\?\S+)?)?)?)|(\[scheme\]://([-\w\.]+)+(:\d+)?(/([\w/_\.\-\,\+\?\~]*(\?\S+)?)?)?)|(/[\w/_\.\-]{1,255}/))$@',
                                          'errmsg'=> 'redirect_error_regex'),
                           ),
         'formtype'   => 'TEXT',
@@ -314,6 +331,7 @@
         'width'      => '30',
         'maxlength'   => '255'
      ),
      /*
      'ssl_country' => array (
         'datatype'   => 'VARCHAR',
         'formtype'   => 'TEXT',
@@ -325,6 +343,18 @@
         'value'      => '',
         'width'      => '2',
         'maxlength'   => '2'
      ),
      */
      'ssl_country' => array (
         'datatype'   => 'VARCHAR',
         'formtype'   => 'SELECT',
         'default'   => '',
         'datasource'   => array (    'type'   => 'SQL',
                              'querystring' => 'SELECT iso,printable_name FROM country ORDER BY printable_name',
                              'keyfield'=> 'iso',
                              'valuefield'=> 'printable_name'
                            ),
         'value'      => ''
      ),
      'ssl_domain' => array (
         'datatype'   => 'VARCHAR',
@@ -488,6 +518,60 @@
         'width'      => '30',
         'maxlength'   => '255'
      ),
      'php_fpm_use_socket' => array (
         'datatype'   => 'VARCHAR',
         'formtype'   => 'CHECKBOX',
         'default'   => 'n',
         'value'      => array(0 => 'n',1 => 'y')
      ),
      'pm_max_children' => array (
         'datatype'   => 'INTEGER',
         'formtype'   => 'TEXT',
         'validators'   => array (    0 => array (   'type'   => 'REGEX',
                                          'regex' => '/^([1-9][0-9]{0,10})$/',
                                          'errmsg'=> 'pm_max_children_error_regex'),
                           ),
         'default'   => '50',
         'value'      => '',
         'width'      => '3',
         'maxlength'   => '3'
      ),
      'pm_start_servers' => array (
         'datatype'   => 'INTEGER',
         'formtype'   => 'TEXT',
         'validators'   => array (    0 => array (   'type'   => 'REGEX',
                                          'regex' => '/^([1-9][0-9]{0,10})$/',
                                          'errmsg'=> 'pm_start_servers_error_regex'),
                           ),
         'default'   => '20',
         'value'      => '',
         'width'      => '3',
         'maxlength'   => '3'
      ),
      'pm_min_spare_servers' => array (
         'datatype'   => 'INTEGER',
         'formtype'   => 'TEXT',
         'validators'   => array (    0 => array (   'type'   => 'REGEX',
                                          'regex' => '/^([1-9][0-9]{0,10})$/',
                                          'errmsg'=> 'pm_min_spare_servers_error_regex'),
                           ),
         'default'   => '5',
         'value'      => '',
         'width'      => '3',
         'maxlength'   => '3'
      ),
      'pm_max_spare_servers' => array (
         'datatype'   => 'INTEGER',
         'formtype'   => 'TEXT',
         'validators'   => array (    0 => array (   'type'   => 'REGEX',
                                          'regex' => '/^([1-9][0-9]{0,10})$/',
                                          'errmsg'=> 'pm_max_spare_servers_error_regex'),
                           ),
         'default'   => '35',
         'value'      => '',
         'width'      => '3',
         'maxlength'   => '3'
      ),
      'php_open_basedir' => array (
         'datatype'   => 'VARCHAR',
         'formtype'   => 'TEXT',