Merge lp:~robru/gwibber/proto_stubs into lp:~barry/gwibber/py3

Proposed by Robert Bruce Park
Status: Merged
Merged at revision: 1428
Proposed branch: lp:~robru/gwibber/proto_stubs
Merge into: lp:~barry/gwibber/py3
Diff against target: 127 lines (+108/-0)
4 files modified
gwibber/gwibber/protocols/facebook.py (+27/-0)
gwibber/gwibber/protocols/foursquare.py (+27/-0)
gwibber/gwibber/protocols/identica.py (+27/-0)
gwibber/gwibber/protocols/statusnet.py (+27/-0)
To merge this branch: bzr merge lp:~robru/gwibber/proto_stubs
Reviewer Review Type Date Requested Status
Barry Warsaw Pending
Review via email: mp+124075@code.launchpad.net

Description of the change

Alright barry, this should stop make check_all from exploding because of your Facebook account.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'gwibber/gwibber/protocols/facebook.py'
2--- gwibber/gwibber/protocols/facebook.py 1970-01-01 00:00:00 +0000
3+++ gwibber/gwibber/protocols/facebook.py 2012-09-12 22:29:19 +0000
4@@ -0,0 +1,27 @@
5+# Copyright (C) 2012 Canonical Ltd
6+#
7+# This program is free software: you can redistribute it and/or modify
8+# it under the terms of the GNU General Public License version 2 as
9+# published by the Free Software Foundation.
10+#
11+# This program is distributed in the hope that it will be useful,
12+# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+# GNU General Public License for more details.
15+#
16+# You should have received a copy of the GNU General Public License
17+# along with this program. If not, see <http://www.gnu.org/licenses/>.
18+
19+"""The Facebook protocol plugin."""
20+
21+__all__ = [
22+ 'Facebook',
23+ ]
24+
25+
26+from gwibber.utils.protocol import Base
27+
28+
29+class Facebook(Base):
30+ class info:
31+ pass
32
33=== added file 'gwibber/gwibber/protocols/foursquare.py'
34--- gwibber/gwibber/protocols/foursquare.py 1970-01-01 00:00:00 +0000
35+++ gwibber/gwibber/protocols/foursquare.py 2012-09-12 22:29:19 +0000
36@@ -0,0 +1,27 @@
37+# Copyright (C) 2012 Canonical Ltd
38+#
39+# This program is free software: you can redistribute it and/or modify
40+# it under the terms of the GNU General Public License version 2 as
41+# published by the Free Software Foundation.
42+#
43+# This program is distributed in the hope that it will be useful,
44+# but WITHOUT ANY WARRANTY; without even the implied warranty of
45+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
46+# GNU General Public License for more details.
47+#
48+# You should have received a copy of the GNU General Public License
49+# along with this program. If not, see <http://www.gnu.org/licenses/>.
50+
51+"""The Foursquare protocol plugin."""
52+
53+__all__ = [
54+ 'Foursquare',
55+ ]
56+
57+
58+from gwibber.utils.protocol import Base
59+
60+
61+class Foursquare(Base):
62+ class info:
63+ pass
64
65=== added file 'gwibber/gwibber/protocols/identica.py'
66--- gwibber/gwibber/protocols/identica.py 1970-01-01 00:00:00 +0000
67+++ gwibber/gwibber/protocols/identica.py 2012-09-12 22:29:19 +0000
68@@ -0,0 +1,27 @@
69+# Copyright (C) 2012 Canonical Ltd
70+#
71+# This program is free software: you can redistribute it and/or modify
72+# it under the terms of the GNU General Public License version 2 as
73+# published by the Free Software Foundation.
74+#
75+# This program is distributed in the hope that it will be useful,
76+# but WITHOUT ANY WARRANTY; without even the implied warranty of
77+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
78+# GNU General Public License for more details.
79+#
80+# You should have received a copy of the GNU General Public License
81+# along with this program. If not, see <http://www.gnu.org/licenses/>.
82+
83+"""The Identi.ca protocol plugin."""
84+
85+__all__ = [
86+ 'Identica',
87+ ]
88+
89+
90+from gwibber.utils.protocol import Base
91+
92+
93+class Identica(Base):
94+ class info:
95+ pass
96
97=== added file 'gwibber/gwibber/protocols/statusnet.py'
98--- gwibber/gwibber/protocols/statusnet.py 1970-01-01 00:00:00 +0000
99+++ gwibber/gwibber/protocols/statusnet.py 2012-09-12 22:29:19 +0000
100@@ -0,0 +1,27 @@
101+# Copyright (C) 2012 Canonical Ltd
102+#
103+# This program is free software: you can redistribute it and/or modify
104+# it under the terms of the GNU General Public License version 2 as
105+# published by the Free Software Foundation.
106+#
107+# This program is distributed in the hope that it will be useful,
108+# but WITHOUT ANY WARRANTY; without even the implied warranty of
109+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
110+# GNU General Public License for more details.
111+#
112+# You should have received a copy of the GNU General Public License
113+# along with this program. If not, see <http://www.gnu.org/licenses/>.
114+
115+"""The Status.net protocol plugin."""
116+
117+__all__ = [
118+ 'StatusNet',
119+ ]
120+
121+
122+from gwibber.utils.protocol import Base
123+
124+
125+class StatusNet(Base):
126+ class info:
127+ pass

Subscribers

People subscribed via source and target branches