Commits
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Commits on Nov 22, 2018
-
-
Make the xpath root configurable
Because /data is not always accessible
Commits on Jan 15, 2018
Commits on Oct 30, 2017
Commits on Sep 12, 2017
-
-
Add the 2.7.0
buildSortingSelectSQL()
methodThis is needed for MySQL 5.7+
Commits on Aug 10, 2017
Commits on Jun 27, 2017
Commits on Jun 5, 2017
-
-
Fix php error in lang.pt.php (#182)
There was a missing quote
Commits on May 26, 2017
Commits on Apr 5, 2017
Commits on Mar 10, 2016
Commits on Jul 27, 2015
Commits on Jun 26, 2015
-
-
-
Make sure our formats are never empty
This makes sure we always have something to render. Fixes #170
-
Consume the $lastWhere only once
This fixes some strange issue when the field is only ordered and not filtered. Closes #169
Commits on May 29, 2015
-
-
Use the max date when sorting DESC
This fixes a problem with DESC ordering that was done on the minimum date.
-
Adding SQL filter in the sort clause
This fixes a bug where the sorting would confuse the filtering. Since we need to find which entries gets to be ordered on (to bypass DISTINCT problems) we also need to have the filter in the sort SQL.
Commits on Apr 30, 2015
-
-
In order to implement the new 2.5.x API. This should close #161
-
I started by refactoring the sort SQL generation code duplication (the only difference was the table name). Then I added a sub-query to filter out entries but keep the ordering as requested: this prevents distinct from working bottom-up. Re #169.