summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-28Have PG > 8.1 && <= 9.1 reporting waiting processes on process page.Karl O. Pinc
2013-05-24doTree() does not take an argument.Karl O. Pinc
2013-05-24Make process screen report information in a way that makes sense in postgres 9.2Robert Treat
Also add in the waiting option, making it work back to at least 8.1
2013-05-24Add support for user-sent signals. (9.2+)Karl O. Pinc
2013-05-24Fix so signals are sent to the right pid.Karl O. Pinc
2013-05-24Processes: Fix <= 9.1 to show only db related processes & clean dbname.Karl O. Pinc
Fix bugs introduced in commit d571ecae7b by ioguix on 2012-09-21. I can't tell why these changes crept in along with the rest of the fixes in that commit. It looks like a testing version was committed.
2013-05-18Explicit support for PG 9.3.Karl O. Pinc
2013-05-18Rename PPA version from 5.1 to 5.2-dev.Karl O. Pinc
2013-05-18Merge branch 'official'Robert Treat
2013-05-11langcheck will give correct instruciton if the language parameter is added ↵Hans Chen
with php extension
2013-05-11Completely udpate chinese utf8 according to english.Hans Chen
2013-04-23Cosmetic fix on Vacuum confirmation page for the "Freeze" checkboxHans Chen
All other options checkbox have a space between the checkbox and their label.
2013-04-15Fix typo in variable nameJehan-Guillaume (ioguix) de Rorthais
It only concerns an fatal error message, no bad impacts
2013-04-15Update/Fix HistoryJehan-Guillaume (ioguix) de Rorthais
2013-04-14Mark PPA release 5.1REL_5-1-0Robert Treat
2013-04-14Review/Update BUGS CREDITS HISTORY and TODO before releaseRobert Treat
2013-04-11change chinese translation of "null" and "empty"Hans Chen
2013-04-11fixed a minor bug of Chinese UTF8 translationHans Chen
2013-04-05Instanciate $plugin_manager from login.php script if neededJehan-Guillaume (ioguix) de Rorthais
This answers the question in commit message: 7d89d7cca40b5a8c3ac1874436630993f518410c. When the script require a database connexion and the user must login, or in some cases of some other related errors, we ar eincluding the login.php script and exit immediatly. The login.php script requires the $plugin_manager, but it is instanciated AFTER the connection codeblock (see commit 7d89d7cc), leading to a FATAL error.
2013-04-05Add try/catch blocks around plugin instanciation so they can throw an ↵Jehan-Guillaume (ioguix) de Rorthais
exception if needed. This is usefull if a plugin don't want to start for some reasons. Throwing an exception from the plugin constructors allows to remove this plugin entirely during the script execution.
2013-04-05plugin report: Remove non used global var in constructor.Jehan-Guillaume (ioguix) de Rorthais
2013-04-05Instantiate plugins AFTER connecting to the db.Jehan-Guillaume (ioguix) de Rorthais
This allows plugins to use the connection from their constructor if the script created it, dpeending on $_no_db_connection global variable. This revert commit b43084e022695d6b506799a1815fb4735bd57d13. I did a few tests, mainly on intro page, but couldn't find the bug this commit tried to fix...
2013-04-04Add plugin hook 'logout'.Jehan-Guillaume (ioguix) de Rorthais
Allows to perform actions before beeing logged out.
2013-03-26Add plugin hook 'head'.Jehan-Guillaume (ioguix) de Rorthais
Allows to add tags in <head /> from plugins
2013-03-26reword information around statistics collector. based on bug report SF #3602305Robert Treat
2013-03-26fix typoRobert Treat
2013-03-26Fix incorrect modification of bytea data when updating rows that contain ↵Robert Treat
bytea columns. Based on the POC patch from ioguix. This fixes SF Bug # 3243916.
2013-03-23reword information around statistics collector. based on bug report SF #3602305Robert Treat
2013-03-23fix typoRobert Treat
2013-03-20Merge pull request #11 from xzilla/masterRobert Treat
fix issues with bytea columns. with help and testing from ioguix, Marek Černocký, and Ian Barwick
2013-03-15Fix incorrect modification of bytea data when updating rows that contain ↵Robert Treat
bytea columns. Based on the POC patch from ioguix. This fixes SF Bug # 3243916.
2013-03-05Fix a PHP warning about "Undefined index"Jehan-Guillaume (ioguix) de Rorthais
We must keep track of the nohistory parameter between each call of display.php.
2013-03-05Fix navlinks when browsing results from a ReportJehan-Guillaume (ioguix) de Rorthais
Navlinks hadn't report related parameters set. So when clicking on expend/collapse or refresh, the link just ignores we where browsing a report result set. In consequence, the trail and navlinks in the printed page where broken.
2013-03-05supress potential "Undefined index" noticesIan Lawrence Barwick
2013-03-05Small correction in Report plugin README fileJehan-Guillaume (ioguix) de Rorthais
2013-03-05add README file for Reports plugin with brief explanation of functionalityIan Barwick
2013-02-20Fix multiple bugs related to GPC parameters pollution from codeJehan-Guillaume (ioguix) de Rorthais
Was introduced by me in e1a5b9c54f3ea112a0ce5b2f0f3a0ace9583a354 while trying to make parameter more plugin friendly. display.php code default code use a defined set of GPC parameter and make them persitent between two call (while paging or sorting data). Any other parameter is ignored and doesn't survive a new call. This patch attempted to make plugin specific GPC parameters persistants, but was making ALL parameters persitants, introducing a bunch of bug. This one revert part of this previous patch but keep the small house-cleaning.
2013-02-01Update DEVELOPERS file with information about git repositoryIan Barwick
2012-12-03Merge pull request #9 from xzilla/masterRobert Treat
fix problem with autocomplete on text FK fields
2012-11-28Fix an issue with population of FK fields using autocomplete.Robert Treat
The fix comes from a comment by Dmytry Scherbina in a pull request originally submitted by Jakob Klein.
2012-11-27Fix queries reading pg_shdescriptionMagnus Hagander
These queries need to be classoid qualified, so they work when there are multiple objects with the same oid but of different classes. (Which can always happen, but is a lot more likely to happen after a cluster has been pg_upgrade'd)
2012-11-23don't try and escape nulls, which leads to dangling x values. fixes ↵Robert Treat
Sourceforge Bug ID: 3579602.
2012-11-04Fix bug while browsing a table, reported by Karl O. PincJehan-Guillaume (ioguix) de Rorthais
When a table has no uniq key, it was showing the Action head, but not associated column in data body.
2012-11-04Fixes PHP 5.4 Strict errorsJehan-Guillaume (ioguix) de Rorthais
2012-09-30Set language if all other tries failed. Reported by Karl O. PincJehan-Guillaume (ioguix) de Rorthais
2012-09-30Fix PHP notice when server group is not set, reported by Karl O. PincJehan-Guillaume (ioguix) de Rorthais
2012-09-30Fix PHP notice on database privilege pageKarl O. Pinc
Schema is not set at database level...By Karl O. Pinc modified by me.
2012-09-24Add global config pre-requist for selenium tests in tests/selenium/READMEJehan-Guillaume (ioguix) de Rorthais
2012-09-23Fix miscs tests in the admin functionnals testsJehan-Guillaume (ioguix) de Rorthais
2012-09-23Fix autovacuum add/edit with 8.1Jehan-Guillaume (ioguix) de Rorthais
Autovacuum under 8.1 doesn't has vacuum_freeze_min_age and autovacuum_freeze_max_age.