/[Frey]/trunk/static/ob/class_browser.html
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/static/ob/class_browser.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 49 - (show annotations)
Wed Jul 2 21:10:57 2008 UTC (15 years, 9 months ago) by dpavlin
File MIME type: text/html
File size: 1116 byte(s)
first version of introspection tool which dump joose classes with attributes
version bump [0.03]
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
4 <title>Joose Class Browser</title>
5
6 <script type="text/javascript" src="../lib/Joose.js"></script>
7 <script type="text/javascript">
8 joose.loadComponents("../lib")
9
10 function $(id) {
11 return document.getElementById(id)
12 }
13
14 </script>
15
16 <script type="text/javascript" src="com.test.me.js"></script>
17 <script type="text/javascript" src="../blib/Strix.User.js"></script>
18
19 </head>
20
21 <body>
22
23 <script type="text/javascript">
24 var request = new Joose.SimpleRequest();
25 var html = request.getText("class_browser_component.html");
26 document.write(html)
27 </script>
28 <script type="text/javascript">
29 window.cb = new JooseX.IDE.ClassBrowser();
30
31 $('JooseCBModulesSelect').selectedIndex = 2;
32 $('JooseCBModulesSelect').onchange();
33 $('JooseCBClassesSelect').selectedIndex = 1;
34 $('JooseCBClassesSelect').onchange();
35 /*
36 $('JooseCBCategoriesSelect').selectedIndex = 1;
37 $('JooseCBCategoriesSelect').onchange();
38 $('JooseCBElementsSelect').selectedIndex = 0;
39 $('JooseCBElementsSelect').onchange();
40 */
41 </script>
42
43 </body>
44 </html>

  ViewVC Help
Powered by ViewVC 1.1.26