forked from aasmith/openx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
History.txt
67 lines (41 loc) · 2.07 KB
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
=== 1.0.0 / 2008-04-07
* 1 major enhancement
* Birthday!
=== 1.1.0 / 2009-10-26
* 2 major enhancements
* OpenX API Version 2 Support added
* OpenX Invocation API Support added
* 1 minor enhancement
* Ruby on Rails documentation support added
=== 1.1.1 / 2009-11-06
* Minor bugfix to environment handling for Win32 users
=== 1.1.2 / 2009-11-19
* Documentation updates and patch to enable banner support on the OpenX Server
=== 1.1.4 / 2010-04-17
* Fork of 1.1.2
* Added statistic methods for Banner:
* renamed statistics method into daily_statistics, left statistics method as an alias for daily_statistics
* daily_statistics(start_on = Date.today, end_on = Date.today) - Daily stats for the Banner
* publisher_statistics(start_on = Date.today, end_on = Date.today) - Banner stats by Publisher
* zone_statistics(start_on = Date.today, end_on = Date.today) - Banner stats by Zone
=== 1.1.5 / 2010-05-18
* Created generic statistics method:
* get_statistics(service_method, start_on = Date.today, end_on = Date.today, local_time_zone = true) in sepearate module OpenX::Services::Statistics in file statistics.rb
* included statistics module in all stats objects: Agency, Advertiser, Campaign, Banner, Publisher, Zone.
* all existing statistics methods are now calling get_statistics.
* Added to statistics methods localTZ parameter default to true. This way OpenX will return stats for the period of time with offset according to the local time zone. If that parameter is false it will give numbers for UTC. The localTZ implementation based only on that post http://forum.openx.org/index.php?s=18f1d84f86e32297083f87f8d9eb4fda&showtopic=503433151
* statistics
* daily_statistics
* publisher_statistics
* zone_statistics
* Added statistics methods for other objects as well
* Agency
* Advertiser
* Campaign
* Banner
* Publisher
* daily_statistics
* banner_statistics
* Zone
=== 1.1.6 / 2010-05-18
* lib/openx/services/statistic.rb file was missing on github while building gemspec, so the version 1.1.5 is actually broken.