~stan/ubuntu/natty/evolution-rss/688776

« back to all changes in this revision

Viewing changes to src/network-soup.h

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2009-08-29 13:58:41 UTC
  • mfrom: (3.1.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090829135841-qedawcg3lihv3ga9
Tags: 0.1.4-1ubuntu1
* Merge with Debian Unstable. (LP: #420649)(LP: #402173)
* debian/control:
 - Allow installing with evolution >= 2.27 (LP: #406332)
 - Add build-dep on libebook1.2-dev to fix FTBFS. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  Evolution RSS Reader Plugin
 
2
 *  Copyright (C) 2007-2009 Lucian Langa <cooly@gnome.eu.org>
 
3
 *         
 
4
 *  This program is free software; you can redistribute it and/or modify
 
5
 *  it under the terms of the GNU General Public License as published by
 
6
 *  the Free Software Foundation; either version 2 of the License, or 
 
7
 *  (at your option) any later version.
 
8
 *                     
 
9
 *  This program is distributed in the hope that it will be useful,
 
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 *  GNU General Public License for more details.
 
13
 *                                             
 
14
 *  You should have received a copy of the GNU General Public License
 
15
 *  along with this program; if not, write to the Free Software
 
16
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 *
 
18
 * vim: tabstop=4 shiftwidth=4 noexpandtab :
 
19
 */
 
20
 
 
21
 
 
22
#if (DATASERVER_VERSION >= 2023001)
 
23
#include <libedataserver/e-proxy.h>
 
24
#endif
 
25
 
 
26
void abort_all_soup(void);
 
27
gboolean cancel_soup_sess(gpointer key, gpointer value, gpointer user_data);
 
28
gboolean net_get_unblocking(gchar *url,
 
29
                                NetStatusCallback cb, gpointer data,
 
30
                                gpointer cb2, gpointer cbdata2,
 
31
                                guint track,
 
32
                                GError **err);
 
33
 
 
34
GString *net_post_blocking(gchar *url, GSList *headers, GString *post,
 
35
                  NetStatusCallback cb, gpointer data,
 
36
                  GError **err);
 
37
 
 
38
#define NET_ERROR net_error_quark()
 
39
int net_error_quark(void);
 
40
 
 
41
#if (DATASERVER_VERSION >= 2023001)
 
42
EProxy *proxy_init(void);
 
43
void proxify_webkit_session(EProxy *proxy, gchar *uri);
 
44
void proxify_session(EProxy *proxy, SoupSession *session, gchar *uri);
 
45
#endif
 
46
 
 
47
guint save_up(gpointer data);
 
48
guint del_up(gpointer data);
 
49
void rss_soup_init(void);
 
50
guint read_up(gpointer data);
 
51
void sync_gecko_cookies(void);
 
52