Skip to content

Commit

Permalink
Updated copyright period to 2001-2010
Browse files Browse the repository at this point in the history
svn/trunk@8479
  • Loading branch information
stevenbird committed Jan 13, 2010
1 parent 7b732a1 commit 90caf32
Show file tree
Hide file tree
Showing 180 changed files with 218 additions and 210 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2001-2009 NLTK Project
Copyright (C) 2001-2010 NLTK Project

Licensed under the Apache License, Version 2.0 (the 'License');
you may not use this file except in compliance with the License.
Expand Down
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: source Makefile
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Steven Bird <[email protected]>
# Edward Loper <[email protected]>
# URL: <http://www.nltk.org/>
Expand Down Expand Up @@ -52,10 +52,14 @@ doc:
DOCTEST_DRIVER = nltk/test/doctest_driver.py
DOCTEST_FLAGS = --ellipsis --normalize_whitespace
DOCTEST_FILES = nltk/test/*.doctest
DOCTEST_CODE_FILES = nltk/*.py nltk/*/*.py

doctest:
$(PYTHON) $(DOCTEST_DRIVER) $(DOCTEST_FLAGS) $(DOCTEST_FILES)

doctest_code:
$(PYTHON) $(DOCTEST_DRIVER) $(DOCTEST_FLAGS) $(DOCTEST_CODE_FILES)

demotest:
find nltk -name "*.py"\
-and -not -path *misc* \
Expand Down
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Natural Language Toolkit (NLTK) http://www.nltk.org/

Copyright (C) 2001-2009 NLTK Project
Copyright (C) 2001-2010 NLTK Project

Bird, Steven, Edward Loper and Ewan Klein (2009).
Natural Language Processing with Python. O'Reilly Media Inc.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Authors: Steven Bird <[email protected]>
Edward Loper <[email protected]>
Ewan Klein <[email protected]>

Copyright (C) 2001-2009 NLTK Project
Copyright (C) 2001-2010 NLTK Project

For license information, see LICENSE.txt

Expand Down
2 changes: 1 addition & 1 deletion examples/grammars/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# NLTK: Documentation Makefile
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Ewan Klein <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion javasrc/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: java interface code Makefile
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# URL: <http://nltk.sf.net>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion javasrc/README.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
NLTK-Java Interface Code

Copyright (C) 2001-2009 NLTK Project
Copyright (C) 2001-2010 NLTK Project
For license information, see LICENSE.TXT

The Java code in this directory is used by NLTK to communicate with
Expand Down
2 changes: 1 addition & 1 deletion javasrc/org/nltk/mallet/CRFInfo.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2001-2009 NLTK Project
* Copyright (C) 2001-2010 NLTK Project
* Author: Edward Loper <[email protected]>
* URL: <http://www.nltk.org/>
* For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion javasrc/org/nltk/mallet/RunCRF.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* Results are written to stdout.
*
* Copyright (C) 2001-2009 NLTK Project
* Copyright (C) 2001-2010 NLTK Project
* Author: Edward Loper <[email protected]>
* URL: <http://www.nltk.org/>
* For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion javasrc/org/nltk/mallet/TrainCRF.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* --train-file FILE -- training data filename: one token per line,
* sequences seperated by newlines.
*
* Copyright (C) 2001-2009 NLTK Project
* Copyright (C) 2001-2010 NLTK Project
* Author: Edward Loper <[email protected]>
* URL: <http://www.nltk.org/>
* For license information, see LICENSE.TXT
Expand Down
4 changes: 2 additions & 2 deletions nltk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit (NLTK)
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Authors: Steven Bird <[email protected]>
# Edward Loper <[email protected]>
# URL: <http://www.nltk.org/>
Expand All @@ -24,7 +24,7 @@

# Copyright notice
__copyright__ = """\
Copyright (C) 2001-2009 NLTK Project.
Copyright (C) 2001-2010 NLTK Project.
Distributed and Licensed under the Apache License, Version 2.0,
which is included by reference.
Expand Down
2 changes: 1 addition & 1 deletion nltk/app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Applications package
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# Steven Bird <[email protected]>
# URL: <http://www.nltk.org/>
Expand Down
2 changes: 1 addition & 1 deletion nltk/app/chartparser_app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Chart Parser Application
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# Jean Mark Gawron <[email protected]>
# Steven Bird <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion nltk/app/chunkparser_app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Regexp Chunk Parser Application
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/app/collocations_app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Collocations Application
# Much of the GUI code is imported from concordance.py; We intend to merge these tools together
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Sumukh Ghodke <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/app/concordance_app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Concordance Application
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Sumukh Ghodke <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/app/rdparser_app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Recursive Descent Parser Application
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/app/srparser_app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Shift-Reduce Parser Application
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/app/wordfreq_app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Wordfreq Application
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Sumukh Ghodke <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
8 changes: 4 additions & 4 deletions nltk/app/wordnet_app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: WordNet Browser Application
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Jussi Salmela <[email protected]>
# Paul Bone <[email protected]>
# URL: <http://www.nltk.org/>
Expand Down Expand Up @@ -847,7 +847,7 @@ def get_static_web_help_page():
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<!-- Natural Language Toolkit: Wordnet Interface: Graphical Wordnet Browser
Copyright (C) 2001-2009 NLTK Project
Copyright (C) 2001-2010 NLTK Project
Author: Jussi Salmela <[email protected]>
URL: <http://www.nltk.org/>
For license information, see LICENSE.TXT -->
Expand Down Expand Up @@ -918,7 +918,7 @@ def get_static_index_page(with_shutdown):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<!-- Natural Language Toolkit: Wordnet Interface: Graphical Wordnet Browser
Copyright (C) 2001-2009 NLTK Project
Copyright (C) 2001-2010 NLTK Project
Author: Jussi Salmela <[email protected]>
URL: <http://www.nltk.org/>
For license information, see LICENSE.TXT -->
Expand Down Expand Up @@ -952,7 +952,7 @@ def get_static_upper_page(with_shutdown):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<!-- Natural Language Toolkit: Wordnet Interface: Graphical Wordnet Browser
Copyright (C) 2001-2009 NLTK Project
Copyright (C) 2001-2010 NLTK Project
Author: Jussi Salmela <[email protected]>
URL: <http://www.nltk.org/>
For license information, see LICENSE.TXT -->
Expand Down
4 changes: 2 additions & 2 deletions nltk/app/wxwordnet_app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Wordnet Interface: Graphical Wordnet Browser
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Jussi Salmela <[email protected]>
# Paul Bone <[email protected]>
# URL: <http://www.nltk.org/>
Expand Down Expand Up @@ -743,7 +743,7 @@ def get_static_wx_help_page():
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<!-- Natural Language Toolkit: Wordnet Interface: Graphical Wordnet Browser
Copyright (C) 2001-2009 NLTK Project
Copyright (C) 2001-2010 NLTK Project
Author: Jussi Salmela <[email protected]>
URL: <http://www.nltk.org/>
For license information, see LICENSE.TXT -->
Expand Down
2 changes: 1 addition & 1 deletion nltk/ccg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Combinatory Categorial Grammar
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Graeme Gange <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/ccg/api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: CCG Categories
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Graeme Gange <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/ccg/chart.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Combinatory Categorial Grammar
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Graeme Gange <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/ccg/combinator.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Combinatory Categorial Grammar
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Graeme Gange <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/ccg/lexicon.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Combinatory Categorial Grammar
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Graeme Gange <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/chat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Chatbots
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Authors: Steven Bird <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/chat/eliza.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Eliza
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Authors: Steven Bird <[email protected]>
# Edward Loper <[email protected]>
# URL: <http://www.nltk.org/>
Expand Down
2 changes: 1 addition & 1 deletion nltk/chat/iesha.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Teen Chatbot
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Selina Dennis <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/chat/rude.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Zen Chatbot
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Peter Spiller <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/chat/suntsu.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Sun Tsu-Bot
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Sam Huston 2007
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/chat/util.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Chatbot Utilities
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Authors: Steven Bird <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/chat/zen.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Zen Chatbot
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Amy Holland <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/chunk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Chunkers
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Steven Bird <[email protected]>
# Edward Loper <[email protected]>
# URL: <http://www.nltk.org/>
Expand Down
2 changes: 1 addition & 1 deletion nltk/chunk/api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Chunk parsing API
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# Steven Bird <[email protected]> (minor additions)
# URL: <http://www.nltk.org/>
Expand Down
2 changes: 1 addition & 1 deletion nltk/chunk/named_entity.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Chunk parsing API
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/chunk/regexp.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Regular Expression Chunkers
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# Steven Bird <[email protected]> (minor additions)
# URL: <http://www.nltk.org/>
Expand Down
2 changes: 1 addition & 1 deletion nltk/chunk/util.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Chunk format conversions
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# Steven Bird <[email protected]> (minor additions)
# URL: <http://www.nltk.org/>
Expand Down
2 changes: 1 addition & 1 deletion nltk/classify/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Classifiers
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/classify/api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Classifier Interface
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# Steven Bird <[email protected]> (minor additions)
# URL: <http://www.nltk.org/>
Expand Down
2 changes: 1 addition & 1 deletion nltk/classify/decisiontree.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Decision Tree Classifiers
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
2 changes: 1 addition & 1 deletion nltk/classify/mallet.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Natural Language Toolkit: Interface to Mallet Machine Learning Package
#
# Copyright (C) 2001-2009 NLTK Project
# Copyright (C) 2001-2010 NLTK Project
# Author: Edward Loper <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
Expand Down
Loading

0 comments on commit 90caf32

Please sign in to comment.