Now the systrayicon change it's color when a download is in progress. I simply change...
[kdenetwork.git] / kget / http_defaults.h
blob2937dc5bc102604912f7529d370ad2c158559f36
1 /***************************************************************************
2 * http_defaults.h
3 * -------------------
5 * Revision : $Id$
6 * begin : Tue Jan 29 2002
7 * copyright : (C) 2002 by Patrick Charbonnier
9 * email : pch@freeshell.org
11 ***************************************************************************/
13 /* This file is part of the KDE libraries
14 Copyright (C) 2001 Waldo Bastian <bastian@kde.org>
16 This library is free software; you can redistribute it and/or
17 modify it under the terms of the GNU Library General Public
18 License version 2 as published by the Free Software Foundation.
20 This library is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 Library General Public License for more details.
25 You should have received a copy of the GNU Library General Public License
26 along with this library; see the file COPYING.LIB. If not, write to
27 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA.
31 #ifndef _KIO_HTTP_SLAVE_DEFAULTS_H
32 #define _KIO_HTTP_SLAVE_DEFAULTS_H
34 // CACHE SETTINGS
35 #define DEFAULT_MAX_CACHE_SIZE 5120 // 5 MB
36 #define DEFAULT_MAX_CACHE_AGE 60*60*24*14 // 14 DAYS
37 #define DEFAULT_CACHE_EXPIRE 10 // 10 SECS
38 #define DEFAULT_CLEAN_CACHE_INTERVAL 30*60 // 30 MINS
39 #define DEFAULT_CACHE_CONTROL KIO::CC_Verify // Verify with remote
40 #define CACHE_REVISION "7\n" // Cache version
42 // DEFAULT USER AGENT KEY - ENABLES OS NAME
43 #define DEFAULT_USER_AGENT_KEYS "o" // Show OS
45 // MAXIMUM AMOUNT OF DATA THAT CAN BE SAFELY SENT OVER IPC
46 #define MAX_IPC_SIZE 1024*8
48 // AMOUNT OF DATA TO OBTAIN FROM THE SERVER BY DEFAULT
49 #define DEFAULT_BUF_SIZE 1024*4
51 // SOME DEFAULT HEADER VALUES
52 #define DEFAULT_LANGUAGE_HEADER "en"
53 #define DEFAULT_MIME_TYPE "text/html"
54 #define DEFAULT_FULL_CHARSET_HEADER "iso-8859-1, utf-8, *"
55 #define DEFAULT_PARIAL_CHARSET_HEADER ", utf-8, *"
57 #define DEFAULT_ACCEPT_HEADER "text/*, image/jpeg, image/png, image/*, */*"
59 #endif