~ubuntu-branches/ubuntu/quantal/open-vm-tools/quantal-201207201942

« back to all changes in this revision

Viewing changes to lib/include/vm_legal.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-03-20 10:19:00 UTC
  • mfrom: (1.1.4 upstream) (2.4.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090320101900-1o604camiubq2de8
Tags: 2009.03.18-154848-2
Correcting patch system depends (Closes: #520493).

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include "vm_version.h"
31
31
 
32
32
 
33
 
/* XXX: Sadly, the legalese is replicated in:
34
 
 * apps/acesc-config/html/about.html
35
 
 * apps/acesc-config/js/ascc_pagestr_en.js
36
 
 * apps/acesc-config/js/ascc_pagestr_ja.js
37
 
 * apps/lib/foundry/doc/copyright.html
38
 
 * apps/lib/foundry/doc/Server_C_API_Preview_Programming_Manual.html
39
 
 * apps/vcb/README
40
 
 * apps/scripts/perlAPI-samplecode/VmPerl_samples/README.txt
41
 
 * apps/vixDiskLib/doc/copyright.html
42
 
 * and in a whole bunch of Mac OS files for different locales that I'm not
43
 
 * going to enumerate here.
44
 
 *
45
 
 * Note about the newlines: Keep at most 6 patents per line, but be careful
46
 
 * with the last line which will have "; patents pending" appended.
47
 
 */
48
 
#define COPYRIGHT_YEARS    "1998-2008"
 
33
#define COPYRIGHT_YEARS    "1998-2009"
49
34
#define COPYRIGHT_STRING   "Copyright \251 " COPYRIGHT_YEARS " " COMPANY_NAME
50
35
#define UTF8_COPYRIGHT_STRING   "Copyright \302\251 " COPYRIGHT_YEARS " " COMPANY_NAME
51
36
#define GENERIC_COPYRIGHT_STRING   "Copyright (C) " COPYRIGHT_YEARS " " COMPANY_NAME
52
37
#define RIGHT_RESERVED     "All rights reserved."
53
 
#define PATENTS_LIST       "6,397,242, 6,496,847, 6,704,925, 6,711,672, 6,725,289, 6,735,601,\n6,785,886, 6,789,156, 6,795,966, 6,880,022, 6,944,699, 6,961,806,\n6,961,941, 7,069,413, 7,082,598, 7,089,377, 7,111,086, 7,111,145,\n7,117,481, 7,149,843, 7,155,558, 7,222,221, 7,260,815, 7,260,820,\n7,269,683, 7,275,136, 7,277,998, 7,277,999, 7,278,030, 7,281,102,\n7,290,253, 7,356,679, 7,409,487, 7,412,492, 7,412,702, 7,424,710\n"
54
 
#define PATENTS_LAST       "7,428,636"
55
 
#define PATENTS_STRING     "Protected by one or more U.S. Patent Nos.\n" PATENTS_LIST "and " PATENTS_LAST "; patents pending."
 
38
 
 
39
/*
 
40
 * Note about the newlines: Keep at most 6 patents per line, but be careful
 
41
 * with the last line which will have "; patents pending" appended.
 
42
 *
 
43
 * Deprecated.  Don't use these anymore.
 
44
 */
 
45
#define PATENTS_LIST \
 
46
   "6,075,938, 6,397,242, 6,496,847, 6,704,925, 6,711,672, 6,725,289,\n" \
 
47
   "6,735,601, 6,785,886, 6,789,156, 6,795,966, 6,880,022, 6,944,699,\n" \
 
48
   "6,961,806, 6,961,941, 7,069,413, 7,082,598, 7,089,377, 7,111,086,\n" \
 
49
   "7,111,145, 7,117,481, 7,149,843, 7,155,558, 7,222,221, 7,260,815,\n" \
 
50
   "7,260,820, 7,269,683, 7,275,136, 7,277,998, 7,277,999, 7,278,030,\n" \
 
51
   "7,281,102, 7,290,253, 7,356,679, 7,409,487, 7,412,492, 7,412,702,\n" \
 
52
   "7,424,710, 7,428,636, 7,433,951, 7,434,002, 7,447,854, 7,475,002,\n" \
 
53
   "7,478,173, 7,478,180, 7,478,218, 7,478,388, 7,484,208, 7,487,313,\n" \
 
54
   "7,487,314, 7,490,216"
 
55
 
 
56
#define PATENTS_STRING_OLD "Protected by one or more U.S. Patent Nos.\n" PATENTS_LIST " and patents pending."
 
57
 
 
58
/*
 
59
 * Use PATENTS_STRING for showing the patents string in plaintext form.
 
60
 * PATENTS_FMT_STRING can be used with PATENTS_URL for creating hyperlinks.
 
61
 */
 
62
#define PATENTS_STRING_BASE "This product is protected by U.S. and international copyright and\nintellectual property laws. VMware products are covered by one or\nmore patents listed at "
 
63
#define PATENTS_STRING PATENTS_STRING_BASE "<" PATENTS_URL ">."
 
64
#define PATENTS_FMT_STRING PATENTS_STRING_BASE "%s."
 
65
#define PATENTS_URL "http://www.vmware.com/go/patents"
 
66
 
56
67
#define TRADEMARK_STRING   "VMware, the VMware \"boxes\" logo and design, Virtual SMP and VMotion are\nregistered trademarks or trademarks of VMware, Inc. in the United States\nand/or other jurisdictions."
57
68
#define GENERIC_TRADEMARK_STRING "All other marks and names mentioned herein may be trademarks of their\nrespective companies."
58
69