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
2015-08-07Moving request metadata from VisitProperties to Tracker\Request class.diosmosis
2015-08-07Add public methods to VisitProperties for property access and use instead of ↵diosmosis
direct access.
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 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.