From 346b2c6cf8dc944417021ba5c6580a56fe2f698f Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Fri, 1 Apr 2011 11:15:13 +0200 Subject: [PATCH 1/4] Call validateRevision(), not isValidRevision(), fixes issue 657 --- src/IDF/Scm/Mercurial.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/IDF/Scm/Mercurial.php b/src/IDF/Scm/Mercurial.php index b981138..605a715 100644 --- a/src/IDF/Scm/Mercurial.php +++ b/src/IDF/Scm/Mercurial.php @@ -94,7 +94,7 @@ class IDF_Scm_Mercurial extends IDF_Scm escapeshellarg($this->repo), escapeshellarg($rev)); $cmd = Pluf::f('idf_exec_cmd_prefix', '').$cmd; - self::exec('IDF_Scm_Mercurial::isValidRevision', $cmd, $out, $ret); + self::exec('IDF_Scm_Mercurial::validateRevision', $cmd, $out, $ret); // FIXME: apparently a given hg revision can also be ambigious - // handle this case here sometime @@ -336,7 +336,7 @@ class IDF_Scm_Mercurial extends IDF_Scm */ public function getCommit($commit, $getdiff=false) { - if (!$this->isValidRevision($commit)) { + if ($this->validateRevision($commit) != IDF_Scm::REVISION_VALID) { return false; } $tmpl = ($getdiff) From 4976c20935c19f4664a466b95ef28b9c332eb911 Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Fri, 1 Apr 2011 11:17:21 +0200 Subject: [PATCH 2/4] Its validateRevision, not isValidRevision, here as well --- src/IDF/Tests/TestMonotone.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/IDF/Tests/TestMonotone.php b/src/IDF/Tests/TestMonotone.php index f151122..622be72 100644 --- a/src/IDF/Tests/TestMonotone.php +++ b/src/IDF/Tests/TestMonotone.php @@ -231,9 +231,9 @@ class IDF_Tests_TestMonotone extends UnitTestCase $this->assertEqual("second\n", $files[0]->log); } - public function testIsValidRevision() + public function testvalidateRevision() { - $this->assertTrue($this->mtnInstance->isValidRevision("t:release-1.0")); - $this->assertFalse($this->mtnInstance->isValidRevision("abcdef12345")); + $this->assertEquals(IDF_Scm::REVISION_VALID, $this->mtnInstance->validateRevision("t:release-1.0")); + $this->assertEquals(IDF_Scm::REVISION_INVALID, $this->mtnInstance->validateRevision("abcdef12345")); } } From 5ea4b02205824e094b1efa3e706a37ce5559bc4b Mon Sep 17 00:00:00 2001 From: William MARTIN Date: Sat, 2 Apr 2011 21:37:07 +0200 Subject: [PATCH 3/4] Update copyrigt --- scripts/gitcron.php | 2 +- scripts/gitpostupdate.php | 2 +- scripts/gitserve.php | 2 +- scripts/gitserve.py | 2 +- scripts/hgchangegroup.php | 2 +- scripts/mtnpostpush.php | 2 +- scripts/queuecron.php | 2 +- scripts/svnpostcommit.php | 2 +- scripts/svnpostrevpropchange.php | 2 +- src/IDF/Commit.php | 2 +- src/IDF/Conf.php | 2 +- src/IDF/Config/DataProxy.php | 2 +- src/IDF/Diff.php | 2 +- src/IDF/EmailAddress.php | 2 +- src/IDF/FileUtil.php | 2 +- src/IDF/Form/Admin/ProjectCreate.php | 2 +- src/IDF/Form/Admin/ProjectDelete.php | 2 +- src/IDF/Form/Admin/ProjectUpdate.php | 2 +- src/IDF/Form/Admin/UserCreate.php | 2 +- src/IDF/Form/Admin/UserUpdate.php | 2 +- src/IDF/Form/IssueCreate.php | 2 +- src/IDF/Form/IssueTrackingConf.php | 2 +- src/IDF/Form/IssueUpdate.php | 2 +- src/IDF/Form/MembersConf.php | 2 +- src/IDF/Form/Password.php | 2 +- src/IDF/Form/PasswordInputKey.php | 2 +- src/IDF/Form/PasswordReset.php | 2 +- src/IDF/Form/Register.php | 2 +- src/IDF/Form/RegisterConfirmation.php | 2 +- src/IDF/Form/RegisterInputKey.php | 2 +- src/IDF/Form/ReviewCreate.php | 2 +- src/IDF/Form/ReviewFileComment.php | 2 +- src/IDF/Form/SourceConf.php | 2 +- src/IDF/Form/TabsConf.php | 2 +- src/IDF/Form/UpdateUpload.php | 2 +- src/IDF/Form/Upload.php | 2 +- src/IDF/Form/UploadConf.php | 2 +- src/IDF/Form/UserAccount.php | 2 +- src/IDF/Form/UserChangeEmail.php | 2 +- src/IDF/Form/WikiConf.php | 2 +- src/IDF/Form/WikiCreate.php | 2 +- src/IDF/Form/WikiDelete.php | 2 +- src/IDF/Form/WikiUpdate.php | 2 +- src/IDF/Gconf.php | 2 +- src/IDF/Issue.php | 2 +- src/IDF/IssueComment.php | 2 +- src/IDF/IssueFile.php | 2 +- src/IDF/Key.php | 2 +- src/IDF/Middleware.php | 2 +- src/IDF/Migrations/10SshKey.php | 2 +- src/IDF/Migrations/11GitCache.php | 2 +- src/IDF/Migrations/12DownloadDesc.php | 2 +- src/IDF/Migrations/13NewReview.php | 2 +- src/IDF/Migrations/14Queue.php | 2 +- src/IDF/Migrations/15AddGconf.php | 2 +- src/IDF/Migrations/16AddUserMail.php | 2 +- src/IDF/Migrations/1Download.php | 2 +- src/IDF/Migrations/2Search.php | 2 +- src/IDF/Migrations/3Attachments.php | 2 +- src/IDF/Migrations/4Timeline.php | 2 +- src/IDF/Migrations/5DescToText.php | 2 +- src/IDF/Migrations/6PrivateProject.php | 2 +- src/IDF/Migrations/7Wiki.php | 2 +- src/IDF/Migrations/8CodeReview.php | 2 +- src/IDF/Migrations/9ShortDescription.php | 2 +- src/IDF/Migrations/Backup.php | 2 +- src/IDF/Migrations/Install.php | 2 +- src/IDF/Plugin/SyncGit.php | 2 +- src/IDF/Plugin/SyncGit/Cron.php | 2 +- src/IDF/Plugin/SyncGit/Serve.php | 2 +- src/IDF/Plugin/SyncMercurial.php | 2 +- src/IDF/Plugin/SyncMonotone.php | 2 +- .../SyncMonotone/hooks.d/indefero_authorize_remote_automate.lua | 2 +- src/IDF/Plugin/SyncMonotone/hooks.d/indefero_post_push.lua | 2 +- src/IDF/Plugin/SyncMonotone/monotonerc.in | 2 +- src/IDF/Plugin/SyncSvn.php | 2 +- src/IDF/Precondition.php | 2 +- src/IDF/Project.php | 2 +- src/IDF/Queue.php | 2 +- src/IDF/Review.php | 2 +- src/IDF/Review/Comment.php | 2 +- src/IDF/Review/FileComment.php | 2 +- src/IDF/Review/Patch.php | 2 +- src/IDF/Scm.php | 2 +- src/IDF/Scm/Cache/Git.php | 2 +- src/IDF/Scm/Exception.php | 2 +- src/IDF/Scm/Git.php | 2 +- src/IDF/Scm/Mercurial.php | 2 +- src/IDF/Scm/Monotone.php | 2 +- src/IDF/Scm/Monotone/BasicIO.php | 2 +- src/IDF/Scm/Monotone/IStdio.php | 2 +- src/IDF/Scm/Monotone/Stdio.php | 2 +- src/IDF/Scm/Monotone/Usher.php | 2 +- src/IDF/Scm/Svn.php | 2 +- src/IDF/Search.php | 2 +- src/IDF/Search/Occ.php | 2 +- src/IDF/Tag.php | 2 +- src/IDF/Template.php | 2 +- src/IDF/Template/AppVersion.php | 2 +- src/IDF/Template/AssignShowUser.php | 2 +- src/IDF/Template/HotKey.php | 2 +- src/IDF/Template/IssueComment.php | 2 +- src/IDF/Template/Markdown.php | 2 +- src/IDF/Template/MarkdownPrefilter.php | 2 +- src/IDF/Template/ShowUser.php | 2 +- src/IDF/Template/TimelineFragment.php | 2 +- src/IDF/Tests/TestDiff.php | 2 +- src/IDF/Tests/TestFileUtil.php | 2 +- src/IDF/Tests/TestGit.php | 2 +- src/IDF/Tests/TestIssue.php | 2 +- src/IDF/Tests/TestMonotone.php | 2 +- src/IDF/Tests/TestProject.php | 2 +- src/IDF/Tests/TestSource.php | 2 +- src/IDF/Tests/TestSyncGit.php | 2 +- src/IDF/Timeline.php | 2 +- src/IDF/Timeline/Paginator.php | 2 +- src/IDF/Upload.php | 2 +- src/IDF/UserData.php | 2 +- src/IDF/Views.php | 2 +- src/IDF/Views/Admin.php | 2 +- src/IDF/Views/Api.php | 2 +- src/IDF/Views/Download.php | 2 +- src/IDF/Views/Issue.php | 2 +- src/IDF/Views/Project.php | 2 +- src/IDF/Views/Review.php | 2 +- src/IDF/Views/Source.php | 2 +- src/IDF/Views/Source/Precondition.php | 2 +- src/IDF/Views/Source/Svn.php | 2 +- src/IDF/Views/User.php | 2 +- src/IDF/Views/Wiki.php | 2 +- src/IDF/Webhook.php | 2 +- src/IDF/WikiPage.php | 2 +- src/IDF/WikiRevision.php | 2 +- src/IDF/conf/urls.php | 2 +- src/IDF/relations.php | 2 +- src/IDF/templates/idf/base-full.html | 2 +- src/IDF/templates/idf/base-simple.html | 2 +- src/IDF/templates/idf/base.html | 2 +- src/IDF/templates/idf/gadmin/base.html | 2 +- test/IDF/DiffTest.php | 2 +- test/IDF/Scm/Monotone/BasicIOTest.php | 2 +- test/IDF/Scm/Monotone/ZipRenderTest.php | 2 +- www/index.php | 2 +- www/media/idf/css/style.css | 2 +- 144 files changed, 144 insertions(+), 144 deletions(-) diff --git a/scripts/gitcron.php b/scripts/gitcron.php index 3c32dbc..32587c8 100644 --- a/scripts/gitcron.php +++ b/scripts/gitcron.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/scripts/gitpostupdate.php b/scripts/gitpostupdate.php index 7c48b6c..c559dda 100644 --- a/scripts/gitpostupdate.php +++ b/scripts/gitpostupdate.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008-2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/scripts/gitserve.php b/scripts/gitserve.php index d27ece5..7bcd124 100644 --- a/scripts/gitserve.php +++ b/scripts/gitserve.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/scripts/gitserve.py b/scripts/gitserve.py index a955a99..24d1860 100644 --- a/scripts/gitserve.py +++ b/scripts/gitserve.py @@ -3,7 +3,7 @@ # # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/scripts/hgchangegroup.php b/scripts/hgchangegroup.php index b1358ee..6fed630 100755 --- a/scripts/hgchangegroup.php +++ b/scripts/hgchangegroup.php @@ -4,7 +4,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008-2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/scripts/mtnpostpush.php b/scripts/mtnpostpush.php index 0fc9e02..bae9d3f 100644 --- a/scripts/mtnpostpush.php +++ b/scripts/mtnpostpush.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008-2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/scripts/queuecron.php b/scripts/queuecron.php index c95da71..7539eef 100644 --- a/scripts/queuecron.php +++ b/scripts/queuecron.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/scripts/svnpostcommit.php b/scripts/svnpostcommit.php index c38c796..d118288 100644 --- a/scripts/svnpostcommit.php +++ b/scripts/svnpostcommit.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008-2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/scripts/svnpostrevpropchange.php b/scripts/svnpostrevpropchange.php index 147c0e5..5e1687d 100644 --- a/scripts/svnpostrevpropchange.php +++ b/scripts/svnpostrevpropchange.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008-2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Commit.php b/src/IDF/Commit.php index bfe2422..0e724ad 100644 --- a/src/IDF/Commit.php +++ b/src/IDF/Commit.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Conf.php b/src/IDF/Conf.php index d322617..568d484 100644 --- a/src/IDF/Conf.php +++ b/src/IDF/Conf.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Config/DataProxy.php b/src/IDF/Config/DataProxy.php index fb88b70..9bfc628 100644 --- a/src/IDF/Config/DataProxy.php +++ b/src/IDF/Config/DataProxy.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Diff.php b/src/IDF/Diff.php index 6e43d1b..4bd3abc 100644 --- a/src/IDF/Diff.php +++ b/src/IDF/Diff.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/EmailAddress.php b/src/IDF/EmailAddress.php index 34b6e68..0220250 100644 --- a/src/IDF/EmailAddress.php +++ b/src/IDF/EmailAddress.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/FileUtil.php b/src/IDF/FileUtil.php index 725d980..346dfa8 100644 --- a/src/IDF/FileUtil.php +++ b/src/IDF/FileUtil.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/Admin/ProjectCreate.php b/src/IDF/Form/Admin/ProjectCreate.php index 262aaee..f111654 100644 --- a/src/IDF/Form/Admin/ProjectCreate.php +++ b/src/IDF/Form/Admin/ProjectCreate.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/Admin/ProjectDelete.php b/src/IDF/Form/Admin/ProjectDelete.php index 67ee0e5..4b7cb5d 100644 --- a/src/IDF/Form/Admin/ProjectDelete.php +++ b/src/IDF/Form/Admin/ProjectDelete.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/Admin/ProjectUpdate.php b/src/IDF/Form/Admin/ProjectUpdate.php index 3fd9156..e600e08 100644 --- a/src/IDF/Form/Admin/ProjectUpdate.php +++ b/src/IDF/Form/Admin/ProjectUpdate.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/Admin/UserCreate.php b/src/IDF/Form/Admin/UserCreate.php index 8a20d70..b8e25a1 100644 --- a/src/IDF/Form/Admin/UserCreate.php +++ b/src/IDF/Form/Admin/UserCreate.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/Admin/UserUpdate.php b/src/IDF/Form/Admin/UserUpdate.php index a962ca2..9126bfa 100644 --- a/src/IDF/Form/Admin/UserUpdate.php +++ b/src/IDF/Form/Admin/UserUpdate.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/IssueCreate.php b/src/IDF/Form/IssueCreate.php index 010ebd9..b52987c 100644 --- a/src/IDF/Form/IssueCreate.php +++ b/src/IDF/Form/IssueCreate.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/IssueTrackingConf.php b/src/IDF/Form/IssueTrackingConf.php index b2aef76..34dce61 100644 --- a/src/IDF/Form/IssueTrackingConf.php +++ b/src/IDF/Form/IssueTrackingConf.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/IssueUpdate.php b/src/IDF/Form/IssueUpdate.php index 2d5245f..b453b9a 100644 --- a/src/IDF/Form/IssueUpdate.php +++ b/src/IDF/Form/IssueUpdate.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/MembersConf.php b/src/IDF/Form/MembersConf.php index b5341e3..b2c541a 100644 --- a/src/IDF/Form/MembersConf.php +++ b/src/IDF/Form/MembersConf.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/Password.php b/src/IDF/Form/Password.php index 98b6949..c913492 100644 --- a/src/IDF/Form/Password.php +++ b/src/IDF/Form/Password.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/PasswordInputKey.php b/src/IDF/Form/PasswordInputKey.php index 1dfc430..433b3ac 100644 --- a/src/IDF/Form/PasswordInputKey.php +++ b/src/IDF/Form/PasswordInputKey.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/PasswordReset.php b/src/IDF/Form/PasswordReset.php index 0cdff01..9e85d9c 100644 --- a/src/IDF/Form/PasswordReset.php +++ b/src/IDF/Form/PasswordReset.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/Register.php b/src/IDF/Form/Register.php index a2df09c..dba6f30 100644 --- a/src/IDF/Form/Register.php +++ b/src/IDF/Form/Register.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/RegisterConfirmation.php b/src/IDF/Form/RegisterConfirmation.php index e8aad6d..b652111 100644 --- a/src/IDF/Form/RegisterConfirmation.php +++ b/src/IDF/Form/RegisterConfirmation.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/RegisterInputKey.php b/src/IDF/Form/RegisterInputKey.php index a7440e3..8b5a7a9 100644 --- a/src/IDF/Form/RegisterInputKey.php +++ b/src/IDF/Form/RegisterInputKey.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/ReviewCreate.php b/src/IDF/Form/ReviewCreate.php index e709695..889ace5 100644 --- a/src/IDF/Form/ReviewCreate.php +++ b/src/IDF/Form/ReviewCreate.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/ReviewFileComment.php b/src/IDF/Form/ReviewFileComment.php index 7563b5f..bdafe34 100644 --- a/src/IDF/Form/ReviewFileComment.php +++ b/src/IDF/Form/ReviewFileComment.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/SourceConf.php b/src/IDF/Form/SourceConf.php index 311d677..df2a6cc 100644 --- a/src/IDF/Form/SourceConf.php +++ b/src/IDF/Form/SourceConf.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/TabsConf.php b/src/IDF/Form/TabsConf.php index 969c6d7..8ba3c2a 100644 --- a/src/IDF/Form/TabsConf.php +++ b/src/IDF/Form/TabsConf.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/UpdateUpload.php b/src/IDF/Form/UpdateUpload.php index 258890b..1544cb6 100644 --- a/src/IDF/Form/UpdateUpload.php +++ b/src/IDF/Form/UpdateUpload.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/Upload.php b/src/IDF/Form/Upload.php index 8ce8595..592286e 100644 --- a/src/IDF/Form/Upload.php +++ b/src/IDF/Form/Upload.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/UploadConf.php b/src/IDF/Form/UploadConf.php index bee8701..f6b4c7d 100644 --- a/src/IDF/Form/UploadConf.php +++ b/src/IDF/Form/UploadConf.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/UserAccount.php b/src/IDF/Form/UserAccount.php index 6226c3a..15d845e 100644 --- a/src/IDF/Form/UserAccount.php +++ b/src/IDF/Form/UserAccount.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/UserChangeEmail.php b/src/IDF/Form/UserChangeEmail.php index 308bd6e..578eb5c 100644 --- a/src/IDF/Form/UserChangeEmail.php +++ b/src/IDF/Form/UserChangeEmail.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/WikiConf.php b/src/IDF/Form/WikiConf.php index 5ed321a..7038486 100644 --- a/src/IDF/Form/WikiConf.php +++ b/src/IDF/Form/WikiConf.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/WikiCreate.php b/src/IDF/Form/WikiCreate.php index 9cca55a..df1f966 100644 --- a/src/IDF/Form/WikiCreate.php +++ b/src/IDF/Form/WikiCreate.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/WikiDelete.php b/src/IDF/Form/WikiDelete.php index e40d14e..1595ecb 100644 --- a/src/IDF/Form/WikiDelete.php +++ b/src/IDF/Form/WikiDelete.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Form/WikiUpdate.php b/src/IDF/Form/WikiUpdate.php index b043511..1b551c8 100644 --- a/src/IDF/Form/WikiUpdate.php +++ b/src/IDF/Form/WikiUpdate.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Gconf.php b/src/IDF/Gconf.php index 5f84008..0ab63a0 100644 --- a/src/IDF/Gconf.php +++ b/src/IDF/Gconf.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Issue.php b/src/IDF/Issue.php index 3be0253..b173209 100644 --- a/src/IDF/Issue.php +++ b/src/IDF/Issue.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/IssueComment.php b/src/IDF/IssueComment.php index 084ecf3..366b3e2 100644 --- a/src/IDF/IssueComment.php +++ b/src/IDF/IssueComment.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/IssueFile.php b/src/IDF/IssueFile.php index 9ecf559..564247b 100644 --- a/src/IDF/IssueFile.php +++ b/src/IDF/IssueFile.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Key.php b/src/IDF/Key.php index 8896bdc..7119e7f 100644 --- a/src/IDF/Key.php +++ b/src/IDF/Key.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Middleware.php b/src/IDF/Middleware.php index 028f412..013929d 100644 --- a/src/IDF/Middleware.php +++ b/src/IDF/Middleware.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/10SshKey.php b/src/IDF/Migrations/10SshKey.php index bed7cbb..33f17dd 100644 --- a/src/IDF/Migrations/10SshKey.php +++ b/src/IDF/Migrations/10SshKey.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/11GitCache.php b/src/IDF/Migrations/11GitCache.php index 4fa1f31..ccc97c8 100644 --- a/src/IDF/Migrations/11GitCache.php +++ b/src/IDF/Migrations/11GitCache.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/12DownloadDesc.php b/src/IDF/Migrations/12DownloadDesc.php index ffd5772..175cedb 100644 --- a/src/IDF/Migrations/12DownloadDesc.php +++ b/src/IDF/Migrations/12DownloadDesc.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/13NewReview.php b/src/IDF/Migrations/13NewReview.php index b3d34e5..0b75ce8 100644 --- a/src/IDF/Migrations/13NewReview.php +++ b/src/IDF/Migrations/13NewReview.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/14Queue.php b/src/IDF/Migrations/14Queue.php index 24904a9..36627e5 100644 --- a/src/IDF/Migrations/14Queue.php +++ b/src/IDF/Migrations/14Queue.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/15AddGconf.php b/src/IDF/Migrations/15AddGconf.php index d783259..9638725 100644 --- a/src/IDF/Migrations/15AddGconf.php +++ b/src/IDF/Migrations/15AddGconf.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/16AddUserMail.php b/src/IDF/Migrations/16AddUserMail.php index 9856339..2ef2365 100644 --- a/src/IDF/Migrations/16AddUserMail.php +++ b/src/IDF/Migrations/16AddUserMail.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/1Download.php b/src/IDF/Migrations/1Download.php index dcda585..3f081bf 100644 --- a/src/IDF/Migrations/1Download.php +++ b/src/IDF/Migrations/1Download.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/2Search.php b/src/IDF/Migrations/2Search.php index 346f2b0..4f8e124 100644 --- a/src/IDF/Migrations/2Search.php +++ b/src/IDF/Migrations/2Search.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/3Attachments.php b/src/IDF/Migrations/3Attachments.php index 1838a05..3e9611b 100644 --- a/src/IDF/Migrations/3Attachments.php +++ b/src/IDF/Migrations/3Attachments.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/4Timeline.php b/src/IDF/Migrations/4Timeline.php index 8708fad..afa4e5d 100644 --- a/src/IDF/Migrations/4Timeline.php +++ b/src/IDF/Migrations/4Timeline.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/5DescToText.php b/src/IDF/Migrations/5DescToText.php index 55a9f4f..40a1d63 100644 --- a/src/IDF/Migrations/5DescToText.php +++ b/src/IDF/Migrations/5DescToText.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/6PrivateProject.php b/src/IDF/Migrations/6PrivateProject.php index 04499f0..eef47f1 100644 --- a/src/IDF/Migrations/6PrivateProject.php +++ b/src/IDF/Migrations/6PrivateProject.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/7Wiki.php b/src/IDF/Migrations/7Wiki.php index dd4ced9..17e487a 100644 --- a/src/IDF/Migrations/7Wiki.php +++ b/src/IDF/Migrations/7Wiki.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/8CodeReview.php b/src/IDF/Migrations/8CodeReview.php index 2b0bff9..6b0c5e7 100644 --- a/src/IDF/Migrations/8CodeReview.php +++ b/src/IDF/Migrations/8CodeReview.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/9ShortDescription.php b/src/IDF/Migrations/9ShortDescription.php index d6f2f1c..0a258fc 100644 --- a/src/IDF/Migrations/9ShortDescription.php +++ b/src/IDF/Migrations/9ShortDescription.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/Backup.php b/src/IDF/Migrations/Backup.php index c075d69..406b086 100644 --- a/src/IDF/Migrations/Backup.php +++ b/src/IDF/Migrations/Backup.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Migrations/Install.php b/src/IDF/Migrations/Install.php index 9aff396..98c62fc 100644 --- a/src/IDF/Migrations/Install.php +++ b/src/IDF/Migrations/Install.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Plugin/SyncGit.php b/src/IDF/Plugin/SyncGit.php index dfb5559..ac527a1 100644 --- a/src/IDF/Plugin/SyncGit.php +++ b/src/IDF/Plugin/SyncGit.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Plugin/SyncGit/Cron.php b/src/IDF/Plugin/SyncGit/Cron.php index f47063d..6d136f4 100644 --- a/src/IDF/Plugin/SyncGit/Cron.php +++ b/src/IDF/Plugin/SyncGit/Cron.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Plugin/SyncGit/Serve.php b/src/IDF/Plugin/SyncGit/Serve.php index 842797b..b69b8fb 100644 --- a/src/IDF/Plugin/SyncGit/Serve.php +++ b/src/IDF/Plugin/SyncGit/Serve.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Plugin/SyncMercurial.php b/src/IDF/Plugin/SyncMercurial.php index 157c364..ac6855c 100644 --- a/src/IDF/Plugin/SyncMercurial.php +++ b/src/IDF/Plugin/SyncMercurial.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Plugin/SyncMonotone.php b/src/IDF/Plugin/SyncMonotone.php index 819d100..57f4035 100644 --- a/src/IDF/Plugin/SyncMonotone.php +++ b/src/IDF/Plugin/SyncMonotone.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Plugin/SyncMonotone/hooks.d/indefero_authorize_remote_automate.lua b/src/IDF/Plugin/SyncMonotone/hooks.d/indefero_authorize_remote_automate.lua index e66a64b..a1f43a3 100644 --- a/src/IDF/Plugin/SyncMonotone/hooks.d/indefero_authorize_remote_automate.lua +++ b/src/IDF/Plugin/SyncMonotone/hooks.d/indefero_authorize_remote_automate.lua @@ -1,6 +1,6 @@ -- ***** BEGIN LICENSE BLOCK ***** -- This file is part of InDefero, an open source project management application. --- Copyright (C) 2011 Céondo Ltd and contributors. +-- Copyright (C) 2008-2011 Céondo Ltd and contributors. -- Copyright (C) 2010 Thomas Keller -- Richard Levitte -- diff --git a/src/IDF/Plugin/SyncMonotone/hooks.d/indefero_post_push.lua b/src/IDF/Plugin/SyncMonotone/hooks.d/indefero_post_push.lua index 3038037..2f58f64 100644 --- a/src/IDF/Plugin/SyncMonotone/hooks.d/indefero_post_push.lua +++ b/src/IDF/Plugin/SyncMonotone/hooks.d/indefero_post_push.lua @@ -1,6 +1,6 @@ -- ***** BEGIN LICENSE BLOCK ***** -- This file is part of InDefero, an open source project management application. --- Copyright (C) 2011 Céondo Ltd and contributors. +-- Copyright (C) 2008-2011 Céondo Ltd and contributors. -- -- InDefero is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Plugin/SyncMonotone/monotonerc.in b/src/IDF/Plugin/SyncMonotone/monotonerc.in index 985ef49..fcf3c15 100644 --- a/src/IDF/Plugin/SyncMonotone/monotonerc.in +++ b/src/IDF/Plugin/SyncMonotone/monotonerc.in @@ -1,6 +1,6 @@ -- ***** BEGIN LICENSE BLOCK ***** -- This file is part of InDefero, an open source project management application. --- Copyright (C) 2011 Céondo Ltd and contributors. +-- Copyright (C) 2008-2011 Céondo Ltd and contributors. -- -- InDefero is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Plugin/SyncSvn.php b/src/IDF/Plugin/SyncSvn.php index 3b926e8..87d6ad2 100644 --- a/src/IDF/Plugin/SyncSvn.php +++ b/src/IDF/Plugin/SyncSvn.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Precondition.php b/src/IDF/Precondition.php index 314c68e..163f457 100644 --- a/src/IDF/Precondition.php +++ b/src/IDF/Precondition.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Project.php b/src/IDF/Project.php index 7532cfe..3a542c6 100644 --- a/src/IDF/Project.php +++ b/src/IDF/Project.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Queue.php b/src/IDF/Queue.php index 4f8733c..356cd34 100644 --- a/src/IDF/Queue.php +++ b/src/IDF/Queue.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Review.php b/src/IDF/Review.php index 0d3b8b0..2177aaf 100644 --- a/src/IDF/Review.php +++ b/src/IDF/Review.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Review/Comment.php b/src/IDF/Review/Comment.php index b3becda..762973d 100644 --- a/src/IDF/Review/Comment.php +++ b/src/IDF/Review/Comment.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Review/FileComment.php b/src/IDF/Review/FileComment.php index 4e63a7c..803f4c9 100644 --- a/src/IDF/Review/FileComment.php +++ b/src/IDF/Review/FileComment.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Review/Patch.php b/src/IDF/Review/Patch.php index 656493d..a98f49d 100644 --- a/src/IDF/Review/Patch.php +++ b/src/IDF/Review/Patch.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Scm.php b/src/IDF/Scm.php index d299458..6c0d866 100644 --- a/src/IDF/Scm.php +++ b/src/IDF/Scm.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Scm/Cache/Git.php b/src/IDF/Scm/Cache/Git.php index cb32631..499f69c 100644 --- a/src/IDF/Scm/Cache/Git.php +++ b/src/IDF/Scm/Cache/Git.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Scm/Exception.php b/src/IDF/Scm/Exception.php index eae2fd6..7d4514b 100644 --- a/src/IDF/Scm/Exception.php +++ b/src/IDF/Scm/Exception.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Scm/Git.php b/src/IDF/Scm/Git.php index 926f738..44c651a 100644 --- a/src/IDF/Scm/Git.php +++ b/src/IDF/Scm/Git.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Scm/Mercurial.php b/src/IDF/Scm/Mercurial.php index 605a715..25b5708 100644 --- a/src/IDF/Scm/Mercurial.php +++ b/src/IDF/Scm/Mercurial.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Scm/Monotone.php b/src/IDF/Scm/Monotone.php index 7a3c210..ec1fb7b 100644 --- a/src/IDF/Scm/Monotone.php +++ b/src/IDF/Scm/Monotone.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Scm/Monotone/BasicIO.php b/src/IDF/Scm/Monotone/BasicIO.php index dfac789..80ca611 100644 --- a/src/IDF/Scm/Monotone/BasicIO.php +++ b/src/IDF/Scm/Monotone/BasicIO.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Scm/Monotone/IStdio.php b/src/IDF/Scm/Monotone/IStdio.php index b6cf544..9e4665f 100644 --- a/src/IDF/Scm/Monotone/IStdio.php +++ b/src/IDF/Scm/Monotone/IStdio.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2011 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Scm/Monotone/Stdio.php b/src/IDF/Scm/Monotone/Stdio.php index c47e005..5409764 100644 --- a/src/IDF/Scm/Monotone/Stdio.php +++ b/src/IDF/Scm/Monotone/Stdio.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Scm/Monotone/Usher.php b/src/IDF/Scm/Monotone/Usher.php index ed423ea..614a94f 100644 --- a/src/IDF/Scm/Monotone/Usher.php +++ b/src/IDF/Scm/Monotone/Usher.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Scm/Svn.php b/src/IDF/Scm/Svn.php index 5767aba..9195a4b 100644 --- a/src/IDF/Scm/Svn.php +++ b/src/IDF/Scm/Svn.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Search.php b/src/IDF/Search.php index 919d1d0..39ea073 100644 --- a/src/IDF/Search.php +++ b/src/IDF/Search.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Search/Occ.php b/src/IDF/Search/Occ.php index 8927c54..f878fa1 100644 --- a/src/IDF/Search/Occ.php +++ b/src/IDF/Search/Occ.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Tag.php b/src/IDF/Tag.php index 3c44bfb..59026c2 100644 --- a/src/IDF/Tag.php +++ b/src/IDF/Tag.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Template.php b/src/IDF/Template.php index b7b2668..21f9c10 100644 --- a/src/IDF/Template.php +++ b/src/IDF/Template.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2011 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Template/AppVersion.php b/src/IDF/Template/AppVersion.php index 00d6f2a..6ccbfc2 100644 --- a/src/IDF/Template/AppVersion.php +++ b/src/IDF/Template/AppVersion.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2011 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Template/AssignShowUser.php b/src/IDF/Template/AssignShowUser.php index 1b30cb3..b07c514 100644 --- a/src/IDF/Template/AssignShowUser.php +++ b/src/IDF/Template/AssignShowUser.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Template/HotKey.php b/src/IDF/Template/HotKey.php index f083b51..01ebae8 100644 --- a/src/IDF/Template/HotKey.php +++ b/src/IDF/Template/HotKey.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Template/IssueComment.php b/src/IDF/Template/IssueComment.php index 287a8b3..da7fe19 100644 --- a/src/IDF/Template/IssueComment.php +++ b/src/IDF/Template/IssueComment.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Template/Markdown.php b/src/IDF/Template/Markdown.php index 2652719..7ce47b1 100644 --- a/src/IDF/Template/Markdown.php +++ b/src/IDF/Template/Markdown.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Template/MarkdownPrefilter.php b/src/IDF/Template/MarkdownPrefilter.php index ecf2b1f..f1f3967 100644 --- a/src/IDF/Template/MarkdownPrefilter.php +++ b/src/IDF/Template/MarkdownPrefilter.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. - # Copyright (C) 2008 Céondo Ltd and contributors. + # Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Template/ShowUser.php b/src/IDF/Template/ShowUser.php index adce102..d4ba31b 100644 --- a/src/IDF/Template/ShowUser.php +++ b/src/IDF/Template/ShowUser.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Template/TimelineFragment.php b/src/IDF/Template/TimelineFragment.php index ae69861..3dc1012 100644 --- a/src/IDF/Template/TimelineFragment.php +++ b/src/IDF/Template/TimelineFragment.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Tests/TestDiff.php b/src/IDF/Tests/TestDiff.php index d28ce22..b854171 100644 --- a/src/IDF/Tests/TestDiff.php +++ b/src/IDF/Tests/TestDiff.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Tests/TestFileUtil.php b/src/IDF/Tests/TestFileUtil.php index 31d37e2..97ba8f2 100644 --- a/src/IDF/Tests/TestFileUtil.php +++ b/src/IDF/Tests/TestFileUtil.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Tests/TestGit.php b/src/IDF/Tests/TestGit.php index ca0affc..a2e640c 100644 --- a/src/IDF/Tests/TestGit.php +++ b/src/IDF/Tests/TestGit.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Tests/TestIssue.php b/src/IDF/Tests/TestIssue.php index a6c300f..e919f23 100644 --- a/src/IDF/Tests/TestIssue.php +++ b/src/IDF/Tests/TestIssue.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Tests/TestMonotone.php b/src/IDF/Tests/TestMonotone.php index 622be72..ef20c9e 100644 --- a/src/IDF/Tests/TestMonotone.php +++ b/src/IDF/Tests/TestMonotone.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Tests/TestProject.php b/src/IDF/Tests/TestProject.php index 03a1665..fcf4ea8 100644 --- a/src/IDF/Tests/TestProject.php +++ b/src/IDF/Tests/TestProject.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Tests/TestSource.php b/src/IDF/Tests/TestSource.php index 8634cc3..f1f42dd 100644 --- a/src/IDF/Tests/TestSource.php +++ b/src/IDF/Tests/TestSource.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Tests/TestSyncGit.php b/src/IDF/Tests/TestSyncGit.php index 3e120d4..5bc5d98 100644 --- a/src/IDF/Tests/TestSyncGit.php +++ b/src/IDF/Tests/TestSyncGit.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Timeline.php b/src/IDF/Timeline.php index 61e6380..a053121 100644 --- a/src/IDF/Timeline.php +++ b/src/IDF/Timeline.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Timeline/Paginator.php b/src/IDF/Timeline/Paginator.php index a086f8c..7d3ff72 100644 --- a/src/IDF/Timeline/Paginator.php +++ b/src/IDF/Timeline/Paginator.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Upload.php b/src/IDF/Upload.php index 8effae0..d4e6094 100644 --- a/src/IDF/Upload.php +++ b/src/IDF/Upload.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/UserData.php b/src/IDF/UserData.php index b28099e..7862661 100644 --- a/src/IDF/UserData.php +++ b/src/IDF/UserData.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views.php b/src/IDF/Views.php index 208299e..0da8b60 100644 --- a/src/IDF/Views.php +++ b/src/IDF/Views.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views/Admin.php b/src/IDF/Views/Admin.php index 6c4d8d0..60b160e 100644 --- a/src/IDF/Views/Admin.php +++ b/src/IDF/Views/Admin.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views/Api.php b/src/IDF/Views/Api.php index 2c5b0e1..ba78dec 100644 --- a/src/IDF/Views/Api.php +++ b/src/IDF/Views/Api.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views/Download.php b/src/IDF/Views/Download.php index 49f8187..ac4f827 100644 --- a/src/IDF/Views/Download.php +++ b/src/IDF/Views/Download.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views/Issue.php b/src/IDF/Views/Issue.php index 75f569a..e2b121c 100644 --- a/src/IDF/Views/Issue.php +++ b/src/IDF/Views/Issue.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views/Project.php b/src/IDF/Views/Project.php index 528a2dd..8bc92f8 100644 --- a/src/IDF/Views/Project.php +++ b/src/IDF/Views/Project.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views/Review.php b/src/IDF/Views/Review.php index 1afb0fd..64f0f84 100644 --- a/src/IDF/Views/Review.php +++ b/src/IDF/Views/Review.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views/Source.php b/src/IDF/Views/Source.php index a1c0f6c..a50c9c2 100644 --- a/src/IDF/Views/Source.php +++ b/src/IDF/Views/Source.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views/Source/Precondition.php b/src/IDF/Views/Source/Precondition.php index a3a0172..3dd74c2 100644 --- a/src/IDF/Views/Source/Precondition.php +++ b/src/IDF/Views/Source/Precondition.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views/Source/Svn.php b/src/IDF/Views/Source/Svn.php index 86a0bb3..81eaec3 100644 --- a/src/IDF/Views/Source/Svn.php +++ b/src/IDF/Views/Source/Svn.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views/User.php b/src/IDF/Views/User.php index 739b44c..15235fb 100644 --- a/src/IDF/Views/User.php +++ b/src/IDF/Views/User.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Views/Wiki.php b/src/IDF/Views/Wiki.php index c6b17b9..1104b51 100644 --- a/src/IDF/Views/Wiki.php +++ b/src/IDF/Views/Wiki.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/Webhook.php b/src/IDF/Webhook.php index 4a7f939..34a5cda 100644 --- a/src/IDF/Webhook.php +++ b/src/IDF/Webhook.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008, 2009, 2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/WikiPage.php b/src/IDF/WikiPage.php index cd7e771..23340f0 100644 --- a/src/IDF/WikiPage.php +++ b/src/IDF/WikiPage.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/WikiRevision.php b/src/IDF/WikiRevision.php index 5528a84..a74909c 100644 --- a/src/IDF/WikiRevision.php +++ b/src/IDF/WikiRevision.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/conf/urls.php b/src/IDF/conf/urls.php index dccf03b..29cf492 100644 --- a/src/IDF/conf/urls.php +++ b/src/IDF/conf/urls.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/relations.php b/src/IDF/relations.php index ea89d8d..dc951e7 100644 --- a/src/IDF/relations.php +++ b/src/IDF/relations.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/templates/idf/base-full.html b/src/IDF/templates/idf/base-full.html index 8e19345..f4248ba 100644 --- a/src/IDF/templates/idf/base-full.html +++ b/src/IDF/templates/idf/base-full.html @@ -3,7 +3,7 @@ {* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/templates/idf/base-simple.html b/src/IDF/templates/idf/base-simple.html index 8a0a3d5..6206851 100644 --- a/src/IDF/templates/idf/base-simple.html +++ b/src/IDF/templates/idf/base-simple.html @@ -3,7 +3,7 @@ {* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/templates/idf/base.html b/src/IDF/templates/idf/base.html index cfddd85..e196151 100644 --- a/src/IDF/templates/idf/base.html +++ b/src/IDF/templates/idf/base.html @@ -3,7 +3,7 @@ {* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/IDF/templates/idf/gadmin/base.html b/src/IDF/templates/idf/gadmin/base.html index 4f8a745..20249ee 100644 --- a/src/IDF/templates/idf/gadmin/base.html +++ b/src/IDF/templates/idf/gadmin/base.html @@ -3,7 +3,7 @@ {* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/test/IDF/DiffTest.php b/test/IDF/DiffTest.php index c293768..62cf53d 100644 --- a/test/IDF/DiffTest.php +++ b/test/IDF/DiffTest.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2011 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/test/IDF/Scm/Monotone/BasicIOTest.php b/test/IDF/Scm/Monotone/BasicIOTest.php index cf93e9e..86e2d09 100644 --- a/test/IDF/Scm/Monotone/BasicIOTest.php +++ b/test/IDF/Scm/Monotone/BasicIOTest.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2011 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/test/IDF/Scm/Monotone/ZipRenderTest.php b/test/IDF/Scm/Monotone/ZipRenderTest.php index ac189da..7684b22 100644 --- a/test/IDF/Scm/Monotone/ZipRenderTest.php +++ b/test/IDF/Scm/Monotone/ZipRenderTest.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2011 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/www/index.php b/www/index.php index ff9b7bf..a1aebf5 100644 --- a/www/index.php +++ b/www/index.php @@ -3,7 +3,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/www/media/idf/css/style.css b/www/media/idf/css/style.css index c1e3356..66785f7 100644 --- a/www/media/idf/css/style.css +++ b/www/media/idf/css/style.css @@ -1,7 +1,7 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2008 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by From 9b92b7139f91ba463da48a85d273b6140fb81150 Mon Sep 17 00:00:00 2001 From: William MARTIN Date: Tue, 5 Apr 2011 13:20:55 +0200 Subject: [PATCH 4/4] Fix copyright --- src/IDF/Form/Field/EmailList.php | 14 +++++++------- src/IDF/Scm/Monotone/ZipRender.php | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/IDF/Form/Field/EmailList.php b/src/IDF/Form/Field/EmailList.php index 3f5b8cc..ebb58bf 100644 --- a/src/IDF/Form/Field/EmailList.php +++ b/src/IDF/Form/Field/EmailList.php @@ -3,19 +3,19 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # -# Plume Framework is free software; you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation; either version 2.1 of the License, or +# InDefero is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # -# Plume Framework is distributed in the hope that it will be useful, +# InDefero is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public License +# You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # diff --git a/src/IDF/Scm/Monotone/ZipRender.php b/src/IDF/Scm/Monotone/ZipRender.php index 093725f..3a6a3f7 100644 --- a/src/IDF/Scm/Monotone/ZipRender.php +++ b/src/IDF/Scm/Monotone/ZipRender.php @@ -3,19 +3,19 @@ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. -# Copyright (C) 2010 Céondo Ltd and contributors. +# Copyright (C) 2008-2011 Céondo Ltd and contributors. # -# Plume Framework is free software; you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation; either version 2.1 of the License, or +# InDefero is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # -# Plume Framework is distributed in the hope that it will be useful, +# InDefero is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public License +# You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #