-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathwishlist.html
More file actions
93 lines (77 loc) · 2.59 KB
/
wishlist.html
File metadata and controls
93 lines (77 loc) · 2.59 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>BeanShell - Wish List</title>
<LINK REL="SHORTCUT ICON" HREF="http://www.beanshell.org/favicon.ico">
</head>
<body>
<aside>
<nav>
<ul class="menu">
<li><a href="home.html">Home</a>
</li>
<li><a href="intro.html">Intro</a>
</li>
<li> <a href="docs.html">Docs</a>
</li>
<li> <a href="download.html">Download</a>
</li>
<li> <a href="contact.html">Contact</a>
</li>
<li> <a href="https://github.com/beanshell/beanshell/wiki">
Community Wiki</a>
</li>
<li> <a href="developer.html">Developer</a>
</li>
<li> <a href="license.html">License</a>
</li>
<li> <a href="beany.html">Beany</a>
</li>
<li> <a href="http://www.amazon.com/exec/obidos/ASIN/0596002858">
<img alt="Learning Java" src="images/lj2.png" width="100"> <br>
<span class="small"> Check out my book:<br>
Learning Java,<br>
O'Reilly & Associates </span>
</a>
</li>
</ul>
</nav>
</aside>
<article>
<h1>Wish List</h1>
<section>
<h2>BeanShell Wish List</h2>
<h3><em>
Here are some areas we'd like to see addressed.
We will be moving this stale list over to the issue tracking system or Wiki in
the near future.
</em></h3>
Note: These are not necessarily in order of importance or difficulty. I'm
just trying to catalog the goals for BeanShell. If you have other ideas,
please submit them.
<ul>
<li><b>Job control</b> - It should be possible to stop a running script, at least when it is
withing the interpreter's control.
</li>
<li><b>Additional byte-code compilation</b> - for improved performance where
necesarry.</li>
<li><b>Introspector Gadget</b> -
GUI object inspector for the BeanShell Console/Desktop and beyond,
allowing one to navigate through
the object world and see methods/fields, threads, etc. in a visual way.
If this were HTML based it could even be visible outside of the container.
</li>
<li><b>Standalone BeanShell Script Compiler</b> - Generate stand alone classes
that bootstrap the interpreter, their own scripts, and perhaps perhaps stored
state. We will like wish to support this in conjuction with the 2.0 release.
</li>
<li>Prompt feedback for multi-line commands on the command line - e.g.
change the prompt to "> " as in Bourne shell. I've made some attempts to
get this working with help from the token manager, but had problems.
</li>
</ul>
</section>
</article>
</body>
</html>