Skip to content

Commit 26d10d9

Browse files
authored
Merge pull request #204 from pierotofy/license
Fix License notices
2 parents 5e560fb + ecf6b8f commit 26d10d9

21 files changed

+82
-82
lines changed

config.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
Node-OpenDroneMap Node.js App and REST API to access OpenDroneMap.
3-
Copyright (C) 2016 Node-OpenDroneMap Contributors
2+
NodeODM App and REST API to access ODM.
3+
Copyright (C) 2016 NodeODM Contributors
44
55
This program is free software: you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
6+
it under the terms of the GNU Affero General Public License as published by
77
the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
99
@@ -12,7 +12,7 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU General Public License for more details.
1414
15-
You should have received a copy of the GNU General Public License
15+
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818
'use strict';
@@ -30,13 +30,13 @@ Usage: node index.js [options]
3030
Options:
3131
--config <path> Path to the configuration file (default: config-default.json)
3232
-p, --port <number> Port to bind the server to, or "auto" to automatically find an available port (default: 3000)
33-
--odm_path <path> Path to OpenDroneMap's code (default: /code)
33+
--odm_path <path> Path to ODM's code (default: /code)
3434
--log_level <logLevel> Set log level verbosity (default: info)
3535
-d, --daemon Set process to run as a deamon
3636
-q, --parallel_queue_processing <number> Number of simultaneous processing tasks (default: 2)
3737
--cleanup_tasks_after <number> Number of minutes that elapse before deleting finished and canceled tasks (default: 2880)
3838
--cleanup_uploads_after <number> Number of minutes that elapse before deleting unfinished uploads. Set this value to the maximum time you expect a dataset to be uploaded. (default: 2880)
39-
--test Enable test mode. In test mode, no commands are sent to OpenDroneMap. This can be useful during development or testing (default: false)
39+
--test Enable test mode. In test mode, no commands are sent to ODM. This can be useful during development or testing (default: false)
4040
--test_skip_orthophotos If test mode is enabled, skip orthophoto results when generating assets. (default: false)
4141
--test_skip_dems If test mode is enabled, skip dems results when generating assets. (default: false)
4242
--test_drop_uploads If test mode is enabled, drop /task/new/upload requests with 50% probability. (default: false)

docs/generateSwaggerAPI.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
Node-OpenDroneMap Node.js App and REST API to access OpenDroneMap.
3-
Copyright (C) 2016 Node-OpenDroneMap Contributors
2+
NodeODM App and REST API to access ODM.
3+
Copyright (C) 2016 NodeODM Contributors
44
55
This program is free software: you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
6+
it under the terms of the GNU Affero General Public License as published by
77
the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
99
@@ -12,7 +12,7 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU General Public License for more details.
1414
15-
You should have received a copy of the GNU General Public License
15+
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818
"use strict";

helpers/odmOptionsToJson.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env python
22
'''
3-
Node-OpenDroneMap Node.js App and REST API to access OpenDroneMap.
4-
Copyright (C) 2016 Node-OpenDroneMap Contributors
3+
NodeODM App and REST API to access ODM.
4+
Copyright (C) 2016 NodeODM Contributors
55
66
This program is free software: you can redistribute it and/or modify
7-
it under the terms of the GNU General Public License as published by
7+
it under the terms of the GNU Affero General Public License as published by
88
the Free Software Foundation, either version 3 of the License, or
99
(at your option) any later version.
1010
@@ -13,7 +13,7 @@
1313
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
GNU General Public License for more details.
1515
16-
You should have received a copy of the GNU General Public License
16+
You should have received a copy of the GNU Affero General Public License
1717
along with this program. If not, see <http://www.gnu.org/licenses/>.
1818
'''
1919

index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
Node-OpenDroneMap Node.js App and REST API to access OpenDroneMap.
3-
Copyright (C) 2016 Node-OpenDroneMap Contributors
2+
NodeODM App and REST API to access ODM.
3+
Copyright (C) 2016 NodeODM Contributors
44
55
This program is free software: you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
6+
it under the terms of the GNU Affero General Public License as published by
77
the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
99
@@ -12,7 +12,7 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU General Public License for more details.
1414
15-
You should have received a copy of the GNU General Public License
15+
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818
"use strict";

libs/Directories.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
Node-OpenDroneMap Node.js App and REST API to access OpenDroneMap.
3-
Copyright (C) 2016 Node-OpenDroneMap Contributors
2+
NodeODM App and REST API to access ODM.
3+
Copyright (C) 2016 NodeODM Contributors
44
55
This program is free software: you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
6+
it under the terms of the GNU Affero General Public License as published by
77
the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
99
@@ -12,7 +12,7 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU General Public License for more details.
1414
15-
You should have received a copy of the GNU General Public License
15+
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818
"use strict";

libs/ProgressReceiver.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
Node-OpenDroneMap Node.js App and REST API to access OpenDroneMap.
3-
Copyright (C) 2016 Node-OpenDroneMap Contributors
2+
NodeODM App and REST API to access ODM.
3+
Copyright (C) 2016 NodeODM Contributors
44
55
This program is free software: you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
6+
it under the terms of the GNU Affero General Public License as published by
77
the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
99
@@ -12,7 +12,7 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU General Public License for more details.
1414
15-
You should have received a copy of the GNU General Public License
15+
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818
"use strict";

libs/S3.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
Node-OpenDroneMap Node.js App and REST API to access OpenDroneMap.
3-
Copyright (C) 2016 Node-OpenDroneMap Contributors
2+
NodeODM App and REST API to access ODM.
3+
Copyright (C) 2016 NodeODM Contributors
44
55
This program is free software: you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
6+
it under the terms of the GNU Affero General Public License as published by
77
the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
99
@@ -12,7 +12,7 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU General Public License for more details.
1414
15-
You should have received a copy of the GNU General Public License
15+
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818
"use strict";

libs/Task.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
Node-OpenDroneMap Node.js App and REST API to access OpenDroneMap.
3-
Copyright (C) 2016 Node-OpenDroneMap Contributors
2+
NodeODM App and REST API to access ODM.
3+
Copyright (C) 2016 NodeODM Contributors
44
55
This program is free software: you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
6+
it under the terms of the GNU Affero General Public License as published by
77
the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
99
@@ -12,7 +12,7 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU General Public License for more details.
1414
15-
You should have received a copy of the GNU General Public License
15+
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818
"use strict";

libs/TaskManager.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
Node-OpenDroneMap Node.js App and REST API to access OpenDroneMap.
3-
Copyright (C) 2016 Node-OpenDroneMap Contributors
2+
NodeODM App and REST API to access ODM.
3+
Copyright (C) 2016 NodeODM Contributors
44
55
This program is free software: you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
6+
it under the terms of the GNU Affero General Public License as published by
77
the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
99
@@ -12,7 +12,7 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU General Public License for more details.
1414
15-
You should have received a copy of the GNU General Public License
15+
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818
"use strict";

libs/apps.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
Node-OpenDroneMap Node.js App and REST API to access OpenDroneMap.
3-
Copyright (C) 2016 Node-OpenDroneMap Contributors
2+
NodeODM App and REST API to access ODM.
3+
Copyright (C) 2016 NodeODM Contributors
44
55
This program is free software: you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
6+
it under the terms of the GNU Affero General Public License as published by
77
the Free Software Foundation, either version 3 of the License, or
88
(at your option) any later version.
99
@@ -12,7 +12,7 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
GNU General Public License for more details.
1414
15-
You should have received a copy of the GNU General Public License
15+
You should have received a copy of the GNU Affero General Public License
1616
along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818
const fs = require('fs');

0 commit comments

Comments
 (0)