User: fleury
Date: 00/11/17 11:43:45
Modified: developers jboss-jaws.html
Log:
ordering fixed
Revision Changes Path
1.5 +24 -23 newsite/developers/jboss-jaws.html
Index: jboss-jaws.html
===================================================================
RCS file: /products/cvs/ejboss/newsite/developers/jboss-jaws.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- jboss-jaws.html 2000/11/17 02:11:52 1.4
+++ jboss-jaws.html 2000/11/17 19:43:44 1.5
@@ -19,9 +19,6 @@
</tr>
<tr>
<td class="newsbody"><font
face="Arial,Helvetica,sans-serif"><img src="../pictures/jaws.jpg"><br>
- The Minerva JDBC connection pooling module has been added to the
codebase,
- thanks to Aaron Mulder. This module complements JAWS by adding a
pluggable
- connection pooling mechanism.
<p>During development of jBoss/Server version 1.0 (then known as
EJBoss),
our team recognized the need for an object-to-relational (O-R)
mapping
tool. Enter JAWS, the acronym for "Just Another Web Storage," an
@@ -34,12 +31,14 @@
users. That means there's plenty of work to do, so you can join
the jBoss/JAWS project and contribute to the coolest O-R mapping
open source project around. We encourage you to view the jBoss/JAWS
- mail archives. </p></font>
- <p> </p>
- <p><a href="../minerva/index.html"><font
face="Arial,Helvetica,sans-serif">View
+ mail archives. </p>
+ </font>
+ <p><font face="Arial,Helvetica,sans-serif">The Minerva JDBC connection
+ pooling module has been added to the codebase, thanks to Aaron
Mulder.
+ This module complements JAWS by adding a pluggable connection pooling
+ mechanism. </font><a href="../minerva/index.html"><font
face="Arial,Helvetica,sans-serif">View
the Minerva JavaDocs</font></a></p>
- <p><font face="Myriad
Web,Arial">Get a feature list of the project as a whole (under
construction)</font></p>
- <p></td>
+ </td>
</tr>
<tr>
<td class="newsheader"><b>What
is O/R Mapping?</b></td>
@@ -54,21 +53,23 @@
</tr>
<tr>
<td class="newsbody">
- <ul>
- <li><font
face="Myriad Web,Arial">CMP 1.1 implementation</font>
- <li><font
face="Myriad Web,Arial">JDBC 1.0, 2.0 compatible</font>
- <li><font
face="Myriad Web,Arial">Table creation at deploy time</font>
- <li><font
face="Myriad Web,Arial">Flexible configurable datatypes</font>
- <li><font
face="Myriad Web,Arial">Differential metadata</font>
- <li><font
face="Myriad Web,Arial">Multiple DataSources support</font>
- <li><font
face="Myriad Web,Arial">Full java Object support</font>
- <li><font
face="Myriad Web,Arial">Collections supported</font>
- <li><font
face="Myriad Web,Arial">EJB-references supported</font>
- <li><font
face="Myriad Web,Arial">Low admin overhead in automated mode</font>
- <li><font
face="Myriad Web,Arial">Advanced table mapping</font>
- <li><font
face="Myriad Web,Arial">GUI configuration</font>
- <li><font
face="Myriad Web,Arial">Complex finders support</font>
- </ul>
+
+ <ul>
+ <li><font face="Myriad Web,Arial">CMP 1.1 implementation</font>
+ <li><font face="Myriad Web,Arial">JDBC 1.0, 2.0 compatible</font>
+ <li><font face="Myriad Web,Arial">Table creation at deploy
time</font>
+ <li><font face="Myriad Web,Arial">Flexible configurable
datatypes</font>
+ <li><font face="Myriad Web,Arial">Differential metadata</font>
+ <li><font face="Myriad Web,Arial">Multiple DataSources support</font>
+ <li><font face="Myriad Web,Arial">Full java Object support</font>
+ <li><font face="Myriad Web,Arial">Collections supported</font>
+ <li><font face="Myriad Web,Arial">EJB-references supported</font>
+ <li><font face="Myriad Web,Arial">Low admin overhead in automated
+ mode</font>
+ <li><font face="Myriad Web,Arial">Advanced table mapping</font>
+ <li><font face="Myriad Web,Arial">GUI configuration</font>
+ <li><font face="Myriad Web,Arial">Complex finders support</font>
+ </ul>
</td>
</tr>
<tr>
Modified: modules/utility javascript_functions
Log:
Revision Changes Path
1.2 +34 -57 aspect/modules/utility/javascript_functions
Index: javascript_functions
===================================================================
RCS file: /products/cvs/clearink/aspect/modules/utility/javascript_functions,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- javascript_functions 2000/08/10 21:15:21 1.1
+++ javascript_functions 2000/11/17 19:43:45 1.2
@@ -7,68 +7,45 @@
** Version: $Revision: 1.0
** Author: Kellie Hobbs
** Email: [EMAIL PROTECTED]
- ** CVS Author: $Author: kellie $
- ** Last Revised: $Date: 2000/08/10 21:15:21 $
+ ** CVS Author: $Author: ltakayesu $
+ ** Last Revised: $Date: 2000/11/17 19:43:45 $
*/
?>
-//validate personal information
-function check_required_fields(form)
-{
- var ok = true;
-
- if ((form.code) && (!form.code.value))
- {
- ok=confirm("Are you sure you want to leave the code field blank?");
- }
- if (!form.inputFirst_name.value)
- {
- alert("Please supply a first name!");
- ok=false;
- }
- if (!form.inputLast_name.value)
- {
- alert("Please supply a last name!");
- ok=false;
- }
- if (!form.inputEmail.value)
- {
- alert("Please supply an e-mail address!");
- ok=false;
- }
- if ((!form.inputLogin.value) && (form.inputEmail.value))
- {
- //alert("Please supply a login. Using e-mail addresss...");
- //form.inputLogin.value = form.inputEmail.value;
- //ok=false;
- }
- if ((!form.inputLogin.value) && (form.inputPassword.value))
- {
- alert("Please supply a login!");
- ok=false;
- }
- if ((!form.inputPassword.value) && (form.inputLogin.value))
- {
- alert("Please supply a password!");
- ok=false;
- }
- if (form.confirmPassword.value != form.inputPassword.value)
- {
- alert("Your confirmation password does not match your original
password!");
- ok=false;
- }
-
-
- return(ok);
-}
+function newImage(arg) {
+ if (document.images) {
+ rslt = new Image();
+ rslt.src = arg;
+ return rslt;
+ }
+}
-function update_login(form)
-{
- if (!form.inputLogin.value)
- {
- form.inputLogin.value=form.inputEmail.value;
- }
+function changeImages() {
+ if (document.images && (preloadFlag == true)) {
+ for (var i=0; i<changeImages.arguments.length; i+=2) {
+ document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
+ }
+ }
}
+var preloadFlag = false;
+function preloadImages() {
+ if (document.images) {
+ new_contactover =
newImage("/aspect/lisa/aspect/htdocs/images/new_contactover.gif");
+ rulesbasedover =
newImage("/aspect/lisa/aspect/htdocs/images/rulesbasedover.gif");
+ consistentover =
newImage("/aspect/lisa/aspect/htdocs/images/consistentover.gif");
+ refinedover = newImage("/aspect/lisa/aspect/htdocs/images/refinedover.gif");
+ estimatedover =
newImage("/aspect/lisa/aspect/htdocs/images/estimatedover.gif");
+ from_costover =
newImage("/aspect/lisa/aspect/htdocs/images/from_costover.gif");
+ enterpriseover =
newImage("/aspect/lisa/aspect/htdocs/images/enterpriseover.gif");
+ info_collectover =
newImage("/aspect/lisa/aspect/htdocs/images/info_collectover.gif");
+ conn_enterover =
newImage("/aspect/lisa/aspect/htdocs/images/conn_enterover.gif");
+ conn_businessover =
newImage("/aspect/lisa/aspect/htdocs/images/conn_businessover.gif");
+ conn_routingover =
newImage("/aspect/lisa/aspect/htdocs/images/conn_routingover.gif");
+ conn_multipleover =
newImage("/aspect/lisa/aspect/htdocs/images/conn_multipleover.gif");
+ conn_customerover =
newImage("/aspect/lisa/aspect/htdocs/images/conn_customerover.gif");
+ preloadFlag = true;
+ }
+}