Update website

This commit is contained in:
Guilhem Lavaux 2025-03-24 09:27:39 +01:00
parent a0b0d3dae7
commit ae7ef6ad45
3151 changed files with 566766 additions and 48 deletions

View file

@ -0,0 +1,37 @@
<li id="li_pma_version_git" class="list-group-item">
{% trans 'Git revision:' %}
{% if is_remote_commit %}
<a href="{{ 'https://github.com/phpmyadmin/phpmyadmin/commit/%s'|format(hash|e)|link }}" rel="noopener noreferrer" target="_blank">
<strong title="{{ message }}">{{ hash|slice(0, 7) }}</strong>
</a>
{% else %}
<strong title="{{ message }}">{{ hash|slice(0, 7) }}</strong>
{% endif %}
{% if branch is same as(false) %}
({% trans 'no branch' %})
{% elseif is_remote_branch %}
{{ 'from %s branch'|trans|format(
'<a href="%s" rel="noopener noreferrer" target="_blank">%s</a>'|format(
'https://github.com/phpmyadmin/phpmyadmin/tree/%s'|format(branch|e)|link,
branch|e
)
)|raw }},<br>
{% else %}
{{ 'from %s branch'|trans|format(branch) }},<br>
{% endif %}
{{ 'committed on %s by %s'|trans|format(
committer.date,
'<a href="mailto:%s">%s</a>'|format(committer.email|e, committer.name|e)
)|raw }}
{%- if committer is not same as(author) -%}
,<br>
{{ 'authored on %s by %s'|trans|format(
author.date,
'<a href="mailto:%s">%s</a>'|format(author.email|e, author.name|e)
)|raw }}
{% endif %}
</li>

View file

@ -0,0 +1,235 @@
{% if is_git_revision %}
<div id="is_git_revision"></div>
{% endif %}
{{ message|raw }}
{{ partial_logout|raw }}
<div id="maincontainer">
{{ sync_favorite_tables|raw }}
<div class="container-fluid">
<div class="row">
<div class="col-lg-7 col-12">
{% if has_server %}
{% if is_demo %}
<div class="card mt-4">
<div class="card-header">
{% trans 'phpMyAdmin Demo Server' %}
</div>
<div class="card-body">
{% apply format('<a href="url.php?url=https://demo.phpmyadmin.net/" target="_blank" rel="noopener noreferrer">demo.phpmyadmin.net</a>')|raw %}
{% trans %}
You are using the demo server. You can do anything here, but please do not change root, debian-sys-maint and pma users. More information is available at %s.
{% endtrans %}
{% endapply %}
</div>
</div>
{% endif %}
<div class="card mt-4">
<div class="card-header">
{% trans 'General settings' %}
</div>
<ul class="list-group list-group-flush">
{% if has_server_selection %}
<li id="li_select_server" class="list-group-item">
{{ get_image('s_host') }}
{{ server_selection|raw }}
</li>
{% endif %}
{% if server > 0 %}
{% if has_change_password_link %}
<li id="li_change_password" class="list-group-item">
<a href="{{ url('/user-password') }}" id="change_password_anchor" class="ajax">
{{ get_icon('s_passwd', 'Change password'|trans, true) }}
</a>
</li>
{% endif %}
<li id="li_select_mysql_collation" class="list-group-item">
<form class="disableAjax" method="post" action="{{ url('/collation-connection') }}">
{{ get_hidden_inputs(null, null, 4, 'collation_connection') }}
<label for="select_collation_connection">
{{ get_image('s_asci') }}
{% trans 'Server connection collation:' %}
{{ show_mysql_docu('charset-connection') }}
</label>
{% if charsets is not empty %}
<select lang="en" dir="ltr" name="collation_connection" id="select_collation_connection" class="autosubmit">
<option value="">{% trans 'Collation' %}</option>
<option value=""></option>
{% for charset in charsets %}
<optgroup label="{{ charset.name }}" title="{{ charset.description }}">
{% for collation in charset.collations %}
<option value="{{ collation.name }}" title="{{ collation.description }}"{{ collation.is_selected ? ' selected' }}>
{{- collation.name -}}
</option>
{% endfor %}
</optgroup>
{% endfor %}
</select>
{% endif %}
</form>
</li>
<li id="li_user_preferences" class="list-group-item">
<a href="{{ url('/preferences/manage') }}">
{{ get_icon('b_tblops', 'More settings'|trans, true) }}
</a>
</li>
{% endif %}
</ul>
</div>
{% endif %}
<div class="card mt-4">
<div class="card-header">
{% trans 'Appearance settings' %}
</div>
<ul class="list-group list-group-flush">
{% if language_selector is not empty %}
<li id="li_select_lang" class="list-group-item">
{{ get_image('s_lang') }}
{{ language_selector|raw }}
</li>
{% endif %}
{% if theme_selection is not empty %}
<li id="li_select_theme" class="list-group-item">
{{ get_image('s_theme') }}
{{ theme_selection|raw }}
</li>
{% endif %}
</ul>
</div>
</div>
<div class="col-lg-5 col-12">
{% if database_server is not empty %}
<div class="card mt-4">
<div class="card-header">
{% trans 'Database server' %}
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">
{% trans 'Server:' %}
{{ database_server.host }}
</li>
<li class="list-group-item">
{% trans 'Server type:' %}
{{ database_server.type }}
</li>
<li class="list-group-item">
{% trans 'Server connection:' %}
{{ database_server.connection|raw }}
</li>
<li class="list-group-item">
{% trans 'Server version:' %}
{{ database_server.version }}
</li>
<li class="list-group-item">
{% trans 'Protocol version:' %}
{{ database_server.protocol }}
</li>
<li class="list-group-item">
{% trans 'User:' %}
{{ database_server.user }}
</li>
<li class="list-group-item">
{% trans 'Server charset:' %}
<span lang="en" dir="ltr">
{{ database_server.charset }}
</span>
</li>
</ul>
</div>
{% endif %}
{% if web_server is not empty or show_php_info %}
<div class="card mt-4">
<div class="card-header">
{% trans 'Web server' %}
</div>
<ul class="list-group list-group-flush">
{% if web_server is not empty %}
{% if web_server.software is not null %}
<li class="list-group-item">
{{ web_server.software }}
</li>
{% endif %}
<li class="list-group-item" id="li_mysql_client_version">
{% trans 'Database client version:' %}
{{ web_server.database }}
</li>
<li class="list-group-item">
{% trans 'PHP extension:' %}
{% for extension in web_server.php_extensions %}
{{ extension }}
{{ show_php_docu('book.' ~ extension ~ '.php') }}
{% endfor %}
</li>
<li class="list-group-item">
{% trans 'PHP version:' %}
{{ web_server.php_version }}
</li>
{% endif %}
{% if show_php_info %}
<li class="list-group-item">
<a href="{{ url('/phpinfo') }}" target="_blank" rel="noopener noreferrer">
{% trans 'Show PHP information' %}
</a>
</li>
{% endif %}
</ul>
</div>
{% endif %}
<div class="card mt-4">
<div class="card-header">
phpMyAdmin
</div>
<ul class="list-group list-group-flush">
<li id="li_pma_version" class="list-group-item{{ is_version_checked ? ' jsversioncheck' }}">
{% trans 'Version information:' %}
<span class="version">{{ phpmyadmin_version }}</span>
</li>
<li class="list-group-item">
<a href="{{ get_docu_link('index') }}" target="_blank" rel="noopener noreferrer">
{% trans 'Documentation' %}
</a>
</li>
<li class="list-group-item">
<a href="{{ 'https://www.phpmyadmin.net/'|link }}" target="_blank" rel="noopener noreferrer">
{% trans 'Official Homepage' %}
</a>
</li>
<li class="list-group-item">
<a href="{{ 'https://www.phpmyadmin.net/contribute/'|link }}" target="_blank" rel="noopener noreferrer">
{% trans 'Contribute' %}
</a>
</li>
<li class="list-group-item">
<a href="{{ 'https://www.phpmyadmin.net/support/'|link }}" target="_blank" rel="noopener noreferrer">
{% trans 'Get support' %}
</a>
</li>
<li class="list-group-item">
<a href="{{ url('/changelog') }}" target="_blank">
{% trans 'List of changes' %}
</a>
</li>
<li class="list-group-item">
<a href="{{ url('/license') }}" target="_blank">
{% trans 'License' %}
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
{{ config_storage_message|raw }}