diff options
Diffstat (limited to 'srcs/phpmyadmin/doc')
83 files changed, 0 insertions, 44602 deletions
diff --git a/srcs/phpmyadmin/doc/html/_images/chart.png b/srcs/phpmyadmin/doc/html/_images/chart.png Binary files differdeleted file mode 100644 index 14fe4d4..0000000 --- a/srcs/phpmyadmin/doc/html/_images/chart.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/column_chart.png b/srcs/phpmyadmin/doc/html/_images/column_chart.png Binary files differdeleted file mode 100644 index 2e5c39b..0000000 --- a/srcs/phpmyadmin/doc/html/_images/column_chart.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/line_chart.png b/srcs/phpmyadmin/doc/html/_images/line_chart.png Binary files differdeleted file mode 100644 index 4f32fdb..0000000 --- a/srcs/phpmyadmin/doc/html/_images/line_chart.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/pie_chart.png b/srcs/phpmyadmin/doc/html/_images/pie_chart.png Binary files differdeleted file mode 100644 index fc176af..0000000 --- a/srcs/phpmyadmin/doc/html/_images/pie_chart.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/pma-relations-links.png b/srcs/phpmyadmin/doc/html/_images/pma-relations-links.png Binary files differdeleted file mode 100644 index a96adad..0000000 --- a/srcs/phpmyadmin/doc/html/_images/pma-relations-links.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/pma-relations-relation-link.png b/srcs/phpmyadmin/doc/html/_images/pma-relations-relation-link.png Binary files differdeleted file mode 100644 index a13433d..0000000 --- a/srcs/phpmyadmin/doc/html/_images/pma-relations-relation-link.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/pma-relations-relation-name.png b/srcs/phpmyadmin/doc/html/_images/pma-relations-relation-name.png Binary files differdeleted file mode 100644 index 2247c49..0000000 --- a/srcs/phpmyadmin/doc/html/_images/pma-relations-relation-name.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/pma-relations-relation-view-link.png b/srcs/phpmyadmin/doc/html/_images/pma-relations-relation-view-link.png Binary files differdeleted file mode 100644 index 20e108a..0000000 --- a/srcs/phpmyadmin/doc/html/_images/pma-relations-relation-view-link.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/query_result_operations.png b/srcs/phpmyadmin/doc/html/_images/query_result_operations.png Binary files differdeleted file mode 100644 index c789e53..0000000 --- a/srcs/phpmyadmin/doc/html/_images/query_result_operations.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/scatter_chart.png b/srcs/phpmyadmin/doc/html/_images/scatter_chart.png Binary files differdeleted file mode 100644 index cbe5338..0000000 --- a/srcs/phpmyadmin/doc/html/_images/scatter_chart.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/spline_chart.png b/srcs/phpmyadmin/doc/html/_images/spline_chart.png Binary files differdeleted file mode 100644 index d6f764f..0000000 --- a/srcs/phpmyadmin/doc/html/_images/spline_chart.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/timeline_chart.png b/srcs/phpmyadmin/doc/html/_images/timeline_chart.png Binary files differdeleted file mode 100644 index ed2781c..0000000 --- a/srcs/phpmyadmin/doc/html/_images/timeline_chart.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_images/usergroups.png b/srcs/phpmyadmin/doc/html/_images/usergroups.png Binary files differdeleted file mode 100644 index 07eaee1..0000000 --- a/srcs/phpmyadmin/doc/html/_images/usergroups.png +++ /dev/null diff --git a/srcs/phpmyadmin/doc/html/_sources/bookmarks.txt b/srcs/phpmyadmin/doc/html/_sources/bookmarks.txt deleted file mode 100644 index 0da9194..0000000 --- a/srcs/phpmyadmin/doc/html/_sources/bookmarks.txt +++ /dev/null @@ -1,77 +0,0 @@ -.. _bookmarks: - -Bookmarks -========= - -.. note:: - - You need to have configured the :ref:`linked-tables` for using bookmarks - feature. - -Storing bookmarks ------------------ - -Any query that is executed can be marked as a bookmark on the page -where the results are displayed. You will find a button labeled -:guilabel:`Bookmark this query` just at the end of the page. As soon as you have -stored a bookmark, that query is linked to the database. -You can now access a bookmark dropdown on each page where the query box appears on for that database. - -Variables inside bookmarks --------------------------- - -Inside a query, you can also add placeholders for variables. -This is done by inserting into the query SQL comments between ``/*`` and -``*/``. The special string ``[VARIABLE{variable-number}]`` is used inside the comments. -Be aware that the whole query minus the SQL comments must be -valid by itself, otherwise you won't be able to store it as a bookmark. -Also, note that the text 'VARIABLE' is case-sensitive. - -When you execute the bookmark, everything typed into the *Variables* -input boxes on the query box page will replace the strings ``/*[VARIABLE{variable-number}]*/`` in -your stored query. - -Also remember, that everything else inside the ``/*[VARIABLE{variable-number}]*/`` string for -your query will remain the way it is, but will be stripped of the ``/**/`` -chars. So you can use: - -.. code-block:: mysql - - /*, [VARIABLE1] AS myname */ - -which will be expanded to - -.. code-block:: mysql - - , VARIABLE1 as myname - -in your query, where VARIABLE1 is the string you entered in the Variable 1 input box. - -A more complex example, say you have stored this query: - -.. code-block:: mysql - - SELECT Name, Address FROM addresses WHERE 1 /* AND Name LIKE '%[VARIABLE1]%' */ - -If you wish to enter "phpMyAdmin" as the variable for the stored query, the full -query will be: - -.. code-block:: mysql - - SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE '%phpMyAdmin%' - -**NOTE THE ABSENCE OF SPACES** inside the ``/**/`` construct. Any spaces -inserted there will be later also inserted as spaces in your query and may lead -to unexpected results especially when using the variable expansion inside of a -"LIKE ''" expression. - -Browsing a table using a bookmark ---------------------------------- - -When a bookmark has the same name as the table, it will be used as the query when browsing -this table. - -.. seealso:: - - :ref:`faqbookmark`, - :ref:`faq6_22` diff --git a/srcs/phpmyadmin/doc/html/_sources/charts.txt b/srcs/phpmyadmin/doc/html/_sources/charts.txt deleted file mode 100644 index 4896d9d..0000000 --- a/srcs/phpmyadmin/doc/html/_sources/charts.txt +++ /dev/null @@ -1,143 +0,0 @@ -.. _charts: - -Charts -====== - -.. versionadded:: 3.4.0 - -Since phpMyAdmin version 3.4.0, you can easily generate charts from a SQL query -by clicking the "Display chart" link in the "Query results operations" area. - -.. image:: images/query_result_operations.png - -A window layer "Display chart" is shown in which you can customize the chart with the following options. - -- Chart type: Allows you to choose the type of chart. Supported types are bar charts, column charts, line charts, spline charts, area charts, pie charts and timeline charts (only the chart types applicable for current series selection are offered). -- X-axis: Allows to choose the field for the main axis. -- Series: Allows to choose series for the chart. You can choose multiple series. -- Title: Allows specifying a title for the chart which is displayed above the chart. -- X-axis and Y-axis labels: Allows specifying labels for axes. -- Start row and a number of rows: Allows generating charts only for a specified number of rows of the results set. - -.. image:: images/chart.png - -Chart implementation --------------------- - -Charts in phpMyAdmin are drawn using `jqPlot <http://www.jqplot.com/>`_ jQuery library. - -Examples --------- - -Pie chart -+++++++++ - -Query results for a simple pie chart can be generated with: - -.. code-block:: mysql - - SELECT 'Food' AS 'expense', - 1250 AS 'amount' UNION - SELECT 'Accommodation', 500 UNION - SELECT 'Travel', 720 UNION - SELECT 'Misc', 220 - -And the result of this query is: - -+---------------+--------+ -| expense | amount | -+===============+========+ -| Food | 1250 | -+---------------+--------+ -| Accommodation | 500 | -+---------------+--------+ -| Travel | 720 | -+---------------+--------+ -| Misc | 220 | -+---------------+--------+ - -Choosing expense as the X-axis and amount in series: - -.. image:: images/pie_chart.png - -Bar and column chart -++++++++++++++++++++ - -Both bar charts and column chats support stacking. Upon selecting one of these types a checkbox is displayed to select stacking. - -Query results for a simple bar or column chart can be generated with: - -.. code-block:: mysql - - SELECT - 'ACADEMY DINOSAUR' AS 'title', - 0.99 AS 'rental_rate', - 20.99 AS 'replacement_cost' UNION - SELECT 'ACE GOLDFINGER', 4.99, 12.99 UNION - SELECT 'ADAPTATION HOLES', 2.99, 18.99 UNION - SELECT 'AFFAIR PREJUDICE', 2.99, 26.99 UNION - SELECT 'AFRICAN EGG', 2.99, 22.99 - -And the result of this query is: - -+------------------+--------------+-------------------+ -| title | rental_rate | replacement_cost | -+==================+==============+===================+ -| ACADEMY DINOSAUR | 0.99 | 20.99 | -+------------------+--------------+-------------------+ -| ACE GOLDFINGER | 4.99 | 12.99 | -+------------------+--------------+-------------------+ -| ADAPTATION HOLES | 2.99 | 18.99 | -+------------------+--------------+-------------------+ -| AFFAIR PREJUDICE | 2.99 | 26.99 | -+------------------+--------------+-------------------+ -| AFRICAN EGG | 2.99 | 22.99 | -+------------------+--------------+-------------------+ - -Choosing title as the X-axis and rental_rate and replacement_cost as series: - -.. image:: images/column_chart.png - -Scatter chart -+++++++++++++ - -Scatter charts are useful in identifying the movement of one or more variable(s) compared to another variable. - -Using the same data set from bar and column charts section and choosing replacement_cost as the X-axis and rental_rate in series: - -.. image:: images/scatter_chart.png - -Line, spline and timeline charts -++++++++++++++++++++++++++++++++ - -These charts can be used to illustrate trends in underlying data. Spline charts draw smooth lines while timeline charts draw X-axis taking the distances between the dates/time into consideration. - -Query results for a simple line, spline or timeline chart can be generated with: - -.. code-block:: mysql - - SELECT - DATE('2006-01-08') AS 'date', - 2056 AS 'revenue', - 1378 AS 'cost' UNION - SELECT DATE('2006-01-09'), 1898, 2301 UNION - SELECT DATE('2006-01-15'), 1560, 600 UNION - SELECT DATE('2006-01-17'), 3457, 1565 - -And the result of this query is: - -+------------+---------+------+ -| date | revenue | cost | -+============+=========+======+ -| 2016-01-08 | 2056 | 1378 | -+------------+---------+------+ -| 2006-01-09 | 1898 | 2301 | -+------------+---------+------+ -| 2006-01-15 | 1560 | 600 | -+------------+---------+------+ -| 2006-01-17 | 3457 | 1565 | -+------------+---------+------+ - -.. image:: images/line_chart.png -.. image:: images/spline_chart.png -.. image:: images/timeline_chart.png diff --git a/srcs/phpmyadmin/doc/html/_sources/config.txt b/srcs/phpmyadmin/doc/html/_sources/config.txt deleted file mode 100644 index 97d7902..0000000 --- a/srcs/phpmyadmin/doc/html/_sources/config.txt +++ /dev/null @@ -1,3609 +0,0 @@ -.. index:: config.inc.php - -.. _config: - -Configuration -============= - -All configurable data is placed in :file:`config.inc.php` in phpMyAdmin's -toplevel directory. If this file does not exist, please refer to the -:ref:`setup` section to create one. This file only needs to contain the -parameters you want to change from their corresponding default value in -:file:`libraries/config.default.php` (this file is not inteded for changes). - -.. seealso:: - - :ref:`config-examples` for examples of configurations - -If a directive is missing from your file, you can just add another line with -the file. This file is for over-writing the defaults; if you wish to use the -default value there's no need to add a line here. - -The parameters which relate to design (like colors) are placed in -:file:`themes/themename/layout.inc.php`. You might also want to create -:file:`config.footer.inc.php` and :file:`config.header.inc.php` files to add -your site specific code to be included on start and end of each page. - -.. note:: - - Some distributions (eg. Debian or Ubuntu) store :file:`config.inc.php` in - ``/etc/phpmyadmin`` instead of within phpMyAdmin sources. - -.. warning:: - - :term:`Mac` users should note that if you are on a version before - :term:`Mac OS X`, PHP does not seem to - like :term:`Mac` end of lines character (``\r``). So - ensure you choose the option that allows to use the \*nix end of line - character (``\n``) in your text editor before saving a script you have - modified. - -Basic settings --------------- - -.. config:option:: $cfg['PmaAbsoluteUri'] - - :type: string - :default: ``''`` - - .. versionchanged:: 4.6.5 - - This setting was not available in phpMyAdmin 4.6.0 - 4.6.4. - - Sets here the complete :term:`URL` (with full path) to your phpMyAdmin - installation's directory. E.g. - ``https://www.example.net/path_to_your_phpMyAdmin_directory/``. Note also - that the :term:`URL` on most of web servers are case sensitive (even on - Windows). Don’t forget the trailing slash at the end. - - Starting with version 2.3.0, it is advisable to try leaving this blank. In - most cases phpMyAdmin automatically detects the proper setting. Users of - port forwarding or complex reverse proxy setup might need to set this. - - A good test is to browse a table, edit a row and save it. There should be - an error message if phpMyAdmin is having trouble auto–detecting the correct - value. If you get an error that this must be set or if the autodetect code - fails to detect your path, please post a bug report on our bug tracker so - we can improve the code. - - .. seealso:: :ref:`faq1_40`, :ref:`faq2_5`, :ref:`faq4_7`, :ref:`faq5_16` - -.. config:option:: $cfg['PmaNoRelation_DisableWarning'] - - :type: boolean - :default: false - - Starting with version 2.3.0 phpMyAdmin offers a lot of features to - work with master / foreign – tables (see :config:option:`$cfg['Servers'][$i]['pmadb']`). - - If you tried to set this - up and it does not work for you, have a look on the :guilabel:`Structure` page - of one database where you would like to use it. You will find a link - that will analyze why those features have been disabled. - - If you do not want to use those features set this variable to ``true`` to - stop this message from appearing. - -.. config:option:: $cfg['AuthLog'] - - :type: string - :default: ``'auto'`` - - .. versionadded:: 4.8.0 - - This is supported since phpMyAdmin 4.8.0. - - Configure authentication logging destination. Failed (or all, depending on - :config:option:`$cfg['AuthLogSuccess']`) authentication attempts will be - logged according to this directive: - - ``auto`` - Let phpMyAdmin automatically choose between ``syslog`` and ``php``. - ``syslog`` - Log using syslog, using AUTH facility, on most systems this ends up - in :file:`/var/log/auth.log`. - ``php`` - Log into PHP error log. - ``sapi`` - Log into PHP SAPI logging. - ``/path/to/file`` - Any other value is treated as a filename and log entries are written there. - - .. note:: - - When logging to a file, make sure its permissions are correctly set - for a web server user, the setup should closely match instructions - described in :config:option:`$cfg['TempDir']`: - -.. config:option:: $cfg['AuthLogSuccess'] - - :type: boolean - :default: false - - .. versionadded:: 4.8.0 - - This is supported since phpMyAdmin 4.8.0. - - Whether to log successful authentication attempts into - :config:option:`$cfg['AuthLog']`. - -.. config:option:: $cfg['SuhosinDisableWarning'] - - :type: boolean - :default: false - - A warning is displayed on the main page if Suhosin is detected. - - You can set this parameter to ``true`` to stop this message from appearing. - |
