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
diff options
context:
space:
mode:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-05-09 00:22:44 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-05-09 00:22:44 +0400
commit9bac8a7ea340c881f6ad909cd3e4ba4560c6def2 (patch)
tree5a0924269d06867107e77ff57913e1f3a3facc55
parentadfb2aa5e8bad3e683a82b92c014aba14173253c (diff)
-rw-r--r--core/Date.php1
-rw-r--r--core/Visualization/Chart.php5
-rw-r--r--plugins/ExampleUI/ExampleUI.php1
-rw-r--r--plugins/Referers/Controller.php2
4 files changed, 1 insertions, 8 deletions
diff --git a/core/Date.php b/core/Date.php
index 001af599fa..fc2bca388c 100644
--- a/core/Date.php
+++ b/core/Date.php
@@ -74,7 +74,6 @@ class Piwik_Date
* @param string $time HH:MM:SS
* @return Piwik_Date The new date with the time part set
*/
- //TODO test this method
public function setTime($time)
{
return new Piwik_Date( strtotime( $this->get("j F Y") . " $time"));
diff --git a/core/Visualization/Chart.php b/core/Visualization/Chart.php
index f51e308519..5010f5afe4 100644
--- a/core/Visualization/Chart.php
+++ b/core/Visualization/Chart.php
@@ -73,11 +73,6 @@ abstract class Piwik_Visualization_Chart implements Piwik_iView
$this->displayPercentageInTooltip = $bool;
}
-
- //TODO call + make sure matches beginning of period? (hard..)
- // day -> every 7 days
- // week & year -> 1, plot last
- // month -> every 12 months, plot last 24
public function setXSteps($steps)
{
$this->xSteps = $steps;
diff --git a/plugins/ExampleUI/ExampleUI.php b/plugins/ExampleUI/ExampleUI.php
index 4f36f55782..961b151619 100644
--- a/plugins/ExampleUI/ExampleUI.php
+++ b/plugins/ExampleUI/ExampleUI.php
@@ -10,7 +10,6 @@
*/
-// TODO this plugin should be used to test all piwik UI features before release
/*
- prepare a page with all use cases
- test the actions datatable in this page?
diff --git a/plugins/Referers/Controller.php b/plugins/Referers/Controller.php
index 8f325bc472..8e8532b5ed 100644
--- a/plugins/Referers/Controller.php
+++ b/plugins/Referers/Controller.php
@@ -6,7 +6,7 @@ class Piwik_Referers_Controller extends Piwik_Controller
$view = new Piwik_View('Referers/templates/index.tpl');
$view->graphEvolutionReferers = $this->getEvolutionGraph(true, Piwik_Common::REFERER_TYPE_DIRECT_ENTRY, array('nb_visits'));
- $view->nameGraphEvolutionReferers = 'ReferersgetEvolutionGraph'; // must be the function name used above TODO why?
+ $view->nameGraphEvolutionReferers = 'ReferersgetEvolutionGraph';
$view->numberDistinctSearchEngines = $this->getNumberOfDistinctSearchEngines(true);
$view->numberDistinctKeywords = $this->getNumberOfDistinctKeywords(true);