Skip to content

Commit

Permalink
Version 18.45 [hot-fix #51917]
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Rostovtsev committed Apr 23, 2017
1 parent b294645 commit d335ce3
Show file tree
Hide file tree
Showing 26 changed files with 266 additions and 59 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
## Changelog

#### Version 18.46-beta1 (23 April, 2017)
Fixed bugs [#51917](https://www.virtualmin.com/node/51917)

#### Version 18.45 (21 April, 2017)
* Added ability to install patched version of the theme directly from GitHub, to get early access on the new features [#707](https://github.com/qooob/authentic-theme/issues/707)
* Added PGP signature to verify authenticity of the package [860e1aa](https://github.com/qooob/authentic-theme/commit/860e1aa6cea9591efd7471c85cda540edecce6d9)
Expand Down
56 changes: 53 additions & 3 deletions authentic-lib.pm
Expand Up @@ -349,13 +349,16 @@ sub print_category_link

sub print_sysinfo_link
{
my ($user) = @_;
if ( dashboard_switch() ne '1' ) {
print '<li><a target="page" data-href="'
. $gconfig{'webprefix'}
. '/sysinfo.cgi" class="navigation_module_trigger'
. ( $__settings{'settings_sysinfo_link_mini'} eq 'true' && ' hidden' )
. '"><i class="fa fa-asterisk __sysinfo_asterisk blinking-default hidden" style="position: absolute; font-size: 40%; margin-top: -3px; margin-left: 8px;"></i><i class="fa fa-fw fa-dashboard"></i> <span>'
. $Atext{'left_home'}
. '"><i class="fa fa-fw '
. ( $user ? 'fa-user-circle' : 'fa-dashboard' )
. '"></i> <span>'
. ( $user ? $Atext{'body_header1'} : $Atext{'body_header0'} )
. '</span></a></li>' . "\n";
}
}
Expand Down Expand Up @@ -680,7 +683,7 @@ sub print_left_menu
$icon = '<i class="fa fa-fw fa-folder"></i>';
}
elsif ( $link eq "/mailbox/list_addresses.cgi" ) {
$icon = '<i class="fa fa-fw fa-users"></i>';
$icon = '<i class="fa fa-fw fa-address-book"></i>';
}
elsif ( $link eq "/filter/edit_forward.cgi" ) {
$icon = '<i class="fa fa-fw fa-share"></i>';
Expand Down Expand Up @@ -1731,6 +1734,53 @@ sub print_favorites
';
}

sub print_panels_group_start
{
my ($id) = @_;
print '<div class="panel-group" id="' . $id . '" role="tablist" aria-multiselectable="true">';
}

sub print_panels_group_end
{
print '</div>';
}

sub print_panel
{
my ( $opened, $id, $title, $data ) = @_;


print '
<div class="panel panel-default'
. ( $__settings{'settings_animation_tabs'} ne 'false'
? ''
: ' disable-animations' )
. '">
<div class="panel-heading" role="tab" id="'
. $id . '">
<h4 class="panel-title">
<a data-toggle="collapse" href="#'
. $id
. '-collapse" aria-expanded="'
. ( $opened
? 'true'
: 'false' )
. '" aria-controls="'
. $id
. '-collapse">'
. $title . '</a>
</h4>
</div>
<div id="'
. $id
. '-collapse" class="panel-collapse collapse'
. ( $opened ? ' in' : '')
. '" role="tabpanel" aria-labelledby="'
. $id . '">
<div class="panel-body">' . $data . '</div></div></div>';

}

sub parse_license_date
{
if ( $_[0] =~ /^(\d{4})-(\d+)-(\d+)$/ ) {
Expand Down
9 changes: 8 additions & 1 deletion lang/ca.UTF-8
Expand Up @@ -655,7 +655,7 @@ theme_tooltip_logout=Sortir
theme_tooltip_edit_user=Editar l'usuari


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Mida de les gràfiques
theme_xhred_global_choose=Escull
theme_xhred_global_select=Selecciona
Expand All @@ -673,3 +673,10 @@ theme_xhred_global_help=Ajuda
settings_right_soft_updates_page_options_title=Actualitzacions de programari
theme_xhred_git_compare_changes=Compara els canvis
theme_xhred_filemanager_link_to_clipboard=El nom de l'enllaç `<strong><em>%value</em></strong>` s'ha copiat correctament al porta-retalls.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/cz.UTF-8
Expand Up @@ -655,7 +655,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -673,3 +673,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/da.UTF-8
Expand Up @@ -655,7 +655,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -673,3 +673,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/de.UTF-8
Expand Up @@ -654,7 +654,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -672,3 +672,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
8 changes: 7 additions & 1 deletion lang/en.UTF-8
Expand Up @@ -653,7 +653,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -672,3 +672,9 @@ settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/es.UTF-8
Expand Up @@ -655,7 +655,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -673,3 +673,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/fr.UTF-8
Expand Up @@ -655,7 +655,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -673,3 +673,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/it.UTF-8
Expand Up @@ -655,7 +655,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -673,3 +673,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/nl.UTF-8
Expand Up @@ -655,7 +655,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -673,3 +673,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/no.UTF-8
Expand Up @@ -655,7 +655,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -673,3 +673,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/pl.UTF-8
Expand Up @@ -655,7 +655,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -673,3 +673,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/pt.UTF-8
Expand Up @@ -655,7 +655,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -673,3 +673,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/ro_RO.UTF-8
Expand Up @@ -655,7 +655,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -673,3 +673,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/ru.UTF-8
Expand Up @@ -658,7 +658,7 @@ theme_tooltip_logout=Sign out
theme_tooltip_edit_user=Edit user


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter of charts
theme_xhred_global_choose=Choose
theme_xhred_global_select=Select
Expand All @@ -676,3 +676,10 @@ theme_xhred_global_help=Help
settings_right_soft_updates_page_options_title=Software updates
theme_xhred_git_compare_changes=Compare changes
theme_xhred_filemanager_link_to_clipboard=Symbolic link's name `<strong><em>%value</em></strong>` has been copied to clipboard.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions
9 changes: 8 additions & 1 deletion lang/sv.UTF-8
Expand Up @@ -653,7 +653,7 @@ theme_tooltip_logout=Logga ut
theme_tooltip_edit_user=Redigera användare


#18.41
#18.45
settings_sysinfo_easypie_charts_size=Diameter diagram
theme_xhred_global_choose=Välj
theme_xhred_global_select=Markera
Expand All @@ -671,3 +671,10 @@ theme_xhred_global_help=Hjälp
settings_right_soft_updates_page_options_title=Programuppdateringar
theme_xhred_git_compare_changes=Jämför förändringar
theme_xhred_filemanager_link_to_clipboard=Symbolisk länknamn <strong><em>%value</em></strong> har kopierats till urklippet.



#18.46
theme_left_mail_prefs=Mail Preferences
theme_left_mail_change_password=Change Password
theme_left_mail_account_functions=Account Functions

0 comments on commit d335ce3

Please sign in to comment.