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
path: root/core
AgeCommit message (Collapse)Author
2018-01-10transifex project name changedsgiehl
2018-01-06API: when an invalid format is specified, keep the error message shorter ↵Matthieu Aubry
(#12401) so we do not show the stack trace in that case, follows up https://github.com/piwik/piwik/pull/12357 eg on https://demo.piwik.org/?module=API&method=VisitsSummary.getVisits&idSite=1&period=day&date=last10&format=xmls&token_auth=x
2017-12-273.3.0-b13.3.0-b1Matthieu Aubry
2017-12-14Show trace in log message only if enabled. (#12357)Thomas Steur
2017-12-13Improves truncate twig filter (#12347)Stefan Giehl
* respect encoded entities in truncate filter * adds some simple tests
2017-12-11suppress warnings that might occur in usort for some php versionssgiehl
2017-12-07remove unneeded comparrisonThomas Steur
2017-12-07Respect maintenance mode when archivingThomas Steur
2017-12-063.2.1 :rocket:3.2.1Matthieu Aubry
2017-12-043.2.1-rc13.2.1-rc1Matthieu Aubry
2017-12-04Fix integrity check (#12323)Stefan Giehl
2017-12-033.2.1-b33.2.1-b3Matthieu Aubry
2017-12-03Several fixes/improvements to angular period selector (#12319)Benaka
* If a period is filtered out, the result of the periods array becomes an object which breaks the period selector which expects an array. * Use $onInit instead of directive constructor. Seems angular.js silences errors when this is done. * Parse previousN/lastN dates correctly in angular periods service. * Parse periods using piwikPeriods client side, since we cannot assume a date range. Also if an invalid is used for period/date, display ERROR in the period selector. * Angular will swallow errors from datepicker.parseDate, so add a console.log for developer sanity + make sure period selector has consistent state even when period/date values are invalid (& result in failed date parsing). * Update misc/log-analytics submodule to latest.
2017-12-01New "Event URL" segment `eventUrl` to segment on any Segment URL (#12236)Matthieu Aubry
* New "Event URL" segment `eventUrl` to segment on any Segment URL Useful for many use cases for example: * Creating Custom Reports such as "Top page URLs by Event action" * Segmenting by Event URL and view events triggered on a specific Page URL * Fixes #11131 Action URL segment could filter both Page URLs OR Event URLs (as advertised originally in the 2.16.0 changelog but it wasn't actually fully working yet) * fix typo no capital letter * remove column type to prevent new column being created in the log_link_visit_action table * set correct action type for segment eventUrl * modify test * eventUrl needs action data * fix suggested values for eventUrl * update test files * event url is stored without protocol * update test file
2017-12-01Add possibility to restrict piwik access by ip (#12242)Thomas Steur
* add possibility to restrict piwik login by ip * better whitelist implementation * move classes to corehome * better error message * better config * make sure ips can be overwritten via DI * fix ui tests
2017-11-30Show shortcut help screen when pressing `?` (#12283)Stefan Giehl
* Adds help screen for shortcuts * Dynamically create shortcut summary by using new js method piwikHelper.registerShortcut * Update CHANGELOG.md
2017-11-293.2.1-b23.2.1-b2Matthieu Aubry
2017-11-24Use consistent HTML email body for all scheduled reports (HTML, PDF & CSV) ↵Benaka
(#12233) * Extract mail configuring parts of sendReport method & write tests for them. * Use twig in AttachedFileReportEmailGenerator. * Extract header/footer of html scheduled report email into re-usable View subclasses & use for PDF/CSV emails. * Fixing test failures. * Integrationt est
2017-11-203.2.1-b13.2.1-b1Matthieu Aubry
2017-11-20Improve serialize dataTable performance (#12289)Thomas Steur
* Improve serialize dataTable performance This seems to improve the performance of serializing a data table which is useful when archiving. In my case it made the archiving of a monthly archive twice as fast from about 120 seconds down to like 70seconds. * remove no longer needed variable * faster check whether an array key is set It is known that array_key_exists is quite a bit slower than `isset`. As this is executed easily a few million times this makes a difference in performance but here `array_key_exists` and `isset` work the same in logic as we never set `$consecutiveSubtableIds[$id]=null` * Assignment should be no longer needed as passing by reference
2017-11-20Small performance improvements in ArchiveProcessor (#12288)Thomas Steur
There is no need to recursively iterate over all dataTables, when there is no column to rename.
2017-11-20Mention that old report data can be invalidated using the new ↵Matthieu Aubry
InvalidateReports plugin (#12286) * Minor changes to wording * Add a mention to the InvalideReports plugin
2017-11-20 Log on DEBUG level all SQL archiving queries (#12257)Matthieu Aubry
As long as it does not create performance regression or impact, it would be really useful to have this by default in Piwik, makes it useful to troubleshoot archiving problems without having to patch this file and uncomment this logger line.
2017-11-20set path when checking for integrity (#12022)Stefan Giehl
2017-11-20If you're using Piwik behind a reverse proxy with a different path like ↵user121216
"rewrite ^/piwik/(.*)$ /$1 break;" (nginx.conf), you can provide a header "proxy_set_header X-Forwarded-Uri /piwik;" which will be considered to the current script name. (#12011) It's necessary, because the redirect after login and links e.g. the logo are not working correctly without.
2017-11-20Issue the CORS header (Access-Control-Allow-Origin) also on Tracking API ↵Matthieu Aubry
requests (#12207) * Issue the CORS header (Access-Control-Allow-Origin) also on Tracking API requests * Move CORS code to the Tracking API endpoint file
2017-11-14Move list of ignored files for integrity check to config.php (using DI) (#12274)Stefan Giehl
2017-11-13Show update notification to super users only (#12224)Peter Boehlke
* Introduce config setting to show update notifications to superusers only. Fixes #7930 * By default, all users should see the update notification * Changed description of config param * Updates changelog
2017-11-10Disallow indexing for all pages doing a redirect (#12263)Stefan Giehl
2017-11-06added $_COOKIE to RequestSet environmentMichael Heerklotz
2017-11-02Merge branch '3.x-dev' of https://github.com/piwik/piwik into add_cookie_to_envMichael Heerklotz
2017-10-20Fix comment for Date::getUtcOffset (#12210)Stefan Giehl
2017-10-16Convert period selector to angular & allow plugins to add periods to the ↵Benaka
frontend (#11873) * Add generate:angular-component command to generate an angular component. * Do not modify Date prototype. * Move period selector code from calendar.js to new angular directive (just move, no refactoring). * Extract date picker code from period selector code and put into new directive. * Extract range picking code into separate component than period selector. * Extract single period calendar to separate component & extract period specific functionality to new extendable periods service. * Fixing regressions in period selector behavior. * Move bulk of period selector code from directive to controller, & fix variable name in date range picker template. * Fix issue w/ yesterday date value, remove need to give period selector directive translations and make sure periods can be extended in the frontend. * Make sure period selector still works outside of an angular routing context (ie, in embedded dashboard). * In period selector UI test, hide ajaxLoadingCalendar using CSS since it is now managed by angular. * Make sure selected period highlighting changes immediately after selecting, even if loading a new page. * Put period selector top level element ID & classes on correct elements to ensure certain styles work properly. * Make sure selected period text changes immediately after selecing period, even if loading a new page or changing the URL. * Make sure range start/end changes immediately when a period is selected & selected period date range stops being highlighted immediately when a range period is selected, even if loading a new page. * Updating expected screenshots. * Updating screenshots. * Assorted fixes for period selector refactor. - Filter out invalid period labels (can happen if INI config for allowed periods is incorrect). - When determining display text for range, don't try to format the startRangeDate/endRangeDate vars, they're both strings. - Use correct selector when closing period selector. * Set global piwik date/period values on location change, outside of period selector component. * Do not skip parsing date if it does not start with an int (since the JS can handle today/yesterday/now). * Assorted fixes for period selector refactor: - use $onChanges instead of watches in datepicker (watches get triggered every time, $onChanges doesn't) - don't use arrays for selected/highlighted dates (for some weird reason, changing one of these arrays results in angular thinking it changes 3 times instead of once) - don't redraw on triggered mouseover events (something triggers mouseover when a date is selected, probably jquery datepicker) - draw after a setTimeout when a date is selected so our drawing occurs after jquery datepicker draws * Achieving smoother rendering for period selector by removing click handlers jquery datepicker adds. Also fixed bug where selecting the current period type reset the view date for the date picker. * Bound range date in period selector by piwik min/max date, so inferred dates will always be within allowed pickable dates in picker. * Removing ES6 used by accident + fix for issue when switching from non-year to year period (ui-datepicker-current-day class does not get removed). * Fix for angularjs one way binding quirk: initial property value is set before $onInit not during construction. * Avoid an exception when a date input in the date range picker is empty. * Split up change/keyup event to solve strange race condition in IE 10 on browserstack. * Change period selector "click again" tooltip to "double click". * Remove tabindexes > 1 so period selector control can be tabbed through. * Show visual cue for invalid dates in date range picker. * Only hide period option tooltip if period is active period, not if period is selected period. * In period selector, disable apply button if range is invalid. Also fix case when \$.datepicker.parseDate returns null instead of throwing.
2017-10-16Even more HTTPS links (#12161)Lukas Winkler
* http://piwik.org -> https://piwik.org * more HTTPS URLs * some more HTTPS URLs * test README * don't show "Plugin Hompage" for Piwik plugins * fix tests * compile minified js (hope I didn't break anything) * some more small changes * fix UI test * comment length in piwik.js changed due to https links * fix test * update ui file * update submodule
2017-10-123.2.0 release!3.2.0Matthieu Aubry
2017-10-123.2.0-rc23.2.0-rc2Matthieu Aubry
2017-10-093.2.0-rc1Matthieu Aubry
2017-10-063.2.0-b43.2.0-b4Matthieu Aubry
2017-10-06Fix bugs in table sorting query builder (#12154)Thomas Steur
* fix bugs in table sorting query builder * fix tests
2017-10-05Remove the word Piwik from CSV download (#12150)Thomas Steur
Remove the word Piwik from CSV download filenames
2017-10-043.2.0-b33.2.0-b3Matthieu Aubry
2017-10-04force using utf-8 as charset for htmlentities/htmlspecialchars (#12135)Stefan Giehl
2017-10-04Fix reports are not cached per site (#12148)Thomas Steur
Because of the Reports.addReport and Reports.filterReports events, reports may be different per website. However, currently, we cache only plugin aware. For now I try to detect idSite based on that parameter
2017-10-04Make it possible to show a header message for datatables (#12146)Stefan Giehl
* Make it possible to show a header message for datatables * update changelog * add comment that messages will be printed raw
2017-10-03Better segment editor and fixes (#12040)Thomas Steur
* column tweak * fix install * more tweaks * rename column to dimension * various fixes * added new control expandable select * starting to refactor segment selector * make segment editor work again * use translation keys * defined some metrics * set types * simplify * simplify * fix join generator * add possibility to use custom join table names when using query builder and it uses an inner query * fix bug in query selector when selecting same field name from different tables twice * more metadata * more tweaks * improve selector * add possibility to use custom entity names * also processed archived metrics * generate sql filter, suggested values callback, and accept values automatically for columns with enums * several tweaks * focus search field when opening it * various tweaks * added missing method * format and fix more metadata * more fixes * better definition * define custom filter * fix definition * fix various tests * fix more tests * fix bug in logquery builder * fix referrerurl segment was missing * fix some tests * fix more tests * add group * refactor for better definition * fix a bug in log query builder when similar columns are used in archiver * add goal metrics * various fixes * make datatable row more flexible * various fixes and visualization enhancements * simply segment editor and make it smaller * remove trailing comma * various fixes and added new dimension * fix formatting of returning customer * added missing primary key * fixes * various fixes and improvements * make sure to update segment definition when selecting a value from auto complete list * various fixes and more metrics * more metrics * more dimensions and fixes * fix some tests * fix some integration tests * update submodule * fix some system tests * fix ui tests * trigger new test run * fix more ui tests * fix system tests * update submodule * fix categories * sort segments by category for more consistency * add custom variables * some translations and fixes * add minute segment * more segments * added plurals * added some docs * fix test * fix tests * fix tests * added suggested values * fix some tests * various fixes * fix more tests * allow to select segments on any site * make sure to include file * added doc block * fix some system tests * fix most system tests * fix ui test * fix system test * adjust examples * added more tests and docs * no metrics for these dimensions * added developer changelog and made some classes public api * some fixes for entity names * add possibility to set format metrics in test * more consistency in defining the name * get idsites only if provided * fix integration tests * added another segment for visit start hour and visit start minute * more clear name for segment * use old segment name to not break bc * various fixes * more test fixes * fix no suggested values for new segment * add event value * for boolean dimensions only sum metric * update available widgets when updating reporting menu * Add new segments in developer changelog + typo * fix system tests * fix screenshot test
2017-09-26Better fetching of saved report parameters by report ID (#11983)Thomas Steur
* Better report parameter fetching * prefer a unique report id * add method to get id * removed code that is supposed to be in different PR
2017-09-263.1.2-b2\3.1.2-b2Matthieu Aubry
2017-09-26Use mbstring proxy methods (#12104)Stefan Giehl
* Use mbstring proxy methods * Avoid using strtolower/strtoupper if mbstring is not available to prevent possible unicode problems
2017-09-26Adding new events triggered when dynamic files are changed by Piwik. (#12106)Benaka
* Adding new events triggered when dynamic files are changed by Piwik. * Fixing broken test in TrackerUpdaterTest.php.
2017-09-22Ignore misc/user/*js files in integrity checker (#12091)Matthieu Aubry