# # GScraper - A web-scraping interface to various Google Services. # # Copyright (c) 2007-2012 Hal Brodigan (postmodern.mod3 at gmail.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # module GScraper # # @api semipublic # module Licenses # Any desired license ANY = nil # Aladdin license ALADDIN = :aladdin # Artistic license ARTISTIC = :artistic # Apache license APACHE = :apache # Apple license APPLE = :apple # BSD license BSD = :bsd # Common public license COMMON_PUBLIC = :cpl # Creative Commons By-Attribution license CC_BY = :cc_by # Creative Commons By-Attribution-Share-Alike license CC_BY_SA = :cc_by_sa # Creative Commons By-Attribution-No-Derivative license CC_BY_ND = :cc_by_nd # Creative Commons By-Attribution-Noncommercial-Share-Alike license CC_BY_NC = :cc_by_nc_sa # Creative Commons By-Attribution-No-Derivative-Share-Alike license CC_BY_ND_SA = :cc_by_nd_sa # Creative Commons By-Attribution-Noncommercial-No-Derivative license CC_BY_NC_ND = :cc_by_nc_nd # GNU General Public license GPL = :gpl # GNU Lesser General Public license LGPL = :lgpl # Historical Permission Notice and Disclaimer license HISTORICAL = :disclaimer # IBM Public license IBM_PUBLIC = :ibm # Lucent Public license LUCENT_PUBLIC = :lucent # MIT license MIT = :mit # Mozilla Public license MOZILLA_PUBLIC = :mozilla # NASA OSA license NASA_OSA = :nasa # Python license PYTHON = :python # Q Public license Q_PUBLIC = :qpl # Sleepycat license SLEEPYCAT = :sleepycat # Zope Public license ZOPE_PUBLIC = :zope end end