|
From: <gem...@li...> - 2011-09-20 17:20:52
|
Revision: 54
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=54&view=rev
Author: matijsdejong
Date: 2011-09-20 17:20:46 +0000 (Tue, 20 Sep 2011)
Log Message:
-----------
- documentation changes only
Modified Paths:
--------------
trunk/library/classes/Gems/Controller/BrowseEditAction.php
trunk/library/classes/Gems/Default/TokenPlanAction.php
trunk/library/controllers/MailLogController.php
trunk/library/controllers/OverviewPlanController.php
Modified: trunk/library/classes/Gems/Controller/BrowseEditAction.php
===================================================================
--- trunk/library/classes/Gems/Controller/BrowseEditAction.php 2011-09-20 16:00:47 UTC (rev 53)
+++ trunk/library/classes/Gems/Controller/BrowseEditAction.php 2011-09-20 17:20:46 UTC (rev 54)
@@ -181,7 +181,7 @@
*
* @param MUtil_Model_TableBridge $bridge
* @param MUtil_Model_ModelAbstract $model
- * @rturn void
+ * @return void
*/
protected function addBrowseTableColumns(MUtil_Model_TableBridge $bridge, MUtil_Model_ModelAbstract $model)
{
Modified: trunk/library/classes/Gems/Default/TokenPlanAction.php
===================================================================
--- trunk/library/classes/Gems/Default/TokenPlanAction.php 2011-09-20 16:00:47 UTC (rev 53)
+++ trunk/library/classes/Gems/Default/TokenPlanAction.php 2011-09-20 17:20:46 UTC (rev 54)
@@ -75,7 +75,7 @@
$bridge->addSortable('gto_valid_from');
$bridge->addSortable('gto_valid_until');
- $bridge->addMultiSort('gr2o_patient_nr', $HTML->raw(', '), 'respondent_name');
+ $bridge->addMultiSort('gr2o_patient_nr', $HTML->raw('; '), 'respondent_name');
$bridge->addMultiSort('ggp_name', array($this->getActionLinks($bridge)));
$bridge->tr();
@@ -83,7 +83,7 @@
$bridge->addSortable('gto_completion_time');
if ($this->escort instanceof Gems_Project_Tracks_SingleTrackInterface) {
- $bridge->addMultiSort('calc_round_description', $HTML->raw(', '), 'gsu_survey_name');
+ $bridge->addMultiSort('calc_round_description', $HTML->raw('; '), 'gsu_survey_name');
} else {
$model->set('calc_track_info', 'tableDisplay', 'smallData');
$model->set('calc_round_description', 'tableDisplay', 'smallData');
Modified: trunk/library/controllers/MailLogController.php
===================================================================
--- trunk/library/controllers/MailLogController.php 2011-09-20 16:00:47 UTC (rev 53)
+++ trunk/library/controllers/MailLogController.php 2011-09-20 17:20:46 UTC (rev 54)
@@ -36,7 +36,7 @@
/**
*
- * @package Gems
+ * @package Gems
* @subpackage Default
* @copyright Copyright (c) 2011 Erasmus MC
* @license New BSD License
Modified: trunk/library/controllers/OverviewPlanController.php
===================================================================
--- trunk/library/controllers/OverviewPlanController.php 2011-09-20 16:00:47 UTC (rev 53)
+++ trunk/library/controllers/OverviewPlanController.php 2011-09-20 17:20:46 UTC (rev 54)
@@ -1,10 +1,9 @@
<?php
-
/**
* Copyright (c) 2011, Erasmus MC
* All rights reserved.
- *
+ *
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
@@ -15,7 +14,7 @@
* * Neither the name of Erasmus MC nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
@@ -26,8 +25,24 @@
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ *
+ * @package Gems
+ * @subpackage Default
+ * @author Matijs de Jong <mj...@ma...>
+ * @copyright Copyright (c) 2011 Erasmus MC
+ * @license New BSD License
+ * @version $Id$
*/
+/**
+ *
+ * @package Gems
+ * @subpackage Default
+ * @copyright Copyright (c) 2011 Erasmus MC
+ * @license New BSD License
+ * @since Class available since version 1.1
+ */
class OverviewPlanController extends Gems_Default_OverviewPlanAction
{
}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|