rhdunn / cainteoir-engine

The Cainteoir Text-to-Speech core engine
http://reecedunn.co.uk/cainteoir/
GNU General Public License v3.0
43 stars 8 forks source link

Support correctly reading copyright statements #48

Open rhdunn opened 11 years ago

rhdunn commented 11 years ago

Copyright statements have the form:

Copyright (C) 2009
Copyright (C) 2008-2010
Copyright (C) 2004, 2008
Copyright© 2013

which all share a common format:

COPYRIGHT := 'copyright' (('(' 'C' ')') | '©') ((YEAR | (YEAR '-' YEAR)) ~ ',')

The Copyright (C)/Copyright© portion should just be read as "copyright". The YEAR '-' YEAR portion should be read as "YEAR to YEAR".

Here, the YEAR items are numbers that are read as years as outlined in issue #44 (date/time support).

--- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/1026775-support-correctly-reading-copyright-statements?utm_campaign=plugin&utm_content=tracker%2F254961&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F254961&utm_medium=issues&utm_source=github).