summaryrefslogtreecommitdiff
path: root/website/about/license.php
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2005-10-27 15:08:39 +0000
committerHenri Herscher <henri@oreka.org>2005-10-27 15:08:39 +0000
commite76fa0b3e203a5eeebc15eed92be79933bd94457 (patch)
tree6b007edae582fb67b69393c35544ed8bd96274ec /website/about/license.php
parent0fd6bacf4e3cf06208d3d0327672d9446094e0a6 (diff)
First checkin
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@18 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'website/about/license.php')
-rw-r--r--website/about/license.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/website/about/license.php b/website/about/license.php
new file mode 100644
index 0000000..4f1c166
--- /dev/null
+++ b/website/about/license.php
@@ -0,0 +1,36 @@
+<?php
+/*
+ * Copyright 2004 Matt Brubeck
+ * This file is licensed under a Creative Commons license:
+ * http://creativecommons.org/licenses/by/2.0/
+ */
+ require_once "main.inc.php";
+ $pageId = "license";
+ $pageTitle = _("License");
+ include "../include/header.inc.php";
+?>
+
+<h2><?=$pageTitle?></h2>
+<p>Copyright (C) 2005, orecx LLC
+<a href="http://www.orecx.com">http://www.orecx.com</a></p>
+<?php
+
+// i18n-hint: These gnu.org web pages are available in several languages.
+// Please link to the version in your language, if possible. For example:
+//
+// http://www.gnu.org/licenses/licenses.es.html#GPL
+// http://www.gnu.org/licenses/gpl-faq.cs.html
+//
+// See the bottom of each page for versions in other languages.
+//
+echo _('<p>Oreka is free software; you can redistribute it and/or modify it under the terms of the <a href="http://www.gnu.org/licenses/licenses.html#GPL">GNU General Public License</a> as published by the Free Software Foundation.</p>
+
+<p>See also: <a href="http://www.gnu.org/licenses/gpl-faq.html">Frequently Asked Questions about the GNU GPL</a>.</p>');
+
+?>
+
+<!-- TODO: Copyright and licenses for libraries. -->
+
+<?php
+ include "../include/footer.inc.php";
+?>