blob: ea5b05db0225f8fda05f855daeaf831b2467870e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<html>
<head>
<title>3rd-Party Project List</title>
</head>
<body>
<h1>3rd-Party Project List</h1>
<p>
PRADO makes use of several 3rd-party projects. Please read carefully about
their license terms if you are using PRADO components that depend on these
projects.
</p>
<table border="1">
<tr>
<th>Directory</th>
<th>Project Name</th>
<th>License</th>
<th>Related PRADO Component</th>
<th>Memo</th>
</tr>
<tr>
<td><a href="geshi">geshi</a></td>
<td><a href="http://qbnz.com/highlighter/">GeSHi - Generic Syntax Highlighter</a> (v1.0.7.5)</td>
<td><a href="http://qbnz.com/highlighter/license.php">GNU</a></td>
<td>System.Web.UI.WebControls.TTextHighlighter</td>
<td>Many syntax files are stripped off to reduce the size of PRADO release.
Added prado syntax file. Modified PHP syntax file to make it
recognize PHP5-specific keywords. Modified geshi.php so that it conforms to
strict PHP5 syntax.</td>
</tr>
<tr>
<td><a href="SafeHtml">SafeHtml</a></td>
<td><a href="http://pixel-apes.com/safehtml/">SafeHTML</a> (v1.3.7)</td>
<td><a href="SafeHtml/license.txt">BSD License (3 Clause)</a></td>
<td>System.Web.UI.WebControls.TSafeHtml</td>
<td>TSafeHtml removes malicious javascript code from its rendered output.</td>
</tr>
<tr>
<td><a href="TinyMCE">TinyMCE</a></td>
<td><a href="http://tinymce.moxiecode.com/">TinyMCE Javascript Content Editor</a> (v2.0.5.1)</td>
<td><a href="tiny_mce/license.txt">GNU LIBRARY GENERAL PUBLIC LICENSE</a></td>
<td>System.Web.UI.WebControls.THtmlArea</td>
<td>TinyMCE is a powerful WYSIWYG editor control for web browsers such as MSIE or Mozilla that enables the user to edit HTML contents in a more user friendly way.</td>
</tr>
</table>
</p>
</body>
</html>
|