Skip to content
This repository has been archived by the owner on Sep 18, 2019. It is now read-only.

Commit

Permalink
Copy/pasting old boilerplate is bad. (Hello 2012!)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed Mar 21, 2012
1 parent 965f8d0 commit 3fcf55d
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010 by Simon Sapin.
Copyright (c) 2012 by Simon Sapin.

Some rights reserved.

Expand Down
2 changes: 1 addition & 1 deletion tinycss/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
A CSS parser, and nothing else.
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/color3.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
This module does not provide anything that integrates in a parser class,
only functions that parse single tokens from (eg.) a property value.
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Simple recursive-descent parser for the CSS core syntax:
http://www.w3.org/TR/CSS21/syndata.html#tokenization
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/css21.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Parser for CSS 2.1
http://www.w3.org/TR/CSS21/syndata.html
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/decoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Decoding stylesheets from bytes to Unicode.
http://www.w3.org/TR/CSS21/syndata.html#charset
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Utilities for parsing lists of tokens.
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/selectors3.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
This module integrates lxml.cssselect in tinycss:
http://lxml.de/cssselect.html
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Test suite for tinycss
----------------------
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/tests/test_color3.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Tests for the CSS 3 color parser
--------------------------------
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Tests for the core parser
-------------------------
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/tests/test_css21.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Tests for the CSS 2.1 parser
----------------------------
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/tests/test_decoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Tests for decoding bytes to Unicode
-----------------------------------
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/tests/test_selectors3.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Tests for the Selectors 3 helpers
---------------------------------
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/tests/test_tokenizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Tests for the tokenizer
-----------------------
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/token_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Shared data for both implementations (Cython and Python) of the tokenizer.
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion tinycss/tokenizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
This is the pure-python implementation. See also speedups.pyx
:copyright: (c) 2010 by Simon Sapin.
:copyright: (c) 2012 by Simon Sapin.
:license: BSD, see LICENSE for more details.
"""

Expand Down

0 comments on commit 3fcf55d

Please sign in to comment.