Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilherme Filippo
ISPConfig 3
Commits
14b8be7e
Commit
14b8be7e
authored
Sep 27, 2011
by
Falko Timme
Browse files
- Replaced SSL Country input field with a select field.
parent
5d036a21
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
interface/web/monitor/templates/show_log.htm
View file @
14b8be7e
...
...
@@ -8,7 +8,7 @@
<div
class=
"buttons"
>
<div
class=
"ctrlHolder"
>
<label
for=
"refreshinterval"
>
{tmpl_var name='refreshinterval_txt'}
</label>
<select
name=
"refreshinterval"
id=
"refreshinterval"
class=
"selectInput
withicons
"
onChange=
"loadContentRefresh('monitor/show_log.php?log={tmpl_var name="
log_id
"}')"
>
<select
name=
"refreshinterval"
id=
"refreshinterval"
class=
"selectInput"
onChange=
"loadContentRefresh('monitor/show_log.php?log={tmpl_var name="
log_id
"}')"
>
{tmpl_var name='refresh'}
</select>
</div>
...
...
interface/web/monitor/templates/show_sys_state.htm
View file @
14b8be7e
...
...
@@ -8,7 +8,7 @@
<div
class=
"buttons"
>
<div
class=
"ctrlHolder"
>
<label
for=
"refreshinterval"
>
{tmpl_var name='refreshinterval_txt'}
</label>
<select
name=
"refreshinterval"
id=
"refreshinterval"
class=
"selectInput
withicons
"
onChange=
"loadContentRefresh('monitor/show_sys_state.php?state={tmpl_var name="
state_type
"}')"
>
<select
name=
"refreshinterval"
id=
"refreshinterval"
class=
"selectInput"
onChange=
"loadContentRefresh('monitor/show_sys_state.php?state={tmpl_var name="
state_type
"}')"
>
{tmpl_var name='refresh'}
</select>
</div>
...
...
interface/web/sites/form/web_domain.tform.php
View file @
14b8be7e
...
...
@@ -331,6 +331,7 @@ $form["tabs"]['ssl'] = array (
'width'
=>
'30'
,
'maxlength'
=>
'255'
),
/*
'ssl_country' => array (
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',
...
...
@@ -343,6 +344,18 @@ $form["tabs"]['ssl'] = array (
'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'
,
'formtype'
=>
'TEXT'
,
...
...
interface/web/sites/templates/web_domain_ssl.htm
View file @
14b8be7e
...
...
@@ -21,10 +21,12 @@
<label
for=
"ssl_organisation_unit"
>
{tmpl_var name='ssl_organisation_unit_txt'}
</label>
<input
name=
"ssl_organisation_unit"
id=
"ssl_organisation_unit"
value=
"{tmpl_var name='ssl_organisation_unit'}"
size=
"30"
maxlength=
"255"
type=
"text"
class=
"textInput"
/>
</div>
<div
class=
"ctrlHolder"
>
<div
class=
"ctrlHolder"
>
<label
for=
"ssl_country"
>
{tmpl_var name='ssl_country_txt'}
</label>
<input
name=
"ssl_country"
id=
"ssl_country"
value=
"{tmpl_var name='ssl_country'}"
size=
"2"
maxlength=
"2"
type=
"text"
class=
"textInput"
/>
</div>
<select
name=
"ssl_country"
id=
"ssl_country"
class=
"selectInput withicons"
>
{tmpl_var name='ssl_country'}
</select>
</div>
<div
class=
"ctrlHolder"
>
<label
for=
"client_group_id"
>
{tmpl_var name='ssl_domain_txt'}
</label>
<select
name=
"ssl_domain"
id=
"ssl_domain"
class=
"selectInput"
>
...
...
interface/web/themes/default/css/screen/content_ispc.css
View file @
14b8be7e
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment