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/js
AgeCommit message (Collapse)Author
2009-11-16add .rpm, .deb, and .dmg file extensionsvipsoft
2009-11-01refs #995 - also handle .bz and .tbz (e.g., still used by freebsd ports)vipsoft
2009-10-23refs #708 - add setCustomUrl(url) to override document.location.href (default);vipsoft
set action_name to document.title (default); add alias for window.location.hostname (for yuicompressor); rename private method, getWebBug(), to logPageView() for consistency; jslint 2009-10-04 ("The Good Parts")
2009-10-21piwik.js: revert [1508] and enhance to accept all these variations:vipsoft
- file.zip - file.zip?key=value - script?name=file.zip - script?name=file.zip&key=value - script?name=file.zip#anchor
2009-10-20fix getCookie() implementation; thanks Ralfvipsoft
2009-10-19fixes #995 - add bz2 (and tbz2) to list of recognized download extensions;vipsoft
fix regression in [1488], where qunit no longer defines url() helper function; fix bug in getLinkType() where it could match an extension in url params (false positive); fixes #1007 - workaround Opera 9.22 parse bug, replacing // with new RegExp() syntax
2009-07-23fixes #875 - JavaScript error with IE6 and navigator.javaEnabled as rvaluevipsoft
2009-07-20fixes #857 - add Silverlight and Google Gears detection; revert #744 & #683, ↵vipsoft
restoring Java and Quicktime detection given #852. Kept "Cookie". AIR not detectable.
2009-07-19fixes #852 - disabled ActiveX plugin detection in IEvipsoft
2009-07-19refs #816 - added setDownloadClasses() and setLinkClasses() for consistency ↵vipsoft
with setIgnoreClasses(), refactoring, and additional tests
2009-07-01Add svn:keywords Id to .php files in core, plugins, and jsvipsoft
2009-06-28Fixes #524 - add standard Piwik header to .php files in core & plugins, withvipsoft
the exception of those in core/Updates/.
2009-06-19Fixes #814 - guard against:vipsoft
addListener(clickable_non_anchor_element_with_no_anchor_element_ancestors)
2009-06-16Clear svn:executable on files.vipsoft
2009-06-14Minor changes for JSLint 2009.06.12.vipsoft
2009-06-14Replace outer try..catch with lighter (and shorter) if..then.vipsoft
2009-06-13refs #778 - fix broken unit test and de-lintvipsoft
2009-06-13refs #778 adding the new Javascript Tracking API function: trackGoal to ↵matt
manually trigger a goal. Example usage: piwikTracker.trackGoal(idgoal, [customRevenue], [customData]); This can be used on external websites, simply give them the Piwik JS tracking tag, remove trackPageView and enableLinkTracking, and add the trackGoal call. Marc, please let us know if you need more details to write the tutorial/documentation.
2009-06-12Fixes #785 - omit return value -- default action is implied vipsoft
(accommodates IE's handling of poorly written JavaScript) The right way to prevent the default action with multiple click handlers: {{{ element.onclick = function (e) { e = e || window.event; if (e.preventDefault) e.preventDefault(); else e.returnValue = false; return false; } }}}
2009-06-11refs #778 - implement trackGoal() on client-sidevipsoft
2009-06-06refs #355 - accommodate malformed URIs that contain an illegal space vipsoft
after the pseudo-protocol
2009-06-02Add js/README and set default title to ''.vipsoft
2009-05-31refs #355 - minor changes per reviewvipsoft
2009-05-28fixes #355 - OO version of piwik.js which no longer modifies DOM;vipsoft
remove misc/testJavascripTracker (interactive tests); add tests/javascript (QUnit unit tests); fixes #661 - use click event instead of mousedown; fixes #549 - define your own download/outlink tracking classes; fixes #82 - add hook interface for module