diff options
author | Derrell Lipman <derrell@samba.org> | 2007-01-03 19:57:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:36:06 -0500 |
commit | 2e7c59c24470766e37309c7a8bfa4c7b81c57614 (patch) | |
tree | c44c89911868c52f25ca66bdefa68e13248db8e6 /webapps/qooxdoo-0.6.3-sdk/frontend/api/source/class/api/InfoViewer.js | |
parent | 57f5bf78fa9fc9d190c3cb25251e686a1488f790 (diff) | |
download | samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.gz samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.bz2 samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.zip |
r20515: Continued work on the Web Application Framework. Until we get all of the
functionality of the old scripts incorporated into the new framework, the old
scripts need to still be available. I've reverted to having the old scripts
be the default pages, and added an option to access the preview of the new
SWAT.
(This used to be commit b43620d4b8eff815f4a6dc02522a8dfc9fdcaef4)
Diffstat (limited to 'webapps/qooxdoo-0.6.3-sdk/frontend/api/source/class/api/InfoViewer.js')
-rw-r--r-- | webapps/qooxdoo-0.6.3-sdk/frontend/api/source/class/api/InfoViewer.js | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/webapps/qooxdoo-0.6.3-sdk/frontend/api/source/class/api/InfoViewer.js b/webapps/qooxdoo-0.6.3-sdk/frontend/api/source/class/api/InfoViewer.js deleted file mode 100644 index f65d1e82b1..0000000000 --- a/webapps/qooxdoo-0.6.3-sdk/frontend/api/source/class/api/InfoViewer.js +++ /dev/null @@ -1,35 +0,0 @@ -/* -#module(api) -*/ - -/** - * Shows the class details. - */ -qx.OO.defineClass("api.InfoViewer", qx.ui.embed.HtmlEmbed, -function() { - qx.ui.embed.HtmlEmbed.call(this); - - this.setOverflow("auto"); - this.setPadding(20); - this.setEdge(0); - this.setHtmlProperty("id", "InfoViewer"); - this.setVisibility(false); - - api.InfoViewer.instance = this; -}); - -qx.Proto.showInfo = function(classNode) -{ - var vHtml = ""; - - // Title - vHtml += '<h1>'; - vHtml += '<div class="pkgtitle">package</div>'; - vHtml += classNode.attributes.fullName; - vHtml += '</h1>'; - - // TODO: Overview of classes in this package - - // Apply HTML - this.setHtml(vHtml); -} |