From 6d924be68cbec4db5d54afac86d1cd6f31ce4927 Mon Sep 17 00:00:00 2001 From: Karsten Heiken Date: Mon, 1 Aug 2011 11:04:07 +0200 Subject: [PATCH] Set the @author in my files --- application/controllers/api.php | 2 +- application/controllers/dashboard.php | 3 +++ application/controllers/jobs.php | 3 +++ application/controllers/programs.php | 2 +- application/controllers/projects.php | 2 +- application/controllers/settings.php | 2 +- application/controllers/trials.php | 2 +- application/models/job.php | 2 +- application/models/program.php | 2 +- application/models/project.php | 3 +-- application/models/server.php | 2 +- application/models/trial.php | 2 +- 12 files changed, 16 insertions(+), 11 deletions(-) diff --git a/application/controllers/api.php b/application/controllers/api.php index c562f1f..04dbd41 100644 --- a/application/controllers/api.php +++ b/application/controllers/api.php @@ -25,7 +25,7 @@ /** * Simple RPC class to handle requests from calculation servers. * - * @author Karsten Heiken, karsten@disposed.de + * @author Karsten Heiken */ class api extends CI_Controller { diff --git a/application/controllers/dashboard.php b/application/controllers/dashboard.php index 59d538b..0c8773d 100644 --- a/application/controllers/dashboard.php +++ b/application/controllers/dashboard.php @@ -22,6 +22,9 @@ * THE SOFTWARE. */ +/** + * @author Karsten Heiken + */ class Dashboard extends CI_Controller { /** diff --git a/application/controllers/jobs.php b/application/controllers/jobs.php index 77b3fd9..50211c9 100644 --- a/application/controllers/jobs.php +++ b/application/controllers/jobs.php @@ -22,6 +22,9 @@ * THE SOFTWARE. */ +/** + * @author Karsten Heiken + */ class Jobs extends CI_Controller { /** diff --git a/application/controllers/programs.php b/application/controllers/programs.php index 70e32a0..43a4e80 100644 --- a/application/controllers/programs.php +++ b/application/controllers/programs.php @@ -23,7 +23,7 @@ */ /** - * @author Karsten Heiken, karsten@disposed.de + * @author Karsten Heiken */ class Programs extends CI_Controller { diff --git a/application/controllers/projects.php b/application/controllers/projects.php index 34c2754..c2a8676 100644 --- a/application/controllers/projects.php +++ b/application/controllers/projects.php @@ -23,7 +23,7 @@ */ /** - * @author Karsten Heiken, karsten@disposed.de + * @author Karsten Heiken */ class Projects extends CI_Controller { diff --git a/application/controllers/settings.php b/application/controllers/settings.php index cf5fae3..ba33064 100644 --- a/application/controllers/settings.php +++ b/application/controllers/settings.php @@ -23,7 +23,7 @@ */ /** - * @author Karsten Heiken, karsten@disposed.de + * @author Karsten Heiken */ class Settings extends CI_Controller { diff --git a/application/controllers/trials.php b/application/controllers/trials.php index 0ecf5c9..62a1945 100644 --- a/application/controllers/trials.php +++ b/application/controllers/trials.php @@ -25,7 +25,7 @@ /** * Trials are used to store different variations of the same project. * - * @author Karsten Heiken, karsten@disposed.de + * @author Karsten Heiken */ class Trials extends CI_Controller { diff --git a/application/models/job.php b/application/models/job.php index 2c3395e..253cbcf 100644 --- a/application/models/job.php +++ b/application/models/job.php @@ -23,7 +23,7 @@ */ /** - * @author Karsten Heiken, karsten@disposed.de + * @author Karsten Heiken */ class Job extends CI_Model { diff --git a/application/models/program.php b/application/models/program.php index b87e5be..324a012 100644 --- a/application/models/program.php +++ b/application/models/program.php @@ -25,7 +25,7 @@ /** * Programs are used to do the actual calculation of a trial. * - * @author Karsten Heiken, karsten@disposed.de + * @author Karsten Heiken */ class Program extends CI_Model { diff --git a/application/models/project.php b/application/models/project.php index 09df452..56ccc19 100644 --- a/application/models/project.php +++ b/application/models/project.php @@ -25,8 +25,7 @@ /** * Configurations are used to store different variations of the same project. * - * @property CI_DB_active_record $db - * @author Karsten Heiken, karsten@disposed.de + * @author Karsten Heiken */ class Project extends CI_Model { diff --git a/application/models/server.php b/application/models/server.php index 3be549b..0c97635 100644 --- a/application/models/server.php +++ b/application/models/server.php @@ -23,7 +23,7 @@ */ /** - * @author Karsten Heiken, karsten@disposed.de + * @author Karsten Heiken */ class Server extends CI_Model { diff --git a/application/models/trial.php b/application/models/trial.php index 20e3085..c18769c 100644 --- a/application/models/trial.php +++ b/application/models/trial.php @@ -25,7 +25,7 @@ /** * Trials are used to store different variations of the same project. * - * @author Karsten Heiken, karsten@disposed.de + * @author Karsten Heiken */ class Trial extends CI_Model {