The SOAP service seems to be down for quite some time and it is not
mentioned anywhere on Mimer website.
Signed-off-by: Michal Čihař <michal@cihar.com>
There is one rule which needs to pass more values to format string and
the code did not properly handle this. Now evaluating params and passing
them to vsprintf to process the format string.
Signed-off-by: Michal Čihař <michal@cihar.com>
This patch completely implements the feature requested and it modifies 4
existing files and adds one extra Javascript file. The existing system for
one column sorting has been refactored to be used for multicolumn sort.
Files messages.php and makegrid.js where modified to add the tool tip.
File sql.php was modified to add the import statement for the newly added JS
file.
The newly added columndelete.js is responsible for shift deleting the columns.
It gets the url of the link that was shift clicked and removes the name of the
column which we want to remove from the order by clause.
Finally, most of the crux of this feature request is implemented through
changes to the DisplayResult.class.php. 4 methods of this class have been
refactored to accomodate the required change. getsortparams() which process
the order by clause text remains the same, just the output parameters have
been turned into a array for each order by clause column. isInSort() has been
modified to check multiple order by clauses. The smart ordering feature in
to form a new function makeURL, which makes the url for multiple sorted table's
header's button's targets.
Signed-off-by: Aditya Sastry <ganeshaditya1@gmail.com>
PHPUnit now uses these to list code which is covered and was not listed
in @covers, what produces quite a lot of errors. I don't think we really
need to explicitely list those directives.
Signed-off-by: Michal Čihař <michal@cihar.com>
The HHVM test runner runs the unit tests in parallel. Currently some tests
fail because not all the dependencies are properly included.
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
These tests were failing when run individually since the constant was
not defined. This patch defines the constant if it doesn't exist.
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
These tests were failing on HHVM because of the default 3 second timeout.
Yes, HHVM is supposed to be faster, but there's a "warmup" time for scripts
in JIT mode (which is on by default). I suspect that's why they're failing.
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
These tests were failing on HHVM because of the default 3 second timeout.
Yes, HHVM is supposed to be faster, but there's a "warmup" time for scripts
in JIT mode (which is on by default). I suspect that's why they're failing.
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
The HHVM test runner runs the unit tests in parallel. Currently some tests
fail because not all the dependencies are properly included.
This is similar to 607cb3b0b3
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
The HHVM test runner runs the unit tests in parallel. Currently some tests
fail because not all the dependencies are properly included.
This is similar to 659efe1a88
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
The HHVM test runner runs the unit tests in parallel. Currently some tests
fail because not all the dependencies are properly included.
This is similar to 840f7b1215
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
The HHVM test runner runs the unit tests in parallel. Currently some tests
fail because not all the dependencies are properly included.
This is similar to 1d58392622
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
The HHVM test runner runs the unit tests parallelly. Currently some tests
fail because not all the dependencies are properly included.
This is similar to this commit 840f7b1215
Signed-off-by: Jeff Chan <jefftchan@gmail.com>
As per discussion in mailing list, another object is used to check for file permission while global object remains same!
Signed-off-by: A V Minhaz <minhazav@gmail.com>
The constant used to load config file i.e CONFIG_FILE was config.inc.php while it did not exist in code base, which was causing two similar test-case with no config-file.
CONFIG_FILE has been replaced with "config.sample.inc.php" which can be tested for.
Signed-off-by: A V Minhaz <minhazav@gmail.com>