Index: trunk/fundraiser-statistics/reporting/fundraiser_analytics.html |
— | — | @@ -38,6 +38,8 @@ |
39 | 39 | <a href="http://fundraising.wikimedia.org/stats/banner_test.html">By Campaign and Time - Banner / LPs</a><br> |
40 | 40 | <a href="http://fundraising.wikimedia.org/stats/banner_test_by_hour.html">By Campaign and Time - Banner / LPs - by hour</a><br> |
41 | 41 | <a href="http://fundraising.wikimedia.org/stats/banner_test_banners.html">By Campaign and Time - Banners</a><br> |
| 42 | +<a href="http://fundraising.wikimedia.org/stats/landing_page_test.html">By Campaign and Time - LPs</a><br> |
| 43 | +<a href="http://fundraising.wikimedia.org/stats/landing_page_test_by_hour.html">By Campaign and Time - LPs - by hour</a><br> |
42 | 44 | |
43 | 45 | <br> |
44 | 46 | |
Index: trunk/fundraiser-statistics/reporting/banner_test_proc.php |
— | — | @@ -43,6 +43,10 @@ |
44 | 44 | |
45 | 45 | if ($sql_file == "banner_test.sql" || $sql_file == "banner_test_banners.sql") { |
46 | 46 | $query = sprintf($query, $start, $end, $start, $end, $cmpgn, $start, $end, $cmpgn, $start, $end, $cmpgn, "%"); |
| 47 | +} elseif ($sql_file == "landing_page_test.sql") { |
| 48 | + $query = sprintf($query, $start, $end, $cmpgn, $start, $end, $cmpgn); |
| 49 | +} elseif ($sql_file == "landing_page_test_by_hour.sql") { |
| 50 | + $query = sprintf($query, "%", "%", "%", "%", $start, $end, $cmpgn, "%", "%", "%", "%", $start, $end, $cmpgn); |
47 | 51 | } elseif ($sql_file == "banner_test_by_hour.sql") { |
48 | 52 | $query = sprintf($query, "%", "%", "%", "%", $start, $end, "%", "%", "%", "%", $start, $end, $cmpgn, "%", "%", "%", "%", $start, $end, $cmpgn, "%", "%", "%", "%", $start, $end, $cmpgn, "%"); |
49 | 53 | } |