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
AgeCommit message (Collapse)Author
2015-03-18Various performance improvements and bugfixes.Thomas Steur
Imporves performance for Archiving and Range dates. Makes all kind of reports faster as well. Fixed bugs in labelFilter, reports total calculation and more.
2015-03-16fixed a couple of bugs in DataTable\Sort.Thomas Steur
* make sure to select correct column (the column value might be false which is valid, meaning column actually exists whereas we assumed before it does not exist) * use correct sort algorithm (if value of first column was false we picked under circumstances a string comparison instead of number) * If we sort by label, use always a string or natural comparison even if the label is numeric
2015-03-11Made for reports faster when flat=1 is used.Thomas Steur
Also replaceColumnNames is now queued again which should bring a performance boost in general.
2015-03-09Run queued filters after generic filters making visualizations much faster.Thomas Steur
2015-03-05this should fix a bug with dbstats since we removed callable columnsThomas Steur
2015-03-05Faster flattening for many reportsThomas Steur
2015-02-16refs #4633 actually it is not a good idea to generate a segment for ↵Thomas Steur
subtables since they can belong to different repots and need different segments
2015-02-16refs #4633 a couple of code improvements eg we do not need to run a filter ↵Thomas Steur
within a filter and run them recursive. not sure if recursive is a good idea though
2015-02-13refs #4633 rename segment filter to segment, fixed a bug re visitTime and ↵Thomas Steur
extracted code into a filter
2015-02-13refs #4633 rename segmentFilter => segmentThomas Steur
2015-02-13refs #4633 added tests for newly added filtersThomas Steur
2015-02-13refs #4633 open segmented visitor log with one click on a rowThomas Steur
2015-01-16phpdoc updateMatthieu Napoli
2015-01-16Missing phpdocMatthieu Napoli
2015-01-14Archiver optimization: gained 800ms in my local test (1.5%)Matthieu Napoli
2014-12-10Fix refactor failmattab
2014-12-10Make sure not to fail in getSubtable()mattab
2014-12-10Tweak exception messagemattab
2014-12-10reuse $row->getSubtable() as much as possible instead of callng ↵mattab
Manager::getInstance()->getTable which can throw exception refs #3414
2014-12-06silence "Warning: json_encode(): Invalid UTF-8 sequence in argument" fixes #6792Matthieu Aubry
2014-12-05Fixes #6562mattab
2014-11-26Fix failed phpstorm refactor.diosmosis
2014-11-25Moving DataTable::getSiteIdFromMetadata to Piwik\Archie\DataTableFactory.diosmosis
2014-11-18Removing TODOs and tweaking existing code.diosmosis
2014-11-18Revert to old CalculateEvolutionFilter for backwards compatibility w/ at ↵diosmosis
least Insights.
2014-11-18Remove PHP 5.3.3 XML response 'normalizing' in system tests.diosmosis
2014-11-17Fixing UI tests (make sure labels are correctly escaped by SafeDecodeLabel).diosmosis
2014-11-17Fix double encode in SafeDecodeLabel filter (only affects > 5.3).diosmosis
2014-11-16Merge branch 'master' into processed_metrics_metadatadiosmosis
Conflicts: core/Twig.php
2014-11-14Make sure all goals IDs present in a DataTable are processed when adding ↵diosmosis
goal specific processed metrics to a DataTable.
2014-11-14Move all Metrics to Columns folder.diosmosis
2014-11-13Move goal translations and metric docs to metric classes from Goals ↵diosmosis
visualization. Allow these values as defaults for translations in visualizations, and fix a bug in GoalsTable where sort was improperly applied if no data was in the data table. Also include in-memory caching for Goals.getGoals API method.
2014-11-12Fixing ViewDataTableTest UI test.diosmosis
2014-11-12Refs #6101, fix sumRowArray error caused by Provider change (GroupBy must be ↵diosmosis
called as ->filter not ->queueFilter since it changes DataTable structure).
2014-11-11when there's a fire, pour a lot of water over it!! fixes #6485mattab
2014-11-11Merge branch 'master' into processed_metrics_metadatadiosmosis
Conflicts: core/DataTable/Filter/CalculateEvolutionFilter.php plugins/UserSettings/API.php
2014-11-11Un-deprecate filters. Can be figured out later.diosmosis
2014-11-11Filling out missing documentation and removing simpler TODOs.diosmosis
2014-11-10refs #6334 fix sorting list of plugins does not work if first value is < 0% ↵Thomas Steur
or > 100%
2014-11-09Fixing more tests.diosmosis
2014-11-08Refactor and deprecate CalculateEvolutionFilter & document some more ↵diosmosis
classes/methods.
2014-11-08Document ProcessedMetric class.diosmosis
2014-11-08Documented Metric class and fixed regression in last commit's refactor.diosmosis
2014-11-08Rename Metric::getColumn to Metric::getMetric and get rid of Metrics\Base.diosmosis
2014-11-08Convert MultiSites/API to use processed metric instead of ↵diosmosis
CalculateEvolutionFilter.
2014-11-07Merge pull request #6610 from piwik/64352.9.0-b7Matthieu Aubry
Fix wrong database values when float representation is not set to English standard
2014-11-07Converted Actions.get API method to use processed metrics.diosmosis
2014-11-07Fixing some tests and removing processed metrics file (no longer used).diosmosis
2014-11-07Rewrite AddColumnsProcessedMetricsGoal filter to use processed metrics ↵diosmosis
DataTable metadata.
2014-11-07Moved processed metrics computation to DataTableGenericFilter, removed new ↵diosmosis
filters & implemented as methods in Report to avoid confusion regarding re-use, allow adding processed metrics as DataTable metadata and use this to rewrite AddProcessedMetrics filter, correct name of Metrics::getMappingFromIdToName function, added placeholder AggregatedMetric class for future, revise Metric/ProcessedMetric hierarchy (add methods for translation/etc.), allow .get API methods to use metadata to automatically figure out which columns to select, get EcommerceOrderWithItemsTest to pass.