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
2014-08-152.5.02.5.0Matthieu Aubry
ça envoie du gros
2014-08-15refs #5936 make sure to remove the goals table in case it still exists. this ↵Thomas Steur
one is located in the goals plugin now and was moved in 2.3 or 2.4
2014-08-15no need to set the second param so we make sure the default value of clear ↵Thomas Steur
all files is used which is -1 for newer versions and 0 for older versions
2014-08-15added possibility to invalidate xcache if possibleThomas Steur
2014-08-15reset wincache opcache if used on windowsThomas Steur
2014-08-15make sure to clear all caches after an update, it is not enough to do this ↵Thomas Steur
after copying the new files to Piwik as there might be files that are removed after executing the updates
2014-08-15before including a file make sure it exists... makes the whole cache kinda ↵Thomas Steur
needless but avoid a warning if a server's APC is not configured correctly for a few seconds/minutes after updating
2014-08-14clear php caches if possible after updating piwik to 2.5.0 to make sure no ↵Thomas Steur
file is still in cache
2014-08-14better clear all filesThomas Steur
2014-08-14make sure to delete tracker cache after removing the previous files although ↵Thomas Steur
this should be done after updating anyway.
2014-08-142.5.0-rc32.5.0-rc3mattab
2014-08-14better code [skipci]Thomas Steur
2014-08-14refs #5936 remove no longer needed files in case they were not included in a ↵Thomas Steur
future update
2014-08-14wondering if this fixes the skipped test?Thomas Steur
2014-08-142.5.0-rc22.5.0-rc2Matthieu Aubry
2014-08-13Better debug output for forum debugging http://forum.piwik.org/read.php?2,117670mattab
2014-08-132.5.0-rc12.5.0-rc1Matthieu Aubry
2014-08-13fixes #5958 When there is an error screen in Piwik (core or in Tracker) then ↵mattab
log to error log
2014-08-13added method again with a better - and more unique - nameThomas Steur
2014-08-13removing this method again for now since the live controller already ↵Thomas Steur
implements such a method and therefore docs generation fails. Also other plugin developers might have already implemented such a method maybe
2014-08-13adding a convenient method to render a template and to assign variables. We ↵Thomas Steur
are always doing the same in the controllers there and this can be simplified this way. So developers do no longer need to know about setBasicVariables(), about the View object etc. Easy! We need to document how developers can extend an admin template (extend admin.twig + block content) and how to extend a regular dashboard template
2014-08-12refs #5988 Add silent fail to prevent error message in safe modemattab
2014-08-122.5.0-b32.5.0-b3Matthieu Aubry
2014-08-12refs #5936 moved some business logic from controller into model which also ↵Thomas Steur
brings the advantage to make it better testable. Controller should be always simple/small... removeGoneFiles() is not really testable as it uses the static filesystem and I did not want to make the code ugly to mock it... Looking forward to dependency injection
2014-08-12refs #5936 added some phpdoc blocksThomas Steur
2014-08-12refs #5936 added many tests for the new filesystem methods to make sure they ↵Thomas Steur
only delete the files they are supposed to do
2014-08-12refs #5936 started to work on removing files from core and the plugins ↵Thomas Steur
directories that are no longer present in the new build
2014-08-11fixes #5969 - added sputnik.rusgiehl
2014-08-11refs #5820 added some tracker tests to make sure it works well with the ↵Thomas Steur
dimensions
2014-08-11refs #5820 added some tests for reports and columns refactoringThomas Steur
2014-08-11Merge pull request #5962 from piwik/travis_systemMatthieu Aubry
Created unified system for running tests in travis for Piwik Core and any Piwik plugin.
2014-08-10Trim URL before attempting to download itmattab
will prevent issues eg http://forum.piwik.org/read.php?2,118158
2014-08-10Created unified system for running tests in travis for Piwik Core and any ↵diosmosis
Piwik plugin. System includes a console command (generate:travis-yml) that generates a .travis.yml file for a plugin or core. The travis file will check in travis if it needs to be updated, and if so it will fail the build and tell the user. If a specific command line option is specified supplying a github user token, the .travis.yml file will be updated within travis automatically. Notes: - comments and non-travis sections will be preserved - includes logic for plugins to test themselves against latest stable version instead of just on master - the system is primarily controlled by environment variables. developers can change/add variables in .travis.yml and the auto-updating will preserve the changes.
2014-08-08refs #5958 add http error code 500 header in case of piwik errors.mattab
Could we also add a call to error_log to log in the error.log ? (we cannot use Log::debug or so as the logger may not be initialised yet)
2014-08-08refs #5180 if --piwik-domain is not set use --url as host. I am not sure if ↵Thomas Steur
I understand the problem fully but this should fix it I reckon
2014-08-07Merge branch 'master' into 5896_add_generic_filters_to_arraysThomas Steur
2014-08-06refs #5896 make sure jsoncallback is not applied twice and it should be ↵Thomas Steur
always applied for arrays
2014-08-06refs #5926 move reports to exampleReportThomas Steur
2014-08-06created an exampleTracker plugin which is disabled by default so those ↵Thomas Steur
columns will not be installed
2014-08-06refs #5896 fix report limit testThomas Steur
2014-08-06refs #5896 this fixes some testsThomas Steur
2014-08-06refs #5896 tests are showing converting an array to a dataTable and run the ↵Thomas Steur
filters on it will not work. Instead run the filters directly on the array. Therefore, to not have duplicated code the dataTable and row can be now treated as an array and we access them like an array in the ColumnDelete filter which will be for now the only filter is applied on arrays
2014-08-06refs #5896 added a couple of tests and fixed some issuesThomas Steur
2014-08-06refs #5896 easier check for dataTablesThomas Steur
2014-08-06refs #5896 DataTableInterface includes SimpleDataTable which is apparently ↵Thomas Steur
not supposed to render anything. This should fix many tests
2014-08-06refs #5896 this should actually make it possible to use generic filters on ↵Thomas Steur
arrays
2014-08-06refs #5896 started to move rendering code from response builder in other ↵Thomas Steur
classes which also allows plugins to define their own render formats
2014-08-06refs #5896 by converting an array to a dataTable the generic filters would ↵Thomas Steur
work. wondering if it fails any test
2014-08-052.5.0-b2 with working All websites dashboard2.5.0-b2mattab
2014-08-04Hide notice "undefined _name"mattab