Utility to track visits
Project description
Introduction
Products.VisitTracker provides a simple API for tracking visits on objects. Objects for which visits should be tracked have to implement the:
Products.VisitTracker.interfaces.IVisitable
interface and thus provide an attribute named revisit which defines the time delta in hours after which a revisit is tracked as a new visit.
Visits are tracked by the IVisitTracker adapter and stored as annotations on the specific object.
Usage
Given an object implementing the IVisitable interface tracking and retrieving visits is done by adapting to IVisitTracker.
tracker = IVisitTracker(obj)
Tracking a visit
Tracking a visit is done by calling the trackVisit method. This is usually done in a view or a viewlet.
tracker.trackVisit()
Getting visits
There are multiple methods available to retrieve the stored visits.
Get visits
tracker.getVisits()
Returns a list of date, userid tuples of all visits tracked for this object.
Get number of visits
tracker.getNumberOfVisits()
Returns the number of visits tracked for this object.
Get last visit
tracker.getLastVisit()
Returns the date of the last visit tracked for this object.
Get last visit of user
tracker.getLastVisit(userid)
Returns the date of the last visit of the specified user tracked for this object.
Get last visits by user
tracker.getLastVisits()
Returns a list of userid, date tuples of the last visits of all tracked users.
Changelog
1.0b2 (2010-10-24)
Set zip_safe flag to False
1.0b1 - (2010-10-19)
First public release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file Products.VisitTracker-1.0b2.tar.gz
.
File metadata
- Download URL: Products.VisitTracker-1.0b2.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99f001aea26b00de7f99f632d15acf87926bad7ba7a89b3e42683764023a94c9 |
|
MD5 | 72e1c35588186ebc3160ce0a5bc6c4a7 |
|
BLAKE2b-256 | 11edec0190a077fb7f491ddd50e22cecfd2b5a8bddb658ab1a6eebeceb86da87 |