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
2013-02-06Removing SVN $, since Git does not provide auto properties.Fabian Becker
2013-01-18Fixes #3687, make sure anonymous user cannot have language set in DB and ↵benakamoorthi
make sure not to use that option if it is already set. git-svn-id: http://dev.piwik.org/svn/trunk@7771 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-05-03added/fixed several doc blocks; fixed some csssgiehl
git-svn-id: http://dev.piwik.org/svn/trunk@6243 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2011-05-05#2373 inline documentation for reports and metricsBeezyT
git-svn-id: http://dev.piwik.org/svn/trunk@4634 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2011-04-15Refs #1478 linking to existing doc pages from the API descriptionsmattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@4454 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2011-04-14Fixes #1478mattpiwik
* Adding one sentence to one paragraph description of each API (feedback on the actual test is most welcome!) * This will be displayed on the API Reference page: http://piwik.org/docs/analytics-api/reference/ that's why it's pretty important :) * Adding table of contents in the API Page git-svn-id: http://dev.piwik.org/svn/trunk@4448 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-12-22refs #1279, refs #1910 - language preference for anonymous users is now ↵robocoder
stored in a cookie; we can't use this workaround for the dashboard layout because of cookie size limits git-svn-id: http://dev.piwik.org/svn/trunk@3514 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-12-21add some error checkingrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@3482 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-12-19fixes #1901, refs #1592 - we can't use mock objects because of static method ↵robocoder
calls, so the wrappers around Zend_Session and Zend_Session_Namespace dummy initialize when executing from php-cli or headless php-cgi; this also addresses the hack by Parallels in their APS scripts git-svn-id: http://dev.piwik.org/svn/trunk@3468 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-12-14Now displaying the language original name + english translation on hover ↵mattpiwik
(title attribute) in the language selector (I was getting confused with Arabic vs Ahmaric, Telugu, Traditional VS Simplified chinese vs Korean vs Japanese, Russian Vs Belarusian and more...) git-svn-id: http://dev.piwik.org/svn/trunk@3443 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-10-28peephole optimization to singletons, i.e., new self vs. $c = __CLASS__; new $crobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@3270 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-08-20refs #1630robocoder
git-svn-id: http://dev.piwik.org/svn/trunk@2968 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-07-30refs #1529 - added/tested replacement glob() function; a missing glob() is ↵robocoder
still a warning git-svn-id: http://dev.piwik.org/svn/trunk@2817 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-07-30quick fixes #1529 - recovers more gracefully if glob() is disabled; ↵robocoder
installer can be run, and it will provide a warning. Piwik will continue to run albeit in a crippled state: - can't change language via selection list - can't list/activate/deactivate plugins - can't run updates git-svn-id: http://dev.piwik.org/svn/trunk@2814 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-06-03refs #1368 - Piwik::prefixTable() is deprecatedrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@2265 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2010-02-10fixes #1122 - per Matt's reviewrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@1832 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-10-15refs #1003 - filter empty translations when counting percentage translatedrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@1503 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-09-08fixes #945 - Piwik sets the session.name to 'PIWIK_SESSID'; ↵robocoder
define('PIWIK_SESSION_NAME', ...) in bootstrap.php to override; session namespaces now prefixed by Piwik_. We regenerate session ID at login/logout to mitigate session fixation attacks. git-svn-id: http://dev.piwik.org/svn/trunk@1460 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-08-23Tweak phpdoc config. Add some missing phpdocs.robocoder
git-svn-id: http://dev.piwik.org/svn/trunk@1431 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-08-22phpdoc cleanup:robocoder
* add @category (Piwik => 'core', Piwik_Plugins => 'plugins') * in core, use @package and @subpackage more consistently to group files/classes; exception is DataFiles/*, PluginsFunctions/*, and SmartyPlugins/* * in plugins, @package is the plugin name * removed '@param none' -- not a phpdoc convention * '@throws' and '@return void' are also not phpdoc conventions, but are widely used elsewhere, e.g., Smarty & Zend git-svn-id: http://dev.piwik.org/svn/trunk@1420 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-08-21LanguagesManager setLanguageForUser() and setLanguageForSession(): rename ↵robocoder
$language param to $languageCode. Piwik::isPhpCliMode() deprecated; moved to Piwik_Common::isPhpCliMode() Piwik_Common::getBrowserLanguage() uses $_ENV['LANG'] if PHP CLI Fixes #749 - Login form changes 1) Lost password form now sends an email with reset instructions and link to a password change form instead of changing the password. 2) Added password change form which requires input of a generated token (valid for 24 hrs). 3) Fix $urlToRedirect handling; refactoring; phpdoc comments; minor reformatting git-svn-id: http://dev.piwik.org/svn/trunk@1415 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-08-18fixes #939 - refactor saveLanguage() from Installation and CoreUpdater ↵robocoder
controllers Added Piwik_LanguagesManager_API::getLanguageForSession() and setLanguageForSession() git-svn-id: http://dev.piwik.org/svn/trunk@1408 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-07-08fixes #803 - remove unnecessary require_once from core, plugins, and parts ofrobocoder
libs. (I didn't touch: open-flash-chart, Zend Framework, and PEAR HTML.) git-svn-id: http://dev.piwik.org/svn/trunk@1296 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-07-01Add svn:keywords Id to .php files in core, plugins, and jsrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@1270 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-06-28Fixes #524 - add standard Piwik header to .php files in core & plugins, withrobocoder
the exception of those in core/Updates/. git-svn-id: http://dev.piwik.org/svn/trunk@1259 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-05-28fixes #743 - optimize include path; refs #631robocoder
git-svn-id: http://dev.piwik.org/svn/trunk@1150 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-03-23- fixed #597 Add new method to languagesManager to show all string of a languagemattpiwik
ps: renamed from getTranslationsForLanguages to getTranslationsForLanguage patch by benoit pouzet git-svn-id: http://dev.piwik.org/svn/trunk@1001 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-03-06- adding api to languages manager to build a "thank you translators" page mattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@969 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-02-27adding german search enginesmattpiwik
fixing small bug when looking up the languages files git-svn-id: http://dev.piwik.org/svn/trunk@925 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2009-01-14fix #483 Use of the internal API in a different domain on the same Server ↵mattpiwik
thanks Anthon for patch! git-svn-id: http://dev.piwik.org/svn/trunk@877 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2008-12-08- cleaning the API/ codemattpiwik
- deleting class Api_Apiable concept not used anymore git-svn-id: http://dev.piwik.org/svn/trunk@826 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2008-10-27- cleaning LanguagesManager & moving code to the APImattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@642 59fd770c-687e-43c8-a1e3-f5a4ff64c105