aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/metar.h
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-10-22 22:12:47 +0800
committerDan Winship <danw@src.gnome.org>2003-10-22 22:12:47 +0800
commit27e6d3cb39461babf270fc4e6c5ba986af38a85a (patch)
tree91dff8149f50ca834598fa60a749289ebfd62d0c /my-evolution/metar.h
parent31be44baaaaf661c00292c53f03ebeba336155bd (diff)
downloadgsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.gz
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.bz2
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.lz
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.xz
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.zst
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.zip
Removed; this code has not been used since pre-1.0.
* executive-summary/*: Removed; this code has not been used since pre-1.0. * my-evolution/*: Removed; gone in evolution 2.0. * notes/*: Removed; never finished and no one is working on it. * configure.in (E_UTIL_{CFLAGS,LIBS}): Remove soup-2.0 since e-proxy is gone. (EVOLUTION_MAIL_{CFLAGS,LIBS}): Remove soup-2.0 since the mailer uses CamelHTTPStream now. (EVOLUTION_EXECUTIVE_SUMMARY_{CFLAGS,LIBS}): Gone (AC_OUTPUT): Remove my-evolution/Makefile * README: evolution no longer depends on soup svn path=/trunk/; revision=22976
Diffstat (limited to 'my-evolution/metar.h')
-rw-r--r--my-evolution/metar.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/my-evolution/metar.h b/my-evolution/metar.h
deleted file mode 100644
index 91ec15d2a1..0000000000
--- a/my-evolution/metar.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * metar.h
- */
-
-#ifndef __METAR_H__
-#define __METAR_H__
-
-#define TIME_RE_STR "^([0-9]{6})Z$"
-#define WIND_RE_STR "^(([0-9]{3})|VRB)([0-9]?[0-9]{2})(G[0-9]?[0-9]{2})?KT$"
-#define VIS_RE_STR "^(([0-9]?[0-9])|(M?1/[0-9]?[0-9]))SM$"
-#define CLOUD_RE_STR "^(CLR|BKN|SCT|FEW|OVC)([0-9]{3})?$"
-#define TEMP_RE_STR "^(M?[0-9][0-9])/(M?[0-9][0-9])$"
-#define PRES_RE_STR "^(A|Q)([0-9]{4})$"
-#define COND_RE_STR "^(-|\\+)?(VC|MI|BC|PR|TS|BL|SH|DR|FZ)?(DZ|RA|SN|SG|IC|PE|GR|GS|UP|BR|FG|FU|VA|SA|HZ|PY|DU|SQ|SS|DS|PO|\\+?FC)$"
-
-enum {
- TIME_RE,
- WIND_RE,
- VIS_RE,
- CLOUD_RE,
- TEMP_RE,
- PRES_RE,
- COND_RE,
- RE_NUM
-};
-
-const char *weather_sky_string (Weather *w);
-char *weather_temp_string (Weather *w);
-const char *weather_conditions_string (Weather *w);
-const char *weather_wind_direction_string (Weather *w);
-const char *icon_from_weather (Weather *w);
-
-void metar_init_re (void);
-gboolean metar_tok_time (char *token,
- Weather *w);
-gboolean metar_tok_wind (char *tokp,
- Weather *w);
-gboolean metar_tok_vis (char *tokp,
- Weather *w);
-gboolean metar_tok_cloud (char *tokp,
- Weather *w);
-gboolean metar_tok_pres (char *tokp,
- Weather *w);
-gboolean metar_tok_temp (char *tokp,
- Weather *w);
-gboolean metar_tok_cond (char *tokp,
- Weather *w);
-#endif