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
2020-04-24Update doc blocks with new name (#15857)Stefan Giehl
* update doc blocks with new name * submodule updates * updates expected UI files
2019-07-11New goal type to match one goal type in GA (#14508)diosmosis
* start adding new goal type * Add new goal type to UI + tracker + add tests. * Cache pageview count query result. * Apply pr feedback * remove debugging code * remove unused code * Apply review feedback. * fix test * Apply review comments.
2019-07-05Update the link tag for all php files (#14635)Luca
I updated the link tag for all php files with the new matomo link. Not sure if it is realistic that this will get merged but I though that someday someone has to do this(?)
2017-01-27Remove no longer needed edge case for conversionsThomas Steur
2015-08-07Moving request metadata from VisitProperties to Tracker\Request class.diosmosis
2015-08-06Fixing regression in GoalsRequestProcessor, make sure to set visit to ↵diosmosis
converted if there were detected goals, but do not unset it if there are none.
2015-08-06Re-add Request parameter to RequestProcessor::recordLogs(), make GoalManager ↵diosmosis
stateless and store in DI, move logic in GoalManager that determined info about a tracking request to request metadata, change someGoalsConverted request metadata to goalsConverted metadata so we can see exactly which goals were converted.
2015-08-06Document RequestProcessors and tweak some RequestProcessors.diosmosis
2015-08-06Change RequestProcessor method names and remove need to supply Request to ↵diosmosis
Visitor object.
2015-08-06Remove Visitor object from RequestProcessor::processRequest() method.diosmosis
2015-08-06Move Actions recording to ActionsRequestProcessor from Visit::handle(), and ↵diosmosis
move last use of GoalManager from Visit::handle() to GoalsRequestProcessor.
2015-08-06Move goals recording from Visit::handle() to GoalsRequestProcessor.diosmosis
2015-08-06Move visitor not found logic in Visit::handle() to Goals request processor.diosmosis
2015-08-06Move more conversion/actions related logic from Visit::handle() to plugin ↵diosmosis
specific RequestProcessors in manipulateVisitProperties method. Also temporarily made GoalManager a singleton that is set as a static var in GoalsRequestProcessor. Should be in DI, but until all of Visit::handle() is dealt w/, this can't be done.
2015-08-06Add new RequestProcessor to Actions plugin for action detection + new ↵diosmosis
RequestProcessor for ping request handling. Ping request handling is performed in new Heartbeat plugin. Also added a new method to Plugin, isTrackerPlugin for plugins to override if they are tracker plugins, but don't have a dimension or implement a tracker method.
2015-08-06Move manual goal conversion logic from Visit::handle() to a new ↵diosmosis
RequestProcessor stored in the Goals plugin.