blob: bb3b45fef85f34a34562edaf11706723ecde1ecd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* e-summary-weather.c
*
* Copyright (C) 2001 Ximian, Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
* Authors: Jakub Steiner <jimmac@ximian.com>
* Iain Holmes <iain@ximian.com>
*/
#ifdef NOT_ETTORE
#define HTML_1 "<html><head></head><body background=\"bcg.png\" "\
"bgcolor=\"white\" text=\"#000000\" link=\"#314e6c\" alink=\"black\" vlink=\"#314e6c\">"\
"<img src=\"myevo.png\" alt=\"My Evolution\" width=\"200\" height=\"31\" border=\"0\"><br>"\
"<img src=\"empty.gif\" alt=\"\" width=\"10\" height=\"20\">"\
"<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">"\
"<tbody><tr>"
#else
#define HTML_1 "<html><head></head><body background=\"bcg.png\" "\
"bgcolor=\"white\" text=\"#000000\" link=\"#314e6c\" alink=\"black\" vlink=\"#314e6c\">"\
"<img src=\"empty.gif\" alt=\"\" width=\"10\" height=\"20\">"\
"<table border=\"0\" numcols=\"5\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">"\
"<tbody><tr>"
#endif
/* Needs a stringified date */
#define HTML_2 "<td align=\"Right\" colspan=\"5\"><b>%s</b><br> <img src=\"empty.gif\" width=\"1\" height=\"3\"></td>"
#define HTML_3 "</tr><tr><td colspan=\"5\" bgcolor=\"#000000\"><img src=\"empty.gif\" width=\"1\" height=\"1\"></td></tr>"\
"<tr valign=\"Top\">" \
"<td width=\"100%\">"\
/* Weather stuff goes here */
/* RDF Stuff goes here */
#define HTML_4 "</td><td> </td><td width=\"1\" bgcolor=\"#000000\"><img src=\"empty.gif\" width=\"1\" height=\"1\"></td>"\
"<td width=\"15\" background=\"pattern.png\">   </td>"\
"<td width=\"0\" background=\"pattern.png\">"
/* Mail stuff ici s'il vous plait */
/* And then the calendar stuff */
#ifdef NOT_ETTORE
#define HTML_5 "<p align=\"Center\"><img src=\"evologo-big.png\" width=\"200\" height=\"216\" alt=\"\"></p><p>"\
"<img src=\"empty.gif\" alt=\"\" width=\"290\" height=\"1\"></p></td>"\
"<tr bgcolor=\"#000000\"><td colspan=\"\"><img src=\"empty.gif\" alt=\"\" width=\"10\" height=\"20\"></td></tr>"\
"</tbody></table></body></html>"
#else
#define HTML_5 "<img src=\"empty.gif\" alt=\"\" width=\"290\" height=\"1\"></p></td>"\
"<tr bgcolor=\"#000000\"><td colspan=\"5\"><img src=\"empty.gif\" alt=\"\" width=\"10\" height=\"1\"></td></tr>"\
"</tbody></table></body></html>"
#endif
|