public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Search Repo:
Remove duplicate definition of twitter_api_followers()
Emmanuele Bassi (author)
Fri Apr 11 04:00:14 -0700 2008
commit  9e8593bdca7bf07e5faca8a1a74b2300a4619bc2
tree    047b9553a84e401bba8bd58469fd940f2f25b74a
parent  72e9e9012c6c3b54ff45ba0e194b8ee85158581d
...
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
...
271
272
273
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
275
276
0
@@ -271,39 +271,6 @@ twitter_api_friends (const gchar *user,
0
 }
0
 
0
 SoupMessage *
0
-twitter_api_followers (gint page,
0
- gboolean lite)
0
-{
0
- gchar *url;
0
- SoupMessage *msg;
0
-
0
- if (page >= 0)
0
- {
0
- if (lite)
0
- url = g_strdup_printf ("%s?page=%d&lite=true",
0
- TWITTER_API_FOLLOWERS,
0
- page);
0
- else
0
- url = g_strdup_printf ("%s?page=%d",
0
- TWITTER_API_FOLLOWERS,
0
- page);
0
- }
0
- else
0
- {
0
- if (lite)
0
- url = g_strconcat (TWITTER_API_FOLLOWERS, "?lite=true", NULL);
0
- else
0
- url = g_strdup (TWITTER_API_FOLLOWERS);
0
- }
0
-
0
- msg = soup_message_new (SOUP_METHOD_GET, url);
0
-
0
- g_free (url);
0
-
0
- return msg;
0
-}
0
-
0
-SoupMessage *
0
 twitter_api_featured (void)
0
 {
0
   return soup_message_new (SOUP_METHOD_GET, TWITTER_API_FEATURED);

Comments

    No one has commented yet.