From bd1c80e7679b7fe904947c73dcb653f58ed83202 Mon Sep 17 00:00:00 2001 From: Gustavo Martin Morcuende Date: Tue, 9 Dec 2014 00:26:04 +0100 Subject: [PATCH] Using timber instead of default Android logger. --- LICENSE.md | 8 + app/build.gradle | 9 +- app/src/main/AndroidManifest.xml | 2 +- app/src/main/assets/timber-license.txt | 201 ++++++++++++++++++++ .../information/activity/LicensesActivity.java | 7 +- .../information/app/WeatherInformationApp.java | 34 ++++ .../fragment/current/CurrentFragment.java | 13 +- .../fragment/map/MapProgressFragment.java | 5 +- .../fragment/overview/OverviewFragment.java | 12 +- .../information/model/WeatherLocationDbHelper.java | 6 +- .../notification/NotificationIntentService.java | 14 +- .../information/service/PermanentStorage.java | 39 ++-- .../information/widget/WidgetIntentService.java | 13 +- app/src/main/res/raw/licenses.html | 208 +++++++++++++++++++++ 14 files changed, 510 insertions(+), 61 deletions(-) create mode 100644 app/src/main/assets/timber-license.txt create mode 100644 app/src/main/java/name/gumartinm/weather/information/app/WeatherInformationApp.java diff --git a/LICENSE.md b/LICENSE.md index ed2cb66..9cf0241 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -33,6 +33,14 @@ Apache License, Version 2.0. The license is located in the following path: - app/src/main/assets/jackson-license.txt +## [timber](https://github.com/JakeWharton/timber) + +Weather Information makes use of **timber-2.5.0.jar** library, which is licensed under the +Apache License, Version 2.0. The license is located in the following path: + + - app/src/main/assets/timber-license.txt + + ## [GNOME Project](http://www.gnome.org) Weather Information makes use of [gnome-icon-theme-symbolic](https://github.com/GNOME/gnome-icon-theme-symbolic) that diff --git a/app/build.gradle b/app/build.gradle index 777f62a..5277252 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,9 +1,10 @@ apply plugin: 'com.android.application' android { + signingConfigs { + } compileSdkVersion 18 buildToolsVersion "20.0.0" - defaultConfig { applicationId "name.gumartinm.weather.information" minSdkVersion 11 @@ -12,11 +13,14 @@ android { testApplicationId "name.gumartinm.weather.information.test" testInstrumentationRunner "android.test.InstrumentationTestRunner" } - buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' + buildConfigField "boolean", "DEBUG_MODE", "false" + } + debug { + buildConfigField "boolean", "DEBUG_MODE", "true" } } } @@ -25,4 +29,5 @@ dependencies { compile 'com.android.support:support-v4:+' compile 'com.google.android.gms:play-services:+' compile files('libs/jackson-core-2.3.3.jar') + compile 'com.jakewharton.timber:timber:2.5.0' } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index a6c04d6..73297f4 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -57,7 +57,7 @@ - ").append("").append(""); mWebView.loadDataWithBaseURL(null, stringBuilder.toString(), "text/html", "UTF-8", null); } catch (final UnsupportedEncodingException e) { - Log.e(TAG, "Load data error", e); + Timber.e(e, "Load data error"); } catch (final IOException e) { - Log.e(TAG, "Load data error", e); + Timber.e(e, "Load data error"); } } diff --git a/app/src/main/java/name/gumartinm/weather/information/app/WeatherInformationApp.java b/app/src/main/java/name/gumartinm/weather/information/app/WeatherInformationApp.java new file mode 100644 index 0000000..dd4146a --- /dev/null +++ b/app/src/main/java/name/gumartinm/weather/information/app/WeatherInformationApp.java @@ -0,0 +1,34 @@ +/** + * Copyright 2014 Gustavo Martin Morcuende + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package name.gumartinm.weather.information.app; + +import android.app.Application; + +import name.gumartinm.weather.information.BuildConfig; +import timber.log.Timber; + +public class WeatherInformationApp extends Application { + + @Override + public void onCreate() { + super.onCreate(); + + if (BuildConfig.DEBUG_MODE) { + Timber.plant(new Timber.DebugTree()); + } + } + +} diff --git a/app/src/main/java/name/gumartinm/weather/information/fragment/current/CurrentFragment.java b/app/src/main/java/name/gumartinm/weather/information/fragment/current/CurrentFragment.java index ad67dc4..2ece175 100644 --- a/app/src/main/java/name/gumartinm/weather/information/fragment/current/CurrentFragment.java +++ b/app/src/main/java/name/gumartinm/weather/information/fragment/current/CurrentFragment.java @@ -40,7 +40,6 @@ import android.os.Bundle; import android.preference.PreferenceManager; import android.support.v4.app.Fragment; import android.support.v4.content.LocalBroadcastManager; -import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; @@ -63,9 +62,9 @@ import name.gumartinm.weather.information.service.conversor.TempUnitsConversor; import name.gumartinm.weather.information.service.conversor.UnitsConversor; import name.gumartinm.weather.information.service.conversor.WindUnitsConversor; import name.gumartinm.weather.information.widget.WidgetProvider; +import timber.log.Timber; public class CurrentFragment extends Fragment { - private static final String TAG = "CurrentFragment"; private static final String BROADCAST_INTENT_ACTION = "name.gumartinm.weather.information.UPDATECURRENT"; private BroadcastReceiver mReceiver; @@ -403,16 +402,16 @@ public class CurrentFragment extends Fragment { try { current = this.doInBackgroundThrowable(latitude, longitude); } catch (final JsonParseException e) { - Log.e(TAG, "CurrentTask doInBackground exception: ", e); + Timber.e(e, "CurrentTask doInBackground exception: "); } catch (final ClientProtocolException e) { - Log.e(TAG, "CurrentTask doInBackground exception: ", e); + Timber.e(e, "CurrentTask doInBackground exception: "); } catch (final MalformedURLException e) { - Log.e(TAG, "CurrentTask doInBackground exception: ", e); + Timber.e(e, "CurrentTask doInBackground exception: "); } catch (final URISyntaxException e) { - Log.e(TAG, "CurrentTask doInBackground exception: ", e); + Timber.e(e, "CurrentTask doInBackground exception: "); } catch (final IOException e) { // logger infrastructure swallows UnknownHostException :/ - Log.e(TAG, "CurrentTask doInBackground exception: " + e.getMessage(), e); + Timber.e(e, "CurrentTask doInBackground exception: " + e.getMessage()); } finally { HTTPClient.close(); } diff --git a/app/src/main/java/name/gumartinm/weather/information/fragment/map/MapProgressFragment.java b/app/src/main/java/name/gumartinm/weather/information/fragment/map/MapProgressFragment.java index dcf399c..4142f4c 100644 --- a/app/src/main/java/name/gumartinm/weather/information/fragment/map/MapProgressFragment.java +++ b/app/src/main/java/name/gumartinm/weather/information/fragment/map/MapProgressFragment.java @@ -26,13 +26,13 @@ import android.location.Geocoder; import android.os.AsyncTask; import android.os.Bundle; import android.support.v4.app.Fragment; -import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import name.gumartinm.weather.information.R; import name.gumartinm.weather.information.model.WeatherLocation; +import timber.log.Timber; /** * {@link http://www.androiddesignpatterns.com/2013/04/retaining-objects-across-config-changes.html} @@ -112,7 +112,6 @@ public class MapProgressFragment extends Fragment { } private class GetAddressTask extends AsyncTask { - private static final String TAG = "GetAddressTask"; // Store the context passed to the AsyncTask when the system instantiates it. private final Context localContext; @@ -129,7 +128,7 @@ public class MapProgressFragment extends Fragment { try { weatherLocation = this.getLocation(latitude, longitude); } catch (final Throwable e) { // Hopefully nothing goes wrong because of catching Throwable. - Log.e(TAG, "GetAddressTask doInBackground exception: ", e); + Timber.e(e, "GetAddressTask doInBackground exception: "); } return weatherLocation; diff --git a/app/src/main/java/name/gumartinm/weather/information/fragment/overview/OverviewFragment.java b/app/src/main/java/name/gumartinm/weather/information/fragment/overview/OverviewFragment.java index 5fe33ec..c017fd8 100644 --- a/app/src/main/java/name/gumartinm/weather/information/fragment/overview/OverviewFragment.java +++ b/app/src/main/java/name/gumartinm/weather/information/fragment/overview/OverviewFragment.java @@ -43,7 +43,6 @@ import android.os.Bundle; import android.preference.PreferenceManager; import android.support.v4.app.ListFragment; import android.support.v4.content.LocalBroadcastManager; -import android.util.Log; import android.view.View; import android.widget.ListView; @@ -61,6 +60,7 @@ import name.gumartinm.weather.information.service.PermanentStorage; import name.gumartinm.weather.information.service.ServiceForecastParser; import name.gumartinm.weather.information.service.conversor.TempUnitsConversor; import name.gumartinm.weather.information.service.conversor.UnitsConversor; +import timber.log.Timber; public class OverviewFragment extends ListFragment { private static final String TAG = "OverviewFragment"; @@ -329,16 +329,16 @@ public class OverviewFragment extends ListFragment { try { forecast = this.doInBackgroundThrowable(latitude, longitude); } catch (final JsonParseException e) { - Log.e(TAG, "OverviewTask doInBackground exception: ", e); + Timber.e(e, "OverviewTask doInBackground exception: "); } catch (final ClientProtocolException e) { - Log.e(TAG, "OverviewTask doInBackground exception: ", e); + Timber.e(e, "OverviewTask doInBackground exception: "); } catch (final MalformedURLException e) { - Log.e(TAG, "OverviewTask doInBackground exception: ", e); + Timber.e(e, "OverviewTask doInBackground exception: "); } catch (final URISyntaxException e) { - Log.e(TAG, "OverviewTask doInBackground exception: ", e); + Timber.e(e, "OverviewTask doInBackground exception: "); } catch (final IOException e) { // logger infrastructure swallows UnknownHostException :/ - Log.e(TAG, "OverviewTask doInBackground exception: " + e.getMessage(), e); + Timber.e(e, "OverviewTask doInBackground exception: " + e.getMessage()); } finally { HTTPClient.close(); } diff --git a/app/src/main/java/name/gumartinm/weather/information/model/WeatherLocationDbHelper.java b/app/src/main/java/name/gumartinm/weather/information/model/WeatherLocationDbHelper.java index e8d6798..30857ec 100644 --- a/app/src/main/java/name/gumartinm/weather/information/model/WeatherLocationDbHelper.java +++ b/app/src/main/java/name/gumartinm/weather/information/model/WeatherLocationDbHelper.java @@ -18,10 +18,10 @@ package name.gumartinm.weather.information.model; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; -import android.util.Log; + +import timber.log.Timber; public class WeatherLocationDbHelper extends SQLiteOpenHelper { - private static final String TAG = "LocationDbHelper"; public static final int DATABASE_VERSION = 1; public static final String DATABASE_NAME = "Location.db"; @@ -46,7 +46,7 @@ public class WeatherLocationDbHelper extends SQLiteOpenHelper { @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { - Log.w(TAG, "Upgrading database from version " + oldVersion + " to " + Timber.w("Upgrading database from version " + oldVersion + " to " + newVersion + ", which will destroy all old data"); // Kills the table and existing data diff --git a/app/src/main/java/name/gumartinm/weather/information/notification/NotificationIntentService.java b/app/src/main/java/name/gumartinm/weather/information/notification/NotificationIntentService.java index 45536d9..eb5a2b2 100644 --- a/app/src/main/java/name/gumartinm/weather/information/notification/NotificationIntentService.java +++ b/app/src/main/java/name/gumartinm/weather/information/notification/NotificationIntentService.java @@ -37,7 +37,6 @@ import android.preference.PreferenceManager; import android.support.v4.app.NotificationCompat; import android.support.v4.app.NotificationManagerCompat; import android.support.v4.app.TaskStackBuilder; -import android.util.Log; import android.widget.RemoteViews; import com.fasterxml.jackson.core.JsonParseException; @@ -52,11 +51,10 @@ import name.gumartinm.weather.information.service.IconsList; import name.gumartinm.weather.information.service.ServiceCurrentParser; import name.gumartinm.weather.information.service.conversor.TempUnitsConversor; import name.gumartinm.weather.information.service.conversor.UnitsConversor; +import timber.log.Timber; public class NotificationIntentService extends IntentService { - private static final String TAG = "NotificationIntentService"; - public NotificationIntentService() { super("NIS-Thread"); @@ -77,16 +75,16 @@ public class NotificationIntentService extends IntentService { current = this.doInBackgroundThrowable(weatherLocation, HTTPClient, weatherService); } catch (final JsonParseException e) { - Log.e(TAG, "doInBackground exception: ", e); + Timber.e(e, "doInBackground exception: "); } catch (final ClientProtocolException e) { - Log.e(TAG, "doInBackground exception: ", e); + Timber.e(e, "doInBackground exception: "); } catch (final MalformedURLException e) { - Log.e(TAG, "doInBackground exception: ", e); + Timber.e(e, "doInBackground exception: "); } catch (final URISyntaxException e) { - Log.e(TAG, "doInBackground exception: ", e); + Timber.e(e, "doInBackground exception: "); } catch (final IOException e) { // logger infrastructure swallows UnknownHostException :/ - Log.e(TAG, "doInBackground exception: " + e.getMessage(), e); + Timber.e(e, "doInBackground exception: " + e.getMessage()); } finally { HTTPClient.close(); } diff --git a/app/src/main/java/name/gumartinm/weather/information/service/PermanentStorage.java b/app/src/main/java/name/gumartinm/weather/information/service/PermanentStorage.java index 59504e7..4a130f6 100644 --- a/app/src/main/java/name/gumartinm/weather/information/service/PermanentStorage.java +++ b/app/src/main/java/name/gumartinm/weather/information/service/PermanentStorage.java @@ -26,14 +26,13 @@ import java.io.StreamCorruptedException; import java.text.MessageFormat; import android.content.Context; -import android.util.Log; import name.gumartinm.weather.information.model.currentweather.Current; import name.gumartinm.weather.information.model.forecastweather.Forecast; +import timber.log.Timber; public class PermanentStorage { - private static final String TAG = "PermanentStorage"; private static final String CURRENT_DATA_FILE = "current.file"; private static final String FORECAST_DATA_FILE = "forecast.file"; private static final String WIDGET_CURRENT_DATA_FILE = "current.{0}.file"; @@ -48,9 +47,9 @@ public class PermanentStorage { try { this.saveObject(CURRENT_DATA_FILE, current); } catch (FileNotFoundException e) { - Log.e(TAG, "saveCurrent exception: ", e); + Timber.e(e, "saveCurrent exception: "); } catch (IOException e) { - Log.e(TAG, "saveCurrent exception: ", e); + Timber.e(e, "saveCurrent exception: "); } } @@ -59,13 +58,13 @@ public class PermanentStorage { try { return (Current) this.getObject(CURRENT_DATA_FILE); } catch (final StreamCorruptedException e) { - Log.e(TAG, "getCurrent exception: ", e); + Timber.e(e, "getCurrent exception: "); } catch (final FileNotFoundException e) { - Log.e(TAG, "getCurrent exception: ", e); + Timber.e(e, "getCurrent exception: "); } catch (final IOException e) { - Log.e(TAG, "getCurrent exception: ", e); + Timber.e(e, "getCurrent exception: "); } catch (final ClassNotFoundException e) { - Log.e(TAG, "getCurrent exception: ", e); + Timber.e(e, "getCurrent exception: "); } return null; @@ -77,9 +76,9 @@ public class PermanentStorage { try { this.saveObject(fileName, current); } catch (FileNotFoundException e) { - Log.e(TAG, "saveWidgetCurrentData exception: ", e); + Timber.e(e, "saveWidgetCurrentData exception: "); } catch (IOException e) { - Log.e(TAG, "saveWidgetCurrentData exception: ", e); + Timber.e(e, "saveWidgetCurrentData exception: "); } } @@ -89,13 +88,13 @@ public class PermanentStorage { try { return (Current) this.getObject(fileName); } catch (final StreamCorruptedException e) { - Log.e(TAG, "getWidgetCurrentData exception: ", e); + Timber.e(e, "getWidgetCurrentData exception: "); } catch (final FileNotFoundException e) { - Log.e(TAG, "getWidgetCurrentData exception: ", e); + Timber.e(e, "getWidgetCurrentData exception: "); } catch (final IOException e) { - Log.e(TAG, "getWidgetCurrentData exception: ", e); + Timber.e(e, "getWidgetCurrentData exception: "); } catch (final ClassNotFoundException e) { - Log.e(TAG, "getWidgetCurrentData exception: ", e); + Timber.e(e, "getWidgetCurrentData exception: "); } return null; @@ -113,9 +112,9 @@ public class PermanentStorage { try { this.saveObject(FORECAST_DATA_FILE, forecast); } catch (FileNotFoundException e) { - Log.e(TAG, "saveForecast exception: ", e); + Timber.e(e, "saveForecast exception: "); } catch (IOException e) { - Log.e(TAG, "saveForecast exception: ", e); + Timber.e(e, "saveForecast exception: "); } } @@ -124,13 +123,13 @@ public class PermanentStorage { try { return (Forecast) this.getObject(FORECAST_DATA_FILE); } catch (final StreamCorruptedException e) { - Log.e(TAG, "getForecast exception: ", e); + Timber.e(e, "getForecast exception: "); } catch (final FileNotFoundException e) { - Log.e(TAG, "getForecast exception: ", e); + Timber.e(e, "getForecast exception: "); } catch (final IOException e) { - Log.e(TAG, "getForecast exception: ", e); + Timber.e(e, "getForecast exception: "); } catch (final ClassNotFoundException e) { - Log.e(TAG, "getForecast exception: ", e); + Timber.e(e, "getForecast exception: "); } return null; diff --git a/app/src/main/java/name/gumartinm/weather/information/widget/WidgetIntentService.java b/app/src/main/java/name/gumartinm/weather/information/widget/WidgetIntentService.java index b511e84..de33dde 100644 --- a/app/src/main/java/name/gumartinm/weather/information/widget/WidgetIntentService.java +++ b/app/src/main/java/name/gumartinm/weather/information/widget/WidgetIntentService.java @@ -27,7 +27,6 @@ import android.net.Uri; import android.net.http.AndroidHttpClient; import android.preference.PreferenceManager; import android.support.v4.app.TaskStackBuilder; -import android.util.Log; import android.view.View; import android.widget.RemoteViews; @@ -41,6 +40,7 @@ import name.gumartinm.weather.information.parser.JPOSCurrentParser; import name.gumartinm.weather.information.service.IconsList; import name.gumartinm.weather.information.service.PermanentStorage; import name.gumartinm.weather.information.service.ServiceCurrentParser; +import timber.log.Timber; import org.apache.http.client.ClientProtocolException; @@ -53,7 +53,6 @@ import java.text.NumberFormat; import java.util.Locale; public class WidgetIntentService extends IntentService { - private static final String TAG = "WidgetIntentService"; private static final String WIDGET_PREFERENCES_NAME = "WIDGET_PREFERENCES"; public WidgetIntentService() { @@ -153,16 +152,16 @@ public class WidgetIntentService extends IntentService { return this.getRemoteCurrentThrowable(weatherLocation, HTTPClient, weatherService); } catch (final JsonParseException e) { - Log.e(TAG, "doInBackground exception: ", e); + Timber.e(e, "doInBackground exception: "); } catch (final ClientProtocolException e) { - Log.e(TAG, "doInBackground exception: ", e); + Timber.e(e, "doInBackground exception: "); } catch (final MalformedURLException e) { - Log.e(TAG, "doInBackground exception: ", e); + Timber.e(e, "doInBackground exception: "); } catch (final URISyntaxException e) { - Log.e(TAG, "doInBackground exception: ", e); + Timber.e(e, "doInBackground exception: "); } catch (final IOException e) { // logger infrastructure swallows UnknownHostException :/ - Log.e(TAG, "doInBackground exception: " + e.getMessage(), e); + Timber.e(e, "doInBackground exception: " + e.getMessage()); } finally { HTTPClient.close(); } diff --git a/app/src/main/res/raw/licenses.html b/app/src/main/res/raw/licenses.html index 4e49730..21874e9 100644 --- a/app/src/main/res/raw/licenses.html +++ b/app/src/main/res/raw/licenses.html @@ -30,6 +30,214 @@ consent from the copyright holder. +https://github.com/JakeWharton/timber +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+ +
  • weather_clear_night.png
  • weather_clear.png
  • weather_few_clouds_night.png
  • -- 2.1.4