diff --git a/bs_change_mime_type.php b/bs_change_mime_type.php index 997713a42..b8fea6b55 100644 --- a/bs_change_mime_type.php +++ b/bs_change_mime_type.php @@ -1,7 +1,6 @@ '; if ($num_tables == 0) { echo $strNoTablesFound; } -// 2. Shows table informations on mysql >= 3.23.03 - staybyte - 11 June 2001 +// 2. Shows table informations on mysql >= 3.23.03 else { ?> diff --git a/db_search.php b/db_search.php index 751675db5..24bb5cc6d 100644 --- a/db_search.php +++ b/db_search.php @@ -47,7 +47,6 @@ * @uses sprintf() * @uses in_array() * @version $Id$ - * @author Thomas Chaumeny * @package phpMyAdmin */ diff --git a/db_structure.php b/db_structure.php index e94928f8b..c0df159ca 100644 --- a/db_structure.php +++ b/db_structure.php @@ -62,7 +62,7 @@ if ($num_tables == 0) { } // else -// 2. Shows table informations - staybyte - 11 June 2001 +// 2. Shows table informations require_once './libraries/bookmark.lib.php'; @@ -172,8 +172,7 @@ foreach ($tables as $keyname => $each_table) { } } - // loic1: Patch from Joshua Nye to get valid - // statistics whatever is the table type + // Get valid statistics whatever is the table type $table_is_view = false; $table_encoded = urlencode($each_table['TABLE_NAME']); diff --git a/db_tracking.php b/db_tracking.php index 799e96b1f..c2dde64eb 100644 --- a/db_tracking.php +++ b/db_tracking.php @@ -2,7 +2,6 @@ /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * @version $Id$ - * @author Alexander Rutkowski * @package phpMyAdmin */ diff --git a/export.php b/export.php index 5e09a8de1..1f7b39e71 100644 --- a/export.php +++ b/export.php @@ -334,7 +334,7 @@ if (!$save_on_server) { header('Content-Type: ' . $mime_type); header('Expires: ' . gmdate('D, d M Y H:i:s') . ' GMT'); - // lem9: Tested behavior of + // Tested behavior of // IE 5.50.4807.2300 // IE 6.0.2800.1106 (small glitch, asks twice when I click Open) // IE 6.0.2900.2180 diff --git a/js/functions.js b/js/functions.js index 8c924e033..302b131c0 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1123,7 +1123,6 @@ function setPointer(theRow, theRowNum, theAction, theDefaultColor, thePointerCol * * @return boolean whether pointer is set or not * - * @author Garvin Hicking (rewrite of setPointer.) */ function setVerticalPointer(theRow, theColNum, theAction, theDefaultClass1, theDefaultClass2, thePointerClass, theMarkClass) { // 1. Pointer and mark feature are disabled or the browser can't get the diff --git a/libraries/Index.class.php b/libraries/Index.class.php index 9572222a6..6e0d1c64d 100644 --- a/libraries/Index.class.php +++ b/libraries/Index.class.php @@ -419,7 +419,6 @@ class PMA_Index * @param boolean $print_mode * @access public * @return array Index collection array - * @author Garvin Hicking (pma@supergarv.de) */ static public function getView($table, $schema, $print_mode = false) { diff --git a/libraries/List_Database.class.php b/libraries/List_Database.class.php index 5744f3101..89977902d 100644 --- a/libraries/List_Database.class.php +++ b/libraries/List_Database.class.php @@ -468,7 +468,7 @@ require_once './libraries/List.class.php'; protected function _checkAgainstPrivTables() { // 1. get allowed dbs from the "mysql.db" table - // lem9: User can be blank (anonymous user) + // User can be blank (anonymous user) $local_query = " SELECT DISTINCT `Db` FROM `mysql`.`db` WHERE `Select_priv` = 'Y' @@ -488,7 +488,7 @@ require_once './libraries/List.class.php'; // now populated with actual database names instead of // with regular expressions. $tmp_alldbs = PMA_DBI_query('SHOW DATABASES;', $GLOBALS['controllink']); - // loic1: all databases cases - part 2 + // all databases cases - part 2 if (isset($tmp_mydbs['%'])) { while ($tmp_row = PMA_DBI_fetch_row($tmp_alldbs)) { $dblist[] = $tmp_row[0]; @@ -501,7 +501,7 @@ require_once './libraries/List.class.php'; $tmp_mydbs[$tmp_db] = 0; } elseif (!isset($dblist[$tmp_db])) { foreach ($tmp_mydbs as $tmp_matchpattern => $tmp_value) { - // loic1: fixed bad regexp + // fixed bad regexp // TODO: db names may contain characters // that are regexp instructions $re = '(^|(\\\\\\\\)+|[^\])'; diff --git a/libraries/Message.class.php b/libraries/Message.class.php index e7947b854..51b320858 100644 --- a/libraries/Message.class.php +++ b/libraries/Message.class.php @@ -3,7 +3,6 @@ /** * Holds class PMA_Message * - * @author Sebastian Mendel * @version $Id$ * @package phpMyAdmin */ diff --git a/libraries/StorageEngine.class.php b/libraries/StorageEngine.class.php index c9b0c9e14..d03f40abb 100644 --- a/libraries/StorageEngine.class.php +++ b/libraries/StorageEngine.class.php @@ -69,7 +69,6 @@ class PMA_StorageEngine /** * returns HTML code for storage engine select box * - * @author rabus * @static * @uses PMA_StorageEngine::getStorageEngines() * @uses strtolower() diff --git a/libraries/Table.class.php b/libraries/Table.class.php index 6039232af..b2b6963ea 100644 --- a/libraries/Table.class.php +++ b/libraries/Table.class.php @@ -501,7 +501,6 @@ class PMA_Table * @global string relation variable * - * @author Garvin Hicking */ static public function duplicateInfo($work, $pma_table, $get_fields, $where_fields, $new_fields) @@ -573,7 +572,6 @@ class PMA_Table /** * Copies or renames table * - * @author Michal Cihar */ static public function moveCopy($source_db, $source_table, $target_db, $target_table, $what, $move, $mode) { @@ -650,7 +648,7 @@ class PMA_Table } unset($server_sql_mode); - /* nijel: Find table name in query and replace it */ + /* Find table name in query and replace it */ while ($parsed_sql[$i]['type'] != $table_delimiter) { $i++; } diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index f03018ab2..e909e76b8 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -2,7 +2,6 @@ /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * - * @author Alexander Rutkowski * @version $Id$ * @package phpMyAdmin */ @@ -16,7 +15,6 @@ require_once './libraries/relation.lib.php'; * This class tracks changes on databases, tables and views. * For more information please see phpMyAdmin/Documentation.html * - * @author Alexander Rutkowski * @package phpMyAdmin * * @todo use stristr instead of strstr diff --git a/libraries/auth/cookie.auth.lib.php b/libraries/auth/cookie.auth.lib.php index eb54409fc..2ae3d2fd4 100644 --- a/libraries/auth/cookie.auth.lib.php +++ b/libraries/auth/cookie.auth.lib.php @@ -52,7 +52,6 @@ if (function_exists('mcrypt_encrypt')) { * * @access public * - * @author lem9 */ function PMA_blowfish_encrypt($data, $secret) { @@ -70,7 +69,6 @@ if (function_exists('mcrypt_encrypt')) { * * @access public * - * @author lem9 */ function PMA_blowfish_decrypt($encdata, $secret) { diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php index a441c5b13..ab0bca191 100644 --- a/libraries/blobstreaming.lib.php +++ b/libraries/blobstreaming.lib.php @@ -1,7 +1,6 @@ * @version $Id$ * @since Horde 2.2 * @package horde.cipher */ -// Change for phpMyAdmin by lem9: +// Change for phpMyAdmin //class Horde_Cipher_blowfish extends Horde_Cipher { /** * Horde Blowfish cipher class. @@ -480,7 +479,6 @@ class Horde_Cipher_blowfish * * @access public * - * @author lem9 */ function PMA_blowfish_encrypt($data, $secret) { @@ -509,7 +507,6 @@ function PMA_blowfish_encrypt($data, $secret) * * @access public * - * @author lem9 */ function PMA_blowfish_decrypt($encdata, $secret) { diff --git a/libraries/charset_conversion.lib.php b/libraries/charset_conversion.lib.php index 035a0b87e..337dc9fb0 100644 --- a/libraries/charset_conversion.lib.php +++ b/libraries/charset_conversion.lib.php @@ -130,13 +130,12 @@ if ($PMA_recoding_engine == PMA_CHARSET_ICONV_AIX) { * * @access public * - * @author nijel */ function PMA_convert_charset($what) { global $cfg, $charset, $convcharset; if (!(isset($cfg['AllowAnywhereRecoding']) && $cfg['AllowAnywhereRecoding'] ) - || $convcharset == $charset) { // rabus: if input and output charset are the same, we don't have to do anything... + || $convcharset == $charset) { // if input and output charset are the same, we don't have to do anything... return $what; } else { switch ($GLOBALS['PMA_recoding_engine']) { @@ -166,7 +165,6 @@ function PMA_convert_charset($what) { * * @access public * - * @author nijel */ function PMA_convert_string($src_charset, $dest_charset, $what) { if ($src_charset == $dest_charset) { @@ -200,7 +198,6 @@ function PMA_convert_string($src_charset, $dest_charset, $what) { * * @access public * - * @author nijel */ function PMA_convert_file($src_charset, $dest_charset, $file) { switch ($GLOBALS['PMA_recoding_engine']) { diff --git a/libraries/cleanup.lib.php b/libraries/cleanup.lib.php index d35c1c444..2bd1ef88c 100644 --- a/libraries/cleanup.lib.php +++ b/libraries/cleanup.lib.php @@ -13,7 +13,6 @@ * @param string list of variables to allow * @return nothing * @access public - * @author Michal Cihar (michal@cihar.com) */ function PMA_remove_request_vars(&$whitelist) { diff --git a/libraries/common.lib.php b/libraries/common.lib.php index a727cc2de..26b2d6ecc 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -294,7 +294,6 @@ function PMA_unQuote($quoted_string, $quote = null) * * @access public * - * @author Robin Johnson */ function PMA_formatSql($parsed_sql, $unparsed_sql = '') { @@ -1293,7 +1292,6 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view * @access public * @return boolean whether profiling is supported * - * @author Marc Delisle */ function PMA_profilingSupported() { @@ -1319,7 +1317,6 @@ function PMA_profilingSupported() * @param string $sql_query * @access public * - * @author Marc Delisle */ function PMA_profilingCheckbox($sql_query) { @@ -1340,7 +1337,6 @@ function PMA_profilingCheckbox($sql_query) * @param array the results * @access public * - * @author Marc Delisle */ function PMA_profilingResults($profiling_results) { @@ -1371,7 +1367,6 @@ function PMA_profilingResults($profiling_results) * * @access public * - * @author staybyte * @version 1.2 - 18 July 2002 */ function PMA_formatByteDown($value, $limes = 6, $comma = 0) @@ -1428,7 +1423,6 @@ function PMA_formatByteDown($value, $limes = 6, $comma = 0) * * @access public * - * @author staybyte, sebastian mendel * @version 1.1.0 - 2005-10-27 */ function PMA_formatNumber($value, $length = 3, $comma = 0, $only_down = false) @@ -1832,7 +1826,6 @@ function PMA_timespanFormat($seconds) * @param string The Separator (defaults to "
\n") * * @access public - * @author Garvin Hicking * @return string The flipped string */ function PMA_flipstring($string, $Separator = "
\n") @@ -1892,7 +1885,6 @@ function PMA_flipstring($string, $Separator = "
\n") * @global boolean flag whether any special variable was required * * @access public - * @author Marc Delisle (lem9@users.sourceforge.net) */ function PMA_checkParameters($params, $die = true, $request = true) { @@ -1949,7 +1941,6 @@ function PMA_checkParameters($params, $die = true, $request = true) * @param boolean $force_unique generate condition only on pk or unique * * @access public - * @author Michal Cihar (michal@cihar.com) and others... * @return string the calculated condition and whether condition is unique */ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, $force_unique=false) @@ -2075,7 +2066,6 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, $force * @param string image to display * * @access public - * @author Michal Cihar (michal@cihar.com) */ function PMA_buttonOrImage($button_name, $button_class, $image_name, $text, $image) @@ -2128,7 +2118,6 @@ function PMA_buttonOrImage($button_name, $button_class, $image_name, $text, * @param string The prompt to display (sometimes empty) * * @access public - * @author Garvin Hicking (pma@supergarv.de) */ function PMA_pageselector($url, $rows, $pageNow = 1, $nbTotalPage = 1, $showAll = 200, $sliceStart = 5, $sliceEnd = 5, $percent = 20, @@ -2232,7 +2221,7 @@ function PMA_listNavigator($count, $pos, $_url_params, $script, $frame, $max_cou // Move to the beginning or to the previous page if ($pos > 0) { - // loic1: patch #474210 from Gosha Sakovich - part 1 + // patch #474210 - part 1 if ($GLOBALS['cfg']['NavigationBarIconic']) { $caption1 = '<<'; $caption2 = ' < '; @@ -2614,8 +2603,6 @@ function PMA_convert_bit_default_value($bit_default_value) { * @param string $fieldspec * @return array associative array containing type, spec_in_brackets * and possibly enum_set_values (another array) - * @author Marc Delisle - * @author Joshua Hogendorn */ function PMA_extractFieldSpec($fieldspec) { $first_bracket_pos = strpos($fieldspec, '('); diff --git a/libraries/config.default.php b/libraries/config.default.php index 4a9e164d1..3f56bd1d4 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -2302,7 +2302,7 @@ $cfg['InitialSlidersState'] = 'closed'; // custom-setup by mkkeck: 2004-05-04 // some specials for new icons and scrolling /** - * @todo 2004-05-08 rabus: We need to rearrange these variables. + * @todo We need to rearrange these variables. */ diff --git a/libraries/core.lib.php b/libraries/core.lib.php index 186cfdea9..88e5fb6c6 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -184,7 +184,6 @@ function PMA_isValid(&$var, $type = 'length', $compare = null) * @return string The secured path * * @access public - * @author Marc Delisle (lem9@users.sourceforge.net) */ function PMA_securePath($path) { diff --git a/libraries/db_info.inc.php b/libraries/db_info.inc.php index 4f59baa47..081fc1a28 100644 --- a/libraries/db_info.inc.php +++ b/libraries/db_info.inc.php @@ -7,7 +7,7 @@ * fills tooltip arrays and provides $tables, $num_tables, $is_show_stats * and $db_is_information_schema * - * staybyte: speedup view on locked tables - 11 June 2001 + * speedup view on locked tables * * @uses $cfg['ShowStats'] * @uses $cfg['ShowTooltip'] diff --git a/libraries/db_links.inc.php b/libraries/db_links.inc.php index 85c742710..e3b001d2c 100644 --- a/libraries/db_links.inc.php +++ b/libraries/db_links.inc.php @@ -37,8 +37,8 @@ $is_superuser = PMA_isSuperuser(); * Prepares links */ // Drop link if allowed -// rabus: Don't even try to drop information_schema. You won't be able to. Believe me. You won't. -// nijel: Don't allow to easilly drop mysql database, RFE #1327514. +// Don't even try to drop information_schema. You won't be able to. Believe me. You won't. +// Don't allow to easilly drop mysql database, RFE #1327514. if (($is_superuser || $GLOBALS['cfg']['AllowUserDropDatabase']) && ! $db_is_information_schema && ($db != 'mysql')) { $tab_drop['link'] = 'sql.php'; $tab_drop['args']['sql_query'] = 'DROP DATABASE ' . PMA_backquote($db); diff --git a/libraries/display_change_password.lib.php b/libraries/display_change_password.lib.php index d44e22e24..2ec563c3e 100644 --- a/libraries/display_change_password.lib.php +++ b/libraries/display_change_password.lib.php @@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) { } /** - * loic1: autocomplete feature of IE kills the "onchange" event handler and it + * autocomplete feature of IE kills the "onchange" event handler and it * must be replaced by the "onpropertychange" one in this case */ $chg_evt_handler = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 5) diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 4bc719f4f..16569640e 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -812,7 +812,7 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $ // 2.1.4 Do define the sorting URL if (! $is_in_sort) { - // loic1: patch #455484 ("Smart" order) + // patch #455484 ("Smart" order) $GLOBALS['cfg']['Order'] = strtoupper($GLOBALS['cfg']['Order']); if ($GLOBALS['cfg']['Order'] === 'SMART') { $sort_order .= (preg_match('@time|date@i', $fields_meta[$i]->type)) ? 'DESC' : 'ASC'; @@ -1042,7 +1042,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { $odd_row = true; while ($row = PMA_DBI_fetch_row($dt_result)) { - // lem9: "vertical display" mode stuff + // "vertical display" mode stuff if ($row_no != 0 && $_SESSION['tmp_user_values']['repeat_cells'] != 0 && !($row_no % $_SESSION['tmp_user_values']['repeat_cells']) && ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' || $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped')) @@ -1068,7 +1068,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { $odd_row = ! $odd_row; if ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' || $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped') { - // loic1: pointer code part + // pointer code part echo '
' . "\n"; $class = ''; } @@ -1252,7 +1252,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { // n u m e r i c if ($meta->numeric == 1) { - // lem9: if two fields have the same name (this is possible + // if two fields have the same name (this is possible // with self-join queries, for example), using $meta->name // will show both fields NULL even if only one is NULL, // so use the $pointer @@ -1272,7 +1272,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { // b l o b } elseif (stristr($meta->type, 'BLOB')) { - // loic1 : PMA_mysql_fetch_fields returns BLOB in place of + // PMA_mysql_fetch_fields returns BLOB in place of // TEXT fields type so we have to ensure it's really a BLOB $field_flags = PMA_DBI_field_flags($dt_result, $i); if (stristr($field_flags, 'BINARY')) { @@ -1338,7 +1338,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { if (PMA_strlen($row[$i]) > $GLOBALS['cfg']['LimitChars'] && $_SESSION['tmp_user_values']['display_text'] == 'P') { $row[$i] = PMA_substr($row[$i], 0, $GLOBALS['cfg']['LimitChars']) . '...'; } - // loic1: displays all space characters, 4 space + // displays all space characters, 4 space // characters for tabulations and / $row[$i] = ($default_function != $transform_function ? $transform_function($row[$i], $transform_options, $meta) : $default_function($row[$i], array(), $meta)); @@ -1352,16 +1352,16 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { if (!isset($row[$i]) || is_null($row[$i])) { $vertical_display['data'][$row_no][$i] = ' NULL' . "\n"; } elseif ($row[$i] != '') { - // loic1: support blanks in the key + // support blanks in the key $relation_id = $row[$i]; - // nijel: Cut all fields to $GLOBALS['cfg']['LimitChars'] - // lem9: (unless it's a link-type transformation) + // Cut all fields to $GLOBALS['cfg']['LimitChars'] + // (unless it's a link-type transformation) if (PMA_strlen($row[$i]) > $GLOBALS['cfg']['LimitChars'] && $_SESSION['tmp_user_values']['display_text'] == 'P' && !strpos($transform_function, 'link') === true) { $row[$i] = PMA_substr($row[$i], 0, $GLOBALS['cfg']['LimitChars']) . '...'; } - // loic1: displays special characters from binaries + // displays special characters from binaries $field_flags = PMA_DBI_field_flags($dt_result, $i); if (isset($meta->_type) && $meta->_type === MYSQLI_TYPE_BIT) { $row[$i] = PMA_printable_bit_value($row[$i], $meta->length); @@ -1388,7 +1388,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { $function_nowrap = $transform_function . '_nowrap'; $bool_nowrap = (($default_function != $transform_function && function_exists($function_nowrap)) ? $function_nowrap($transform_options) : false); - // loic1: do not wrap if date field type + // do not wrap if date field type $nowrap = ((preg_match('@DATE|TIME@i', $meta->type) || $bool_nowrap) ? ' nowrap' : ''); $where_comparison = ' = \'' . PMA_sqlAddslashes($row[$i]) . '\''; $vertical_display['data'][$row_no][$i] = '
' . htmlspecialchars($row['Field']) . '' . ''; - // reformat mysql query output - staybyte - 9. June 2001 - // loic1: set or enum types: slashes single quotes inside options + // reformat mysql query output + // set or enum types: slashes single quotes inside options $field_name = $row['Field']; $type = $row['Type']; if (preg_match('/^(set|enum)\((.+)\)$/i', $type, $tmp)) { diff --git a/libraries/export/php_array.php b/libraries/export/php_array.php index 17d5f4c28..f1f3a8703 100644 --- a/libraries/export/php_array.php +++ b/libraries/export/php_array.php @@ -2,7 +2,6 @@ /** * Set of functions used to build dumps of tables as PHP Arrays * - * @author Geoffray Warnants * @version 0.2b (20090704) */ if (! defined('PHPMYADMIN')) { @@ -69,7 +68,6 @@ function PMA_exportHeader() ' */ function PMA_aix_iconv_wrapper($in_charset, $out_charset, $str) { diff --git a/libraries/import.lib.php b/libraries/import.lib.php index ca2ac2c55..e2ef99c17 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -303,8 +303,6 @@ function PMA_importGetNextChunk($size = 32768) * Returns the "Excel" column name (i.e. 1 = "A", 26 = "Z", 27 = "AA", etc.) * This algorithm only works up to ZZ. it fails on AAA (up to 701 columns) * - * @author Derek Schaefer (derek.schaefer@gmail.com) - * * @access public * * @uses chr() @@ -344,7 +342,6 @@ function PMA_getColumnAlphaName($num) * Returns the column number based on the Excel name. * So "A" = 1, "AZ" = 27, etc. * - * @author Derek Schaefer (derek.schaefer@gmail.com) * * @access public * @@ -396,7 +393,6 @@ define("SIZES", 1); /** * Obtains the precision (total # of digits) from a size of type decimal * - * @author Derek Schaefer (derek.schaefer@gmail.com) * * @access public * @@ -412,7 +408,6 @@ function PMA_getM($last_cumulative_size) { /** * Obtains the scale (# of digits to the right of the decimal point) from a size of type decimal * - * @author Derek Schaefer (derek.schaefer@gmail.com) * * @access public * @@ -429,7 +424,6 @@ function PMA_getD($last_cumulative_size) { /** * Obtains the decimal size of a given cell * - * @author Derek Schaefer (derek.schaefer@gmail.com) * * @access public * @@ -452,7 +446,6 @@ function PMA_getDecimalSize(&$cell) { /** * Obtains the size of the given cell * - * @author Derek Schaefer (derek.schaefer@gmail.com) * * @todo Handle the error cases more elegantly * @@ -679,7 +672,6 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type /** * Determines what MySQL type a cell is * - * @author Derek Schaefer (derek.schaefer@gmail.com) * * @access public * @@ -721,7 +713,6 @@ function PMA_detectType($last_cumulative_type, &$cell) { /** * Determines if the column types are int, decimal, or string * - * @author Derek Schaefer (derek.schaefer@gmail.com) * * @link http://wiki.phpmyadmin.net/pma/Devel:Import * @@ -825,7 +816,6 @@ $import_notice = NULL; * Builds and executes SQL statements to create the database and tables * as necessary, as well as insert all the data. * - * @author Derek Schaefer (derek.schaefer@gmail.com) * * @link http://wiki.phpmyadmin.net/pma/Devel:Import * diff --git a/libraries/js_escape.lib.php b/libraries/js_escape.lib.php index 754d95f2c..51673464a 100644 --- a/libraries/js_escape.lib.php +++ b/libraries/js_escape.lib.php @@ -3,7 +3,6 @@ /** * Javascript escaping functions. * - * @author Michal Čihař * @package phpMyAdmin * * @version $Id$ diff --git a/libraries/parse_analyze.lib.php b/libraries/parse_analyze.lib.php index 59e59129e..75dd00b21 100644 --- a/libraries/parse_analyze.lib.php +++ b/libraries/parse_analyze.lib.php @@ -16,7 +16,7 @@ $GLOBALS['unparsed_sql'] = $sql_query; $parsed_sql = PMA_SQP_parse($sql_query); $analyzed_sql = PMA_SQP_analyze($parsed_sql); -// lem9: for bug 780516: now that we use case insensitive preg_match +// for bug 780516: now that we use case insensitive preg_match // or flags from the analyser, do not put back the reformatted query // into $sql_query, to make this kind of query work without // capitalizing keywords: diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 7f0d4d3ce..4ac019b0b 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -25,7 +25,6 @@ require_once './libraries/Table.class.php'; * * @access public * - * @author Mike Beck */ function PMA_query_as_controluser($sql, $show_error = true, $options = 0) { @@ -217,7 +216,6 @@ function PMA_printDiagMessageForParameter($parameter, $relation_parameter_set, $ * @uses PMA_DBI_fetch_row() * @uses PMA_DBI_free_result() * @access protected - * @author Mike Beck * @return array the relation parameters for the current user */ function PMA__getRelationsParam() @@ -361,8 +359,6 @@ function PMA__getRelationsParam() * Gets all Relations to foreign tables for a given table or * optionally a given column in a table * - * @author Mike Beck - * @author Marc Delisle * @access public * @uses $GLOBALS['controllink'] * @uses $GLOBALS['information_schema_relations'] @@ -471,7 +467,6 @@ function PMA_getForeigners($db, $table, $column = '', $source = 'both') * Gets the display field of a table * * @access public - * @author Mike Beck * @uses $GLOBALS['controllink'] * @uses PMA_getRelationsParam() * @uses PMA_backquote() @@ -522,8 +517,6 @@ function PMA_getDisplayField($db, $table) /** * Gets the comments for all rows of a table or the db itself * - * @author Mike Beck - * @author lem9 * @access public * @uses PMA_DBI_get_fields() * @uses PMA_getDbComment() @@ -555,8 +548,6 @@ function PMA_getComments($db, $table = '') /** * Gets the comment for a db * - * @author Mike Beck - * @author lem9 * @access public * @uses PMA_DBI_QUERY_STORE * @uses PMA_DBI_num_rows() @@ -598,8 +589,6 @@ function PMA_getDbComment($db) /** * Gets the comment for a db * - * @author Mike Beck - * @author lem9 * @access public * @uses PMA_DBI_QUERY_STORE * @uses PMA_DBI_num_rows() diff --git a/libraries/select_server.lib.php b/libraries/select_server.lib.php index 802304199..1d2b92e23 100644 --- a/libraries/select_server.lib.php +++ b/libraries/select_server.lib.php @@ -1,7 +1,7 @@ - * http://www.orbis-terrarum.net/?l=people.robbat2 * * These functions define an SQL parser system, capable of understanding and * extracting data from a MySQL type SQL query. @@ -18,8 +15,8 @@ * If you want to extract data from it then, you just need to run * $sql_info = PMA_SQP_analyze($parsed_sql); * - * lem9: See comments in PMA_SQP_analyze for the returned info - * from the analyzer. + * See comments in PMA_SQP_analyze for the returned info + * from the analyzer. * * If you want a pretty-printed version of the query, do: * $string = PMA_SQP_formatHtml($parsed_sql); @@ -217,7 +214,7 @@ if (! defined('PMA_MINIMUM_COMMON')) { global $mysql_charsets, $mysql_collations_flat, $mysql_charsets_count, $mysql_collations_count; global $PMA_SQPdata_forbidden_word, $PMA_SQPdata_forbidden_word_cnt; - // rabus: Convert all line feeds to Unix style + // Convert all line feeds to Unix style $sql = str_replace("\r\n", "\n", $sql); $sql = str_replace("\r", "\n", $sql); @@ -848,7 +845,7 @@ if (! defined('PMA_MINIMUM_COMMON')) { // for GROUP_CONCAT(...) $in_group_concat = FALSE; -/* Description of analyzer results by lem9 +/* Description of analyzer results * * db, table, column, alias * ------------------------ diff --git a/libraries/sqlvalidator.class.php b/libraries/sqlvalidator.class.php index c2baaad10..1c29fd920 100644 --- a/libraries/sqlvalidator.class.php +++ b/libraries/sqlvalidator.class.php @@ -23,7 +23,6 @@ * * @access public * - * @author Robin Johnson * * @version $Id$ * @package phpMyAdmin diff --git a/libraries/string_mb.lib.php b/libraries/string_mb.lib.php index 12cc0f5e1..eac8a94ea 100644 --- a/libraries/string_mb.lib.php +++ b/libraries/string_mb.lib.php @@ -23,7 +23,6 @@ * @param string string to count * @return int string length * @access public - * @author nijel * @todo rename to PM_STR_len() */ function PMA_strlen($string) @@ -40,7 +39,6 @@ function PMA_strlen($string) * @param int length of substring * @return int substring * @access public - * @author nijel * @todo rename to PM_STR_sub() */ function PMA_substr($string, $start, $length = 2147483647) diff --git a/libraries/string_native.lib.php b/libraries/string_native.lib.php index 17a335d75..8a5b8cc78 100644 --- a/libraries/string_native.lib.php +++ b/libraries/string_native.lib.php @@ -23,7 +23,6 @@ * @param string string to count * @return int string length * @access public - * @author nijel * @todo rename to PM_STR_len() */ function PMA_strlen($string) @@ -40,7 +39,6 @@ function PMA_strlen($string) * @param int length of substring * @return int substring * @access public - * @author nijel * @todo rename to PM_STR_sub() */ function PMA_substr($string, $start, $length = 2147483647) diff --git a/libraries/tbl_properties.inc.php b/libraries/tbl_properties.inc.php index d132df8fe..30d471724 100644 --- a/libraries/tbl_properties.inc.php +++ b/libraries/tbl_properties.inc.php @@ -108,7 +108,7 @@ $header_cells[] = $strCollation; $header_cells[] = $strAttr; $header_cells[] = $strNull; -// lem9: We could remove this 'if' and let the key information be shown and +// We could remove this 'if' and let the key information be shown and // editable. However, for this to work, tbl_alter must be modified to use the // key fields, as tbl_addfield does. @@ -504,7 +504,7 @@ for ($i = 0; $i < $num_fields; $i++) { $ci++; // column indexes - // lem9: See my other comment about removing this 'if'. + // See my other comment about removing this 'if'. if (!$is_backup) { $content_cells[$i][$ci] = ''; } else { - // loic1: display default values + // display default values if (!isset($field['Default'])) { $field['Default'] = ''; $real_null_value = TRUE; diff --git a/tbl_operations.php b/tbl_operations.php index 5052205c8..ad266387f 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -308,7 +308,7 @@ if (strstr($show_comment, '; InnoDB free') === false) { // DELAY_KEY_WRITE, CHECKSUM, : MyISAM only // AUTO_INCREMENT: MyISAM and InnoDB since 5.0.3, PBXT -// nijel: Here should be version check for InnoDB, however it is supported +// Here should be version check for InnoDB, however it is supported // in >5.0.4, >4.1.12 and >4.0.11, so I decided not to // check for version ?> diff --git a/tbl_printview.php b/tbl_printview.php index 949a78a11..c43efd93e 100644 --- a/tbl_printview.php +++ b/tbl_printview.php @@ -160,8 +160,8 @@ foreach ($the_tables as $key => $table) { $table) { /** * Displays Space usage and row statistics * - * staybyte - 9 June 2001 */ if ($cfg['ShowStats']) { $nonisam = false; diff --git a/tbl_select.php b/tbl_select.php index 78b749de2..9a205d7a0 100644 --- a/tbl_select.php +++ b/tbl_select.php @@ -67,7 +67,7 @@ if (!isset($param) || $param[0] == '') { while ($row = PMA_DBI_fetch_assoc($result)) { $fields_list[] = $row['Field']; $type = $row['Type']; - // reformat mysql query output - staybyte - 9. June 2001 + // reformat mysql query output if (strncasecmp($type, 'set', 3) == 0 || strncasecmp($type, 'enum', 4) == 0) { $type = str_replace(',', ', ', $type); diff --git a/tbl_structure.php b/tbl_structure.php index 35a4b7149..4be5767c8 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -611,10 +611,8 @@ PMA_generate_slider_effect('tablestatistics', $strDetails); /** * Displays Space usage and row statistics */ -// BEGIN - Calc Table Space - staybyte - 9 June 2001 -// loic1, 22 feb. 2002: updated with patch from -// Joshua Nye to get valid -// statistics whatever is the table type +// BEGIN - Calc Table Space +// Get valid statistics whatever is the table type if ($cfg['ShowStats']) { if (empty($showtable)) { $showtable = PMA_Table::sGetStatusInfo($GLOBALS['db'], $GLOBALS['table'], null, true); diff --git a/tbl_tracking.php b/tbl_tracking.php index fbee82a95..f43bbcf75 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -2,7 +2,6 @@ /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * - * @author Alexander Rutkowski * @version $Id$ * @package phpMyAdmin */ diff --git a/test/PMA_Message_test.php b/test/PMA_Message_test.php index e247c5f76..db6b25ecd 100644 --- a/test/PMA_Message_test.php +++ b/test/PMA_Message_test.php @@ -3,7 +3,6 @@ /** * Test for PMA_Message class * - * @author Michal Biniek * @version $Id$ */ diff --git a/test/PMA_cache_test.php b/test/PMA_cache_test.php index 3283168a5..34aa5f98d 100644 --- a/test/PMA_cache_test.php +++ b/test/PMA_cache_test.php @@ -3,7 +3,6 @@ /** * Test for caching data in session * - * @author Michal Biniek * @package phpMyAdmin-test * @version $Id: PMA_cache_test.php */ diff --git a/test/PMA_escapeJsString_test.php b/test/PMA_escapeJsString_test.php index 350ce371c..6b54cea65 100644 --- a/test/PMA_escapeJsString_test.php +++ b/test/PMA_escapeJsString_test.php @@ -3,7 +3,6 @@ /** * Test for javascript escaping. * - * @author Michal Čihař * @package phpMyAdmin-test * @version $Id$ */ diff --git a/test/PMA_escapeMySqlWildcards_test.php b/test/PMA_escapeMySqlWildcards_test.php index 54273fcd8..75dd4e837 100644 --- a/test/PMA_escapeMySqlWildcards_test.php +++ b/test/PMA_escapeMySqlWildcards_test.php @@ -3,7 +3,6 @@ /** * Test for MySQL Wildcards escaping/unescaping * - * @author Michal Biniek * @package phpMyAdmin-test * @version $Id$ */ diff --git a/test/PMA_foreignKeySupported_test.php b/test/PMA_foreignKeySupported_test.php index 5ce8ce276..6d3e1ab33 100644 --- a/test/PMA_foreignKeySupported_test.php +++ b/test/PMA_foreignKeySupported_test.php @@ -3,7 +3,6 @@ /** * Test for supporting foreign key * - * @author Michal Biniek * @package phpMyAdmin-test * @version $Id$ */ diff --git a/test/PMA_formatNumberByteDown_test.php b/test/PMA_formatNumberByteDown_test.php index d6cea0a92..fcc3bc539 100644 --- a/test/PMA_formatNumberByteDown_test.php +++ b/test/PMA_formatNumberByteDown_test.php @@ -3,7 +3,6 @@ /** * Test for format number and byte * - * @author Michal Biniek * @package phpMyAdmin-test * @version $Id: PMA_formatNumberByteDown_test.php */ diff --git a/test/PMA_headerLocation_test.php b/test/PMA_headerLocation_test.php index 649d91488..7dabfc164 100644 --- a/test/PMA_headerLocation_test.php +++ b/test/PMA_headerLocation_test.php @@ -3,7 +3,6 @@ /** * Test for PMA_sendHeaderLocation * - * @author Michal Biniek * @version $Id$ */ diff --git a/test/PMA_localisedDateTimespan_test.php b/test/PMA_localisedDateTimespan_test.php index 6c9884f0a..2925bd53d 100644 --- a/test/PMA_localisedDateTimespan_test.php +++ b/test/PMA_localisedDateTimespan_test.php @@ -3,7 +3,6 @@ /** * Test for generating localised date or timespan expression * - * @author Michal Biniek * @package phpMyAdmin-test * @version $Id: PMA_localisedDateTimespan_test.php */ diff --git a/test/PMA_printableBitValue_test.php b/test/PMA_printableBitValue_test.php index 86207789b..9351eb808 100644 --- a/test/PMA_printableBitValue_test.php +++ b/test/PMA_printableBitValue_test.php @@ -3,7 +3,6 @@ /** * Test printableBitValue function * - * @author Michal Biniek * @package phpMyAdmin-test * @version $Id: PMA_printableBitValue_test.php */ diff --git a/test/PMA_quoting_slashing_test.php b/test/PMA_quoting_slashing_test.php index 8d6bc26fa..f80102554 100644 --- a/test/PMA_quoting_slashing_test.php +++ b/test/PMA_quoting_slashing_test.php @@ -3,7 +3,6 @@ /** * Test for quoting, slashing/backslashing * - * @author Michal Biniek * @package phpMyAdmin-test * @version $Id: PMA_quoting_slashing_test.php */ diff --git a/test/PMA_showHint_test.php b/test/PMA_showHint_test.php index 1d87702de..2ff37fee9 100644 --- a/test/PMA_showHint_test.php +++ b/test/PMA_showHint_test.php @@ -3,7 +3,6 @@ /** * Test for showHint function * - * @author Michal Biniek * @package phpMyAdmin-test * @version $Id: PMA_showHint_test.php */ diff --git a/test/PMA_stringOperations_test.php b/test/PMA_stringOperations_test.php index 7ed049c46..38aa26bf7 100644 --- a/test/PMA_stringOperations_test.php +++ b/test/PMA_stringOperations_test.php @@ -3,7 +3,6 @@ /** * Test for several string operations * - * @author Michal Biniek * @version $Id: PMA_stringOperations_test.php */ diff --git a/test/PMA_whichCrlf_test.php b/test/PMA_whichCrlf_test.php index 831bc11b8..7aecf7d5e 100644 --- a/test/PMA_whichCrlf_test.php +++ b/test/PMA_whichCrlf_test.php @@ -3,7 +3,6 @@ /** * Test whichCrlf function * - * @author Michal Biniek * @package phpMyAdmin-test * @version $Id: PMA_whichCrlf_test.php */