From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- srcs/phpmyadmin/templates/sql/profiling_chart.twig | 97 ---------------------- 1 file changed, 97 deletions(-) delete mode 100644 srcs/phpmyadmin/templates/sql/profiling_chart.twig (limited to 'srcs/phpmyadmin/templates/sql/profiling_chart.twig') diff --git a/srcs/phpmyadmin/templates/sql/profiling_chart.twig b/srcs/phpmyadmin/templates/sql/profiling_chart.twig deleted file mode 100644 index 0f80954..0000000 --- a/srcs/phpmyadmin/templates/sql/profiling_chart.twig +++ /dev/null @@ -1,97 +0,0 @@ -
- {% trans 'Profiling' %} -
-

{% trans 'Detailed profile' %}

- - - - - - - - - - {{ detailed_table|raw }} - -
- {% trans 'Order' %} -
-
- {% trans 'State' %} - {{ show_mysql_docu('general-thread-states') }} -
-
- {% trans 'Time' %} -
-
-
- -
-

{% trans 'Summary by state' %}

- - - - - - - - - - - - {% for name, stats in states %} - - - - - - - - {% endfor %} - -
- {% trans 'State' %} - {{ show_mysql_docu('general-thread-states') }} -
-
- {% trans 'Total Time' %} -
-
- {% trans '% Time' %} -
-
- {% trans 'Calls' %} -
-
- {% trans 'ΓΈ Time' %} -
-
{{ name }} - {{ format_number(stats['total_time'], 3, 1) }}s - {{ stats['total_time'] }} - - {{ format_number(100 * (stats['total_time'] / total_time), 0, 2) }}% - {{ stats['calls'] }} - {{ format_number(stats['total_time'] / stats['calls'], 3, 1) }}s - - {{ (stats['total_time'] / stats['calls'])|number_format(8, '.', '') }} - -
- - -
-
- -
- {{ chart_json|json_encode() }} -
-
- - -
-- cgit