Preliminary remark: I'm not a lawyer any longer, and never specialized myself in laws related to copyrights and intellectual property. If you want an unquestionable answer, you should consult a lawyer.
1. Data and data files
- Data and data files are not the same
--
As it states, the exhibit 1 covers data files:
BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES [...]
Data files and data itself are not the same. When Microsoft implements uppercase and lowercase methods in .NET Framework, the unicode standard is used, but this doesn't mean that .NET Framework contains, somewhere, the files downloaded from http://www.unicode.org/
Simple illustration: imagineSimple illustration of a difference between the data and the support:
Imagine that I create a database with a list of countries, cities and the corresponding post codes. I expose this data through a web service and on my website.
The data itself is in public domain: you can't reasonably copyright the list of countries and ask every person who use such list to pay you or to distribute a copy of your copyright.
On the other hand, nothing forbids for me to enforce a restrictive license on the usage of the web service or the website (especially since I invested a lot of effort while creating this set of data). If I find that an application is scrapping my website to download the data, this would be a copyright infringement, and I would be able to sue the person who created the scrapper.
2. Data licensing limits
- Data is too vague
--
If http://www.unicode.org/ stated that the license covers the data itself, it would be very difficult for this organization to enforce such copyright.
Imagine the following method:
public char ToUpper(char c)
{
string upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
if (upper.Contains(c))
{
return c;
}
string lower = "abcdefghijklmnopqrstuvwxyz";
if (lower.Contains(c))
{
return upper[lower.IndexOf(c)];
}
throw new OutOfRangeException();
}
Is this a violation of the copyright? Did I actually used the data from http://www.unicode.org/ and I should include the copy of the license in my answer below? Or maybe I just typed those letters myself?
In other words, if data itself was licensed, how far the license could go?