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
2014-10-13refs #5940 moved files into a subfolder framework, added autoloader to ↵Thomas Steur
remove duplicated code to load autoload.php and to be able to register more autoloaders (eg for test files) on demand. This I got read of many includes that had to be updated all the time and that had to be updated all the time when moving iles
2014-10-13a few coding style changesThomas Steur
2014-10-12Tweak to log message.diosmosis
2014-10-12small fixsgiehl
2014-10-12some last updates for plugin code coveragesgiehl
2014-10-11some more adjustments for plugin coveragesgiehl
2014-10-11small change to travis.yml for plugin code coveragesgiehl
2014-10-10small cleanup in tests:sgiehl
- renamed code coverage tests units to new structure - removed processed system test files from git, added to .gitignore
2014-10-10contents fixture updatedmattab
2014-10-10more test fixesmattab
2014-10-10Fix one test, 0 looks correct here as it's the last pageview so avg time on ↵mattab
page is 0
2014-10-10Fixed a bug in the GenerateReport commandMatthieu Napoli
It would only generate a report with the same name of the plugin.
2014-10-10Move Fixture.php include before IntegrationTestCase.php include in ↵diosmosis
setup-fixture command.
2014-10-10refs #5940 load test files in different orderThomas Steur
2014-10-10updated submoduleThomas Steur
2014-10-10updated submodulesThomas Steur
2014-10-10we will deprecate old test classes in 4 months and not in 2, simplified test ↵Thomas Steur
run by only allowing short version, added some examples
2014-10-10refs #5940 extending SystemTestCase seems to fix those tests for some reasonThomas Steur
2014-10-10refs #5940 execute file relative from piwik directory and not from phpunit ↵Thomas Steur
dir [ci-skip]
2014-10-10refs #5940 fix tests:run as it worked based on groups before which did not ↵Thomas Steur
really make sense. Testsuite and groups can be combined now if wanted. By default will execute all testsuites after another
2014-10-10Merge branch 'master' into 5940_testRenamingAndCorrectFoldersThomas Steur
Conflicts: plugins/CoreConsole/Commands/TestsRun.php
2014-10-09Instead of throwing exceptions, log a message in tracker.mattab
2014-10-09Fix one more testmattab
2014-10-09Merge branch 'master' into 5940_testRenamingAndCorrectFoldersThomas Steur
Conflicts: tests/PHPUnit/phpunit.xml.dist
2014-10-08Bug fixes to ajax form directive and allow custom data binding for users of ↵diosmosis
ajax form directive (for complex forms).
2014-10-08green buildmattab
2014-10-08Fix a notice when running archive.phpmattab
2014-10-08Fixing a merge-failmattab
2014-10-08Mergedmattab
2014-10-08fixing tests after the provider returns no data rather than unknownmattab
2014-10-08Submodulesmattab
2014-10-08Small twig refactormattab
2014-10-08Fixes #6201 Unknown providers are now shown as "Unknown" instead of "IP"Matthieu Napoli
Furthermore, the link to the FAQ about this is now hidden when `displayLink` is `1`.
2014-10-08Keep development:enable command simpler and include --full option by defaultmattab
2014-10-08Refactorings in ScheduledReports to remove useless indentationMatthieu Napoli
I have refactored the code a bit to make it (hopefully) more readable. I have replaced this: ```php if (self::manageEvent($reportType)) { // do something } ``` By this: ```php if (! self::manageEvent($reportType)) { return; } // do something ``` It's not much but it removes one level of indentation in almost the whole class, which is kind of nice. FYI, this is one of the "object calisthenics" rules.
2014-10-08Simplified a Log::warning() callMatthieu Napoli
2014-10-08Forgot to uncomment commented out code.diosmosis
2014-10-08Add isSubmitting property to piwik-ajax-form directive and make sure child ↵diosmosis
elements can access scope.
2014-10-08Merge pull request #6399 from piwik/angular_formsBenaka
Added angular directive that automates logic for AJAX forms.
2014-10-07Added AJAX form directive for angularjs.diosmosis
2014-10-07#5300 Log when trying to send the same report twiceMatthieu Napoli
2014-10-07run git pull before git commitmattab
2014-10-07Merge pull request #6392 from piwik/bugfix/5300Matthieu Aubry
Fix for #5300: prevent email reports from being sent twice
2014-10-07Merge pull request #6395 from piwik/fix-ui-testsMatthieu Aubry
Fixes the UI tests (admin_privacy_settings)
2014-10-07bug #5300 Prevent email reports from being sent twice for the same periodMatthieu Napoli
2014-10-07Fixes the UI tests (admin_privacy_settings)Matthieu Napoli
There was a notification that wasn't hidden on page load (as it should have been). This is because the JS code that hides it is in jQuery, and is run on the page load. But the message to hide is inside an Angular directive which is being "rendered" on page load. So I suspect that when jQuery tries to hide the span, it doesn't exist in the DOM as the Angular directive hasn't generated it yet. Later, when we click on the checkbox, jQuery can find the span and hide it correctly. This fix is not really pretty but messing with AngularJS from jQuery is not really simple :/
2014-10-07Fixes #4616: Show only the first characters of tokens in the adminMatthieu Napoli
Tokens are shown in full only when we click on it.
2014-10-07Fixes #6138 Links in admin pages are now underlined to be visibleMatthieu Napoli
2014-10-07Fixes #6309 Remove "Website" from the Email subject and form the report title.mattab
2014-10-07Refs #6373 Fix the link to user settings in menumattab