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
2013-07-20Removing extra namespace \Coremattab
2013-07-18Refactor class Piwik to \Piwik\Core\PiwikFabian Becker
2013-06-18triggering buildmattab
2013-06-18triggering buildmattab
2013-06-08fixes #3975Anthon Pang
2013-05-30Thanks Julien for the report! refs #3951mattab
we shouldnt disable cookies when deleting cookies, these are two different things.
2013-05-24Fixes #3951mattab
cheers Peter for finding this bad bug! The new deleteCookies function can be used, whenever new_visit=1 is used, to ensure the cookies are re-created for the new visitor. For example use as: _paq.push(["deleteCookies"]); _paq.push(["appendToTrackingUrl", "new_visit=1"]); put both at the same time. Make sure you remove the "deleteCookies" otherwise. This should fix it! I have updated the faq at http://piwik.org/faq/how-to/#faq_187
2013-05-24Fixes #3953 now detecting campaign parameters within the hash tag as wellmattab
2013-05-07Refs #1700 important: renaming generation_time_ms to gt_ms for keeping ↵mattab
parameters name short. Updated doc at: http://piwik.org/docs/tracking-api/reference/ and http://piwik.org/docs/page-speed/
2013-03-28JSlint piwik.jsmattab
2013-03-27refs #1700 performance tracking in piwik.jsTimo Besenreuther
* by default, send performance.timing.responseEnd - performance.timing.requestStart as generation time with the tracking request * if the performance.timing API is not supported by the browser, don't send the metric * new method disablePerformanceTracking() * new method setGenerationTimeMs(generationTime) to set the generation after measuring it on the server side
2013-03-24fix javascript tests (Firefox 20, Safari 6, Chrome 25)Anthon Pang
2013-03-24fix doc blocksAnthon Pang
2013-03-24update JSON implementation from 2012-10-08 version of json2.js; applied ↵Anthon Pang
D.C.'s changes thru-out, including the defense against window.prototype (which I think refers to var declarations shadowing window.prototype)
2013-03-24fixes #3352 - expose Piwik as an AMD module (uses the jQuery approach for ↵Anthon Pang
backward compatibility)
2013-03-24remove tabs and fix jslint errorAnthon Pang
2013-03-14Anthon Pang created this class and many improvements around it (eg. jslint, ↵mattab
JS tests, etc.)
2013-03-14minormattab
2013-03-13Markdown beautification :)Fabian Becker
2013-03-13copyright assignment in absence of Piwik legal entityAnthon Pang
2013-03-13refs #3530 page overlayTimo Besenreuther
* when the referrer is matched to determine whether the session should be started, don't match the domain. this caused trouble for some users and doesn't provide real advantages. * new method tracker.setApiUrl() that can be used if the tracker url and the api url (which is used in overlay) differ
2013-03-13Updating the LICENSE.txt and license notice to link to piwik.org page at: ↵mattab
http://piwik.org/free-software/bsd/ Anthon I moved your name to the page on the site. the page on opensource.org was not ideal and explaining well the situation.
2013-03-13Fixes #3819mattab
Fixes #3818: you can now call piwikTracker.appendToTrackingUrl('lat=X&long=Y'); _and_ disable auth in your config.ini.php https://github.com/piwik/piwik/blob/master/config/global.ini.php#L411 + Adding test
2013-03-11refs #3747 refactoring logicmattab
2013-03-05tracking xlsx, docx and pptx as downloadsTimo Besenreuther
2013-02-26Refs #1845mattab
* the tests/js is now passing following Benaka's commit, sweeet * Adding setsiteId to the "special case" so that setSiteId can be called after trackpageView and it still works * Adding pathname in the generated JS * HTML entity the & in the IMG src
2013-02-26Refs #1845, switch to async JS in other places and apply fixes to tracking ↵diosmosis
code admin page & other pages. Notes: * Fix bug in Installation page that displays JS where newlines were not displayed and text would not be selected on click. * Modify piwik.js to make sure setTrackerUrl is called before _paq is processed. * Move _paq modifications in tracker code to global scope outside every anonymous function. * Fix bug in rewritten site selector widget where selecting the same site didn't fire an event (necessary for some uses). * Fix bug where change of site resulted in delay before site name in labels changed. * Fix bug where site name was double encoded in tracking code admin page. * Rewrite piwik_tag.tpl to use async tracking code.
2013-02-23revert 2 yr broken "feature" - we do not want to set the secure flag in ↵Anthon Pang
tracker cookies for http/https compatibility
2013-02-22fix cookieSecure flag; fix from @alexanderdeanAnthon Pang
2013-02-13Tibet onlymattab
2013-02-10Refactor JavaScript loader into its own method (loadScript)Anthon Pang
2013-02-10jslint and coding style changesAnthon Pang
* blank line before 'if' and 'return' (unless at start of a block) * convert tabs to spaces * redo typeof property !== 'undefined' workaround * replace .substr() and .substring() with .slice() * use aliases where possible
2013-02-10fixes #3746 - Bug in overlay when using setSiteId with a string valueAnthon Pang
2013-02-06Removing SVN $, since Git does not provide auto properties.Fabian Becker
2013-02-06Remove references to trunk, fix @source linksFabian Becker
2013-02-01added conditional checksDaniele Gobbetti
This solves: http://forum.piwik.org/read.php?2,100257 Two conditional checks were added in order to remove "piwik.php" at the end of the called script only if present.
2012-11-22Refs #3450 Fix regression in the Javascript trackermattpiwik
git-svn-id: http://dev.piwik.org/svn/trunk@7523 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-11-15refs #2465BeezyT
* support for internet explorer 7 & 8 * redirect by setting window.location.href loses referrer - use fake link * implementing position:fixed for status bar in java script * when visibility=inherit, go up the dom to find out whether an element is visible * avoid .data() completely in followingpages.js * some specific html and css * adding v parameter to loaded script to invalidate caches * regenerating piwik.js (i hope it worked properly this time) * hiding notifications that get stuck after removing a hovered element (only happens sometimes) * binding window.resize after every broadcast.pageload() - the binding was lost after opening a popover * fixing mode with frames disabled: didn't work after migration to the l parameter This version is the first one that I think is stable. Please deploy on the demo so we can do some more testing. The next step is translation and documentation. After that, we're ready to release as beta. git-svn-id: http://dev.piwik.org/svn/trunk@7479 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-11-12refs #2465BeezyT
* Renaming Insight to Overlay * Includes a new minified piwik.js, generated as described in js/README. Please double-check whether the file is OK. * Servers that had the Insight plugin installed will need to delete it manually, right? git-svn-id: http://dev.piwik.org/svn/trunk@7445 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-11-01No need to pass 'cs' parameters to tracking requests, or to re-encode values ↵mattpiwik
encoded in iso-8859-1x git-svn-id: http://dev.piwik.org/svn/trunk@7354 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-30refs #3416, fixes #3496 - fix RegExp typo; thanks pebosirobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@7329 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-28fixes #3416 - scale resolution by window.devicePixelRatio on Safari iOS/Mac OS Xrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@7319 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-25Refs #3332mattpiwik
Fixing JSLINT errors + packaging changes in piwik.js in the minified script git-svn-id: http://dev.piwik.org/svn/trunk@7306 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-24Fixes #3450, handle non-utf-8 character encoding in query parameters of ↵benakamoorthi
tracked URLs. git-svn-id: http://dev.piwik.org/svn/trunk@7289 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-20refs #2465 improved efficiency of insight tracker extension.BeezyT
you can review piwik.js now, i don't plan to change it any more. git-svn-id: http://dev.piwik.org/svn/trunk@7261 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-17refs #2465 removed alias domain normalization. it's now consistent with the ↵BeezyT
behavior of transitions which is good for reusing the transitions report. git-svn-id: http://dev.piwik.org/svn/trunk@7226 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-17refs #2465: Starting the Insight plugin (in-site analytics)BeezyT
This is the code I wrote about a year ago :) There are several things that will be changed / removed but it's still good to have it in SVN - that's why I commit it like this. git-svn-id: http://dev.piwik.org/svn/trunk@7223 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-10-15Refs #2992 Site Search KABOOM, Refs #49mattpiwik
Implementing Site Search tracking & reporting in Piwik core! * New Admin UI to customize, for each site, wheter site search is enabled. Also options to set default values to use. * New Reports: Searches, Searches with no result, Search categories, Top Pages Following a Search * to track "No result keyword" users will have to tag their site with a JS call, or add a new parameter to the search result page &search_count=X (X being zero for no result searches) * Reports works with Row evolution, PDF/HTML reports, Piwik Mobile * idaction_url is now NULLable because, Site Search records a page with idaction_name == Keyword, and idaction_url == NULL. This ensures that the Site Searches don't create "Page URL Not defined" records. * updates to Tracker JS API, new function trackSiteSearch, also added in PHP tracker * New fields in log_visit to track searches * new segment, "searches" which can be used to select visitors who did a search ie. searches>0 or those who searched a lot, ie searches>10 TODO: * commmit integration test, TESTING, DOCS, FAQ, release, and a nice Prayer to the universe and the stars, hoping that I can code a major new feature without any bug... * It would be awesome to have compatiblity with Transitions so we can see, for a given site search, what are the starting pages and Destination pages Thank you for your patience Timo, and thank in advance everyone for your help Testing this new feature! git-svn-id: http://dev.piwik.org/svn/trunk@7190 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-08-01fixes #3292 - css classes take priority when determining link typerobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@6621 59fd770c-687e-43c8-a1e3-f5a4ff64c105
2012-08-01convert tabs to spacesrobocoder
git-svn-id: http://dev.piwik.org/svn/trunk@6620 59fd770c-687e-43c8-a1e3-f5a4ff64c105