Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-28 | Have PG > 8.1 && <= 9.1 reporting waiting processes on process page. | Karl O. Pinc | |
2013-05-24 | doTree() does not take an argument. | Karl O. Pinc | |
2013-05-24 | Make process screen report information in a way that makes sense in postgres 9.2 | Robert Treat | |
Also add in the waiting option, making it work back to at least 8.1 | |||
2013-05-24 | Add support for user-sent signals. (9.2+) | Karl O. Pinc | |
2013-05-24 | Fix so signals are sent to the right pid. | Karl O. Pinc | |
2013-05-24 | Processes: 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-18 | Explicit support for PG 9.3. | Karl O. Pinc | |
2013-05-18 | Rename PPA version from 5.1 to 5.2-dev. | Karl O. Pinc | |
2013-05-18 | Merge branch 'official' | Robert Treat | |
2013-05-11 | langcheck will give correct instruciton if the language parameter is added ↵ | Hans Chen | |
with php extension | |||
2013-05-11 | Completely udpate chinese utf8 according to english. | Hans Chen | |
2013-04-23 | Cosmetic fix on Vacuum confirmation page for the "Freeze" checkbox | Hans Chen | |
All other options checkbox have a space between the checkbox and their label. | |||
2013-04-15 | Fix typo in variable name | Jehan-Guillaume (ioguix) de Rorthais | |
It only concerns an fatal error message, no bad impacts | |||
2013-04-15 | Update/Fix History | Jehan-Guillaume (ioguix) de Rorthais | |
2013-04-14 | Mark PPA release 5.1REL_5-1-0 | Robert Treat | |
2013-04-14 | Review/Update BUGS CREDITS HISTORY and TODO before release | Robert Treat | |
2013-04-11 | change chinese translation of "null" and "empty" | Hans Chen | |
2013-04-11 | fixed a minor bug of Chinese UTF8 translation | Hans Chen | |
2013-04-05 | Instanciate $plugin_manager from login.php script if needed | Jehan-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-05 | Add 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-05 | plugin report: Remove non used global var in constructor. | Jehan-Guillaume (ioguix) de Rorthais | |
2013-04-05 | Instantiate 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-04 | Add plugin hook 'logout'. | Jehan-Guillaume (ioguix) de Rorthais | |
Allows to perform actions before beeing logged out. | |||
2013-03-26 | Add plugin hook 'head'. | Jehan-Guillaume (ioguix) de Rorthais | |
Allows to add tags in <head /> from plugins | |||
2013-03-26 | reword information around statistics collector. based on bug report SF #3602305 | Robert Treat | |
2013-03-26 | fix typo | Robert Treat | |
2013-03-26 | Fix 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-23 | reword information around statistics collector. based on bug report SF #3602305 | Robert Treat | |
2013-03-23 | fix typo | Robert Treat | |
2013-03-20 | Merge pull request #11 from xzilla/master | Robert Treat | |
fix issues with bytea columns. with help and testing from ioguix, Marek Černocký, and Ian Barwick | |||
2013-03-15 | Fix 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-05 | Fix 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-05 | Fix navlinks when browsing results from a Report | Jehan-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-05 | supress potential "Undefined index" notices | Ian Lawrence Barwick | |
2013-03-05 | Small correction in Report plugin README file | Jehan-Guillaume (ioguix) de Rorthais | |
2013-03-05 | add README file for Reports plugin with brief explanation of functionality | Ian Barwick | |
2013-02-20 | Fix multiple bugs related to GPC parameters pollution from code | Jehan-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-01 | Update DEVELOPERS file with information about git repository | Ian Barwick | |
2012-12-03 | Merge pull request #9 from xzilla/master | Robert Treat | |
fix problem with autocomplete on text FK fields | |||
2012-11-28 | Fix 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-27 | Fix queries reading pg_shdescription | Magnus 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-23 | don't try and escape nulls, which leads to dangling x values. fixes ↵ | Robert Treat | |
Sourceforge Bug ID: 3579602. | |||
2012-11-04 | Fix bug while browsing a table, reported by Karl O. Pinc | Jehan-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-04 | Fixes PHP 5.4 Strict errors | Jehan-Guillaume (ioguix) de Rorthais | |
2012-09-30 | Set language if all other tries failed. Reported by Karl O. Pinc | Jehan-Guillaume (ioguix) de Rorthais | |
2012-09-30 | Fix PHP notice when server group is not set, reported by Karl O. Pinc | Jehan-Guillaume (ioguix) de Rorthais | |
2012-09-30 | Fix PHP notice on database privilege page | Karl O. Pinc | |
Schema is not set at database level...By Karl O. Pinc modified by me. | |||
2012-09-24 | Add global config pre-requist for selenium tests in tests/selenium/README | Jehan-Guillaume (ioguix) de Rorthais | |
2012-09-23 | Fix miscs tests in the admin functionnals tests | Jehan-Guillaume (ioguix) de Rorthais | |
2012-09-23 | Fix autovacuum add/edit with 8.1 | Jehan-Guillaume (ioguix) de Rorthais | |
Autovacuum under 8.1 doesn't has vacuum_freeze_min_age and autovacuum_freeze_max_age. |