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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-05-05 02:55:35 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-05-05 02:55:35 +0400
commitcb346a4546a53bdc5054129d3331470cb3a447fc (patch)
tree155a924d3e86b7869c89022e3fbf19ca7be2ce2f /plugins/VisitsSummary
parent92da6b8181282800f4f28cae77d776b67540b477 (diff)
- ADDED search field below data tables is now using the regular expression syntax. For example, a search for "google|yahoo" would match all rows containing "google" or "yahoo". All search strings containing any of the special characters from this list: . \ + * ? [ ^ ] $ ( ) { } = ! < > | must be escaped with a back slash, eg. if you want to search for keywords containing "piwik!" you would search for "piwik\!".
- ADDED new configuration option: default number of rows returned in API responses "API_datatable_default_limit = 50" - REMOVED the automatic generic filters. The limit and sort and safe decode are applied by each module when necessary. - removed exact match filter. Now all searches are using regular expressions syntax. Exact match can be done using ^exact search here$ - fixed notice when natural sort on a non existing column - fixed CSV export for datatable_array - clarified code for plotting multiple lines in an evolution chart - FIXED #624 Added icon "save as image" below all graphs (next to the Export icon) - moved all JS functions into the piwikHelper static class - added example in ExampleUI plugin to plot only visits from google and yahoo! in 4 lines of code - added message when flash is disabled and graph not showing, linking to piwik faq. - added expressInstall.swf feature
Diffstat (limited to 'plugins/VisitsSummary')
-rw-r--r--plugins/VisitsSummary/Controller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/VisitsSummary/Controller.php b/plugins/VisitsSummary/Controller.php
index 48d43d97aa..ab648ada62 100644
--- a/plugins/VisitsSummary/Controller.php
+++ b/plugins/VisitsSummary/Controller.php
@@ -36,7 +36,7 @@ class Piwik_VisitsSummary_Controller extends Piwik_Controller
"&format=original".
// we disable filters for example "search for pattern", in the case this method is called
// by a method that already calls the API with some generic filters applied
- "&disable_generic_filters=true";
+ "&disable_generic_filters=1";
$request = new Piwik_API_Request($requestString);
return $request->process();
}
@@ -45,7 +45,7 @@ class Piwik_VisitsSummary_Controller extends Piwik_Controller
{
$requestString = "method=VisitsSummary.getVisits".
"&format=original".
- "&disable_generic_filters=true";
+ "&disable_generic_filters=1";
$request = new Piwik_API_Request($requestString);
return $request->process();
}