From 8f5a0ad6f73e7b7757b02c827436384c96069b5a Mon Sep 17 00:00:00 2001 From: Mate Bartus Date: Fri, 24 Jul 2015 09:20:50 +0200 Subject: [ticket/14039] Revamp updater PHPBB3-14039 --- phpBB/adm/style/admin.css | 21 ++++++ phpBB/adm/style/installer_footer.html | 2 +- phpBB/adm/style/installer_form.html | 24 +++---- phpBB/adm/style/installer_install.html | 2 +- phpBB/adm/style/installer_update.html | 13 ++++ phpBB/adm/style/installer_update_file_status.html | 80 +++++++++++++++++++++++ 6 files changed, 128 insertions(+), 14 deletions(-) create mode 100644 phpBB/adm/style/installer_update.html create mode 100644 phpBB/adm/style/installer_update_file_status.html (limited to 'phpBB/adm') diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index cf009562b3..d884e69e09 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -1836,10 +1836,31 @@ li.pagination ul { font-weight: bold; } +#log-container { + max-height: 300px; + padding: 8px; + margin: 10px 0; + clear: both; + overflow-y: auto; + background-color: #FFFFFF; +} + +#log-container.show_border { + border: 1px solid #DBD7D1; +} + +.log { + font-size: 0.8em; +} + .notice { background-color: #62A5CC; } +.download-box { + margin: 10px 0 10px 0; +} + /* Special cases for the error page */ #errorpage #page-header a { font-weight: bold; diff --git a/phpBB/adm/style/installer_footer.html b/phpBB/adm/style/installer_footer.html index 617d3dc254..b2eba48ae6 100644 --- a/phpBB/adm/style/installer_footer.html +++ b/phpBB/adm/style/installer_footer.html @@ -13,7 +13,7 @@ - + {$SCRIPTS} diff --git a/phpBB/adm/style/installer_form.html b/phpBB/adm/style/installer_form.html index 669f7aa834..cc5b041fa1 100644 --- a/phpBB/adm/style/installer_form.html +++ b/phpBB/adm/style/installer_form.html @@ -1,6 +1,6 @@
- +
@@ -13,8 +13,6 @@ {options.LEGEND} - -

{options.TITLE_EXPLAIN}
@@ -41,16 +39,18 @@
- - -
- -
- {L_SUBMIT} - -
- + + + + + +
+ {L_SUBMIT} + + + +
diff --git a/phpBB/adm/style/installer_install.html b/phpBB/adm/style/installer_install.html index 53a91f2700..747b1291f4 100644 --- a/phpBB/adm/style/installer_install.html +++ b/phpBB/adm/style/installer_install.html @@ -9,5 +9,5 @@ - + diff --git a/phpBB/adm/style/installer_update.html b/phpBB/adm/style/installer_update.html new file mode 100644 index 0000000000..6bcbc525e9 --- /dev/null +++ b/phpBB/adm/style/installer_update.html @@ -0,0 +1,13 @@ + +

{TITLE}

+

{CONTENT}

+ +
+
+ {L_SUBMIT} + +
+
+ + + diff --git a/phpBB/adm/style/installer_update_file_status.html b/phpBB/adm/style/installer_update_file_status.html new file mode 100644 index 0000000000..9f15c402e9 --- /dev/null +++ b/phpBB/adm/style/installer_update_file_status.html @@ -0,0 +1,80 @@ + +

{L_FILES_DELETED}

+
» {L_TOGGLE_DISPLAY}
+

{L_FILES_DELETED_EXPLAIN}

+ +
+ {L_STATUS_DELETED} + +
+
{deleted.DIR_PART}{deleted.FILE_PART}
+
+ +
+ + + + +

{L_FILES_CONFLICT}

+
» {L_TOGGLE_DISPLAY}
+

{L_FILES_CONFLICT_EXPLAIN}

+ +
+ {L_STATUS_CONFLICT} + +
+
{conflict.DIR_PART}{conflict.FILE_PART}
+
+ +
+ + + + +

{L_FILES_MODIFIED}

+
» {L_TOGGLE_DISPLAY}
+

{L_FILES_MODIFIED_EXPLAIN}

+ +
+ {L_STATUS_MODIFIED} + +
+
{modified.DIR_PART}{modified.FILE_PART}
+
+ +
+ + + + +

{L_FILES_NEW}

+
» {L_TOGGLE_DISPLAY}
+

{L_FILES_NEW_EXPLAIN}

+ + + + + + +

{L_FILES_NOT_MODIFIED}

+
» {L_TOGGLE_DISPLAY}
+

{L_FILES_NOT_MODIFIED_EXPLAIN}

+ + + + -- cgit v1.2.1 From afe91fa7d3af0d30389c49428b30c9aeb0fe0916 Mon Sep 17 00:00:00 2001 From: Mate Bartus Date: Sun, 18 Oct 2015 11:22:19 +0200 Subject: [ticket/14039] Fix T_TEMPLATE_PATH constant PHPBB3-14039 --- phpBB/adm/style/installer_header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/adm') diff --git a/phpBB/adm/style/installer_header.html b/phpBB/adm/style/installer_header.html index 775caa7c67..c4c3427fdb 100644 --- a/phpBB/adm/style/installer_header.html +++ b/phpBB/adm/style/installer_header.html @@ -6,7 +6,7 @@ {META} {PAGE_TITLE} - + -- cgit v1.2.1 From 74ae7d2a8d396701f0ae8bdbcb19cd67135c5f8d Mon Sep 17 00:00:00 2001 From: Mate Bartus Date: Sun, 18 Oct 2015 11:33:49 +0200 Subject: [ticket/14039] Only show log container when it has content PHPBB3-14039 --- phpBB/adm/style/admin.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'phpBB/adm') diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index d884e69e09..cfa55b58a1 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -1837,6 +1837,7 @@ li.pagination ul { } #log-container { + display: none; max-height: 300px; padding: 8px; margin: 10px 0; @@ -1845,7 +1846,8 @@ li.pagination ul { background-color: #FFFFFF; } -#log-container.show_border { +#log-container.show_log_container { + display: block; border: 1px solid #DBD7D1; } -- cgit v1.2.1