[Piwik-svn] r168 - in trunk: modules modules/API modules/ArchiveProcessing modules/DataFiles modules/DataTable modules/DataTable/Filter modules/DataTable/Renderer modules/DataTable/Row modules/Log modules/LogStats modules/SmartyPlugins modules/ViewDataTable modules/Visualization plugins plugins/Actions plugins/ExamplePlugin plugins/Installation plugins/Login plugins/Logout plugins/Openads plugins/Provider plugins/Referers plugins/SitesManager plugins/UserCountry plugins/UserSettings plugins/UsersManager plugins/VisitFrequency plugins/VisitTime plugins/VisitorInterest plugins/VisitsSummary

svnmaster at piwik.org svnmaster at piwik.org
Mon Jan 14 06:26:45 CET 2008


Author: matt
Date: 2008-01-14 06:26:43 +0100 (Mon, 14 Jan 2008)
New Revision: 168

Modified:
   trunk/modules/API/APIable.php
   trunk/modules/API/Request.php
   trunk/modules/Access.php
   trunk/modules/Archive.php
   trunk/modules/ArchiveProcessing.php
   trunk/modules/ArchiveProcessing/Day.php
   trunk/modules/ArchiveProcessing/Period.php
   trunk/modules/ArchiveProcessing/Record.php
   trunk/modules/Auth.php
   trunk/modules/Common.php
   trunk/modules/Config.php
   trunk/modules/Controller.php
   trunk/modules/Cookie.php
   trunk/modules/DataFiles/Countries.php
   trunk/modules/DataFiles/SearchEngines.php
   trunk/modules/DataTable.php
   trunk/modules/DataTable/Filter.php
   trunk/modules/DataTable/Filter/AddConstantDetail.php
   trunk/modules/DataTable/Filter/ColumnCallbackAddDetail.php
   trunk/modules/DataTable/Filter/ColumnCallbackReplace.php
   trunk/modules/DataTable/Filter/DetailCallbackAddDetail.php
   trunk/modules/DataTable/Filter/Empty.php
   trunk/modules/DataTable/Filter/ExcludeLowPopulation.php
   trunk/modules/DataTable/Filter/Limit.php
   trunk/modules/DataTable/Filter/Pattern.php
   trunk/modules/DataTable/Filter/PatternRecursive.php
   trunk/modules/DataTable/Filter/ReplaceColumnNames.php
   trunk/modules/DataTable/Filter/Sort.php
   trunk/modules/DataTable/Manager.php
   trunk/modules/DataTable/Renderer.php
   trunk/modules/DataTable/Renderer/Console.php
   trunk/modules/DataTable/Renderer/Csv.php
   trunk/modules/DataTable/Renderer/Html.php
   trunk/modules/DataTable/Renderer/Json.php
   trunk/modules/DataTable/Renderer/Php.php
   trunk/modules/DataTable/Renderer/Xml.php
   trunk/modules/DataTable/Row.php
   trunk/modules/DataTable/Row/DataTableSummary.php
   trunk/modules/DataTable/Simple.php
   trunk/modules/Date.php
   trunk/modules/ErrorHandler.php
   trunk/modules/ExceptionHandler.php
   trunk/modules/Form.php
   trunk/modules/FrontController.php
   trunk/modules/Log.php
   trunk/modules/Log/APICall.php
   trunk/modules/Log/Error.php
   trunk/modules/Log/Exception.php
   trunk/modules/Log/Message.php
   trunk/modules/LogStats.php
   trunk/modules/LogStats/Action.php
   trunk/modules/LogStats/Config.php
   trunk/modules/LogStats/Db.php
   trunk/modules/LogStats/Generator.php
   trunk/modules/LogStats/Visit.php
   trunk/modules/Period.php
   trunk/modules/Piwik.php
   trunk/modules/Plugin.php
   trunk/modules/PluginsManager.php
   trunk/modules/Site.php
   trunk/modules/SmartyPlugins/function.url.php
   trunk/modules/SmartyPlugins/modifier.sumtime.php
   trunk/modules/TablePartitioning.php
   trunk/modules/Timer.php
   trunk/modules/Translate.php
   trunk/modules/Url.php
   trunk/modules/View.php
   trunk/modules/ViewDataTable.php
   trunk/modules/ViewDataTable/Cloud.php
   trunk/modules/ViewDataTable/GenerateGraphData.php
   trunk/modules/ViewDataTable/Graph.php
   trunk/modules/ViewDataTable/Html.php
   trunk/modules/Visualization/Chart.php
   trunk/modules/Visualization/ChartPie.php
   trunk/modules/Visualization/ChartVerticalBar.php
   trunk/modules/Visualization/Cloud.php
   trunk/modules/Visualization/OpenFlashChart.php
   trunk/modules/iView.php
   trunk/plugins/Actions.php
   trunk/plugins/Actions/API.php
   trunk/plugins/ExamplePlugin.php
   trunk/plugins/ExamplePlugin/API.php
   trunk/plugins/ExamplePlugin/Controller.php
   trunk/plugins/Installation.php
   trunk/plugins/Installation/Controller.php
   trunk/plugins/Installation/FormDatabaseSetup.php
   trunk/plugins/Installation/FormFirstWebsiteSetup.php
   trunk/plugins/Installation/FormGeneralSetup.php
   trunk/plugins/Installation/View.php
   trunk/plugins/Login.php
   trunk/plugins/Login/Controller.php
   trunk/plugins/Login/Form.php
   trunk/plugins/Logout/Controller.php
   trunk/plugins/Openads.php
   trunk/plugins/Openads/Controller.php
   trunk/plugins/Provider.php
   trunk/plugins/Provider/API.php
   trunk/plugins/Referers.php
   trunk/plugins/Referers/API.php
   trunk/plugins/SitesManager.php
   trunk/plugins/SitesManager/API.php
   trunk/plugins/SitesManager/Controller.php
   trunk/plugins/UserCountry.php
   trunk/plugins/UserCountry/API.php
   trunk/plugins/UserSettings.php
   trunk/plugins/UserSettings/API.php
   trunk/plugins/UsersManager.php
   trunk/plugins/UsersManager/API.php
   trunk/plugins/UsersManager/Controller.php
   trunk/plugins/VisitFrequency.php
   trunk/plugins/VisitFrequency/API.php
   trunk/plugins/VisitTime.php
   trunk/plugins/VisitTime/API.php
   trunk/plugins/VisitorInterest.php
   trunk/plugins/VisitorInterest/API.php
   trunk/plugins/VisitsSummary.php
   trunk/plugins/VisitsSummary/API.php
Log:
Added phpdoc package

Modified: trunk/modules/API/APIable.php
===================================================================
--- trunk/modules/API/APIable.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/API/APIable.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_API
  */
 
 

Modified: trunk/modules/API/Request.php
===================================================================
--- trunk/modules/API/Request.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/API/Request.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,9 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * 
+ * @package Piwik_API
  */
 
 

Modified: trunk/modules/Access.php
===================================================================
--- trunk/modules/Access.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Access.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,9 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik
+ * 
  */
 
 /**

Modified: trunk/modules/Archive.php
===================================================================
--- trunk/modules/Archive.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Archive.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik
  */
 
 /**

Modified: trunk/modules/ArchiveProcessing/Day.php
===================================================================
--- trunk/modules/ArchiveProcessing/Day.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/ArchiveProcessing/Day.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ArchiveProcessing
  */
 
 

Modified: trunk/modules/ArchiveProcessing/Period.php
===================================================================
--- trunk/modules/ArchiveProcessing/Period.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/ArchiveProcessing/Period.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ArchiveProcessing
  */
 
 /**

Modified: trunk/modules/ArchiveProcessing/Record.php
===================================================================
--- trunk/modules/ArchiveProcessing/Record.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/ArchiveProcessing/Record.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ArchiveProcessing
  */
 
 /**

Modified: trunk/modules/ArchiveProcessing.php
===================================================================
--- trunk/modules/ArchiveProcessing.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/ArchiveProcessing.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ArchiveProcessing
  */
 
 /**

Modified: trunk/modules/Auth.php
===================================================================
--- trunk/modules/Auth.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Auth.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik
  */
 
 /**

Modified: trunk/modules/Common.php
===================================================================
--- trunk/modules/Common.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Common.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Helper
  */
 
 /**
@@ -14,8 +16,8 @@
  * This is the only external class loaded by the Piwik.php file.
  * This class should contain only the functions that are used in 
  * both the CORE and the piwik.php statistics logging engine.
- * 
- * @package Piwik
+ * 
+ * @package Piwik_Helper
  */
 class Piwik_Common 
 {

Modified: trunk/modules/Config.php
===================================================================
--- trunk/modules/Config.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Config.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,15 +5,17 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Helper
  */
+
+require_once "Zend/Config/Ini.php";
+require_once "Zend/Registry.php";
 
-/**
- * 
- * @package Piwik
+/**
+ * 
+ * @package Piwik_Helper
  */
-require_once "Zend/Config/Ini.php";
-require_once "Zend/Registry.php";
-
 class Piwik_Config
 {
 	protected $urlToPiwikHelpMissingValueInConfigurationFile = 

Modified: trunk/modules/Controller.php
===================================================================
--- trunk/modules/Controller.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Controller.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik
  */
 
 abstract class Piwik_Controller

Modified: trunk/modules/Cookie.php
===================================================================
--- trunk/modules/Cookie.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Cookie.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Helper
  */
 
 
@@ -17,8 +19,8 @@
  * - create a new cookie, set values, expiration date, etc. and save it
  * 
  * The cookie content is saved in an optimized way.
- * 
- * @package Piwik_LogStats
+ * 
+ * @package Piwik_Helper
  */
 class Piwik_Cookie
 {

Modified: trunk/modules/DataFiles/Countries.php
===================================================================
--- trunk/modules/DataFiles/Countries.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataFiles/Countries.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,12 +5,13 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_UserCountry
  */
 
 /**
  * Country code and continent database
  * 
- * @package Piwik_DataFiles
  */
 if(!isset($GLOBALS['Piwik_CountryList']))
 {

Modified: trunk/modules/DataFiles/SearchEngines.php
===================================================================
--- trunk/modules/DataFiles/SearchEngines.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataFiles/SearchEngines.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Referers
  */
 
 /**
@@ -21,7 +23,6 @@
  *  
  * Post your new search engines and logos in the forum, thank you for your help!
  * 
- * @package Piwik_DataFiles
  */
 if(!isset($GLOBALS['Piwik_SearchEngines'] ))
 {

Modified: trunk/modules/DataTable/Filter/AddConstantDetail.php
===================================================================
--- trunk/modules/DataTable/Filter/AddConstantDetail.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter/AddConstantDetail.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Filter/ColumnCallbackAddDetail.php
===================================================================
--- trunk/modules/DataTable/Filter/ColumnCallbackAddDetail.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter/ColumnCallbackAddDetail.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 

Modified: trunk/modules/DataTable/Filter/ColumnCallbackReplace.php
===================================================================
--- trunk/modules/DataTable/Filter/ColumnCallbackReplace.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter/ColumnCallbackReplace.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Filter/DetailCallbackAddDetail.php
===================================================================
--- trunk/modules/DataTable/Filter/DetailCallbackAddDetail.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter/DetailCallbackAddDetail.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Filter/Empty.php
===================================================================
--- trunk/modules/DataTable/Filter/Empty.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter/Empty.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Filter/ExcludeLowPopulation.php
===================================================================
--- trunk/modules/DataTable/Filter/ExcludeLowPopulation.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter/ExcludeLowPopulation.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Filter/Limit.php
===================================================================
--- trunk/modules/DataTable/Filter/Limit.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter/Limit.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Filter/Pattern.php
===================================================================
--- trunk/modules/DataTable/Filter/Pattern.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter/Pattern.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Filter/PatternRecursive.php
===================================================================
--- trunk/modules/DataTable/Filter/PatternRecursive.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter/PatternRecursive.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Filter/ReplaceColumnNames.php
===================================================================
--- trunk/modules/DataTable/Filter/ReplaceColumnNames.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter/ReplaceColumnNames.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Filter/Sort.php
===================================================================
--- trunk/modules/DataTable/Filter/Sort.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter/Sort.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Filter.php
===================================================================
--- trunk/modules/DataTable/Filter.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Filter.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Manager.php
===================================================================
--- trunk/modules/DataTable/Manager.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Manager.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Renderer/Console.php
===================================================================
--- trunk/modules/DataTable/Renderer/Console.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Renderer/Console.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Renderer/Csv.php
===================================================================
--- trunk/modules/DataTable/Renderer/Csv.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Renderer/Csv.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,26 +5,27 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
+require_once "DataTable/Renderer/Php.php";
 /**
  * CSV export
+ * 
+ * When rendered using the default settings, a CSV report has the following characteristics:
+ * The first record contains headers for all the columns in the report.
+ * All rows have the same number of columns.
+ * The default field delimiter string is a comma (,).
+ * The record delimiter string is the carriage return and line feed (<cr><lf>).
+ * The text qualifier string is a quotation mark (").
+ * If the text contains an embedded delimiter string or qualifier string, the text qualifier is placed around the text, and the embedded qualifier strings are doubled.
+ * Formatting and layout are ignored.
  * 
  * @package Piwik_DataTable
- * @subpackage Piwik_DataTable_Renderer
- */
- 
- /**
-  * When rendered using the default settings, a CSV report has the following characteristics:
-  * The first record contains headers for all the columns in the report.
-  * All rows have the same number of columns.
-  * The default field delimiter string is a comma (,).
-  * The record delimiter string is the carriage return and line feed (<cr><lf>).
-  * The text qualifier string is a quotation mark (").
-  * If the text contains an embedded delimiter string or qualifier string, the text qualifier is placed around the text, and the embedded qualifier strings are doubled.
-  * Formatting and layout are ignored.
-  */
-require_once "DataTable/Renderer/Php.php";
+ * @subpackage Piwik_DataTable_Renderer
+ * 
+ */
 
 class Piwik_DataTable_Renderer_Csv extends Piwik_DataTable_Renderer
 {

Modified: trunk/modules/DataTable/Renderer/Html.php
===================================================================
--- trunk/modules/DataTable/Renderer/Html.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Renderer/Html.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Renderer/Json.php
===================================================================
--- trunk/modules/DataTable/Renderer/Json.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Renderer/Json.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,15 +5,17 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
+require_once "DataTable/Renderer/Php.php";
 /**
  * JSON export. Using the php 5.2 feature json_encode
  * 
  * @package Piwik_DataTable
  * @subpackage Piwik_DataTable_Renderer
  */
-require_once "DataTable/Renderer/Php.php";
 class Piwik_DataTable_Renderer_Json extends Piwik_DataTable_Renderer
 {
 	function __construct($table = null)

Modified: trunk/modules/DataTable/Renderer/Php.php
===================================================================
--- trunk/modules/DataTable/Renderer/Php.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Renderer/Php.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Renderer/Xml.php
===================================================================
--- trunk/modules/DataTable/Renderer/Xml.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Renderer/Xml.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,8 +5,11 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
+require_once "DataTable/Renderer/Php.php";
 /**
  * XML export. Using the excellent Pear::XML_Serializer.
  * We had to fix the PEAR library so that it works under PHP5 STRICT mode.
@@ -14,7 +17,6 @@
  * @package Piwik_DataTable
  * @subpackage Piwik_DataTable_Renderer
  */
-require_once "DataTable/Renderer/Php.php";
 class Piwik_DataTable_Renderer_Xml extends Piwik_DataTable_Renderer
 {
 	function __construct($table = null)

Modified: trunk/modules/DataTable/Renderer.php
===================================================================
--- trunk/modules/DataTable/Renderer.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Renderer.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,13 +5,16 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**
  * A DataTable Renderer can produce an output given a DataTable object.
  * All new Renderers must be copied in DataTable/Renderer and added to the factory() method.
- * 
- * @package Piwik_DataTable
+ * 
+ * @package Piwik_DataTable
+ * @subpackage Piwik_DataTable_Renderer
  */
 abstract class Piwik_DataTable_Renderer
 {

Modified: trunk/modules/DataTable/Row/DataTableSummary.php
===================================================================
--- trunk/modules/DataTable/Row/DataTableSummary.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Row/DataTableSummary.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable/Row.php
===================================================================
--- trunk/modules/DataTable/Row.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Row.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**
@@ -18,9 +20,10 @@
  * IMPORTANT: Make sure that the column named 'label' contains at least one non-numeric character.
  * Otherwise the method addDataTable() or sumRow() would fail because they would consider
  * the 'label' as being a numeric column to sum.
+ * 
+ * @package Piwik_DataTable
+ * @subpackage Piwik_DataTable_Row
  * 
- * @package Piwik_DataTable
- * 
  */
 class Piwik_DataTable_Row
 {

Modified: trunk/modules/DataTable/Simple.php
===================================================================
--- trunk/modules/DataTable/Simple.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable/Simple.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/DataTable.php
===================================================================
--- trunk/modules/DataTable.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/DataTable.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_DataTable
  */
 
 /**

Modified: trunk/modules/Date.php
===================================================================
--- trunk/modules/Date.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Date.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,11 +5,14 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Helper
  */
 
 /**
- * 
- * @package Piwik
+ * 
+ * 
+ * @package Piwik_Helper
  */
 class Piwik_Date
 {

Modified: trunk/modules/ErrorHandler.php
===================================================================
--- trunk/modules/ErrorHandler.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/ErrorHandler.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,11 +5,14 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Helper
  */
 
 /**
- * 
- * @package Piwik
+ * 
+ * 
+ * @package Piwik_Helper
  */
 require_once "Zend/Registry.php"; 
 function Piwik_ErrorHandler($errno, $errstr, $errfile, $errline)

Modified: trunk/modules/ExceptionHandler.php
===================================================================
--- trunk/modules/ExceptionHandler.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/ExceptionHandler.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,11 +5,14 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Helper
  */
 
 /**
- * 
- * @package Piwik
+ * 
+ * 
+ * @package Piwik_Helper
  */
 function Piwik_ExceptionHandler(Exception $exception) 
 {

Modified: trunk/modules/Form.php
===================================================================
--- trunk/modules/Form.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Form.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,12 +5,18 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Helper
  */
 
 
 require_once "HTML/QuickForm.php";
 require_once "HTML/QuickForm/Renderer/ArraySmarty.php";
-
+
+/**
+ * 
+ * @package Piwik_Helper
+ */
 abstract class Piwik_Form extends HTML_QuickForm
 {
 	private $a_formElements = array();

Modified: trunk/modules/FrontController.php
===================================================================
--- trunk/modules/FrontController.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/FrontController.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik
  */
 
 
@@ -32,7 +34,12 @@
 require_once "Translate.php";
 require_once "Url.php";
 require_once "Controller.php";
-
+
+/**
+ * 
+ * 
+ * @package Piwik
+ */
 class Piwik_FrontController
 {
 	static public $enableDispatch = true;

Modified: trunk/modules/Log/APICall.php
===================================================================
--- trunk/modules/Log/APICall.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Log/APICall.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,13 +5,15 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Log
+ * @subpackage Piwik_Log_APICall
  */
 
 /**
  * Class used to log all the API Calls information (class / method / parameters / returned value / time spent)
  * 
  * @package Piwik_Log
- * @subpackage Piwik_Log_APICall
  */
 class Piwik_Log_APICall extends Piwik_Log
 {

Modified: trunk/modules/Log/Error.php
===================================================================
--- trunk/modules/Log/Error.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Log/Error.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,13 +5,15 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Log
+ * @subpackage Piwik_Log_Error
  */
 
 /**
  * Class used to log an error event.
  * 
  * @package Piwik_Log
- * @subpackage Piwik_Log_Error
  */
 class Piwik_Log_Error extends Piwik_Log
 {

Modified: trunk/modules/Log/Exception.php
===================================================================
--- trunk/modules/Log/Exception.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Log/Exception.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,13 +5,15 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Log
+ * @subpackage Piwik_Log_Exception
  */
 
 /**
  * Class used to log an exception event.
  * 
  * @package Piwik_Log
- * @subpackage Piwik_Log_Exception
  */
 class Piwik_Log_Exception extends Piwik_Log
 {

Modified: trunk/modules/Log/Message.php
===================================================================
--- trunk/modules/Log/Message.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Log/Message.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,13 +5,15 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Log
+ * @subpackage Piwik_Log_Message
  */
 
 /**
  * Class used to log a standard message event.
  * 
  * @package Piwik_Log
- * @subpackage Piwik_Log_Message
  */
 class Piwik_Log_Message extends Piwik_Log
 {

Modified: trunk/modules/Log.php
===================================================================
--- trunk/modules/Log.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Log.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Log
  */
 
 /**

Modified: trunk/modules/LogStats/Action.php
===================================================================
--- trunk/modules/LogStats/Action.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/LogStats/Action.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_LogStats
  */
 
 

Modified: trunk/modules/LogStats/Config.php
===================================================================
--- trunk/modules/LogStats/Config.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/LogStats/Config.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_LogStats
  */
 
 /**

Modified: trunk/modules/LogStats/Db.php
===================================================================
--- trunk/modules/LogStats/Db.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/LogStats/Db.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_LogStats
  */
 
 /**

Modified: trunk/modules/LogStats/Generator.php
===================================================================
--- trunk/modules/LogStats/Generator.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/LogStats/Generator.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_LogStats
  */
 
 /**

Modified: trunk/modules/LogStats/Visit.php
===================================================================
--- trunk/modules/LogStats/Visit.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/LogStats/Visit.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_LogStats
  */
 
 /**

Modified: trunk/modules/LogStats.php
===================================================================
--- trunk/modules/LogStats.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/LogStats.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_LogStats
  */
 
 /**

Modified: trunk/modules/Period.php
===================================================================
--- trunk/modules/Period.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Period.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Helper
  */
 
 /**
@@ -17,8 +19,9 @@
  *		}
  *	that checks whether the subperiods have already been computed.
  *	This is for performance improvements, computing the subperiods is done a per demand basis.
- *
- * @package Piwik	
+ *
+ * 
+ * @package Piwik_Helper
  */
 abstract class Piwik_Period
 {

Modified: trunk/modules/Piwik.php
===================================================================
--- trunk/modules/Piwik.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Piwik.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,18 +5,20 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik
  */
-
-/**
- * 
- * @package Piwik
- */
+
 require_once "Config.php";
 require_once "Zend/Db.php";
 require_once "Zend/Db/Table.php";
 require_once "Log.php";
 require_once "PluginsManager.php";
-
+
+/**
+ * 
+ * @package Piwik
+ */
 class Piwik
 {
 	const CLASSES_PREFIX = "Piwik_";

Modified: trunk/modules/Plugin.php
===================================================================
--- trunk/modules/Plugin.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Plugin.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik
  */
 
 

Modified: trunk/modules/PluginsManager.php
===================================================================
--- trunk/modules/PluginsManager.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/PluginsManager.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,36 +5,38 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik
  */
 
 
-/**
- * Plugin specification for a statistics logging plugin
- * 
- * A plugin that display data in the Piwik Interface is very different from a plugin 
- * that will save additional data in the database during the statistics logging. 
- * These two types of plugins don't have the same requirements at all. Therefore a plugin
- * that saves additional data in the database during the stats logging process will have a different
- * structure.
- * 
- * A plugin for logging data has to focus on performance and therefore has to stay as simple as possible.
- * For input data, it is strongly advised to use the Piwik methods available in Piwik_Common 
- *
- * Things that can be done with such a plugin:
- * - having a dependency with a list of other plugins
- * - have an install step that would prepare the plugin environment
- * 		- install could add columns to the tables
- * 		- install could create tables 
- * - register to hooks at several points in the logging process
- * - register to hooks in other plugins
- * - generally a plugin method can modify data (filter) and add/remove data 
- * 
- * 
- * @package Piwik
- */
 require_once "Plugin.php";
 require_once "Event/Dispatcher.php";
-
+
+/**
+ * Plugin specification for a statistics logging plugin
+ * 
+ * A plugin that display data in the Piwik Interface is very different from a plugin 
+ * that will save additional data in the database during the statistics logging. 
+ * These two types of plugins don't have the same requirements at all. Therefore a plugin
+ * that saves additional data in the database during the stats logging process will have a different
+ * structure.
+ * 
+ * A plugin for logging data has to focus on performance and therefore has to stay as simple as possible.
+ * For input data, it is strongly advised to use the Piwik methods available in Piwik_Common 
+ *
+ * Things that can be done with such a plugin:
+ * - having a dependency with a list of other plugins
+ * - have an install step that would prepare the plugin environment
+ * 		- install could add columns to the tables
+ * 		- install could create tables 
+ * - register to hooks at several points in the logging process
+ * - register to hooks in other plugins
+ * - generally a plugin method can modify data (filter) and add/remove data 
+ * 
+ * 
+ * @package Piwik
+ */
 class Piwik_PluginsManager
 {
 	public $dispatcher;

Modified: trunk/modules/Site.php
===================================================================
--- trunk/modules/Site.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Site.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik
  */
 
 /**

Modified: trunk/modules/SmartyPlugins/function.url.php
===================================================================
--- trunk/modules/SmartyPlugins/function.url.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/SmartyPlugins/function.url.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,12 +5,10 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Visualization
  */
-
-/**
- * Smarty plugin
- * @package Smarty
- */
+
 require_once "Url.php";
 
 /**

Modified: trunk/modules/SmartyPlugins/modifier.sumtime.php
===================================================================
--- trunk/modules/SmartyPlugins/modifier.sumtime.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/SmartyPlugins/modifier.sumtime.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,13 +5,9 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Visualization
  */
-
-/**
- * Smarty plugin
- * @package Smarty
- * @subpackage plugins
- */
 
 /**
  * Returns a string stating the number of days and hours from a number of seconds

Modified: trunk/modules/TablePartitioning.php
===================================================================
--- trunk/modules/TablePartitioning.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/TablePartitioning.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik
  */
 
 /**

Modified: trunk/modules/Timer.php
===================================================================
--- trunk/modules/Timer.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Timer.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,11 +5,13 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Helper
  */
 
 /**
- * 
- * @package Piwik
+ * 
+ * @package Piwik_Helper
  */
 class Piwik_Timer
 {

Modified: trunk/modules/Translate.php
===================================================================
--- trunk/modules/Translate.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Translate.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik
  */
 
 /**

Modified: trunk/modules/Url.php
===================================================================
--- trunk/modules/Url.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Url.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,8 +5,14 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Helper
  */
 
+/**
+ * @package Piwik_Helper
+ *
+ */
 class Piwik_Url 
 {
 	static function getArrayFromCurrentQueryString()

Modified: trunk/modules/View.php
===================================================================
--- trunk/modules/View.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/View.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,11 +5,19 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Visualization
  */
 
 require_once 'Smarty/Smarty.class.php';
 
-require_once "iView.php";
+require_once "iView.php";
+
+/**
+ * 
+ * @package Piwik_Visualization
+ *
+ */
 class Piwik_View implements Piwik_iView
 {
 	private $template = '';

Modified: trunk/modules/ViewDataTable/Cloud.php
===================================================================
--- trunk/modules/ViewDataTable/Cloud.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/ViewDataTable/Cloud.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,9 +5,17 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ViewDataTable
  */
 
-require_once "Visualization/Cloud.php";
+require_once "Visualization/Cloud.php";
+
+/**
+ * 
+ * @package Piwik_ViewDataTable
+ *
+ */
 class Piwik_ViewDataTable_Cloud extends Piwik_ViewDataTable
 {
 	protected $displayLogoInsteadOfLabel = false;

Modified: trunk/modules/ViewDataTable/GenerateGraphData.php
===================================================================
--- trunk/modules/ViewDataTable/GenerateGraphData.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/ViewDataTable/GenerateGraphData.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,8 +5,15 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ViewDataTable
  */
-
+
+/**
+ * 
+ * @package Piwik_ViewDataTable
+ *
+ */
 abstract class Piwik_ViewDataTable_GenerateGraphData extends Piwik_ViewDataTable
 {
 	

Modified: trunk/modules/ViewDataTable/Graph.php
===================================================================
--- trunk/modules/ViewDataTable/Graph.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/ViewDataTable/Graph.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,8 +5,15 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ViewDataTable
  */
-
+
+/**
+ * 
+ * @package Piwik_ViewDataTable
+ *
+ */
 abstract class Piwik_ViewDataTable_Graph extends Piwik_ViewDataTable
 {	
 	function init($currentControllerAction, 

Modified: trunk/modules/ViewDataTable/Html.php
===================================================================
--- trunk/modules/ViewDataTable/Html.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/ViewDataTable/Html.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,8 +5,15 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ViewDataTable
  */
-
+
+/**
+ * 
+ * @package Piwik_ViewDataTable
+ *
+ */
 class Piwik_ViewDataTable_Html extends Piwik_ViewDataTable
 {
 	protected $columnsToDisplay = array();

Modified: trunk/modules/ViewDataTable.php
===================================================================
--- trunk/modules/ViewDataTable.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/ViewDataTable.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,8 +5,15 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ViewDataTable
  */
 
+/**
+ * 
+ * @package Piwik_Visualization
+ *
+ */
 abstract class Piwik_ViewDataTable
 {
 	protected $dataTableTemplate = null;

Modified: trunk/modules/Visualization/Chart.php
===================================================================
--- trunk/modules/Visualization/Chart.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Visualization/Chart.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,9 +5,16 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Visualization
  */
 
 require_once "Visualization/OpenFlashChart.php";
+
+/**
+ * 
+ * @package Piwik_Visualization
+ */
 abstract class Piwik_Visualization_Chart extends Piwik_Visualization_OpenFlashChart
 {
 	function setData($data)

Modified: trunk/modules/Visualization/ChartPie.php
===================================================================
--- trunk/modules/Visualization/ChartPie.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Visualization/ChartPie.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,8 +5,15 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Visualization
  */
-require_once "Visualization/Chart.php";
+require_once "Visualization/Chart.php";
+
+/**
+ * 
+ * @package Piwik_Visualization
+ */
 class Piwik_Visualization_ChartPie extends Piwik_Visualization_Chart
 {
 	function customizeGraph()

Modified: trunk/modules/Visualization/ChartVerticalBar.php
===================================================================
--- trunk/modules/Visualization/ChartVerticalBar.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Visualization/ChartVerticalBar.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,8 +5,17 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Visualization
  */
+
 require_once "Visualization/Chart.php";
+
+/**
+ * 
+ * @package Piwik_Visualization
+ *
+ */
 class Piwik_Visualization_ChartVerticalBar extends Piwik_Visualization_Chart
 {
 	protected $limit = 10;

Modified: trunk/modules/Visualization/Cloud.php
===================================================================
--- trunk/modules/Visualization/Cloud.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Visualization/Cloud.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,8 +5,16 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Visualization
  */
-// inspired from Derek Harvey (www.derekharvey.co.uk)
+
+// inspired from Derek Harvey (www.derekharvey.co.uk)
+
+/**
+ * 
+ * @package Piwik_Visualization
+ */
 class Piwik_Visualization_Cloud 
 {
 	protected $wordsArray = array();

Modified: trunk/modules/Visualization/OpenFlashChart.php
===================================================================
--- trunk/modules/Visualization/OpenFlashChart.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/Visualization/OpenFlashChart.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,9 +5,18 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Visualization
  */
+
 require_once "iView.php";
-// Original class provided by Open Flash Chart
+
+/**
+ * Original class provided by Open Flash Chart
+ *  
+ * @package Piwik_Visualization
+ */
+
 abstract class Piwik_Visualization_OpenFlashChart implements iView
 {	
     function __construct()

Modified: trunk/modules/iView.php
===================================================================
--- trunk/modules/iView.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/modules/iView.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,8 +5,14 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id: APIable.php 162 2008-01-14 04:27:21Z matt $
+ * 
+ * @package Piwik_Visualization
  */
 
+/**
+ * 
+ * @package Piwik_Visualization
+ */
 interface Piwik_iView
 {
 	function render();

Modified: trunk/plugins/Actions/API.php
===================================================================
--- trunk/plugins/Actions/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Actions/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Actions
  */
 
 

Modified: trunk/plugins/Actions.php
===================================================================
--- trunk/plugins/Actions.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Actions.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Actions
  */
 	
 class Piwik_Actions extends Piwik_Plugin

Modified: trunk/plugins/ExamplePlugin/API.php
===================================================================
--- trunk/plugins/ExamplePlugin/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/ExamplePlugin/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ExamplePlugin
  */
 
 class MagicObject 

Modified: trunk/plugins/ExamplePlugin/Controller.php
===================================================================
--- trunk/plugins/ExamplePlugin/Controller.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/ExamplePlugin/Controller.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ExamplePlugin
  */
 
 

Modified: trunk/plugins/ExamplePlugin.php
===================================================================
--- trunk/plugins/ExamplePlugin.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/ExamplePlugin.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_ExamplePlugin
  */
 	
 class Piwik_ExamplePlugin extends Piwik_Plugin

Modified: trunk/plugins/Installation/Controller.php
===================================================================
--- trunk/plugins/Installation/Controller.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Installation/Controller.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Installation
  */
 
 require_once "View.php";

Modified: trunk/plugins/Installation/FormDatabaseSetup.php
===================================================================
--- trunk/plugins/Installation/FormDatabaseSetup.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Installation/FormDatabaseSetup.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Installation
  */
 
 require_once "modules/Form.php";

Modified: trunk/plugins/Installation/FormFirstWebsiteSetup.php
===================================================================
--- trunk/plugins/Installation/FormFirstWebsiteSetup.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Installation/FormFirstWebsiteSetup.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Installation
  */
 
 require_once "modules/Form.php";

Modified: trunk/plugins/Installation/FormGeneralSetup.php
===================================================================
--- trunk/plugins/Installation/FormGeneralSetup.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Installation/FormGeneralSetup.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Installation
  */
 
 require_once "modules/Form.php";

Modified: trunk/plugins/Installation/View.php
===================================================================
--- trunk/plugins/Installation/View.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Installation/View.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Installation
  */
 
 class Piwik_Install_View extends Piwik_View

Modified: trunk/plugins/Installation.php
===================================================================
--- trunk/plugins/Installation.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Installation.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Installation
  */
 
 

Modified: trunk/plugins/Login/Controller.php
===================================================================
--- trunk/plugins/Login/Controller.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Login/Controller.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Login
  */
 
 require_once "UsersManager/API.php";

Modified: trunk/plugins/Login/Form.php
===================================================================
--- trunk/plugins/Login/Form.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Login/Form.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Login
  */
 
 require_once "modules/Form.php";

Modified: trunk/plugins/Login.php
===================================================================
--- trunk/plugins/Login.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Login.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Login
  */
 require "Login/Controller.php";
 require "Cookie.php";

Modified: trunk/plugins/Logout/Controller.php
===================================================================
--- trunk/plugins/Logout/Controller.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Logout/Controller.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Logout
  */
 
 class Piwik_Logout_Controller extends Piwik_Controller

Modified: trunk/plugins/Openads/Controller.php
===================================================================
--- trunk/plugins/Openads/Controller.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Openads/Controller.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Openads
  */
 
 class Piwik_Openads_Controller extends Piwik_Installation_Controller

Modified: trunk/plugins/Openads.php
===================================================================
--- trunk/plugins/Openads.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Openads.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Openads
  */
 	
 class Piwik_Openads extends Piwik_Plugin

Modified: trunk/plugins/Provider/API.php
===================================================================
--- trunk/plugins/Provider/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Provider/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Provider
  */
 
 

Modified: trunk/plugins/Provider.php
===================================================================
--- trunk/plugins/Provider.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Provider.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Provider
  */
 	
 class Piwik_Provider extends Piwik_Plugin

Modified: trunk/plugins/Referers/API.php
===================================================================
--- trunk/plugins/Referers/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Referers/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Referers
  */
 
 

Modified: trunk/plugins/Referers.php
===================================================================
--- trunk/plugins/Referers.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/Referers.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_Referers
  */
 	
 class Piwik_Referers extends Piwik_Plugin

Modified: trunk/plugins/SitesManager/API.php
===================================================================
--- trunk/plugins/SitesManager/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/SitesManager/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_SitesManager
  */
 
 /**

Modified: trunk/plugins/SitesManager/Controller.php
===================================================================
--- trunk/plugins/SitesManager/Controller.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/SitesManager/Controller.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_SitesManager
  */
 
 class Piwik_SitesManager_Controller extends Piwik_Controller

Modified: trunk/plugins/SitesManager.php
===================================================================
--- trunk/plugins/SitesManager.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/SitesManager.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_SitesManager
  */
 	
 class Piwik_SitesManager extends Piwik_Plugin

Modified: trunk/plugins/UserCountry/API.php
===================================================================
--- trunk/plugins/UserCountry/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/UserCountry/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_UserCountry
  */
 
 

Modified: trunk/plugins/UserCountry.php
===================================================================
--- trunk/plugins/UserCountry.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/UserCountry.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_UserCountry
  */
 	
 class Piwik_UserCountry extends Piwik_Plugin

Modified: trunk/plugins/UserSettings/API.php
===================================================================
--- trunk/plugins/UserSettings/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/UserSettings/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -6,7 +6,6 @@
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
  * 
- * 
  * @package Piwik_UserSettings
  */
 

Modified: trunk/plugins/UserSettings.php
===================================================================
--- trunk/plugins/UserSettings.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/UserSettings.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_UserSettings
  */
 
 class Piwik_UserSettings extends Piwik_Plugin

Modified: trunk/plugins/UsersManager/API.php
===================================================================
--- trunk/plugins/UsersManager/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/UsersManager/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_UsersManager
  */
 
 /**

Modified: trunk/plugins/UsersManager/Controller.php
===================================================================
--- trunk/plugins/UsersManager/Controller.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/UsersManager/Controller.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_UsersManager
  */
 
 class Piwik_UsersManager_Controller extends Piwik_Controller

Modified: trunk/plugins/UsersManager.php
===================================================================
--- trunk/plugins/UsersManager.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/UsersManager.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_UsersManager
  */
 	
 class Piwik_UsersManager extends Piwik_Plugin

Modified: trunk/plugins/VisitFrequency/API.php
===================================================================
--- trunk/plugins/VisitFrequency/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/VisitFrequency/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_VisitFrequency
  */
 
 class Piwik_VisitFrequency_API extends Piwik_Apiable

Modified: trunk/plugins/VisitFrequency.php
===================================================================
--- trunk/plugins/VisitFrequency.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/VisitFrequency.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_VisitFrequency
  */
 	
 class Piwik_VisitFrequency extends Piwik_Plugin

Modified: trunk/plugins/VisitTime/API.php
===================================================================
--- trunk/plugins/VisitTime/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/VisitTime/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_VisitTime
  */
 		
 class Piwik_VisitTime_API extends Piwik_Apiable

Modified: trunk/plugins/VisitTime.php
===================================================================
--- trunk/plugins/VisitTime.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/VisitTime.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,9 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * 
+ * @package Piwik_VisitTime
  */
 	
 class Piwik_VisitTime extends Piwik_Plugin

Modified: trunk/plugins/VisitorInterest/API.php
===================================================================
--- trunk/plugins/VisitorInterest/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/VisitorInterest/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_VisitorInterest
  */
 
 

Modified: trunk/plugins/VisitorInterest.php
===================================================================
--- trunk/plugins/VisitorInterest.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/VisitorInterest.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_VisitorInterest
  */
 	
 class Piwik_VisitorInterest extends Piwik_Plugin

Modified: trunk/plugins/VisitsSummary/API.php
===================================================================
--- trunk/plugins/VisitsSummary/API.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/VisitsSummary/API.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_VisitsSummary
  */
 
 class Piwik_VisitsSummary_API extends Piwik_Apiable

Modified: trunk/plugins/VisitsSummary.php
===================================================================
--- trunk/plugins/VisitsSummary.php	2008-01-14 04:59:00 UTC (rev 167)
+++ trunk/plugins/VisitsSummary.php	2008-01-14 05:26:43 UTC (rev 168)
@@ -5,6 +5,8 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * @package Piwik_VisitsSummary
  */
 	
 class Piwik_VisitsSummary extends Piwik_Plugin



More information about the Piwik-svn mailing list