diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 4aed2c8219774f5d797760606b8489a92ddc5163 (patch) | |
tree | 3f8c130f7d269626bf6a9447407ef6c35954426a /konqueror/about/plugins.html | |
download | tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.tar.gz tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konqueror/about/plugins.html')
-rw-r--r-- | konqueror/about/plugins.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/konqueror/about/plugins.html b/konqueror/about/plugins.html new file mode 100644 index 000000000..e49b1cf29 --- /dev/null +++ b/konqueror/about/plugins.html @@ -0,0 +1,48 @@ +<html> +<head> +<title>%1</title> +<script language="Javascript"> <!-- +function listPlugins() { +document.write("<table border=\"1\">"); +document.write("<tr>%2</tr>"); +for (i = 0; i < navigator.plugins.length; i++) +{ + document.write("<tr><td>"+navigator.plugins[i].name); + document.write("</td><td>"+navigator.plugins[i].description); + document.write("</td><td>"+navigator.plugins[i].filename); + document.write("</td><td><ul>"); + for (j = 0; j < navigator.plugins[i].length; j++) + { + document.write("<li>"+navigator.plugins[i][j].type+" - " + +navigator.plugins[i][j].description+" (" + +navigator.plugins[i][j].suffixes+")</li>"); + } + document.write("</ul></td></tr>"); +} +document.write("</table>"); + +document.write("<br/><br/>"); + +document.write("<table border=\"1\">"); +document.write("<tr>%4</tr>"); +for (i = 0; i < navigator.mimeTypes.length; i++) +{ + document.write("<tr><td>"+navigator.mimeTypes[i].type); + document.write("</td><td>"+navigator.mimeTypes[i].description); + document.write("</td><td>"+navigator.mimeTypes[i].suffixes); + if (navigator.mimeTypes[i].enabledPlugin) { + document.write("</td><td>"); + // This could be enhanced to write the plugin name(s) by + // searching through navigator.plugins[][] + document.write("%3"); + } + document.write("</td></tr>"); +} +document.write("</table>"); +} +//--></script> +</head> +<body onload="listPlugins();"> +</body> +</html> + |