Skip to content

Commit 74b0ac1

Browse files
committed
add copyright headers, update version number, update requirements.txt
1 parent 6161a55 commit 74b0ac1

File tree

25 files changed

+54
-28
lines changed

25 files changed

+54
-28
lines changed

examples/errorhandling/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
# This file is part of frestq.
5-
# Copyright (C) 2013 Eduardo Robles Elvira <edulix AT wadobo DOT com>
5+
# Copyright (C) 2013-2016 Agora Voting SL <agora@agoravoting.com>
66

77
# frestq is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU Lesser General Public License as published by

examples/external/server_a.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
# This file is part of frestq.
5-
# Copyright (C) 2013 Eduardo Robles Elvira <edulix AT wadobo DOT com>
5+
# Copyright (C) 2013-2016 Agora Voting SL <agora@agoravoting.com>
66

77
# frestq is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU Lesser General Public License as published by

examples/external/server_b.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
# This file is part of frestq.
5-
# Copyright (C) 2013 Eduardo Robles Elvira <edulix AT wadobo DOT com>
5+
# Copyright (C) 2013-2016 Agora Voting SL <agora@agoravoting.com>
66

77
# frestq is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU Lesser General Public License as published by

examples/hellossl/nginx_hellossl.conf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# This file is part of frestq.
2+
# Copyright (C) 2013-2016 Agora Voting SL <agora@agoravoting.com>
3+
4+
# frestq is free software: you can redistribute it and/or modify
5+
# it under the terms of the GNU Lesser General Public License as published by
6+
# the Free Software Foundation, either version 3 of the License.
7+
8+
# frestq is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
# GNU Lesser General Public License for more details.
12+
13+
# You should have received a copy of the GNU Lesser General Public License
14+
# along with frestq. If not, see <http://www.gnu.org/licenses/>.
115
upstream frestq_a {
216
server unix:///home/edulix/proyectos/wadobo/agora/frestq/examples/hellossl/server_a.sock;
317
}

examples/hellossl/server_a.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
# This file is part of frestq.
5-
# Copyright (C) 2013 Eduardo Robles Elvira <edulix AT wadobo DOT com>
5+
# Copyright (C) 2013-2016 Agora Voting SL <agora@agoravoting.com>
66

77
# frestq is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU Lesser General Public License as published by

examples/hellossl/server_b.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
# This file is part of frestq.
5-
# Copyright (C) 2013 Eduardo Robles Elvira <edulix AT wadobo DOT com>
5+
# Copyright (C) 2013-2016 Agora Voting SL <agora@agoravoting.com>
66

77
# frestq is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU Lesser General Public License as published by

examples/helloworld/server_a.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
# This file is part of frestq.
5-
# Copyright (C) 2013 Eduardo Robles Elvira <edulix AT wadobo DOT com>
5+
# Copyright (C) 2013-2016 Agora Voting SL <agora@agoravoting.com>
66

77
# frestq is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU Lesser General Public License as published by

examples/helloworld/server_b.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
# This file is part of frestq.
5-
# Copyright (C) 2013 Eduardo Robles Elvira <edulix AT wadobo DOT com>
5+
# Copyright (C) 2013-2016 Agora Voting SL <agora@agoravoting.com>
66

77
# frestq is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU Lesser General Public License as published by

examples/synchronized/common.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# This file is part of frestq.
4-
# Copyright (C) 2013 Eduardo Robles Elvira <edulix AT wadobo DOT com>
4+
# Copyright (C) 2013-2016 Agora Voting SL <agora@agoravoting.com>
55

66
# frestq is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Lesser General Public License as published by
@@ -15,7 +15,6 @@
1515
# You should have received a copy of the GNU Lesser General Public License
1616
# along with frestq. If not, see <http://www.gnu.org/licenses/>.
1717

18-
1918
from frestq import decorators
2019
from frestq.app import app
2120
from frestq.action_handlers import SynchronizedSubtaskHandler

examples/synchronized/server_a.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
# This file is part of frestq.
5-
# Copyright (C) 2013 Eduardo Robles Elvira <edulix AT wadobo DOT com>
5+
# Copyright (C) 2013-2016 Agora Voting SL <agora@agoravoting.com>
66

77
# frestq is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU Lesser General Public License as published by

0 commit comments

Comments
 (0)