diff options
author | Ricardo Cerqueira <cyanogenmod@cerqueira.org> | 2012-05-29 20:44:04 +0100 |
---|---|---|
committer | Ricardo Cerqueira <cyanogenmod@cerqueira.org> | 2012-05-29 20:47:20 +0100 |
commit | 8a16a7126a1a976b28d30657b7b81f2a78120e9d (patch) | |
tree | 5c8f62b8a117cb2e97e297a1f3df25d39cbc5cb4 /core | |
parent | df60741baea009c45224ebd9dede4e46a88599cf (diff) | |
download | frameworks_base-8a16a7126a1a976b28d30657b7b81f2a78120e9d.zip frameworks_base-8a16a7126a1a976b28d30657b7b81f2a78120e9d.tar.gz frameworks_base-8a16a7126a1a976b28d30657b7b81f2a78120e9d.tar.bz2 |
Weather: Fix authorship and licensing information on util classes
2 of these classes were incorrectly attributed and licensed, include
the headers from the originals out of
http://code.google.com/p/yahooweatherandroid
Change-Id: I583e04273f7e252b62434089bcc441b65f591b5c
Diffstat (limited to 'core')
-rw-r--r-- | core/java/com/android/internal/util/weather/HttpRetriever.java | 37 | ||||
-rw-r--r-- | core/java/com/android/internal/util/weather/WeatherXmlParser.java | 32 |
2 files changed, 44 insertions, 25 deletions
diff --git a/core/java/com/android/internal/util/weather/HttpRetriever.java b/core/java/com/android/internal/util/weather/HttpRetriever.java index cb72b63..a3417a0 100644 --- a/core/java/com/android/internal/util/weather/HttpRetriever.java +++ b/core/java/com/android/internal/util/weather/HttpRetriever.java @@ -1,19 +1,30 @@ -/* +/****************************************************************************** + * Class : HttpConnectHelper.java * + * Main Weather activity, in this demo apps i use API from yahoo, you can * + * use other weather web service which you prefer * + * * + * Version : v1.0 * + * Date : May 09, 2011 * + * Copyright (c)-2011 DatNQ some right reserved * + * You can distribute, modify or what ever you want but WITHOUT ANY WARRANTY * + * Be honest by keep credit of this file * + * * + * If you have any concern, feel free to contact with me via email, i will * + * check email in free time * + * Email: nguyendatnq@gmail.com * + * ---------------------------------------------------------------------------* + * Modification Logs: * + * KEYCHANGE DATE AUTHOR DESCRIPTION * + * ---------------------------------------------------------------------------* + * ------- May 09, 2011 DatNQ Create new * + ******************************************************************************/ + +/** + * Modification into Android-internal HttpRetreiver.java * Copyright (C) 2012 The AOKP Project - * - * 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 com.android.internal.util.weather; import org.apache.http.HttpEntity; diff --git a/core/java/com/android/internal/util/weather/WeatherXmlParser.java b/core/java/com/android/internal/util/weather/WeatherXmlParser.java index b9731dc..a2986fc 100644 --- a/core/java/com/android/internal/util/weather/WeatherXmlParser.java +++ b/core/java/com/android/internal/util/weather/WeatherXmlParser.java @@ -1,17 +1,25 @@ +/****************************************************************************** + * Class : YahooWeatherHelper.java * + * Parser helper for Yahoo * + * * + * Version : v1.0 * + * Date : May 06, 2011 * + * Copyright (c)-2011 DatNQ some right reserved * + * You can distribute, modify or what ever you want but WITHOUT ANY WARRANTY * + * Be honest by keep credit of this file * + * * + * If you have any concern, feel free to contact with me via email, i will * + * check email in free time * + * Email: nguyendatnq@gmail.com * + * ---------------------------------------------------------------------------* + * Modification Logs: * + * KEYCHANGE DATE AUTHOR DESCRIPTION * + * ---------------------------------------------------------------------------* + * ------- May 06, 2011 DatNQ Create new * + ******************************************************************************/ /* + * Modification into Android-internal WeatherXmlParser.java * Copyright (C) 2012 The AOKP Project - * - * 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 com.android.internal.util.weather; |