libgweather r526 - in trunk: . doc doc/tmpl
- From: vuntz svn gnome org
- To: svn-commits-list gnome org
- Subject: libgweather r526 - in trunk: . doc doc/tmpl
- Date: Wed, 26 Nov 2008 01:52:55 +0000 (UTC)
Author: vuntz
Date: Wed Nov 26 01:52:55 2008
New Revision: 526
URL: http://svn.gnome.org/viewvc/libgweather?rev=526&view=rev
Log:
2008-11-26 Vincent Untz <vuntz gnome org>
* Makefile.am:
* configure.in:
* doc/*: add gtk-doc setup. First step for bug #562261.
Added:
trunk/doc/ (props changed)
trunk/doc/Makefile.am
trunk/doc/libgweather-docs.sgml
trunk/doc/libgweather-sections.txt
trunk/doc/libgweather.types
trunk/doc/tmpl/
trunk/doc/tmpl/gweather-enum-types.sgml
trunk/doc/tmpl/gweather-gconf.sgml
trunk/doc/tmpl/gweather-location.sgml
trunk/doc/tmpl/gweather-prefs.sgml
trunk/doc/tmpl/gweather-timezone.sgml
trunk/doc/tmpl/gweather-xml.sgml
trunk/doc/tmpl/libgweather-unused.sgml
trunk/doc/tmpl/location-entry.sgml
trunk/doc/tmpl/parser.sgml
trunk/doc/tmpl/timezone-menu.sgml
trunk/doc/tmpl/weather-priv.sgml
trunk/doc/tmpl/weather.sgml
Modified:
trunk/ (props changed)
trunk/ChangeLog
trunk/Makefile.am
trunk/configure.in
Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am (original)
+++ trunk/Makefile.am Wed Nov 26 01:52:55 2008
@@ -1,4 +1,6 @@
-SUBDIRS = po po-locations libgweather data python
+SUBDIRS = po po-locations libgweather doc data python
+
+DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
EXTRA_DIST = \
MAINTAINERS
Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in (original)
+++ trunk/configure.in Wed Nov 26 01:52:55 2008
@@ -217,11 +217,17 @@
AC_SUBST(PYTHONDIR)
AC_SUBST(GLADEDIR)
+##################################################
+# Checks for gtk-doc and docbook-tools
+##################################################
+GTK_DOC_CHECK([1.9])
+
dnl ***************************************************************************
dnl *** Output Makefiles et al ***
dnl ***************************************************************************
AC_OUTPUT([
Makefile
+doc/Makefile
po/Makefile.in
po-locations/Makefile
libgweather/Makefile
Added: trunk/doc/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/doc/Makefile.am Wed Nov 26 01:52:55 2008
@@ -0,0 +1,88 @@
+## Process this file with automake to produce Makefile.in
+
+# We require automake 1.6 at least.
+AUTOMAKE_OPTIONS = 1.6
+
+# The name of the module, e.g. 'glib'.
+DOC_MODULE=libgweather
+
+# Uncomment for versioned docs and specify the version of the module, e.g. '2'.
+#DOC_MODULE_VERSION=2
+
+# The top-level SGML file. You can change this if you want to.
+DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
+
+# The directory containing the source code. Relative to $(srcdir).
+# gtk-doc will search all .c & .h files beneath here for inline comments
+# documenting the functions and macros.
+# e.g. DOC_SOURCE_DIR=../../../gtk
+DOC_SOURCE_DIR=../libgweather
+
+# Extra options to pass to gtkdoc-scangobj. Not normally needed.
+SCANGOBJ_OPTIONS=
+
+# Extra options to supply to gtkdoc-scan
+# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
+SCAN_OPTIONS=--deprecated-guards="GWEATHER_DISABLE_DEPRECATED"
+
+# Extra options to supply to gtkdoc-mkdb.
+# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
+MKDB_OPTIONS=--sgml-mode --output-format=xml
+
+# Extra options to supply to gtkdoc-mktmpl
+# e.g. MKTMPL_OPTIONS=--only-section-tmpl
+MKTMPL_OPTIONS=
+
+# Extra options to supply to gtkdoc-mkhtml
+MKHTML_OPTIONS=
+
+# Extra options to supply to gtkdoc-fixref. Not normally needed.
+# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
+FIXXREF_OPTIONS=
+
+# Used for dependencies. The docs will be rebuilt if any of these change.
+# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
+# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
+HFILE_GLOB=$(top_srcdir)/libgweather/*.h
+CFILE_GLOB=$(top_srcdir)/libgweather/*.c
+
+# Header files to ignore when scanning.
+# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
+IGNORE_HFILES=
+
+# Images to copy into HTML directory.
+# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
+HTML_IMAGES=
+
+# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
+# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
+content_files=
+
+# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
+# These files must be listed here *and* in content_files
+# e.g. expand_content_files=running.sgml
+expand_content_files=
+
+# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
+# Only needed if you are using gtkdoc-scangobj to dynamically query widget
+# signals and properties.
+# e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
+# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
+GTKDOC_CFLAGS = -I$(top_srcdir) $(GTK_CFLAGS) $(LIBXML_CFLAGS) $(LIBSOUP_CFLAGS) $(GCONF_CFLAGS) -DGWEATHER_I_KNOW_THIS_IS_UNSTABLE
+GTKDOC_LIBS = $(top_builddir)/libgweather/libgweather.la $(GTK_LIBS) $(LIBXML_LIBS) $(LIBSOUP_LIBS) $(GCONF_LIBS)
+
+# This includes the standard gtk-doc make rules, copied by gtkdocize.
+include $(top_srcdir)/gtk-doc.make
+
+# Other files to distribute
+# e.g. EXTRA_DIST += version.xml.in
+EXTRA_DIST +=
+
+# Files not to distribute
+# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
+# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
+#DISTCLEANFILES +=
+
+# Comment this out if you want your docs-status tested during 'make check'
+#TESTS = $(GTKDOC_CHECK)
+
Added: trunk/doc/libgweather-docs.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/libgweather-docs.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,31 @@
+<?xml version="1.0"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
+ "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
+[
+ <!ENTITY % local.common.attrib "xmlns:xi CDATA #FIXED 'http://www.w3.org/2003/XInclude'">
+]>
+<book id="index">
+ <bookinfo>
+ <title>libgweather Reference Manual</title>
+ <releaseinfo>
+ for libgweather [VERSION]
+ The latest version of this documentation can be found on-line at
+ <ulink role="online-location" url="http://[SERVER]/libgweather/index.html">http://[SERVER]/libgweather/</ulink>.
+ </releaseinfo>
+ </bookinfo>
+
+ <chapter>
+ <title>[Insert title here]</title>
+ <xi:include href="xml/timezone-menu.xml"/>
+ <xi:include href="xml/location-entry.xml"/>
+ <xi:include href="xml/gweather-enum-types.xml"/>
+ <xi:include href="xml/gweather-timezone.xml"/>
+ <xi:include href="xml/parser.xml"/>
+ <xi:include href="xml/gweather-xml.xml"/>
+ <xi:include href="xml/gweather-gconf.xml"/>
+ <xi:include href="xml/gweather-prefs.xml"/>
+ <xi:include href="xml/weather-priv.xml"/>
+ <xi:include href="xml/gweather-location.xml"/>
+ <xi:include href="xml/weather.xml"/>
+ </chapter>
+</book>
Added: trunk/doc/libgweather-sections.txt
==============================================================================
--- (empty file)
+++ trunk/doc/libgweather-sections.txt Wed Nov 26 01:52:55 2008
@@ -0,0 +1,251 @@
+<SECTION>
+<FILE>timezone-menu</FILE>
+<TITLE>GWeatherTimezoneMenu</TITLE>
+GWeatherTimezoneMenu
+gweather_timezone_menu_new
+gweather_timezone_menu_set_tzid
+gweather_timezone_menu_get_tzid
+<SUBSECTION Standard>
+GWEATHER_TIMEZONE_MENU
+GWEATHER_IS_TIMEZONE_MENU
+GWEATHER_TYPE_TIMEZONE_MENU
+gweather_timezone_menu_get_type
+GWEATHER_TIMEZONE_MENU_CLASS
+GWEATHER_IS_TIMEZONE_MENU_CLASS
+GWEATHER_TIMEZONE_MENU_GET_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>location-entry</FILE>
+<TITLE>GWeatherLocationEntry</TITLE>
+GWeatherLocationEntry
+gweather_location_entry_new
+gweather_location_entry_set_location
+gweather_location_entry_get_location
+gweather_location_entry_set_city
+<SUBSECTION Standard>
+GWEATHER_LOCATION_ENTRY
+GWEATHER_IS_LOCATION_ENTRY
+GWEATHER_TYPE_LOCATION_ENTRY
+gweather_location_entry_get_type
+GWEATHER_LOCATION_ENTRY_CLASS
+GWEATHER_IS_LOCATION_ENTRY_CLASS
+GWEATHER_LOCATION_ENTRY_GET_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>gweather-enum-types</FILE>
+gweather_location_level_get_type
+GWEATHER_TYPE_LOCATION_LEVEL
+</SECTION>
+
+<SECTION>
+<FILE>gweather-timezone</FILE>
+GWeatherTimezone
+gweather_timezone_get_type
+GWEATHER_TYPE_TIMEZONE
+gweather_timezone_get_name
+gweather_timezone_get_tzid
+gweather_timezone_get_offset
+gweather_timezone_has_dst
+gweather_timezone_get_dst_offset
+gweather_timezone_ref
+gweather_timezone_unref
+</SECTION>
+
+<SECTION>
+<FILE>parser</FILE>
+GWeatherParser
+gweather_parser_new
+gweather_parser_free
+gweather_parser_get_value
+gweather_parser_get_localized_value
+gweather_timezones_parse_xml
+</SECTION>
+
+<SECTION>
+<FILE>gweather-xml</FILE>
+gweather_xml_load_locations
+</SECTION>
+
+<SECTION>
+<FILE>gweather-gconf</FILE>
+GWeatherGConf
+gweather_gconf_new
+gweather_gconf_free
+gweather_gconf_get_client
+gweather_gconf_get_location
+gweather_gconf_get_full_key
+gweather_gconf_set_bool
+gweather_gconf_set_int
+gweather_gconf_set_string
+gweather_gconf_get_bool
+gweather_gconf_get_int
+gweather_gconf_get_string
+</SECTION>
+
+<SECTION>
+<FILE>gweather-prefs</FILE>
+GCONF_TEMP_UNIT
+GCONF_SPEED_UNIT
+GCONF_PRESSURE_UNIT
+GCONF_DISTANCE_UNIT
+GWeatherPrefs
+gweather_prefs_load
+gweather_prefs_temp_enum_to_string
+gweather_prefs_speed_enum_to_string
+gweather_prefs_pressure_enum_to_string
+gweather_prefs_distance_enum_to_string
+gweather_prefs_parse_temperature
+gweather_prefs_parse_speed
+gweather_prefs_get_temp_display_name
+gweather_prefs_get_speed_display_name
+gweather_prefs_get_pressure_display_name
+gweather_prefs_get_distance_display_name
+</SECTION>
+
+<SECTION>
+<FILE>weather-priv</FILE>
+gweather_gettext
+_
+N_
+WEATHER_LOCATION_CODE_LEN
+gweather_location_to_weather_location
+WeatherConditions
+WeatherTemperature
+WeatherHumidity
+WeatherWindSpeed
+WeatherPressure
+WeatherVisibility
+WeatherUpdate
+WeatherInfo
+weather_wind_direction_string
+weather_sky_string
+weather_conditions_string
+DATA_SIZE
+CONST_DIGITS
+CONST_ALPHABET
+TEMP_F_TO_C
+TEMP_F_TO_K
+TEMP_C_TO_F
+WINDSPEED_KNOTS_TO_KPH
+WINDSPEED_KNOTS_TO_MPH
+WINDSPEED_KNOTS_TO_MS
+WINDSPEED_MS_TO_KNOTS
+WINDSPEED_KNOTS_TO_BFT
+PRESSURE_INCH_TO_KPA
+PRESSURE_INCH_TO_HPA
+PRESSURE_INCH_TO_MM
+PRESSURE_INCH_TO_MB
+PRESSURE_INCH_TO_ATM
+PRESSURE_MBAR_TO_INCH
+VISIBILITY_SM_TO_KM
+VISIBILITY_SM_TO_M
+DEGREES_TO_RADIANS
+RADIANS_TO_DEGREES
+RADIANS_TO_HOURS
+metar_start_open
+iwin_start_open
+metoffice_start_open
+bom_start_open
+wx_start_open
+metar_parse
+requests_init
+request_done
+calc_sun
+free_forecast_list
+</SECTION>
+
+<SECTION>
+<FILE>gweather-location</FILE>
+GWeatherLocation
+GWeatherLocationLevel
+gweather_location_get_type
+GWEATHER_TYPE_LOCATION
+gweather_location_new_world
+gweather_location_ref
+gweather_location_unref
+gweather_location_get_name
+gweather_location_get_sort_name
+gweather_location_get_level
+gweather_location_get_parent
+gweather_location_get_children
+gweather_location_free_children
+gweather_location_has_coords
+gweather_location_get_coords
+gweather_location_get_distance
+gweather_location_get_country
+gweather_location_get_timezone
+gweather_location_get_timezones
+gweather_location_free_timezones
+gweather_location_get_code
+gweather_location_get_city_name
+gweather_location_get_weather
+</SECTION>
+
+<SECTION>
+<FILE>weather</FILE>
+WeatherLocation
+weather_location_new
+weather_location_clone
+weather_location_free
+weather_location_equal
+WeatherForecastType
+TempUnit
+SpeedUnit
+PressureUnit
+DistanceUnit
+WeatherPrefs
+WeatherInfo
+WeatherInfoFunc
+weather_info_new
+weather_info_update
+weather_info_abort
+weather_info_clone
+weather_info_free
+weather_info_is_valid
+weather_info_network_error
+weather_info_to_metric
+weather_info_to_imperial
+weather_info_get_location
+weather_info_get_location_name
+weather_info_get_update
+weather_info_get_sky
+weather_info_get_conditions
+weather_info_get_temp
+weather_info_get_temp_min
+weather_info_get_temp_max
+weather_info_get_dew
+weather_info_get_humidity
+weather_info_get_wind
+weather_info_get_pressure
+weather_info_get_visibility
+weather_info_get_apparent
+weather_info_get_sunrise
+weather_info_get_sunset
+weather_info_get_forecast
+weather_info_get_forecast_list
+weather_info_get_radar
+weather_info_get_temp_summary
+weather_info_get_weather_summary
+weather_info_get_icon_name
+weather_info_next_sun_event
+WeatherWindDirection
+WeatherSky
+WeatherConditionPhenomenon
+WeatherConditionQualifier
+weather_info_get_value_update
+weather_info_get_value_sky
+weather_info_get_value_conditions
+weather_info_get_value_temp
+weather_info_get_value_temp_min
+weather_info_get_value_temp_max
+weather_info_get_value_dew
+weather_info_get_value_apparent
+weather_info_get_value_wind
+weather_info_get_value_pressure
+weather_info_get_value_visibility
+weather_info_get_value_sunrise
+weather_info_get_value_sunset
+</SECTION>
+
Added: trunk/doc/libgweather.types
==============================================================================
--- (empty file)
+++ trunk/doc/libgweather.types Wed Nov 26 01:52:55 2008
@@ -0,0 +1,5 @@
+gweather_location_level_get_type
+gweather_timezone_get_type
+gweather_timezone_menu_get_type
+gweather_location_entry_get_type
+gweather_location_get_type
Added: trunk/doc/tmpl/gweather-enum-types.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/tmpl/gweather-enum-types.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,36 @@
+<!-- ##### SECTION Title ##### -->
+gweather-enum-types
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### FUNCTION gweather_location_level_get_type ##### -->
+<para>
+
+</para>
+
+ Returns:
+
+
+<!-- ##### MACRO GWEATHER_TYPE_LOCATION_LEVEL ##### -->
+<para>
+
+</para>
+
+
+
Added: trunk/doc/tmpl/gweather-gconf.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/tmpl/gweather-gconf.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,138 @@
+<!-- ##### SECTION Title ##### -->
+gweather-gconf
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### STRUCT GWeatherGConf ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### FUNCTION gweather_gconf_new ##### -->
+<para>
+
+</para>
+
+ prefix:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_gconf_free ##### -->
+<para>
+
+</para>
+
+ ctx:
+
+
+<!-- ##### FUNCTION gweather_gconf_get_client ##### -->
+<para>
+
+</para>
+
+ ctx:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_gconf_get_location ##### -->
+<para>
+
+</para>
+
+ ctx:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_gconf_get_full_key ##### -->
+<para>
+
+</para>
+
+ ctx:
+ key:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_gconf_set_bool ##### -->
+<para>
+
+</para>
+
+ ctx:
+ key:
+ the_bool:
+ opt_error:
+
+
+<!-- ##### FUNCTION gweather_gconf_set_int ##### -->
+<para>
+
+</para>
+
+ ctx:
+ key:
+ the_int:
+ opt_error:
+
+
+<!-- ##### FUNCTION gweather_gconf_set_string ##### -->
+<para>
+
+</para>
+
+ ctx:
+ key:
+ the_string:
+ opt_error:
+
+
+<!-- ##### FUNCTION gweather_gconf_get_bool ##### -->
+<para>
+
+</para>
+
+ ctx:
+ key:
+ opt_error:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_gconf_get_int ##### -->
+<para>
+
+</para>
+
+ ctx:
+ key:
+ opt_error:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_gconf_get_string ##### -->
+<para>
+
+</para>
+
+ ctx:
+ key:
+ opt_error:
+ Returns:
+
+
Added: trunk/doc/tmpl/gweather-location.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/tmpl/gweather-location.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,227 @@
+<!-- ##### SECTION Title ##### -->
+gweather-location
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### STRUCT GWeatherLocation ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### ENUM GWeatherLocationLevel ##### -->
+<para>
+
+</para>
+
+ GWEATHER_LOCATION_WORLD:
+ GWEATHER_LOCATION_REGION:
+ GWEATHER_LOCATION_COUNTRY:
+ GWEATHER_LOCATION_ADM1:
+ GWEATHER_LOCATION_ADM2:
+ GWEATHER_LOCATION_CITY:
+ GWEATHER_LOCATION_WEATHER_STATION:
+
+<!-- ##### FUNCTION gweather_location_get_type ##### -->
+<para>
+
+</para>
+
+ Returns:
+
+
+<!-- ##### MACRO GWEATHER_TYPE_LOCATION ##### -->
+<para>
+
+</para>
+
+
+
+<!-- ##### FUNCTION gweather_location_new_world ##### -->
+<para>
+
+</para>
+
+ use_regions:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_ref ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_unref ##### -->
+<para>
+
+</para>
+
+ loc:
+
+
+<!-- ##### FUNCTION gweather_location_get_name ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_get_sort_name ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_get_level ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_get_parent ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_get_children ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_free_children ##### -->
+<para>
+
+</para>
+
+ loc:
+ children:
+
+
+<!-- ##### FUNCTION gweather_location_has_coords ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_get_coords ##### -->
+<para>
+
+</para>
+
+ loc:
+ latitude:
+ longitude:
+
+
+<!-- ##### FUNCTION gweather_location_get_distance ##### -->
+<para>
+
+</para>
+
+ loc:
+ loc2:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_get_country ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_get_timezone ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_get_timezones ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_free_timezones ##### -->
+<para>
+
+</para>
+
+ loc:
+ zones:
+
+
+<!-- ##### FUNCTION gweather_location_get_code ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_get_city_name ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_get_weather ##### -->
+<para>
+
+</para>
+
+ loc:
+ Returns:
+
+
Added: trunk/doc/tmpl/gweather-prefs.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/tmpl/gweather-prefs.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,171 @@
+<!-- ##### SECTION Title ##### -->
+gweather-prefs
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### MACRO GCONF_TEMP_UNIT ##### -->
+<para>
+
+</para>
+
+
+
+<!-- ##### MACRO GCONF_SPEED_UNIT ##### -->
+<para>
+
+</para>
+
+
+
+<!-- ##### MACRO GCONF_PRESSURE_UNIT ##### -->
+<para>
+
+</para>
+
+
+
+<!-- ##### MACRO GCONF_DISTANCE_UNIT ##### -->
+<para>
+
+</para>
+
+
+
+<!-- ##### STRUCT GWeatherPrefs ##### -->
+<para>
+
+</para>
+
+ location:
+ update_interval:
+ update_enabled:
+ detailed:
+ radar_enabled:
+ use_custom_radar_url:
+ radar:
+ temperature_unit:
+ use_temperature_default:
+ speed_unit:
+ use_speed_default:
+ pressure_unit:
+ use_pressure_default:
+ distance_unit:
+ use_distance_default:
+
+<!-- ##### FUNCTION gweather_prefs_load ##### -->
+<para>
+
+</para>
+
+ prefs:
+ ctx:
+
+
+<!-- ##### FUNCTION gweather_prefs_temp_enum_to_string ##### -->
+<para>
+
+</para>
+
+ temp:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_prefs_speed_enum_to_string ##### -->
+<para>
+
+</para>
+
+ speed:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_prefs_pressure_enum_to_string ##### -->
+<para>
+
+</para>
+
+ pressure:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_prefs_distance_enum_to_string ##### -->
+<para>
+
+</para>
+
+ distance:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_prefs_parse_temperature ##### -->
+<para>
+
+</para>
+
+ str:
+ is_default:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_prefs_parse_speed ##### -->
+<para>
+
+</para>
+
+ str:
+ is_default:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_prefs_get_temp_display_name ##### -->
+<para>
+
+</para>
+
+ temp:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_prefs_get_speed_display_name ##### -->
+<para>
+
+</para>
+
+ speed:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_prefs_get_pressure_display_name ##### -->
+<para>
+
+</para>
+
+ pressure:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_prefs_get_distance_display_name ##### -->
+<para>
+
+</para>
+
+ distance:
+ Returns:
+
+
Added: trunk/doc/tmpl/gweather-timezone.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/tmpl/gweather-timezone.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,104 @@
+<!-- ##### SECTION Title ##### -->
+gweather-timezone
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### STRUCT GWeatherTimezone ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### FUNCTION gweather_timezone_get_type ##### -->
+<para>
+
+</para>
+
+ Returns:
+
+
+<!-- ##### MACRO GWEATHER_TYPE_TIMEZONE ##### -->
+<para>
+
+</para>
+
+
+
+<!-- ##### FUNCTION gweather_timezone_get_name ##### -->
+<para>
+
+</para>
+
+ zone:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_timezone_get_tzid ##### -->
+<para>
+
+</para>
+
+ zone:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_timezone_get_offset ##### -->
+<para>
+
+</para>
+
+ zone:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_timezone_has_dst ##### -->
+<para>
+
+</para>
+
+ zone:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_timezone_get_dst_offset ##### -->
+<para>
+
+</para>
+
+ zone:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_timezone_ref ##### -->
+<para>
+
+</para>
+
+ zone:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_timezone_unref ##### -->
+<para>
+
+</para>
+
+ zone:
+
+
Added: trunk/doc/tmpl/gweather-xml.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/tmpl/gweather-xml.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,29 @@
+<!-- ##### SECTION Title ##### -->
+gweather-xml
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### FUNCTION gweather_xml_load_locations ##### -->
+<para>
+
+</para>
+
+ Returns:
+
+
Added: trunk/doc/tmpl/libgweather-unused.sgml
==============================================================================
Added: trunk/doc/tmpl/location-entry.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/tmpl/location-entry.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,74 @@
+<!-- ##### SECTION Title ##### -->
+GWeatherLocationEntry
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### STRUCT GWeatherLocationEntry ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### ARG GWeatherLocationEntry:location ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GWeatherLocationEntry:top ##### -->
+<para>
+
+</para>
+
+<!-- ##### FUNCTION gweather_location_entry_new ##### -->
+<para>
+
+</para>
+
+ top:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_entry_set_location ##### -->
+<para>
+
+</para>
+
+ entry:
+ loc:
+
+
+<!-- ##### FUNCTION gweather_location_entry_get_location ##### -->
+<para>
+
+</para>
+
+ entry:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_location_entry_set_city ##### -->
+<para>
+
+</para>
+
+ entry:
+ city_name:
+ code:
+
+
Added: trunk/doc/tmpl/parser.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/tmpl/parser.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,76 @@
+<!-- ##### SECTION Title ##### -->
+parser
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### STRUCT GWeatherParser ##### -->
+<para>
+
+</para>
+
+ xml:
+ locales:
+ use_regions:
+ year_start:
+ year_end:
+
+<!-- ##### FUNCTION gweather_parser_new ##### -->
+<para>
+
+</para>
+
+ use_regions:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_parser_free ##### -->
+<para>
+
+</para>
+
+ parser:
+
+
+<!-- ##### FUNCTION gweather_parser_get_value ##### -->
+<para>
+
+</para>
+
+ parser:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_parser_get_localized_value ##### -->
+<para>
+
+</para>
+
+ parser:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_timezones_parse_xml ##### -->
+<para>
+
+</para>
+
+ parser:
+ Returns:
+
+
Added: trunk/doc/tmpl/timezone-menu.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/tmpl/timezone-menu.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,64 @@
+<!-- ##### SECTION Title ##### -->
+GWeatherTimezoneMenu
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### STRUCT GWeatherTimezoneMenu ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### ARG GWeatherTimezoneMenu:top ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GWeatherTimezoneMenu:tzid ##### -->
+<para>
+
+</para>
+
+<!-- ##### FUNCTION gweather_timezone_menu_new ##### -->
+<para>
+
+</para>
+
+ top:
+ Returns:
+
+
+<!-- ##### FUNCTION gweather_timezone_menu_set_tzid ##### -->
+<para>
+
+</para>
+
+ menu:
+ tzid:
+
+
+<!-- ##### FUNCTION gweather_timezone_menu_get_tzid ##### -->
+<para>
+
+</para>
+
+ menu:
+ Returns:
+
+
Added: trunk/doc/tmpl/weather-priv.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/tmpl/weather-priv.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,432 @@
+<!-- ##### SECTION Title ##### -->
+weather-priv
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### FUNCTION gweather_gettext ##### -->
+<para>
+
+</para>
+
+ str:
+ Returns:
+
+
+<!-- ##### MACRO _ ##### -->
+<para>
+
+</para>
+
+ str:
+
+
+<!-- ##### MACRO N_ ##### -->
+<para>
+
+</para>
+
+ str:
+
+
+<!-- ##### MACRO WEATHER_LOCATION_CODE_LEN ##### -->
+<para>
+
+</para>
+
+
+
+<!-- ##### FUNCTION gweather_location_to_weather_location ##### -->
+<para>
+
+</para>
+
+ gloc:
+ name:
+ Returns:
+
+
+<!-- ##### STRUCT WeatherConditions ##### -->
+<para>
+
+</para>
+
+ significant:
+ phenomenon:
+ qualifier:
+
+<!-- ##### TYPEDEF WeatherTemperature ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### TYPEDEF WeatherHumidity ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### TYPEDEF WeatherWindSpeed ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### TYPEDEF WeatherPressure ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### TYPEDEF WeatherVisibility ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### TYPEDEF WeatherUpdate ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### STRUCT WeatherInfo ##### -->
+<para>
+
+</para>
+
+ forecast_type:
+ temperature_unit:
+ speed_unit:
+ pressure_unit:
+ distance_unit:
+ valid:
+ network_error:
+ sunValid:
+ tempMinMaxValid:
+ location:
+ update:
+ sky:
+ cond:
+ temp:
+ temp_min:
+ temp_max:
+ dew:
+ wind:
+ windspeed:
+ pressure:
+ visibility:
+ sunrise:
+ sunset:
+ forecast:
+ forecast_list:
+ radar_buffer:
+ radar_url:
+ radar_loader:
+ radar:
+ session:
+ requests_pending:
+ finish_cb:
+ cb_data:
+
+<!-- ##### FUNCTION weather_wind_direction_string ##### -->
+<para>
+
+</para>
+
+ wind:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_sky_string ##### -->
+<para>
+
+</para>
+
+ sky:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_conditions_string ##### -->
+<para>
+
+</para>
+
+ cond:
+ Returns:
+
+
+<!-- ##### MACRO DATA_SIZE ##### -->
+<para>
+
+</para>
+
+
+
+<!-- ##### MACRO CONST_DIGITS ##### -->
+<para>
+
+</para>
+
+
+
+<!-- ##### MACRO CONST_ALPHABET ##### -->
+<para>
+
+</para>
+
+
+
+<!-- ##### MACRO TEMP_F_TO_C ##### -->
+<para>
+
+</para>
+
+ f:
+
+
+<!-- ##### MACRO TEMP_F_TO_K ##### -->
+<para>
+
+</para>
+
+ f:
+
+
+<!-- ##### MACRO TEMP_C_TO_F ##### -->
+<para>
+
+</para>
+
+ c:
+
+
+<!-- ##### MACRO WINDSPEED_KNOTS_TO_KPH ##### -->
+<para>
+
+</para>
+
+ knots:
+
+
+<!-- ##### MACRO WINDSPEED_KNOTS_TO_MPH ##### -->
+<para>
+
+</para>
+
+ knots:
+
+
+<!-- ##### MACRO WINDSPEED_KNOTS_TO_MS ##### -->
+<para>
+
+</para>
+
+ knots:
+
+
+<!-- ##### MACRO WINDSPEED_MS_TO_KNOTS ##### -->
+<para>
+
+</para>
+
+ ms:
+
+
+<!-- ##### MACRO WINDSPEED_KNOTS_TO_BFT ##### -->
+<para>
+
+</para>
+
+ knots:
+
+
+<!-- ##### MACRO PRESSURE_INCH_TO_KPA ##### -->
+<para>
+
+</para>
+
+ inch:
+
+
+<!-- ##### MACRO PRESSURE_INCH_TO_HPA ##### -->
+<para>
+
+</para>
+
+ inch:
+
+
+<!-- ##### MACRO PRESSURE_INCH_TO_MM ##### -->
+<para>
+
+</para>
+
+ inch:
+
+
+<!-- ##### MACRO PRESSURE_INCH_TO_MB ##### -->
+<para>
+
+</para>
+
+ inch:
+
+
+<!-- ##### MACRO PRESSURE_INCH_TO_ATM ##### -->
+<para>
+
+</para>
+
+ inch:
+
+
+<!-- ##### MACRO PRESSURE_MBAR_TO_INCH ##### -->
+<para>
+
+</para>
+
+ mbar:
+
+
+<!-- ##### MACRO VISIBILITY_SM_TO_KM ##### -->
+<para>
+
+</para>
+
+ sm:
+
+
+<!-- ##### MACRO VISIBILITY_SM_TO_M ##### -->
+<para>
+
+</para>
+
+ sm:
+
+
+<!-- ##### MACRO DEGREES_TO_RADIANS ##### -->
+<para>
+
+</para>
+
+ deg:
+
+
+<!-- ##### MACRO RADIANS_TO_DEGREES ##### -->
+<para>
+
+</para>
+
+ rad:
+
+
+<!-- ##### MACRO RADIANS_TO_HOURS ##### -->
+<para>
+
+</para>
+
+ rad:
+
+
+<!-- ##### FUNCTION metar_start_open ##### -->
+<para>
+
+</para>
+
+ info:
+
+
+<!-- ##### FUNCTION iwin_start_open ##### -->
+<para>
+
+</para>
+
+ info:
+
+
+<!-- ##### FUNCTION metoffice_start_open ##### -->
+<para>
+
+</para>
+
+ info:
+
+
+<!-- ##### FUNCTION bom_start_open ##### -->
+<para>
+
+</para>
+
+ info:
+
+
+<!-- ##### FUNCTION wx_start_open ##### -->
+<para>
+
+</para>
+
+ info:
+
+
+<!-- ##### FUNCTION metar_parse ##### -->
+<para>
+
+</para>
+
+ metar:
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION requests_init ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION request_done ##### -->
+<para>
+
+</para>
+
+ info:
+ ok:
+
+
+<!-- ##### FUNCTION calc_sun ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION free_forecast_list ##### -->
+<para>
+
+</para>
+
+ info:
+
+
Added: trunk/doc/tmpl/weather.sgml
==============================================================================
--- (empty file)
+++ trunk/doc/tmpl/weather.sgml Wed Nov 26 01:52:55 2008
@@ -0,0 +1,711 @@
+<!-- ##### SECTION Title ##### -->
+weather
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### STRUCT WeatherLocation ##### -->
+<para>
+
+</para>
+
+ name:
+ code:
+ zone:
+ radar:
+ zone_valid:
+ coordinates:
+ latitude:
+ longitude:
+ latlon_valid:
+ country_code:
+ tz_hint:
+
+<!-- ##### FUNCTION weather_location_new ##### -->
+<para>
+
+</para>
+
+ trans_name:
+ code:
+ zone:
+ radar:
+ coordinates:
+ country_code:
+ tz_hint:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_location_clone ##### -->
+<para>
+
+</para>
+
+ location:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_location_free ##### -->
+<para>
+
+</para>
+
+ location:
+
+
+<!-- ##### FUNCTION weather_location_equal ##### -->
+<para>
+
+</para>
+
+ location1:
+ location2:
+ Returns:
+
+
+<!-- ##### ENUM WeatherForecastType ##### -->
+<para>
+
+</para>
+
+ FORECAST_STATE:
+ FORECAST_ZONE:
+ FORECAST_LIST:
+
+<!-- ##### ENUM TempUnit ##### -->
+<para>
+
+</para>
+
+ TEMP_UNIT_INVALID:
+ TEMP_UNIT_DEFAULT:
+ TEMP_UNIT_KELVIN:
+ TEMP_UNIT_CENTIGRADE:
+ TEMP_UNIT_FAHRENHEIT:
+
+<!-- ##### ENUM SpeedUnit ##### -->
+<para>
+
+</para>
+
+ SPEED_UNIT_INVALID:
+ SPEED_UNIT_DEFAULT:
+ SPEED_UNIT_MS:
+ SPEED_UNIT_KPH:
+ SPEED_UNIT_MPH:
+ SPEED_UNIT_KNOTS:
+ SPEED_UNIT_BFT:
+
+<!-- ##### ENUM PressureUnit ##### -->
+<para>
+
+</para>
+
+ PRESSURE_UNIT_INVALID:
+ PRESSURE_UNIT_DEFAULT:
+ PRESSURE_UNIT_KPA:
+ PRESSURE_UNIT_HPA:
+ PRESSURE_UNIT_MB:
+ PRESSURE_UNIT_MM_HG:
+ PRESSURE_UNIT_INCH_HG:
+ PRESSURE_UNIT_ATM:
+
+<!-- ##### ENUM DistanceUnit ##### -->
+<para>
+
+</para>
+
+ DISTANCE_UNIT_INVALID:
+ DISTANCE_UNIT_DEFAULT:
+ DISTANCE_UNIT_METERS:
+ DISTANCE_UNIT_KM:
+ DISTANCE_UNIT_MILES:
+
+<!-- ##### STRUCT WeatherPrefs ##### -->
+<para>
+
+</para>
+
+ type:
+ radar:
+ radar_custom_url:
+ temperature_unit:
+ speed_unit:
+ pressure_unit:
+ distance_unit:
+
+<!-- ##### STRUCT WeatherInfo ##### -->
+<para>
+
+</para>
+
+ forecast_type:
+ temperature_unit:
+ speed_unit:
+ pressure_unit:
+ distance_unit:
+ valid:
+ network_error:
+ sunValid:
+ tempMinMaxValid:
+ location:
+ update:
+ sky:
+ cond:
+ temp:
+ temp_min:
+ temp_max:
+ dew:
+ wind:
+ windspeed:
+ pressure:
+ visibility:
+ sunrise:
+ sunset:
+ forecast:
+ forecast_list:
+ radar_buffer:
+ radar_url:
+ radar_loader:
+ radar:
+ session:
+ requests_pending:
+ finish_cb:
+ cb_data:
+
+<!-- ##### USER_FUNCTION WeatherInfoFunc ##### -->
+<para>
+
+</para>
+
+ info:
+ data:
+
+
+<!-- ##### MACRO weather_info_new ##### -->
+<para>
+
+</para>
+
+ location:
+ prefs:
+ cb:
+ data:
+
+
+<!-- ##### MACRO weather_info_update ##### -->
+<para>
+
+</para>
+
+ info:
+ prefs:
+ cb:
+ data:
+
+
+<!-- ##### FUNCTION weather_info_abort ##### -->
+<para>
+
+</para>
+
+ info:
+
+
+<!-- ##### FUNCTION weather_info_clone ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_free ##### -->
+<para>
+
+</para>
+
+ info:
+
+
+<!-- ##### FUNCTION weather_info_is_valid ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_network_error ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_to_metric ##### -->
+<para>
+
+</para>
+
+ info:
+
+
+<!-- ##### FUNCTION weather_info_to_imperial ##### -->
+<para>
+
+</para>
+
+ info:
+
+
+<!-- ##### FUNCTION weather_info_get_location ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_location_name ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_update ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_sky ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_conditions ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_temp ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_temp_min ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_temp_max ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_dew ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_humidity ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_wind ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_pressure ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_visibility ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_apparent ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_sunrise ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_sunset ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_forecast ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_forecast_list ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_radar ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_temp_summary ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_weather_summary ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_icon_name ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_next_sun_event ##### -->
+<para>
+
+</para>
+
+ info:
+ Returns:
+
+
+<!-- ##### ENUM WeatherWindDirection ##### -->
+<para>
+
+</para>
+
+ WIND_VARIABLE:
+ WIND_N:
+ WIND_NNE:
+ WIND_NE:
+ WIND_ENE:
+ WIND_E:
+ WIND_ESE:
+ WIND_SE:
+ WIND_SSE:
+ WIND_S:
+ WIND_SSW:
+ WIND_SW:
+ WIND_WSW:
+ WIND_W:
+ WIND_WNW:
+ WIND_NW:
+ WIND_NNW:
+
+<!-- ##### ENUM WeatherSky ##### -->
+<para>
+
+</para>
+
+ SKY_INVALID:
+ SKY_CLEAR:
+ SKY_BROKEN:
+ SKY_SCATTERED:
+ SKY_FEW:
+ SKY_OVERCAST:
+
+<!-- ##### ENUM WeatherConditionPhenomenon ##### -->
+<para>
+
+</para>
+
+ PHENOMENON_NONE:
+ PHENOMENON_DRIZZLE:
+ PHENOMENON_RAIN:
+ PHENOMENON_SNOW:
+ PHENOMENON_SNOW_GRAINS:
+ PHENOMENON_ICE_CRYSTALS:
+ PHENOMENON_ICE_PELLETS:
+ PHENOMENON_HAIL:
+ PHENOMENON_SMALL_HAIL:
+ PHENOMENON_UNKNOWN_PRECIPITATION:
+ PHENOMENON_MIST:
+ PHENOMENON_FOG:
+ PHENOMENON_SMOKE:
+ PHENOMENON_VOLCANIC_ASH:
+ PHENOMENON_SAND:
+ PHENOMENON_HAZE:
+ PHENOMENON_SPRAY:
+ PHENOMENON_DUST:
+ PHENOMENON_SQUALL:
+ PHENOMENON_SANDSTORM:
+ PHENOMENON_DUSTSTORM:
+ PHENOMENON_FUNNEL_CLOUD:
+ PHENOMENON_TORNADO:
+ PHENOMENON_DUST_WHIRLS:
+
+<!-- ##### ENUM WeatherConditionQualifier ##### -->
+<para>
+
+</para>
+
+ QUALIFIER_NONE:
+ QUALIFIER_VICINITY:
+ QUALIFIER_LIGHT:
+ QUALIFIER_MODERATE:
+ QUALIFIER_HEAVY:
+ QUALIFIER_SHALLOW:
+ QUALIFIER_PATCHES:
+ QUALIFIER_PARTIAL:
+ QUALIFIER_THUNDERSTORM:
+ QUALIFIER_BLOWING:
+ QUALIFIER_SHOWERS:
+ QUALIFIER_DRIFTING:
+ QUALIFIER_FREEZING:
+
+<!-- ##### FUNCTION weather_info_get_value_update ##### -->
+<para>
+
+</para>
+
+ info:
+ value:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_sky ##### -->
+<para>
+
+</para>
+
+ info:
+ sky:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_conditions ##### -->
+<para>
+
+</para>
+
+ info:
+ phenomenon:
+ qualifier:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_temp ##### -->
+<para>
+
+</para>
+
+ info:
+ unit:
+ value:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_temp_min ##### -->
+<para>
+
+</para>
+
+ info:
+ unit:
+ value:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_temp_max ##### -->
+<para>
+
+</para>
+
+ info:
+ unit:
+ value:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_dew ##### -->
+<para>
+
+</para>
+
+ info:
+ unit:
+ value:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_apparent ##### -->
+<para>
+
+</para>
+
+ info:
+ unit:
+ value:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_wind ##### -->
+<para>
+
+</para>
+
+ info:
+ unit:
+ speed:
+ direction:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_pressure ##### -->
+<para>
+
+</para>
+
+ info:
+ unit:
+ value:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_visibility ##### -->
+<para>
+
+</para>
+
+ info:
+ unit:
+ value:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_sunrise ##### -->
+<para>
+
+</para>
+
+ info:
+ value:
+ Returns:
+
+
+<!-- ##### FUNCTION weather_info_get_value_sunset ##### -->
+<para>
+
+</para>
+
+ info:
+ value:
+ Returns:
+
+
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]