xaizek / dit (License: GPLv3) (since 2018-12-07)
Command-line task keeper that remembers all old values and is meant to combine several orthogonal features to be rather flexible in managing items.
Commit 7cc415dfbf4b7264c73aa2588397d9e941f6d452

Pin version of the license to be GPL3 only
No "or later version" anymore.
Author: xaizek
Author date (UTC): 2020-03-22 23:02
Committer name: xaizek
Committer date (UTC): 2020-03-22 23:02
Parent(s): 1387feab628513102fa2bbb7a7669c40274149a8
Signing key: 99DC5E4DB05F6BE2
Tree: e17a7b795ed4f0ad60e44c435a866c7d9731c118
File Lines added Lines deleted
README.md 2 2
src/Change.hpp 2 3
src/Command.cpp 2 3
src/Command.hpp 2 3
src/Commands.cpp 2 3
src/Commands.hpp 2 3
src/Config.cpp 2 3
src/Config.hpp 2 3
src/Dit.cpp 2 3
src/Dit.hpp 2 3
src/IdGenerator.cpp 2 3
src/IdGenerator.hpp 2 3
src/Invocation.cpp 2 3
src/Invocation.hpp 2 3
src/Item.cpp 2 3
src/Item.hpp 2 3
src/ItemFilter.cpp 2 3
src/ItemFilter.hpp 2 3
src/ItemTable.cpp 2 3
src/ItemTable.hpp 2 3
src/Project.cpp 2 3
src/Project.hpp 2 3
src/Storage.cpp 2 3
src/Storage.hpp 2 3
src/StorageBacked.hpp 2 3
src/cmds/AddCmd.cpp 2 3
src/cmds/CheckCmd.cpp 2 3
src/cmds/CompleteCmd.cpp 2 3
src/cmds/ConfigCmd.cpp 2 3
src/cmds/ExportCmd.cpp 2 3
src/cmds/HelpCmd.cpp 2 3
src/cmds/LogCmd.cpp 2 3
src/cmds/LsCmd.cpp 2 3
src/cmds/NewCmd.cpp 2 3
src/cmds/ProjectsCmd.cpp 2 3
src/cmds/RenameCmd.cpp 2 3
src/cmds/SetCmd.cpp 2 3
src/cmds/ShowCmd.cpp 2 3
src/cmds/ValuesCmd.cpp 2 3
src/completion.cpp 2 3
src/completion.hpp 2 3
src/decoration.cpp 2 3
src/decoration.hpp 2 3
src/file_format.cpp 2 3
src/file_format.hpp 2 3
src/integration.cpp 2 3
src/integration.hpp 2 3
src/main.cpp 2 3
src/parsing.cpp 2 3
src/parsing.hpp 2 3
src/printing.hpp 2 3
src/utils/Passkey.hpp 2 3
src/utils/args.hpp 2 3
src/utils/containers.hpp 2 3
src/utils/contains.hpp 2 3
src/utils/fs.hpp 2 3
src/utils/getLines.hpp 2 3
src/utils/memory.hpp 2 3
src/utils/opts.cpp 2 3
src/utils/opts.hpp 2 3
src/utils/propsRange.hpp 2 3
src/utils/strings.hpp 2 3
src/utils/time.hpp 2 3
tests/Command.cpp 2 3
tests/Commands.cpp 2 3
tests/Config.cpp 2 3
tests/Dit.cpp 2 3
tests/IdGenerator.cpp 2 3
tests/Invocation.cpp 2 3
tests/Item.cpp 2 3
tests/ItemFilter.cpp 2 3
tests/ItemTable.cpp 2 3
tests/Project.cpp 2 3
tests/Storage.cpp 2 3
tests/Tests.cpp 2 3
tests/Tests.hpp 2 3
tests/cmds/AddCmd.cpp 2 3
tests/cmds/CheckCmd.cpp 2 3
tests/cmds/ConfigCmd.cpp 2 3
tests/cmds/ExportCmd.cpp 2 3
tests/cmds/HelpCmd.cpp 2 3
tests/cmds/LogCmd.cpp 2 3
tests/cmds/LsCmd.cpp 2 3
tests/cmds/NewCmd.cpp 2 3
tests/cmds/ProjectsCmd.cpp 2 3
tests/cmds/RenameCmd.cpp 2 3
tests/cmds/SetCmd.cpp 2 3
tests/cmds/ShowCmd.cpp 2 3
tests/cmds/ValuesCmd.cpp 2 3
tests/completion.cpp 2 3
tests/decoration.cpp 2 3
tests/file_format.cpp 2 3
tests/integration.cpp 2 3
tests/parsing.cpp 2 3
tests/utils/args.cpp 2 3
tests/utils/containers.cpp 2 3
tests/utils/propsRange.cpp 2 3
File README.md changed (mode: 100644) (index 1bd0f7a..cd26543)
1 1 **dit**, _v0.11_, _2015 - 2019_ **dit**, _v0.11_, _2015 - 2019_
2 2
3 _This file last updated on 9 January, 2019_
3 _This file last updated on 23 March, 2020_
4 4
5 5 ### Brief Description ### ### Brief Description ###
6 6
 
... ... Expected to work in \*nix like environments.
69 69
70 70 ### License ### ### License ###
71 71
72 GNU General Public License, version 3 or later.
72 Version 3 of the GNU General Public License.
73 73
74 74
75 75 [1]: https://taskwarrior.org/ [1]: https://taskwarrior.org/
File src/Change.hpp changed (mode: 100644) (index 05b8851..fcb4e37)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Command.cpp changed (mode: 100644) (index 571db4e..a190122)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Command.hpp changed (mode: 100644) (index 2a55e18..a6c1810)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Commands.cpp changed (mode: 100644) (index 53e07e6..5916c92)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Commands.hpp changed (mode: 100644) (index 21d3155..0fde8c8)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Config.cpp changed (mode: 100644) (index 65ea80f..08265cc)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Config.hpp changed (mode: 100644) (index 6063b99..875453e)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Dit.cpp changed (mode: 100644) (index 66fbd08..070e525)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Dit.hpp changed (mode: 100644) (index 7d63561..bc22041)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/IdGenerator.cpp changed (mode: 100644) (index cb5792c..6b27627)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/IdGenerator.hpp changed (mode: 100644) (index 349074a..5e57006)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Invocation.cpp changed (mode: 100644) (index 41e401a..8a90207)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Invocation.hpp changed (mode: 100644) (index 3efe77a..dec26b5)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Item.cpp changed (mode: 100644) (index a349d75..56b123d)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Item.hpp changed (mode: 100644) (index 63307a5..a50530c)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/ItemFilter.cpp changed (mode: 100644) (index ce995bf..a2ced54)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/ItemFilter.hpp changed (mode: 100644) (index bc79cf0..fbb54ca)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/ItemTable.cpp changed (mode: 100644) (index 450b8cf..358c31a)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/ItemTable.hpp changed (mode: 100644) (index 1ce4a5c..d69e4b2)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Project.cpp changed (mode: 100644) (index 142a0e1..8aca1a6)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Project.hpp changed (mode: 100644) (index 338e42f..a1f65c6)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Storage.cpp changed (mode: 100644) (index af42c29..b0e72e1)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/Storage.hpp changed (mode: 100644) (index a01aa4d..95cc90e)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/StorageBacked.hpp changed (mode: 100644) (index da7d594..4f206ea)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/AddCmd.cpp changed (mode: 100644) (index ffdf63d..167b032)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/CheckCmd.cpp changed (mode: 100644) (index 2265eb4..4c88196)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/CompleteCmd.cpp changed (mode: 100644) (index 436f75d..c7d03c1)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/ConfigCmd.cpp changed (mode: 100644) (index 32a4fba..44b62a6)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/ExportCmd.cpp changed (mode: 100644) (index be0728c..6a1a2af)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/HelpCmd.cpp changed (mode: 100644) (index 3b75a6f..e551def)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/LogCmd.cpp changed (mode: 100644) (index 29c2eef..e537133)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/LsCmd.cpp changed (mode: 100644) (index 7114e29..0e38e63)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/NewCmd.cpp changed (mode: 100644) (index 33f5199..62c844a)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/ProjectsCmd.cpp changed (mode: 100644) (index e7c5b1b..abbcc2e)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/RenameCmd.cpp changed (mode: 100644) (index dd2afbb..9f551db)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/SetCmd.cpp changed (mode: 100644) (index b197b5e..b8cb341)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/ShowCmd.cpp changed (mode: 100644) (index 817173b..fe99902)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/cmds/ValuesCmd.cpp changed (mode: 100644) (index 646160c..7bdf6ee)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/completion.cpp changed (mode: 100644) (index a461649..bf94442)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/completion.hpp changed (mode: 100644) (index 896ba8b..dcf6314)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/decoration.cpp changed (mode: 100644) (index ae3614f..7fa3869)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/decoration.hpp changed (mode: 100644) (index 1977c1f..74bf559)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/file_format.cpp changed (mode: 100644) (index 807d6d7..765a522)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/file_format.hpp changed (mode: 100644) (index 170fc4b..619af53)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/integration.cpp changed (mode: 100644) (index 32ab21a..7df6765)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/integration.hpp changed (mode: 100644) (index 8f12b4c..0ecb9c1)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/main.cpp changed (mode: 100644) (index d849215..4d1a6ab)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/parsing.cpp changed (mode: 100644) (index 145a733..4ee0cf1)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/parsing.hpp changed (mode: 100644) (index 5b6ef40..197bf5c)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/printing.hpp changed (mode: 100644) (index c8409e5..184ff00)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/Passkey.hpp changed (mode: 100644) (index aeef95e..478d7bf)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/args.hpp changed (mode: 100644) (index 8a9f57a..6fef99b)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/containers.hpp changed (mode: 100644) (index f6462c4..ea670d5)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/contains.hpp changed (mode: 100644) (index 5e95a3b..42d53e5)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/fs.hpp changed (mode: 100644) (index 673f398..faf08cc)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/getLines.hpp changed (mode: 100644) (index a163ce7..10e9b75)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/memory.hpp changed (mode: 100644) (index 43951ff..d812e25)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/opts.cpp changed (mode: 100644) (index aafe07d..3c70c27)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/opts.hpp changed (mode: 100644) (index 1170d6e..27758be)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/propsRange.hpp changed (mode: 100644) (index fc3272f..d18291f)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/strings.hpp changed (mode: 100644) (index 43ceb78..2646392)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File src/utils/time.hpp changed (mode: 100644) (index 322cb3d..bfc6d56)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/Command.cpp changed (mode: 100644) (index 964e430..79ad97f)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/Commands.cpp changed (mode: 100644) (index 0b7092d..aef7576)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/Config.cpp changed (mode: 100644) (index 7155058..aa77618)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/Dit.cpp changed (mode: 100644) (index 9ec5d7e..5e6cafb)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/IdGenerator.cpp changed (mode: 100644) (index 5905f2f..4a0add0)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/Invocation.cpp changed (mode: 100644) (index d0357d7..d12f481)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/Item.cpp changed (mode: 100644) (index a0f4ef2..c21a2e9)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/ItemFilter.cpp changed (mode: 100644) (index 98d483f..eda2bab)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/ItemTable.cpp changed (mode: 100644) (index a70840b..0795270)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/Project.cpp changed (mode: 100644) (index a9f9199..623cb06)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/Storage.cpp changed (mode: 100644) (index 5a188ae..6e56a9c)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/Tests.cpp changed (mode: 100644) (index 5b4a546..bf27753)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/Tests.hpp changed (mode: 100644) (index a9411d2..0b423ea)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/AddCmd.cpp changed (mode: 100644) (index 0976a94..8b90142)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/CheckCmd.cpp changed (mode: 100644) (index ae43726..a3d90b7)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/ConfigCmd.cpp changed (mode: 100644) (index 7fa4538..2f2d26a)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/ExportCmd.cpp changed (mode: 100644) (index e777d0b..5dac925)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/HelpCmd.cpp changed (mode: 100644) (index 396a451..712d0a8)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/LogCmd.cpp changed (mode: 100644) (index 2941c3a..4b612c7)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/LsCmd.cpp changed (mode: 100644) (index 2e3fe0a..111f541)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/NewCmd.cpp changed (mode: 100644) (index 0db0e00..72b4293)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/ProjectsCmd.cpp changed (mode: 100644) (index 1ae0a48..b70df35)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/RenameCmd.cpp changed (mode: 100644) (index 2603f03..e39fa69)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/SetCmd.cpp changed (mode: 100644) (index 29936e3..8a9ed4c)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/ShowCmd.cpp changed (mode: 100644) (index 461a1af..de4dc6f)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/cmds/ValuesCmd.cpp changed (mode: 100644) (index ac7d5f3..caec4a7)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/completion.cpp changed (mode: 100644) (index 3b4aac1..407331b)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/decoration.cpp changed (mode: 100644) (index 6cfe701..be286ef)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/file_format.cpp changed (mode: 100644) (index 83dfd03..cc85604)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/integration.cpp changed (mode: 100644) (index cbe8599..d1a049d)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/parsing.cpp changed (mode: 100644) (index 8cad5a5..b8cf3f1)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/utils/args.cpp changed (mode: 100644) (index 86d701d..2000334)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/utils/containers.cpp changed (mode: 100644) (index 10ef611..5554797)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
File tests/utils/propsRange.cpp changed (mode: 100644) (index 0ff5b17..e1a277c)
3 3 // This file is part of dit. // This file is part of dit.
4 4 // //
5 5 // dit is free software: you can redistribute it and/or modify // dit is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
6 // it under the terms of version 3 of the GNU Affero General Public
7 // License as published by the Free Software Foundation.
9 8 // //
10 9 // dit is distributed in the hope that it will be useful, // dit is distributed in the hope that it will be useful,
11 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/dit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/dit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master