Skip to content

Commit 89df545

Browse files
committed
All: add open source license
1 parent 27f6de8 commit 89df545

File tree

285 files changed

+9074
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

285 files changed

+9074
-1
lines changed

COPYING

+661
Large diffs are not rendered by default.

source/autocomplete/autocomplete.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
/* Copyright © 2001-2014, Canal TP and/or its affiliates. All rights reserved.
2+
3+
This file is part of Navitia,
4+
the software to build cool stuff with public transport.
5+
6+
Hope you'll enjoy and contribute to this project,
7+
powered by Canal TP (www.canaltp.fr).
8+
Help us simplify mobility and open public transport:
9+
a non ending quest to the responsive locomotion way of traveling!
10+
11+
LICENCE: This program is free software; you can redistribute it and/or modify
12+
it under the terms of the GNU Affero General Public License as published by
13+
the Free Software Foundation, either version 3 of the License, or
14+
(at your option) any later version.
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
GNU Affero General Public License for more details.
20+
21+
You should have received a copy of the GNU Affero General Public License
22+
along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
24+
Stay tuned using
25+
twitter @navitia
26+
IRC #navitia on freenode
27+
https://groups.google.com/d/forum/navitia
28+
www.navitia.io
29+
*/
30+
131
#include "autocomplete.h"
232
#include "type/pt_data.h"
333
namespace navitia { namespace autocomplete {

source/autocomplete/autocomplete.h

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
/* Copyright © 2001-2014, Canal TP and/or its affiliates. All rights reserved.
2+
3+
This file is part of Navitia,
4+
the software to build cool stuff with public transport.
5+
6+
Hope you'll enjoy and contribute to this project,
7+
powered by Canal TP (www.canaltp.fr).
8+
Help us simplify mobility and open public transport:
9+
a non ending quest to the responsive locomotion way of traveling!
10+
11+
LICENCE: This program is free software; you can redistribute it and/or modify
12+
it under the terms of the GNU Affero General Public License as published by
13+
the Free Software Foundation, either version 3 of the License, or
14+
(at your option) any later version.
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
GNU Affero General Public License for more details.
20+
21+
You should have received a copy of the GNU Affero General Public License
22+
along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
24+
Stay tuned using
25+
twitter @navitia
26+
IRC #navitia on freenode
27+
https://groups.google.com/d/forum/navitia
28+
www.navitia.io
29+
*/
30+
131
#pragma once
232
#include <boost/tokenizer.hpp>
333
#include <boost/algorithm/string.hpp>

source/autocomplete/autocomplete_api.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
/* Copyright © 2001-2014, Canal TP and/or its affiliates. All rights reserved.
2+
3+
This file is part of Navitia,
4+
the software to build cool stuff with public transport.
5+
6+
Hope you'll enjoy and contribute to this project,
7+
powered by Canal TP (www.canaltp.fr).
8+
Help us simplify mobility and open public transport:
9+
a non ending quest to the responsive locomotion way of traveling!
10+
11+
LICENCE: This program is free software; you can redistribute it and/or modify
12+
it under the terms of the GNU Affero General Public License as published by
13+
the Free Software Foundation, either version 3 of the License, or
14+
(at your option) any later version.
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
GNU Affero General Public License for more details.
20+
21+
You should have received a copy of the GNU Affero General Public License
22+
along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
24+
Stay tuned using
25+
twitter @navitia
26+
IRC #navitia on freenode
27+
https://groups.google.com/d/forum/navitia
28+
www.navitia.io
29+
*/
30+
131
#include "autocomplete_api.h"
232
#include "type/pb_converter.h"
333
#include "autocomplete/autocomplete.h"

source/autocomplete/autocomplete_api.h

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
/* Copyright © 2001-2014, Canal TP and/or its affiliates. All rights reserved.
2+
3+
This file is part of Navitia,
4+
the software to build cool stuff with public transport.
5+
6+
Hope you'll enjoy and contribute to this project,
7+
powered by Canal TP (www.canaltp.fr).
8+
Help us simplify mobility and open public transport:
9+
a non ending quest to the responsive locomotion way of traveling!
10+
11+
LICENCE: This program is free software; you can redistribute it and/or modify
12+
it under the terms of the GNU Affero General Public License as published by
13+
the Free Software Foundation, either version 3 of the License, or
14+
(at your option) any later version.
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
GNU Affero General Public License for more details.
20+
21+
You should have received a copy of the GNU Affero General Public License
22+
along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
24+
Stay tuned using
25+
twitter @navitia
26+
IRC #navitia on freenode
27+
https://groups.google.com/d/forum/navitia
28+
www.navitia.io
29+
*/
30+
131
#pragma once
232
#include "type/type.pb.h"
333
#include "type/response.pb.h"

source/autocomplete/tests/test.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
/* Copyright © 2001-2014, Canal TP and/or its affiliates. All rights reserved.
2+
3+
This file is part of Navitia,
4+
the software to build cool stuff with public transport.
5+
6+
Hope you'll enjoy and contribute to this project,
7+
powered by Canal TP (www.canaltp.fr).
8+
Help us simplify mobility and open public transport:
9+
a non ending quest to the responsive locomotion way of traveling!
10+
11+
LICENCE: This program is free software; you can redistribute it and/or modify
12+
it under the terms of the GNU Affero General Public License as published by
13+
the Free Software Foundation, either version 3 of the License, or
14+
(at your option) any later version.
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
GNU Affero General Public License for more details.
20+
21+
You should have received a copy of the GNU Affero General Public License
22+
along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
24+
Stay tuned using
25+
twitter @navitia
26+
IRC #navitia on freenode
27+
https://groups.google.com/d/forum/navitia
28+
www.navitia.io
29+
*/
30+
131
#define BOOST_TEST_DYN_LINK
232
#define BOOST_TEST_MODULE test_autocomplete
333

source/calendar/calendar.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
/* Copyright © 2001-2014, Canal TP and/or its affiliates. All rights reserved.
2+
3+
This file is part of Navitia,
4+
the software to build cool stuff with public transport.
5+
6+
Hope you'll enjoy and contribute to this project,
7+
powered by Canal TP (www.canaltp.fr).
8+
Help us simplify mobility and open public transport:
9+
a non ending quest to the responsive locomotion way of traveling!
10+
11+
LICENCE: This program is free software; you can redistribute it and/or modify
12+
it under the terms of the GNU Affero General Public License as published by
13+
the Free Software Foundation, either version 3 of the License, or
14+
(at your option) any later version.
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
GNU Affero General Public License for more details.
20+
21+
You should have received a copy of the GNU Affero General Public License
22+
along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
24+
Stay tuned using
25+
twitter @navitia
26+
IRC #navitia on freenode
27+
https://groups.google.com/d/forum/navitia
28+
www.navitia.io
29+
*/
30+
131
#include "calendar.h"
232
#include "ptreferential/ptreferential.h"
333
#include "type/data.h"

source/calendar/calendar.h

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
/* Copyright © 2001-2014, Canal TP and/or its affiliates. All rights reserved.
2+
3+
This file is part of Navitia,
4+
the software to build cool stuff with public transport.
5+
6+
Hope you'll enjoy and contribute to this project,
7+
powered by Canal TP (www.canaltp.fr).
8+
Help us simplify mobility and open public transport:
9+
a non ending quest to the responsive locomotion way of traveling!
10+
11+
LICENCE: This program is free software; you can redistribute it and/or modify
12+
it under the terms of the GNU Affero General Public License as published by
13+
the Free Software Foundation, either version 3 of the License, or
14+
(at your option) any later version.
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
GNU Affero General Public License for more details.
20+
21+
You should have received a copy of the GNU Affero General Public License
22+
along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
24+
Stay tuned using
25+
twitter @navitia
26+
IRC #navitia on freenode
27+
https://groups.google.com/d/forum/navitia
28+
www.navitia.io
29+
*/
30+
131
#pragma once
232
#include "type/type.h"
333
#include "type/pt_data.h"

source/calendar/calendar_api.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
/* Copyright © 2001-2014, Canal TP and/or its affiliates. All rights reserved.
2+
3+
This file is part of Navitia,
4+
the software to build cool stuff with public transport.
5+
6+
Hope you'll enjoy and contribute to this project,
7+
powered by Canal TP (www.canaltp.fr).
8+
Help us simplify mobility and open public transport:
9+
a non ending quest to the responsive locomotion way of traveling!
10+
11+
LICENCE: This program is free software; you can redistribute it and/or modify
12+
it under the terms of the GNU Affero General Public License as published by
13+
the Free Software Foundation, either version 3 of the License, or
14+
(at your option) any later version.
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
GNU Affero General Public License for more details.
20+
21+
You should have received a copy of the GNU Affero General Public License
22+
along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
24+
Stay tuned using
25+
twitter @navitia
26+
IRC #navitia on freenode
27+
https://groups.google.com/d/forum/navitia
28+
www.navitia.io
29+
*/
30+
131
#include "calendar_api.h"
232
#include "type/pb_converter.h"
333
#include "calendar.h"

source/calendar/calendar_api.h

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
/* Copyright © 2001-2014, Canal TP and/or its affiliates. All rights reserved.
2+
3+
This file is part of Navitia,
4+
the software to build cool stuff with public transport.
5+
6+
Hope you'll enjoy and contribute to this project,
7+
powered by Canal TP (www.canaltp.fr).
8+
Help us simplify mobility and open public transport:
9+
a non ending quest to the responsive locomotion way of traveling!
10+
11+
LICENCE: This program is free software; you can redistribute it and/or modify
12+
it under the terms of the GNU Affero General Public License as published by
13+
the Free Software Foundation, either version 3 of the License, or
14+
(at your option) any later version.
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
GNU Affero General Public License for more details.
20+
21+
You should have received a copy of the GNU Affero General Public License
22+
along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
24+
Stay tuned using
25+
twitter @navitia
26+
IRC #navitia on freenode
27+
https://groups.google.com/d/forum/navitia
28+
www.navitia.io
29+
*/
30+
131
#pragma once
232
#include "boost/date_time/posix_time/posix_time.hpp"
333
#include "type/type.h"

source/calendar/tests/calendar_api_test.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
/* Copyright © 2001-2014, Canal TP and/or its affiliates. All rights reserved.
2+
3+
This file is part of Navitia,
4+
the software to build cool stuff with public transport.
5+
6+
Hope you'll enjoy and contribute to this project,
7+
powered by Canal TP (www.canaltp.fr).
8+
Help us simplify mobility and open public transport:
9+
a non ending quest to the responsive locomotion way of traveling!
10+
11+
LICENCE: This program is free software; you can redistribute it and/or modify
12+
it under the terms of the GNU Affero General Public License as published by
13+
the Free Software Foundation, either version 3 of the License, or
14+
(at your option) any later version.
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
GNU Affero General Public License for more details.
20+
21+
You should have received a copy of the GNU Affero General Public License
22+
along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
24+
Stay tuned using
25+
twitter @navitia
26+
IRC #navitia on freenode
27+
https://groups.google.com/d/forum/navitia
28+
www.navitia.io
29+
*/
30+
131
#define BOOST_TEST_DYN_LINK
232
#define BOOST_TEST_MODULE test_api_calendar
333
#include <boost/test/unit_test.hpp>

source/connectors/connector_at.py

100755100644
+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
# Copyright (c) 2001-2014, Canal TP and/or its affiliates. All rights reserved.
2+
#
3+
# This file is part of Navitia,
4+
# the software to build cool stuff with public transport.
5+
#
6+
# Hope you'll enjoy and contribute to this project,
7+
# powered by Canal TP (www.canaltp.fr).
8+
# Help us simplify mobility and open public transport:
9+
# a non ending quest to the responsive locomotion way of traveling!
10+
#
11+
# LICENCE: This program is free software; you can redistribute it and/or modify
12+
# it under the terms of the GNU Affero General Public License as published by
13+
# the Free Software Foundation, either version 3 of the License, or
14+
# (at your option) any later version.
15+
#
16+
# This program is distributed in the hope that it will be useful,
17+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
# GNU Affero General Public License for more details.
20+
#
21+
# You should have received a copy of the GNU Affero General Public License
22+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
#
24+
# Stay tuned using
25+
# twitter @navitia
26+
# IRC #navitia on freenode
27+
# https://groups.google.com/d/forum/navitia
28+
# www.navitia.io
29+
130
#!/usr/bin/env python
231
# encoding: utf-8
332
"""

0 commit comments

Comments
 (0)