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/libs
AgeCommit message (Collapse)Author
2014-12-22fixes #6890 added symfony vardumper libThomas Steur
2014-12-19Remove line break when logging sqlmattab
2014-12-19refs #6870 use piwik-php-tracker repository as a submoduleThomas Steur
2014-12-12Fixes #6845 -silent noticemattab
2014-12-10Fixes #6835 and remove some phpstorm warningsmattab
2014-11-28Merge pull request #6690 from joostdekeijzer/3581_IPv6_2Matthieu Aubry
Another try to implement IPv6 support
2014-11-27Merge pull request #6625 from piwik/6545Thomas Steur
Do not request live information in case tab is not active
2014-11-23added possible future _v6 functions in GeoIP PECLjoostdekeijzer
2014-11-23IPv6 support (check for PECL GeoIP module)joostdekeijzer
2014-11-15Merge branch 'master' into deprecate_usersettingssgiehl
2014-11-13refs #6577 Return HTTP 204 instead of GIF for JavaScript tracking.Thomas Steur
added a new url parameter send_image=0 to disable sending an image and instead response with a 204 code
2014-11-12Revert "3581 IPv6 support"Thomas Steur
2014-11-11Merge branch 'master' into deprecate_usersettingssgiehl
2014-11-10refs #6545 do not request live information in case tab is not activeThomas Steur
At first I used the window.blur/focus events but noticed it would also stop refreshing if tab is active but browser window is not active. I reckon many people might want to leave the browser open in one window and follow the live visitors while working on something else. That's why we should use the page visibility API which is supported by most browsers (I think not in <= IE9). I used a different library first but noticed it adds many event listeners like mousemove etc and it can make Piwik slow so used the visibility.js library in the end. If someone uses an old browser nothing will change compared to before so that should be ok. In a next version we could initiate a refresh immediately once the browser tab becomes active again.
2014-11-10Merge pull request #6574 from joostdekeijzer/3581_IPv6_supportMatthieu Aubry
IPv6 support in Geo location - Geoip PHP
2014-11-07Merge branch 'master' into deprecate_usersettingssgiehl
2014-11-07refs #6435 fix some more wrong values if a German locale is usedThomas Steur
This caused me a lot of headache. I ran the system tests with a German locale and noticed so many values are completely different. I was looking for places where there were still any float to string conversions and I was wondering why the existing fix didn't work until I noticed the PiwikTracker did not send floats but floats with a comma as decimal point which in the end was casted to ints etc.
2014-11-07refs #6435 had to patch upgrade.php as serialization is broken when using ↵Thomas Steur
locale de_DE... should try to submit a pull request forthis otherwise we will not be able to simply update this lib
2014-11-06Add .gitignore for jquery UI themesmattab
2014-11-06Remove Jquery UI themes from the codebase + added .gitignore so next time we ↵mattab
run bower update they won't be re-added
2014-11-01update geoip-api-php to v1.14joostdekeijzer
2014-10-24KABOOM - removed old UserAgentParser as it is not used anymore!sgiehl
2014-10-21refs #6469 move css file back where it was placed before maybe this makes ui ↵Thomas Steur
tests fast again
2014-10-21refs #6496 fix failing testThomas Steur
2014-10-21refs #6469 with jquery-ui 1.11.1 the UI test run about 80% slower and runs ↵Thomas Steur
out of time very soon. So going back to 1.10.4
2014-10-20refs #6469 looks like we cannot use the jquery-ui.css provided in the bower ↵Thomas Steur
component as we are using a custom theme? this would explain why we were using jquery-ui 1.10.4 and but the css from 1.10.1. Not sure if it is a good idea to use 1.10.1 CSS with version 1.11.2. We will see...
2014-10-20refs #6469 fix screenshot diff does not work, updated changelog, use ↵Thomas Steur
jquery-ui.css from bower
2014-10-20refs #6469 update smartbanner lib and make sure it worksThomas Steur
2014-10-20refs #6469 some initial work for using bowerThomas Steur
2014-10-19Removed the PclZip lib since it has moved to piwik/decompressMatthieu Napoli
2014-10-14refs #6341 for consistency set cookie lifetime to 13 months as wellThomas Steur
2014-10-03Extracted the decompressing classes into a standalone Decompress componentMatthieu Napoli
2014-10-01Fixes #6313 - When a user starts to get a User ID set, then we set this User ↵mattab
ID to the existing visit rather than create a new visit for this user id specifically
2014-09-25refs #5983 updated angularjs from 1.2.13 to latest 1.2.25 which includes ↵Thomas Steur
many bugfixes etc
2014-09-13Merge pull request #6201 from piwik/4996_content_trackingThomas Steur
Content Tracking
2014-09-11refs #4996 fix tracker and clear content target if not set for nowThomas Steur
2014-09-11Add angularjs code to open and close dialogs. Includes logic to update and ↵diosmosis
listen to popover query parameter as broadcast currently does. Uses ngDialog angularjs module.
2014-09-10Merge remote-tracking branch 'origin/master' into 4996_content_trackingThomas Steur
Conflicts: core/Metrics.php js/piwik.js piwik.js tests/javascript/index.php
2014-09-09refs #4996 more bugfixes, more work on cross browser, added possibility to ↵Thomas Steur
track content via php tracker (not tested yet)
2014-09-09Fixes #6175mattab
2014-09-08Refs #3490 Docs, and fix a few tests, more to comemattab
2014-09-08Refs #6109 update docsmattab
2014-09-08Refs #3490 Adding segment 'userId==' + some '&segment=userId==' integration ↵mattab
tests + doc blocks
2014-09-02Refs #3490 Encode user id value before sending to Tracking API.mattab
2014-09-01Refs #3490 User ID Tracker is now working:mattab
- new user_id field to contain the raw user id value - new &uid= tracker api parameter - add userId to Live API output - added integration test
2014-08-26avoid eval() in pChartmattab
2014-08-04Fixes #5407 Define gzopen function as alias of gzopen64 when it appliesmattab
2014-07-08refs #5409 #341 #5349 if a config value contains a dollar sign convert it to ↵Thomas Steur
an html entity to prevent it being interpreted as a PHP variable. This allows us to remove the RAW ini parser flag which causes trouble on some PHP versions as the parser seems to be buggy.
2014-06-19Move tracker proxy logic in js/index.php to js/tracker.php & allow the ↵diosmosis
removal of the comment header in piwik.js (includes test). Also remove @group from static file serve test & fix bug in modified _readfile() proxy.
2014-06-19Add ability to serve only part of a static file. Includes tests for new ↵diosmosis
functionality.