diff --git a/themoviedbapi/LICENCE.txt b/themoviedbapi/LICENCE.txt new file mode 100644 index 000000000..503b3abfd --- /dev/null +++ b/themoviedbapi/LICENCE.txt @@ -0,0 +1,26 @@ +This work is licensed under a Creative Commons License. + +You are free to: + Share — to copy, distribute and transmit the work + Remix — to adapt the work + +Under the following conditions: + Attribution. + You must attribute the work in the manner specified by the author or + licensor (but not in any way that suggests that they endorse you or + your use of the work). + Noncommercial. + You may not use this work for commercial purposes. + +For any reuse or distribution, you must make clear to others the license terms +of this work. + +Any of the above conditions can be waived if you get permission from the +copyright holder. + +Nothing in this license impairs or restricts the author's moral rights. + +http://creativecommons.org/licenses/by-nc/3.0/ + +The full license can be found here: +http://creativecommons.org/licenses/by-nc/3.0/legalcode \ No newline at end of file diff --git a/themoviedbapi/readme.txt b/themoviedbapi/readme.txt index f481fb77c..fa139d184 100644 --- a/themoviedbapi/readme.txt +++ b/themoviedbapi/readme.txt @@ -1,4 +1,4 @@ -Author: Stuart.Boston AT Gmail DOT com (Omertron) +Author: Stuart Boston (Omertron AT Gmail DOT com) Originally written for use by YetAnotherMovieJukebox (YAMJ) http://code.google.com/p/moviejukebox/ But anyone can feel free to use it for other projects as well. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/MovieDbException.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/MovieDbException.java index e48762399..1f9a95aa0 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/MovieDbException.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/MovieDbException.java @@ -1,3 +1,12 @@ +/* + * Copyright (c) 2004-2012 Stuart Boston + * + * This software is licensed under a Creative Commons License + * See the LICENCE.txt file included in this package + * + * For any reuse or distribution, you must make clear to others the + * license terms of this work. + */ package com.moviejukebox.themoviedb; public class MovieDbException extends Exception { diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/TheMovieDb.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/TheMovieDb.java index 488db554a..49c48abc3 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/TheMovieDb.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/TheMovieDb.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/AlternativeTitle.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/AlternativeTitle.java index 420ec6160..c57c564bf 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/AlternativeTitle.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/AlternativeTitle.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Artwork.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Artwork.java index ee94787ce..391bb468b 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Artwork.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Artwork.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ArtworkType.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ArtworkType.java index 9e952d85d..e454b0b6e 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ArtworkType.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ArtworkType.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Collection.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Collection.java index be77b9d6a..f3ac281a9 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Collection.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Collection.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/CollectionInfo.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/CollectionInfo.java index a49ea08fa..0edf12770 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/CollectionInfo.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/CollectionInfo.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Company.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Company.java index 539e3a387..3cd07bbc8 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Company.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Company.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Genre.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Genre.java index 1aeb44730..b0da30e3e 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Genre.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Genre.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Keyword.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Keyword.java index 0f5b72f75..f0dd79045 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Keyword.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Keyword.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Language.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Language.java index d05ded99e..c81dc339c 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Language.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Language.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/MovieDb.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/MovieDb.java index 15a4c8d99..7dedb1c82 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/MovieDb.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/MovieDb.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Person.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Person.java index f38c3b260..771dba51c 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Person.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Person.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCast.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCast.java index 5a13b3889..9b04b7012 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCast.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCast.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCredit.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCredit.java index e4060445f..1698140d5 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCredit.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCredit.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCrew.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCrew.java index d7f545951..d6f69bbd2 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCrew.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonCrew.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonType.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonType.java index dd3bd1a1d..40bf83222 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonType.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/PersonType.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ProductionCompany.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ProductionCompany.java index 33785f817..93b10247e 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ProductionCompany.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ProductionCompany.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ProductionCountry.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ProductionCountry.java index f435c6cc7..001d4d289 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ProductionCountry.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ProductionCountry.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ReleaseInfo.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ReleaseInfo.java index b6b040049..0edd1dc10 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ReleaseInfo.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/ReleaseInfo.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/StatusCode.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/StatusCode.java index 9452b3ff8..33c73a091 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/StatusCode.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/StatusCode.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TmdbConfiguration.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TmdbConfiguration.java index ff45215b5..7aac0b47a 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TmdbConfiguration.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TmdbConfiguration.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TokenAuthorisation.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TokenAuthorisation.java index 579cc0ce5..d8c3fb063 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TokenAuthorisation.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TokenAuthorisation.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TokenSession.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TokenSession.java index f20d3c043..a540af287 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TokenSession.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/TokenSession.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Trailer.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Trailer.java index 009693e08..9d716caf6 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Trailer.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Trailer.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Translation.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Translation.java index ec76728a6..66f6c769a 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Translation.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/model/Translation.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/ApiUrl.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/ApiUrl.java index d940b5885..c89e05631 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/ApiUrl.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/ApiUrl.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/FilteringLayout.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/FilteringLayout.java index bd59bcad9..6cf8126ff 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/FilteringLayout.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/FilteringLayout.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/WebBrowser.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/WebBrowser.java index b76783064..0df2cfa1b 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/WebBrowser.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/tools/WebBrowser.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. @@ -113,7 +110,7 @@ public final class WebBrowser { if (in != null) { in.close(); } - + if (cnx instanceof HttpURLConnection) { ((HttpURLConnection) cnx).disconnect(); } diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperAlternativeTitles.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperAlternativeTitles.java index 869615093..50af41663 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperAlternativeTitles.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperAlternativeTitles.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperCompany.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperCompany.java index 8065b8965..62b96140d 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperCompany.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperCompany.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperCompanyMovies.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperCompanyMovies.java index 467c9980c..bc286db9b 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperCompanyMovies.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperCompanyMovies.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperConfig.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperConfig.java index 01d12a795..aea884cd0 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperConfig.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperConfig.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperGenres.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperGenres.java index 986a1adfa..f4608455c 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperGenres.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperGenres.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperImages.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperImages.java index cdbe36cf2..98edbbfda 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperImages.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperImages.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovie.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovie.java index 40ff5fbf1..2ae8cd5e9 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovie.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovie.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovieCasts.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovieCasts.java index c327dfc8b..03acee9b6 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovieCasts.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovieCasts.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovieKeywords.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovieKeywords.java index 182bdce2c..abec165f5 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovieKeywords.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperMovieKeywords.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperPerson.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperPerson.java index a20adc6e8..81514b7ca 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperPerson.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperPerson.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperPersonCredits.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperPersonCredits.java index c2a612030..4b4cf4cf6 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperPersonCredits.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperPersonCredits.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperReleaseInfo.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperReleaseInfo.java index 8e9621f39..8d55e9ea7 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperReleaseInfo.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperReleaseInfo.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperTrailers.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperTrailers.java index 3b746bbff..dde4b774a 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperTrailers.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperTrailers.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperTranslations.java b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperTranslations.java index 6a4e8d560..ff15f1a85 100644 --- a/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperTranslations.java +++ b/themoviedbapi/src/main/java/com/moviejukebox/themoviedb/wrapper/WrapperTranslations.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work. diff --git a/themoviedbapi/src/test/java/com/moviejukebox/themoviedb/TheMovieDbTest.java b/themoviedbapi/src/test/java/com/moviejukebox/themoviedb/TheMovieDbTest.java index 963fcee2e..a9305b742 100644 --- a/themoviedbapi/src/test/java/com/moviejukebox/themoviedb/TheMovieDbTest.java +++ b/themoviedbapi/src/test/java/com/moviejukebox/themoviedb/TheMovieDbTest.java @@ -1,11 +1,8 @@ /* - * Copyright (c) 2004-2012 YAMJ Members - * http://code.google.com/p/moviejukebox/people/list - * - * Web: http://code.google.com/p/moviejukebox/ + * Copyright (c) 2004-2012 Stuart Boston * * This software is licensed under a Creative Commons License - * See this page: http://code.google.com/p/moviejukebox/wiki/License + * See the LICENCE.txt file included in this package * * For any reuse or distribution, you must make clear to others the * license terms of this work.