From bbe218a6f11681421bc429aa3a5845d5e21df715 Mon Sep 17 00:00:00 2001 From: Federico Hernandez Date: Sat, 8 Oct 2011 12:17:42 +0200 Subject: [PATCH] License - first round of unit tests --- test/abbreviation.t | 14 +++++++------- test/autocomplete.t.cpp | 35 ++++++++++++++++++----------------- test/color.t.cpp | 35 ++++++++++++++++++----------------- test/config.t.cpp | 35 ++++++++++++++++++----------------- test/date.t.cpp | 35 ++++++++++++++++++----------------- test/directory.t.cpp | 35 ++++++++++++++++++----------------- test/dom.t.cpp | 35 ++++++++++++++++++----------------- test/duration.t.cpp | 35 ++++++++++++++++++----------------- test/file.t.cpp | 35 ++++++++++++++++++----------------- test/i18n.t.cpp | 35 ++++++++++++++++++----------------- test/json.t.cpp | 35 ++++++++++++++++++----------------- test/json_test.cpp | 35 ++++++++++++++++++----------------- test/list.t.cpp | 35 ++++++++++++++++++----------------- test/nibbler.t.cpp | 35 ++++++++++++++++++----------------- test/path.t.cpp | 35 ++++++++++++++++++----------------- test/rx.t.cpp | 35 ++++++++++++++++++----------------- test/t.t.cpp | 35 ++++++++++++++++++----------------- test/t2.t.cpp | 35 ++++++++++++++++++----------------- test/taskmod.t.cpp | 35 ++++++++++++++++++----------------- test/tdb2.t.cpp | 35 ++++++++++++++++++----------------- test/test.cpp | 35 ++++++++++++++++++----------------- test/text.t.cpp | 35 ++++++++++++++++++----------------- test/uri.t.cpp | 33 +++++++++++++++++---------------- test/util.t.cpp | 35 ++++++++++++++++++----------------- test/view.t.cpp | 35 ++++++++++++++++++----------------- 25 files changed, 438 insertions(+), 414 deletions(-) diff --git a/test/abbreviation.t b/test/abbreviation.t index fc4d5ca79..f87d01ea7 100755 --- a/test/abbreviation.t +++ b/test/abbreviation.t @@ -69,25 +69,25 @@ unlike ($output, qr/\bwithout\b/, 'pri:H without'); # Test the version command abbreviations. $output = qx{../src/task rc:abbrev.rc version}; -like ($output, qr/GNU\s+General\s+Public\s+License/, 'version'); +like ($output, qr/MIT\s+license/, 'version'); $output = qx{../src/task rc:abbrev.rc versio}; -like ($output, qr/GNU\s+General\s+Public\s+License/, 'versio'); +like ($output, qr/MIT\s+license/, 'version'); $output = qx{../src/task rc:abbrev.rc versi}; -like ($output, qr/GNU\s+General\s+Public\s+License/, 'versi'); +like ($output, qr/MIT\s+license/, 'version'); $output = qx{../src/task rc:abbrev.rc vers}; -like ($output, qr/GNU\s+General\s+Public\s+License/, 'vers'); +like ($output, qr/MIT\s+license/, 'version'); $output = qx{../src/task rc:abbrev.rc ver}; -like ($output, qr/GNU\s+General\s+Public\s+License/, 'ver'); +like ($output, qr/MIT\s+license/, 'version'); $output = qx{../src/task rc:abbrev.rc ve}; -like ($output, qr/GNU\s+General\s+Public\s+License/, 've'); +like ($output, qr/MIT\s+license/, 'version'); $output = qx{../src/task rc:abbrev.rc v}; -like ($output, qr/GNU\s+General\s+Public\s+License/, 'v'); +like ($output, qr/MIT\s+license/, 'version'); # Cleanup. unlink 'pending.data'; diff --git a/test/autocomplete.t.cpp b/test/autocomplete.t.cpp index f31505b95..be61406ef 100644 --- a/test/autocomplete.t.cpp +++ b/test/autocomplete.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/color.t.cpp b/test/color.t.cpp index c88d9189c..334752a70 100644 --- a/test/color.t.cpp +++ b/test/color.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/config.t.cpp b/test/config.t.cpp index 27fbb375b..757f100b7 100644 --- a/test/config.t.cpp +++ b/test/config.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/date.t.cpp b/test/date.t.cpp index 1570ce816..1068154e5 100644 --- a/test/date.t.cpp +++ b/test/date.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/directory.t.cpp b/test/directory.t.cpp index fa1baf771..ef22f989c 100644 --- a/test/directory.t.cpp +++ b/test/directory.t.cpp @@ -1,30 +1,31 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/dom.t.cpp b/test/dom.t.cpp index 183d43556..8dbbe586c 100644 --- a/test/dom.t.cpp +++ b/test/dom.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/duration.t.cpp b/test/duration.t.cpp index cfbe9e705..938b68bac 100644 --- a/test/duration.t.cpp +++ b/test/duration.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/file.t.cpp b/test/file.t.cpp index eae4443b4..2ca7f3708 100644 --- a/test/file.t.cpp +++ b/test/file.t.cpp @@ -1,30 +1,31 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/i18n.t.cpp b/test/i18n.t.cpp index 2259fb50a..d73e95e0e 100644 --- a/test/i18n.t.cpp +++ b/test/i18n.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/json.t.cpp b/test/json.t.cpp index 192b519bb..2df7c1a71 100644 --- a/test/json.t.cpp +++ b/test/json.t.cpp @@ -1,30 +1,31 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/json_test.cpp b/test/json_test.cpp index 77adf4ce2..5bcada5d9 100644 --- a/test/json_test.cpp +++ b/test/json_test.cpp @@ -1,30 +1,31 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/list.t.cpp b/test/list.t.cpp index dd8ebdd07..2be4f7bd1 100644 --- a/test/list.t.cpp +++ b/test/list.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/nibbler.t.cpp b/test/nibbler.t.cpp index 3ba7b0a32..72381a857 100644 --- a/test/nibbler.t.cpp +++ b/test/nibbler.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/path.t.cpp b/test/path.t.cpp index 23742f404..99697c4d4 100644 --- a/test/path.t.cpp +++ b/test/path.t.cpp @@ -1,30 +1,31 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/rx.t.cpp b/test/rx.t.cpp index 43454b2c8..54ecf48fe 100644 --- a/test/rx.t.cpp +++ b/test/rx.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2010 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/t.t.cpp b/test/t.t.cpp index 9244ddb04..5546a1ff0 100644 --- a/test/t.t.cpp +++ b/test/t.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include diff --git a/test/t2.t.cpp b/test/t2.t.cpp index c0f43bb8d..4308beaf2 100644 --- a/test/t2.t.cpp +++ b/test/t2.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/taskmod.t.cpp b/test/taskmod.t.cpp index 652f20b74..d3e8ef288 100644 --- a/test/taskmod.t.cpp +++ b/test/taskmod.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/tdb2.t.cpp b/test/tdb2.t.cpp index 909f1b1b2..66216c831 100644 --- a/test/tdb2.t.cpp +++ b/test/tdb2.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include diff --git a/test/test.cpp b/test/test.cpp index bb524a42a..73cbdf2d8 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/text.t.cpp b/test/text.t.cpp index abeafd09d..71614a1d2 100644 --- a/test/text.t.cpp +++ b/test/text.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/uri.t.cpp b/test/uri.t.cpp index 8882f92c6..eef3d5929 100644 --- a/test/uri.t.cpp +++ b/test/uri.t.cpp @@ -2,28 +2,29 @@ // taskwarrior - a command line task list manager. // // Copyright 2010 - 2011, Johannes Schlatow. -// All rights reserved. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/util.t.cpp b/test/util.t.cpp index a7d1ba423..94b3d495a 100644 --- a/test/util.t.cpp +++ b/test/util.t.cpp @@ -1,29 +1,30 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include diff --git a/test/view.t.cpp b/test/view.t.cpp index 44252d255..a3191540c 100644 --- a/test/view.t.cpp +++ b/test/view.t.cpp @@ -1,30 +1,31 @@ //////////////////////////////////////////////////////////////////////////////// // taskwarrior - a command line task list manager. // -// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. -// All rights reserved. +// Copyright 2006-2011, Paul Beckingham, Federico Hernandez. // -// This program 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. +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program 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 General Public License for more -// details. +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. // -// You should have received a copy of the GNU General Public License along with -// this program; if not, write to the +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. // -// Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, -// Boston, MA -// 02110-1301 -// USA +// http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// + #include #include #include