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
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
2015-05-27fix core folder with php-cs-fixer for psr-2fabiocarneiro
2015-03-10Remove deprecated SettingsPiwik::rewriteTmpPathWithInstanceId()Matthieu Napoli
2014-11-30Fixed a merge failureMatthieu Napoli
2014-11-27Merge branch 'master' into tmp-pathMatthieu Napoli
Conflicts: plugins/Installation/SystemCheck.php
2014-11-27Fixes #3147 Add rel="noreferrer" to all outgoing links . This works in ↵mattab
Firefox so far and only for "left clicks". Not perfect, but hopefully other browsers will implement this in the future, as it's a useful privacy enhancing feature!
2014-11-14Merge branch 'di-config' into tmp-pathMatthieu Napoli
Conflicts: core/Session.php
2014-11-14Merge pull request #6587 from piwik/removeHtmlMessageExceptionThomas Steur
Refactor out HtmlMessageException
2014-11-13Moved the `tmp/` path into the config (was hardcoded everywhere)Matthieu Napoli
The `tmp/` path was hardcoded everywhere, which resulted in using `SettingsPiwik::rewriteTmpPathWithInstanceId()` to rewrite it for specific use cases. I've moved that path into the config, and replaced all hardcoded usage (and calls to `rewriteTmpPathWithInstanceId()`) by a `get()` from the container. Getting entries from the container is a bad practice and dependency injection should be preferred, but we do baby steps. When refactoring those classes to DI, we'll replace calls to the container with proper dependency injection. Another thing we'll need to do too is move the hardcoded *sub-path* of `tmp/` (e.g. `tmp/sessions/`) into the config also (but again: baby steps). Another future step would be to remove completely instance ID and let it be handled by a plugin (or by end-user config). Having the `tmp/` path in the config means that plugins or users can override it and know it will be taken into account everywhere in Piwik.
2014-11-07refs #6612 Set default logger level to ERROR so that only real errors break ↵mattab
the archiver (and not simple warnings)
2014-11-04refs #6564 refactored out HtmlMessageException and introduced some other ↵Thomas Steur
exceptions instead
2014-10-28Replace all uses of Piwik_ExitWithMessage (except one) with throwing ↵diosmosis
exceptions & include HtmlMessageException class for exceptions w/ HTML content in their message.
2014-06-10Piwik is a free/libre analytics platform. Refs #4455 GNU Package requirement ↵mattab
to use free/libre instead of open source
2014-05-19Fixes #5181 Renamed methodmattab
2014-05-09Cookie name const refactormattab
2014-05-05fix typomattab
2014-05-05Refs PR #241 Manually close session when redirecting to another pagemattab
2014-05-05Fix typo dbtables -> dbtablemattab
2014-03-21Get Db connection singleton in DbTable session handler upon use instead of ↵diosmosis
storing the connection upon creation.
2014-02-21During tests, we shall load plugins that are in the .gitmodule file ↵mattab
(official plugins found in marketplace), as well as loading those that are in the global.ini.php (official plugins bundled in piwik).
2014-02-21I think it somehow makes sense to start a session in CLI.mattab
2014-02-03Remove all occurences of @package / @subpackage / @category from core/ files.Fabian Becker
refs #4609
2014-02-03Removing occurences of Piwik_ in core/Fabian Becker
* @subpackage is deprecated * @package must only occur once * @package supports nesting (and can match the namespace) refs #4609
2013-10-09Refs #4202 removing functions Piwik_Translate and Piwik_TranslateExceptionmattab
2013-10-08Applying phpstorm code style PSR refs #3771mattab
2013-10-08Refs #4123 Applying phpstorm "Organize imports" on core/* and plugins/* ↵mattab
directories
2013-10-08refs #4123 Removing unused imports (using phpstorm Inspections>Fix feature)mattab
2013-10-07Removed Piwik::log and replace with calls to Log::... functions. Also ↵Benaka Moorthi
changed logging level on travis.
2013-10-01Refs #4133 Fixing archive.php + Logger to work with new workflowmattab
2013-09-30Refs #4133mattab
2013-09-24Remove use of Zend_Registry to hold DB connections.Benaka Moorthi
2013-09-19Moving isPhpCli to Commonmattab
2013-09-16DbHelper groups logic around Db, tables, etc.mattab
2013-09-14Moving PHP/server settings getter/setter to SettingsServer classmattab
2013-09-14Adding Filechecks class for all filesystem checksmattab
2013-09-14Adding Filesystem class which contains file operationsmattab
And factored out code in ServerFilesGenerator.php
2013-09-14ProxyHttp class until I find a better namemattab
2013-07-31Refs #3741 PHP Namespace conversion continued: Tracker classes,mattab
renaming Unzip to Uncompress, Renaming Tracker/Referer to Tracker/Referrer, and few more
2013-07-31Refs #3741 Resuming PHP Namespaces conversion of Piwik core, mostly finished ↵mattab
core/ conversion
2013-07-23Refs #4059 Work in progress: Conversion to use Namespaces of dozen more classesmattab
Removed many Piwik_ functions, in Piwik 2 it is best practise to use the methods calls instead Todo: finish converting core/ classes + convert plugins/ classes to use \Piwik\Plugin namespace + fix build + Merge master
2013-07-20Removing extra namespace \Coremattab
2013-07-18Refactor class Piwik_Common to \Piwik\Core\CommonFabian Becker
Notice that auto refactoring has created a nested namespace. Not sure this is what we want - so we might have to edit those nested namespaces afterwards (I think they don't look so good)
2013-07-18Refactor class Piwik_Commin to \Piwik\Core\CommonFabian Becker
Notice that auto refactoring has created a nested namespace. Not sure this is what we want - so we might have to edit those nested namespaces afterwards (I think they don't look so good)
2013-07-18Refactor class Piwik to \Piwik\Core\PiwikFabian Becker
2013-07-18Refactor Piwik_Config to \Piwik\Core\ConfigFabian Becker
2 steps required: 1. Refactor > Move > \Piwik\Core\Config (uncheck "Create new File") 2. Refactor > Rename > Piwik_Config to Config
2013-03-28Mass conversion of all files to the newly agreed coding standard: PSR 1/2mattab
Converting Piwik core source files, PHP, JS, TPL, CSS More info: http://piwik.org/participate/coding-standards/
2013-03-01More code cleanup and better use of Piwik::logFabian Becker
2013-02-06Removing SVN $, since Git does not provide auto properties.Fabian Becker
2012-12-22Fixes #2997, check for NFS filesystem during system check and if installing ↵benakamoorthi
switch to database sessions. git-svn-id: http://dev.piwik.org/svn/trunk@7681 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-05-27moved another interface to its own file; fixed/added lot of doc blockssgiehl
git-svn-id: http://dev.piwik.org/svn/trunk@6325 59fd770c-687e-43c8-a1e3-f5a4ff64c105