Update website
This commit is contained in:
parent
0a686aeb9a
commit
c4ffa0f6ee
4360 changed files with 1727 additions and 718385 deletions
|
@ -1,56 +0,0 @@
|
|||
<fieldset class="pma-fieldset" id="actions_panel">
|
||||
<table class="table table-borderless w-auto tdblock">
|
||||
<tr>
|
||||
<td class="text-nowrap align-middle">
|
||||
<select name="submit_type" class="control_at_footer">
|
||||
{% if where_clause is not empty %}
|
||||
<option value="save">{% trans 'Save' %}</option>
|
||||
{% endif %}
|
||||
<option value="insert">{% trans 'Insert as new row' %}</option>
|
||||
<option value="insertignore">{% trans 'Insert as new row and ignore errors' %}</option>
|
||||
<option value="showinsert">{% trans 'Show insert query' %}</option>
|
||||
</select>
|
||||
</td>
|
||||
<td class="align-middle">
|
||||
<strong>{% trans 'and then' %}</strong>
|
||||
</td>
|
||||
<td class="text-nowrap align-middle">
|
||||
<select name="after_insert" class="control_at_footer">
|
||||
<option value="back"{{ after_insert == 'back' ? ' selected' }}>{% trans 'Go back to previous page' %}</option>
|
||||
<option value="new_insert"{{ after_insert == 'new_insert' ? ' selected' }}>{% trans 'Insert another new row' %}</option>
|
||||
{% if where_clause is not empty %}
|
||||
<option value="same_insert"{{ after_insert == 'same_insert' ? ' selected' }}>{% trans 'Go back to this page' %}</option>
|
||||
{% if found_unique_key and is_numeric %}
|
||||
<option value="edit_next"{{ after_insert == 'edit_next' ? ' selected' }}>{% trans 'Edit next row' %}</option>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
{{ show_hint('Use TAB key to move from value to value, or CTRL+arrows to move anywhere.'|trans) }}
|
||||
</td>
|
||||
<td colspan="3" class="text-end align-middle">
|
||||
<input type="button" class="btn btn-secondary preview_sql control_at_footer" value="{% trans 'Preview SQL' %}">
|
||||
<input type="reset" class="btn btn-secondary control_at_footer" value="{% trans 'Reset' %}">
|
||||
<input type="submit" class="btn btn-primary control_at_footer" value="{% trans 'Go' %}" id="buttonYes">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
<div class="modal fade" id="previewSqlModal" tabindex="-1" aria-labelledby="previewSqlModalLabel" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="previewSqlModalLabel">{% trans 'Loading' %}</h5>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="{% trans 'Close' %}"></button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" id="previewSQLCloseButton" data-bs-dismiss="modal">{% trans 'Close' %}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -1,126 +0,0 @@
|
|||
<tr class="noclick">
|
||||
<td class="text-center">
|
||||
{{ column.Field_title|raw }}
|
||||
<input type="hidden" name="fields_name[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="{{ column.Field }}">
|
||||
</td>
|
||||
|
||||
{% if show_field_types_in_data_edit_view %}
|
||||
<td class="text-center{{ column.wrap }}">
|
||||
<span class="column_type" dir="ltr">{{ column.pma_type }}</span>
|
||||
</td>
|
||||
{% endif %}
|
||||
|
||||
{% if show_function_fields %}
|
||||
{% if is_column_binary %}
|
||||
<td class="text-center">{% trans 'Binary' %}</td>
|
||||
{% elseif 'enum' in column.True_Type or 'set' in column.True_Type %}
|
||||
<td class="text-center">--</td>
|
||||
{% else %}
|
||||
<td>
|
||||
<select name="funcs[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" onchange="return verificationsAfterFieldChange('{{ column.Field_md5|escape_js_string }}', '{{ row_id|escape_js_string }}', '{{ column.pma_type }}')" id="field_{{ id_index }}_1">
|
||||
{{ function_options|raw }}
|
||||
</select>
|
||||
</td>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
<td>
|
||||
{% if column.Null|upper == 'YES' and not read_only %}
|
||||
<input type="hidden" name="fields_null_prev[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]"{{ real_null_value and not column.first_timestamp ? ' value="on"' }}>
|
||||
<input type="checkbox" class="checkbox_null" name="fields_null[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" id="field_{{ id_index }}_2" aria-label="{% trans 'Use the NULL value for this column.' %}"{{ real_null_value ? ' checked' }}>
|
||||
<input type="hidden" class="nullify_code" name="nullify_code[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="{{ nullify_code }}">
|
||||
<input type="hidden" class="hashed_field" name="hashed_field[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="{{ column.Field_md5 }}">
|
||||
<input type="hidden" class="multi_edit" name="multi_edit[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="{{ ('[multi_edit][' ~ row_id ~ ']')|escape_js_string }}">
|
||||
{% endif %}
|
||||
</td>
|
||||
|
||||
<td data-type="{{ type }}" data-decimals="{{ decimals }}">
|
||||
{# Will be used by table/change.js to set the default value for the "Continue insertion" feature. #}
|
||||
<span class="default_value hide">{{ special_chars|raw }}</span>
|
||||
|
||||
{% if transformed_value is not empty %}
|
||||
{{ transformed_value|raw }}
|
||||
{% else %}
|
||||
{% if is_value_foreign_link %}
|
||||
{{ backup_field|raw }}
|
||||
<input type="hidden" name="fields_type[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="foreign">
|
||||
<input type="text" name="fields[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" class="textfield" onchange="return verificationsAfterFieldChange('{{ column.Field_md5|escape_js_string }}', '{{ row_id|escape_js_string }}', '{{ column.pma_type }}')" id="field_{{ id_index }}_3" value="{{ data }}">
|
||||
<a class="ajax browse_foreign" href="{{ url('/browse-foreigners') }}" data-post="{{ get_common({'db': db, 'table': table, 'field': column.Field, 'rownumber': row_id, 'data': data}) }}">{{ get_icon('b_browse', 'Browse foreign values'|trans) }}</a>
|
||||
{% elseif foreign_dropdown is not empty %}
|
||||
{{ backup_field|raw }}
|
||||
<input type="hidden" name="fields_type[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="{{ column.is_binary ? 'hex' : 'foreign' }}">
|
||||
<select name="fields[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" class="textfield" id="field_{{ id_index }}_3" onchange="return verificationsAfterFieldChange('{{ column.Field_md5|escape_js_string }}', '{{ row_id|escape_js_string }}', '{{ column.pma_type }}')">
|
||||
{{ foreign_dropdown|raw }}
|
||||
</select>
|
||||
{% elseif (longtext_double_textarea and 'longtext' in column.pma_type) or 'json' in column.pma_type or 'text' in column.pma_type %}
|
||||
{{ backup_field|raw }}
|
||||
<textarea name="fields[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" id="field_{{ id_index }}_3" data-type="{{ data_type }}" dir="{{ text_dir }}" rows="{{ textarea_rows }}" cols="{{ textarea_cols }}"
|
||||
{{- max_length ? ' data-maxlength="' ~ max_length ~ '"' }}{{ column.is_char ? ' class="char charField"' }} onchange="return verificationsAfterFieldChange('{{ column.Field_md5|escape_js_string }}', '{{ row_id|escape_js_string }}', '{{ column.pma_type }}')">
|
||||
{#- We need to duplicate the first \n or otherwise we will lose the first newline entered in a VARCHAR or TEXT column -#}
|
||||
{{- special_chars starts with "\r\n" ? "\n" }}{{ special_chars|raw -}}
|
||||
</textarea>
|
||||
{% if 'text' in column.pma_type and special_chars|length > 32000 %}
|
||||
</td>
|
||||
<td>
|
||||
{% trans 'Because of its length,<br> this column might not be editable.' %}
|
||||
{% endif %}
|
||||
{% elseif column.pma_type == 'enum' %}
|
||||
{{ backup_field|raw }}
|
||||
<input type="hidden" name="fields_type[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="enum">
|
||||
{% if column.Type|length > 20 %}
|
||||
<select name="fields[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" class="textfield" id="field_{{ id_index }}_3" onchange="return verificationsAfterFieldChange('{{ column.Field_md5|escape_js_string }}', '{{ row_id|escape_js_string }}', '{{ column.pma_type }}')">
|
||||
<option value=""></option>
|
||||
{% for enum_value in column.values %}
|
||||
<option value="{{ enum_value.plain }}"{{ enum_value.plain == enum_selected_value ? ' selected' }}>{{ enum_value.plain }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
{% else %}
|
||||
{% for enum_value in column.values %}
|
||||
<input type="radio" name="fields[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="{{ enum_value.plain }}" class="textfield" id="field_{{ id_index }}_3_{{ loop.index0 }}" onchange="return verificationsAfterFieldChange('{{ column.Field_md5|escape_js_string }}', '{{ row_id|escape_js_string }}', '{{ column.pma_type }}')"{{ enum_value.plain == enum_selected_value ? ' checked' }}>
|
||||
<label for="field_{{ id_index }}_3_{{ loop.index0 }}">{{ enum_value.plain }}</label>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% elseif column.pma_type == 'set' %}
|
||||
{{ backup_field|raw }}
|
||||
<input type="hidden" name="fields_type[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="set">
|
||||
<select name="fields[multi_edit][{{ row_id }}][{{ column.Field_md5 }}][]" class="textfield" size="{{ set_select_size }}" id="field_{{ id_index }}_3" onchange="return verificationsAfterFieldChange('{{ column.Field_md5|escape_js_string }}', '{{ row_id|escape_js_string }}', '{{ column.pma_type }}')" multiple>
|
||||
{% for set_value in set_values %}
|
||||
<option value="{{ set_value.plain }}"{{ set_value.plain in data|split(',') ? ' selected' }}>{{ set_value.plain }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
{% elseif column.is_binary or column.is_blob %}
|
||||
{% if is_column_protected_blob %}
|
||||
{% trans 'Binary - do not edit' %}
|
||||
({{ blob_value }} {{ blob_value_unit }})
|
||||
<input type="hidden" name="fields[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="">
|
||||
<input type="hidden" name="fields_type[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="protected">
|
||||
{% elseif column.is_blob or (column.len > limit_chars) %}
|
||||
{{ backup_field|raw }}
|
||||
<input type="hidden" name="fields_type[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="hex">
|
||||
<textarea name="fields[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" id="field_{{ id_index }}_3" data-type="HEX" dir="{{ text_dir }}" rows="{{ textarea_rows }}" cols="{{ textarea_cols }}"
|
||||
{{- max_length ? ' data-maxlength="' ~ max_length ~ '"' }}{{ column.is_char ? ' class="char charField"' }} onchange="return verificationsAfterFieldChange('{{ column.Field_md5|escape_js_string }}', '{{ row_id|escape_js_string }}', '{{ column.pma_type }}')">
|
||||
{#- We need to duplicate the first \n or otherwise we will lose the first newline entered in a VARCHAR or TEXT column -#}
|
||||
{{- special_chars starts with "\r\n" ? "\n" }}{{ special_chars|raw -}}
|
||||
</textarea>
|
||||
{% else %}
|
||||
{{ backup_field|raw }}
|
||||
<input type="hidden" name="fields_type[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" value="hex">
|
||||
{{ input_field_html|raw }}
|
||||
{% endif %}
|
||||
{% if is_upload and column.is_blob %}
|
||||
<br>
|
||||
{# We don't want to prevent users from using browser's default drag-drop feature on some page(s), so we add noDragDrop class to the input #}
|
||||
<input type="file" name="fields_upload[multi_edit][{{ row_id }}][{{ column.Field_md5 }}]" class="textfield noDragDrop" id="field_{{ id_index }}_3" size="10" onchange="return verificationsAfterFieldChange('{{ column.Field_md5|escape_js_string }}', '{{ row_id|escape_js_string }}', '{{ column.pma_type }}')">
|
||||
{{ max_upload_size }}
|
||||
{% endif %}
|
||||
{{ select_option_for_upload|raw }}
|
||||
{% else %}
|
||||
{{ value|raw }}
|
||||
{% endif %}
|
||||
|
||||
{% if column.pma_type in gis_data_types %}
|
||||
<span class="open_gis_editor" data-row-id="{{ row_id }}">{{ link_or_button('#', null, get_icon('b_edit', 'Edit/Insert'|trans), [], '_blank') }}</span>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
|
@ -1,19 +0,0 @@
|
|||
<form id="continueForm" method="post" action="{{ url('/table/replace') }}" name="continueForm">
|
||||
{{ get_hidden_inputs(db, table) }}
|
||||
<input type="hidden" name="goto" value="{{ goto }}">
|
||||
<input type="hidden" name="err_url" value="{{ err_url }}">
|
||||
<input type="hidden" name="sql_query" value="{{ sql_query }}">
|
||||
|
||||
{% if has_where_clause %}
|
||||
{% for key_id, where_clause in where_clause_array %}
|
||||
<input type="hidden" name="where_clause[{{ key_id }}]" value="
|
||||
{{- where_clause|trim }}">
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% set insert_rows %}
|
||||
<input type="number" name="insert_rows" id="insert_rows" value="
|
||||
{{- insert_rows_default }}" min="1">
|
||||
{% endset %}
|
||||
{{ 'Continue insertion with %s rows'|trans|format(insert_rows)|raw }}
|
||||
</form>
|
|
@ -1,18 +0,0 @@
|
|||
<div class="table-responsive-lg">
|
||||
<table class="table table-striped align-middle my-3 insertRowTable w-auto">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{% trans 'Column' %}</th>
|
||||
{{ type|raw }}
|
||||
{{ function|raw }}
|
||||
<th>{% trans 'Null' %}</th>
|
||||
<th class="w-50">{% trans 'Value' %}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th colspan="5" class="tblFooters text-end">
|
||||
<input class="btn btn-primary" type="submit" value="{% trans 'Go' %}">
|
||||
</th>
|
||||
</tr>
|
||||
</tfoot>
|
|
@ -1 +0,0 @@
|
|||
<form id="insertForm" class="lock-page{{ has_blob_field and is_upload ? ' disableAjax' }}" method="post" action="{{ url('/table/replace') }}" name="insertForm"{{ is_upload ? ' enctype="multipart/form-data"' }}>
|
Loading…
Add table
Add a link
Reference in a new issue