- moving task from GPL to MIT license
  top level src directory
This commit is contained in:
Federico Hernandez 2011-10-08 00:04:01 +02:00
parent 5c685153dc
commit 8116c6a103
66 changed files with 1179 additions and 1143 deletions

View file

@ -1,27 +1,27 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_A3 #ifndef INCLUDED_A3
#define INCLUDED_A3 #define INCLUDED_A3
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,7 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Taskwarrior Lua API // Taskwarrior Lua API
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// 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.
//
// 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.
//
// 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 Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
//
// -------------
//
// Copyright © 19942008 Lua.org, PUC-Rio. // Copyright © 19942008 Lua.org, PUC-Rio.
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
@ -33,18 +10,19 @@
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is // copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions: // furnished to do so, subject to the following conditions:
// //
// The above copyright notice and this permission notice shall be included in // The above copyright notice and this permission notice shall be included
// all copies or substantial portions of the Software. // in all copies or substantial portions of the Software.
// //
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // 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, // 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 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE. // SOFTWARE.
// //
// http://www.opensource.org/licenses/mit-license.php
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // Taskwarrior Lua API
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_API #ifndef INCLUDED_API
#define INCLUDED_API #define INCLUDED_API
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,27 +1,27 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_ARG #ifndef INCLUDED_ARG
#define INCLUDED_ARG #define INCLUDED_ARG
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,27 +1,27 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_COLOR #ifndef INCLUDED_COLOR
#define INCLUDED_COLOR #define INCLUDED_COLOR
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,27 +1,27 @@
/////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_CONFIG #ifndef INCLUDED_CONFIG
#define INCLUDED_CONFIG #define INCLUDED_CONFIG
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,27 +1,27 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_CONTEXT #ifndef INCLUDED_CONTEXT
#define INCLUDED_CONTEXT #define INCLUDED_CONTEXT
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,27 +1,27 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_DOM #ifndef INCLUDED_DOM
#define INCLUDED_DOM #define INCLUDED_DOM
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,27 +1,27 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_DATE #ifndef INCLUDED_DATE
#define INCLUDED_DATE #define INCLUDED_DATE
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <unistd.h> #include <unistd.h>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_DIRECTORY #ifndef INCLUDED_DIRECTORY
#define INCLUDED_DIRECTORY #define INCLUDED_DIRECTORY
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <sstream> #include <sstream>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_DURATION #ifndef INCLUDED_DURATION
#define INCLUDED_DURATION #define INCLUDED_DURATION
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <iostream> #include <iostream>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_E9 #ifndef INCLUDED_E9
#define INCLUDED_E9 #define INCLUDED_E9
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <fstream> #include <fstream>

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_FILE #ifndef INCLUDED_FILE
#define INCLUDED_FILE #define INCLUDED_FILE
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <iostream> #include <iostream>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_HOOKS #ifndef INCLUDED_HOOKS
#define INCLUDED_HOOKS #define INCLUDED_HOOKS
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <text.h> #include <text.h>

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_JSON #ifndef INCLUDED_JSON
#define INCLUDED_JSON #define INCLUDED_JSON
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_NIBBLER #ifndef INCLUDED_NIBBLER
#define INCLUDED_NIBBLER #define INCLUDED_NIBBLER
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <fstream> #include <fstream>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_PATH #ifndef INCLUDED_PATH
#define INCLUDED_PATH #define INCLUDED_PATH
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <iostream> #include <iostream>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_PERMISSION #ifndef INCLUDED_PERMISSION
#define INCLUDED_PERMISSION #define INCLUDED_PERMISSION
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2010 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2010 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_RX #ifndef INCLUDED_RX
#define INCLUDED_RX #define INCLUDED_RX
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <iostream> // TODO Remove. #include <iostream> // TODO Remove.

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_TDB2 #ifndef INCLUDED_TDB2
#define INCLUDED_TDB2 #define INCLUDED_TDB2
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <sstream> #include <sstream>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_TASK #ifndef INCLUDED_TASK
#define INCLUDED_TASK #define INCLUDED_TASK
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Johannes Schlatow. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <sstream> #include <sstream>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Johannes Schlatow. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_TASKMOD #ifndef INCLUDED_TASKMOD
#define INCLUDED_TASKMOD #define INCLUDED_TASKMOD
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <iostream> #include <iostream>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_TIMER #ifndef INCLUDED_TIMER
#define INCLUDED_TIMER #define INCLUDED_TIMER
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// task - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <ViewTask.h> #include <ViewTask.h>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// task - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_VIEWTASK #ifndef INCLUDED_VIEWTASK
#define INCLUDED_VIEWTASK #define INCLUDED_VIEWTASK
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// task - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <ViewText.h> #include <ViewText.h>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// task - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_VIEWTEXT #ifndef INCLUDED_VIEWTEXT
#define INCLUDED_VIEWTEXT #define INCLUDED_VIEWTEXT
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <algorithm> #include <algorithm>

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// //
// This file contains all the strings that should be localized. If a string is // This file contains all the strings that should be localized. If a string is

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#include <string> #include <string>
#include <sstream> #include <sstream>
#include <vector> #include <vector>

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#include <iostream> #include <iostream>
#include <iomanip> #include <iomanip>
#include <sstream> #include <sstream>

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// //
// Strings that should be localized: // Strings that should be localized:

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <sstream> #include <sstream>

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <sstream> #include <sstream>

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <iostream> #include <iostream>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_MAIN #ifndef INCLUDED_MAIN
#define INCLUDED_MAIN #define INCLUDED_MAIN
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <iostream> #include <iostream>

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <iostream> #include <iostream>

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <algorithm> #include <algorithm>

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <algorithm> #include <algorithm>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_TEXT #ifndef INCLUDED_TEXT
#define INCLUDED_TEXT #define INCLUDED_TEXT
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2010 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <string> #include <string>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2010 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_UTF8 #ifndef INCLUDED_UTF8
#define INCLUDED_UTF8 #define INCLUDED_UTF8
#define L10N // Localization complete. #define L10N // Localization complete.

View file

@ -1,30 +1,31 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete. #define L10N // Localization complete.
#include <iostream> #include <iostream>

View file

@ -1,29 +1,30 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager. // taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez. // Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
// //
// This program is free software; you can redistribute it and/or modify it under // Permission is hereby granted, free of charge, to any person obtaining a copy
// the terms of the GNU General Public License as published by the Free Software // of this software and associated documentation files (the "Software"), to deal
// Foundation; either version 2 of the License, or (at your option) any later // in the Software without restriction, including without limitation the rights
// version. // 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 // The above copyright notice and this permission notice shall be included
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // in all copies or substantial portions of the Software.
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
// //
// You should have received a copy of the GNU General Public License along with // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// this program; if not, write to the // 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., // http://www.opensource.org/licenses/mit-license.php
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
// //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_UTIL #ifndef INCLUDED_UTIL
#define INCLUDED_UTIL #define INCLUDED_UTIL
#define L10N // Localization complete. #define L10N // Localization complete.