Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-01-05bug #1864468 [display] Theme does not switch to darkblue_orangeMarc Delisle
2007-10-03better function thanks to Sebastian MendelMarc Delisle
2007-10-02bug #1805773 [relations] browse foreign values: return values not escapedMarc Delisle
2007-08-15foreign key browser: encoding mixups, thanks to Thijs KinkhorstMarc Delisle
2007-07-18start QA_11Marc Delisle
2007-07-18start QA_2_11Marc Delisle
2007-06-20bug #1739253 about the new page number in navi, thanks to Juergen Wind for ↵Marc Delisle
the suggestions
2007-05-09fixed code indention Sebastian Mendel
2007-04-01XHTML standard: no language attribute in <script>Sebastian Mendel
2007-04-01coding standard: no spaces inside bracesSebastian Mendel
2007-04-01coding standard: no braces around includeSebastian Mendel
2007-03-29improved out buffer function handling;Sebastian Mendel
bug #1690064 headers already sent error if OBGzip = 0
2007-03-20splitted common.lib.php into common.inc.php, core.lib.php and common.lib.phpSebastian Mendel
2007-03-20fixed/added page level docblockSebastian Mendel
2007-03-19synced/fixed vim lineSebastian Mendel
2007-02-10get rid of propiconMarc Delisle
2006-12-21patch #1611684 part 2, other issues with the caching of phpmyadmin.css.phpMarc Delisle
2006-07-19bug #1525393, no page selector in foreign key browse pageMarc Delisle
2005-12-11Drop <base href=".." />, it should not be needed at all.Michal Čihař
2005-11-23Move javascript stuff out of libraries folder.Michal Čihař
2005-11-23moved styles into cssSebastian Mendel
2005-11-23drop PMA_setFontSizes()Sebastian Mendel
2005-11-20dbh becomes controllinkMarc Delisle
2005-11-02- replaced $cfg['Bgcolor*'] with classesSebastian Mendel
- make use of fieldset
2005-10-27bug #1334963 Per-server themes - left frame colors unthemedSebastian Mendel
2005-10-09Support for searching in foreign keys (RFE #871091).Michal Čihař
2005-07-22bug #1242805, Show all does not work while browsing foreign valuesMarc Delisle
2004-12-29added infou about UFPDF to documentationMichal Čihař
2004-11-02RFE #925817, better page selector with flexible jumping/pagination controlsGarvin Hicking
2004-09-16correctly fix browse foreigners popup for search pageGarvin Hicking
2004-09-15make foreign key browser work from within search panel. thanks, marc, forGarvin Hicking
spotting this. :)
2004-09-13bug #1027204 - paging for browse_foreigners did not work, because '&amp;'Garvin Hicking
appendix was missing to the GoToUrl-parameter.
2004-08-12Change look of adding fields into table (bug #991095).Michal Čihař
I again did some XHTML validation, so removed few of most obvious errors, but there are still many, mostly missing alt attributtes for images and wrongly nested tags.
2004-06-23remove /imagesMarc Delisle
2004-05-20Little code reorganistaion (RFE #957308), removed some remaining php3 ↵Michal Čihař
compatibility code in SQL parser.
2004-04-29Bug #928328 - Use correct urlencoding() of the primary key reference.Garvin Hicking
2004-03-09Use charset aware substr and strlen functions (bugs #854755 and #910575).Michal Čihař
2004-01-28Get rid of mysql_data_seek(). Use pre-cached PHP array for mysqliGarvin Hicking
compatibility and bandwidth saving. Memory issues by caching should not arise, as the used cache will (in our previously used cases) only cache index fields and max. 200 relation rows. I tested performance on my machine: By fetching 400kb of data twice via mysql_fetch_row() -> mysql_data_seek() -> mysql_fetch_row() this was performed in 0.25 seconds. By fetching it once and caching in a PHP array via mysql_fetch_row -> foreach this is performed in 0.32 seconds. With usual data as used in PMA (10kb) I could only detect a performance change of 0.009 seconds, which is respectable I think. By not using mysql_data_seek we are later able to use global mysqli USE_RESULT options to fetch rows singly. I discussed that yesterday with Rabus, and if there are any objections we can surely discuss that further on the list.
2004-01-22Added MySQLi library; Removed calls to old mysql_wrappers library.Alexander M. Turek
2004-01-20use PMA_DBI functionMarc Delisle
2004-01-05Improved browsing foreign windows as discussed in 868396. Please see my ↵Garvin Hicking
entry there, there is a known limitation to the new way of sorting we may need to straighten out.
2004-01-02foreigners window and RepeatCellsMarc Delisle
2004-01-02foreigners window and pagingMarc Delisle
2003-12-04Editing of multiple records at once.Garvin Hicking
This is a hook-in to the 'delete multiple records' and basically just wraps all data in some kind of Ueber-Array. It should be compatible with single records editing. I tried various combinations already and it seems to work. But this can heavily break stuff, so expect this to be EXPERIMENTAL! We should only release RC1 after this has been thoroughly tested (will do so in the next days by myself). What maybe needs fixing is the way of evaluating $goto/ $err_url and similars. As I am not much into that redirection stuff, maybe one can see if I did something wrong in the area.
2003-11-27Huge set of optimizations, please test!Alexander M. Turek
2003-11-22Final batch of PHP3-Compatibility fixes. Please test. :-)Garvin Hicking
2003-11-18no more support for php3Michal Čihař