summaryrefslogtreecommitdiff
path: root/autodoc
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2011-09-07 00:12:49 +0200
committerAndras Timar <atimar@suse.com>2011-09-07 00:20:01 +0200
commit16132fddb979278ea92f0aa0257b8f379bb2fe0e (patch)
treef82a7104d5d26ee46691fb4bc42914469fb1d86d /autodoc
parenta7a56615e7b05eb62ecb1d4f53053e1d40aa8487 (diff)
licence footer for API docs
Diffstat (limited to 'autodoc')
-rw-r--r--autodoc/source/display/html/cfrstd.cxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/autodoc/source/display/html/cfrstd.cxx b/autodoc/source/display/html/cfrstd.cxx
index 29a680b224f6..669d29e4150e 100644
--- a/autodoc/source/display/html/cfrstd.cxx
+++ b/autodoc/source/display/html/cfrstd.cxx
@@ -329,7 +329,7 @@ StdFrame::Set_SimpleLinks()
String
MakeCopyRight()
{
- StreamStr cr(700);
+ StreamStr cr(1400);
time_t
gt;
time(&gt);
@@ -337,11 +337,13 @@ MakeCopyRight()
plt = localtime(&gt);
int year = 1900 + plt->tm_year;
- cr << "LibreOffice is copyright &copy; 2000, "
+ cr << "Copyright &copy; 2000, "
<< year
- << ", LibreOffice contributors and/or their affiliates. All rights reserved.</p>"
- << "<p class=\"copyright\" align=\"center\">LibreOffice is derived from OpenOffice.org. OpenOffice.org is copyright &copy; 2000, 2011 Oracle and/or its affiliates. All rights reserved.</p>"
- << "<p class=\"copyright\" align=\"center\">Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.";
+ << " LibreOffice contributors and/or their affiliates. All rights reserved.</p>"
+ << "<p class=\"copyright\" align=\"center\">LibreOffice was created by The Document Foundation, based on OpenOffice.org, which is Copyright 2000, 2010 Oracle and/or its affiliates.</p>"
+ << "<p class=\"copyright\" align=\"center\">The Document Foundation acknowledges all community members, please find more info <a href=\"http://www.libreoffice.org/about-us/credits/\" target=\"_blank\">at our website</a>."
+ << "<p>&nbsp;</p>"
+ << "<p class=\"copyright\" align=\"center\"><a href=\"http://www.libreoffice.org/privacy\" target=\"_blank\">Privacy Policy</a> | <a href=\"http://www.libreoffice.org/imprint\" target=\"_blank\">Impressum (Legal Info)</a> | Copyright information: The source code of LibreOffice is licensed under the GNU Lesser General Public License (<a href=\"http://www.libreoffice.org/download/license/\" target=\"_blank\">LGPLv3</a>). \"LibreOffice\" and \"The Document Foundation\" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our <a href=\"http://wiki.documentfoundation.org/TradeMark_Policy\" target=\"_blank\">trademark policy</a>.";
return String(cr.c_str());
}