Skip to Content.
Sympa Menu

perfsonar-dev - perfsonar: r3609 - in trunk/geant2_java-xml-ls/conf/axis-1.4: . graphics

Subject: perfsonar development work

List archive

perfsonar: r3609 - in trunk/geant2_java-xml-ls/conf/axis-1.4: . graphics


Chronological Thread 
  • From:
  • To:
  • Subject: perfsonar: r3609 - in trunk/geant2_java-xml-ls/conf/axis-1.4: . graphics
  • Date: Fri, 4 Apr 2008 05:42:44 -0400

Author: mac
Date: 2008-04-04 05:42:42 -0400 (Fri, 04 Apr 2008)
New Revision: 3609

Added:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/Thumbs.db
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/admin_home_target.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/apply_button.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/apply_button_2.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/arrow_icon.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/arrow_icon2.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_1_large.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_1_small.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_2_large.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_2_small.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/cancel_button.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/create_resource_button.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/delete_red_button.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/edit_button.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/edit_green_button.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/login_panel.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/logos.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/logout_button.gif

trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_collections_off_tab.gif

trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_collections_on_tab.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_users_off_tab.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_users_on_tab.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_1_bottom.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_1_slice.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_1_top.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_2_bottom.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_2_slice.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_2_top.gif
trunk/geant2_java-xml-ls/conf/axis-1.4/welcome.htm
Modified:
trunk/geant2_java-xml-ls/conf/axis-1.4/Service_Admin.js
trunk/geant2_java-xml-ls/conf/axis-1.4/default.css
trunk/geant2_java-xml-ls/conf/axis-1.4/index.html
trunk/geant2_java-xml-ls/conf/axis-1.4/main.css
trunk/geant2_java-xml-ls/conf/axis-1.4/sqlma_admin_script.js
Log:
webadmin 8.1b



Modified: trunk/geant2_java-xml-ls/conf/axis-1.4/Service_Admin.js
===================================================================
--- trunk/geant2_java-xml-ls/conf/axis-1.4/Service_Admin.js 2008-04-04
09:39:53 UTC (rev 3608)
+++ trunk/geant2_java-xml-ls/conf/axis-1.4/Service_Admin.js 2008-04-04
09:42:42 UTC (rev 3609)
@@ -1,10 +1,57 @@
/**
* @author Michalis Michael,Cynet
- */
-function setTip(el,description){
- if (el) {
- el.style.cursor = 'pointer';
- }
- var text='<span style=\"font-size: 12px;
width:20px;\">'+description+'</span>';
- Tip(text,BALLOON, true,WIDTH, 260, PADDING, 8, TEXTALIGN, 'justify',
ABOVE, true);
+ */
+function setTip(el, description, color){
+ var text = '<span style=\"font-size: 12px; width:20px;\">' + description
+ '</span>';
+ var width;
+ if (el) {
+ el.style.cursor = 'pointer';
+ width = 250;
+ }
+ else {
+ width = 0;
+ }
+
+ Tip(text, BGCOLOR, color, WIDTH, width, TEXTALIGN, 'justify', ABOVE,
true);
}
+
+function FloatPosition(){
+ var ns = (navigator.appName.indexOf("Netscape") != -1);
+ var x = screen.width;
+ var y = screen.height;
+ var button = document.getElementById("Button");
+ var reset_button = document.getElementById("ResetButton");
+ if (reset_button) {
+ var width = reset_button.parentNode.offsetWidth;
+ var offset = reset_button.parentNode.offsetLeft;
+ var leftoffset = parent
+ if (reset_button != null) {
+ if (y == 768) {
+ reset_button.style.top = 95 + '%';
+ reset_button.style.left = 83 + '%';
+ }
+ else {
+ //alert("Not 768 "+x);
+ reset_button.style.top = 95 + '%';
+ reset_button.style.left = 67 + '%';
+ }
+ }
+ if (button != null) {
+ if (y == 768) {
+ button.style.top = 95 + '%';
+ button.style.left = 91.5 + '%';
+ }
+ else {
+ button.style.top = 95 + '%';
+ button.style.left = 74 + '%';
+ }
+ }
+ }
+
+}
+
+onload = FloatPosition;
+onscroll = FloatPosition;
+onresize = FloatPosition;
+
+

Modified: trunk/geant2_java-xml-ls/conf/axis-1.4/default.css
===================================================================
--- trunk/geant2_java-xml-ls/conf/axis-1.4/default.css 2008-04-04 09:39:53
UTC (rev 3608)
+++ trunk/geant2_java-xml-ls/conf/axis-1.4/default.css 2008-04-04 09:42:42
UTC (rev 3609)
@@ -1,181 +1,641 @@
-/* standard elements */
-html {
- min-height: 100%;
-}
-
-* {
- margin: 0;
- padding: 0;
-}
-
-body {
- background-color: #ffffff;
- font-family: arial;
-}
-/* title */
-.top {
- display: block;
- font-family: arial;
- font-weight: bold;
- margin: 2% 1% 0 1%;
- border-top: 1px solid green;
- border-right: 1px solid green;
- border-left: 1px solid green;
- padding: 7px;
- background: #afdfc0;
-}
-
-.properties {
- font-family: arial;
- font-size: 15px;
- border: 1px solid green;
- padding: 10px;
- margin: 0% 1% 0 1%;
-}
-
-.properties p {
- font-size: 120%;
-}
-
-.properties div{
-
-}
-.properties table {
- margin-bottom: 20px;
- border-bottom: 1px solid green;
-}
-
-.properties td {
- padding: 15px;
- width: 27%;
-}
-
-.properties em {
- display: block;
- color: red;
- font-size: 95%;
-}
-
-.main{
- padding: 10px;
-}
-.info {
- font-family: arial;
- font-size: 120%;
- padding: 10px;
- border: 1px solid green;
-}
-
-.info p {
- position: relative;
- #left: -30px;
-}
-
-.tablessContent {
- margin: 2% 1% 0 1%;
- background: #ffffff;
- border-top: 1px solid green;
- border-left: 1px solid green;
- border-right: 1px solid green;
-}
-
-.content {
- font-family: arial;
- font-size: 120%;
- margin: 2% 1% 0 1%;
- background: #ffffff;
-}
-
-.content ul {
- margin-top: 5px;
- display: block;
- list-style: none outside;
- padding: 5px;
- border-top: 1px solid green;
- border-left: 1px solid green;
- border-right: 1px solid green;
-}
-
-.content li {
- margin: 0 0 0 0;
- padding: 0px;
- display: block;
- float: left;
- position: relative;
- top: -1.32em;
-}
-
-.content a {
- padding: 5px;
- text-decoration: none;
- color: green;
- background: #ffffff;
-}
-
-.content a:hover {
- background: #3CB371;
- color: green;
-}
-
-.content #selected {
-}
-
-.content #selected a {
- font-weight: bold;
- color: green;
- background: #3CB3A1;
-}
-
-.manage {
- background: #ffffff;
- border-bottom: 1px solid green;
- border-left: 1px solid green;
- border-right: 1px solid green;
- margin: 0 1% 0 1%;
- padding: 1em;
-}
-
-.manage table {
- padding: 5px;
-}
-
-.manage td {
- padding: 5px;
-}
-
-.manage th {
- padding: 5px;
- text-align: left;
-}
-
-.showResource {
- font-weight: bold;
- text-indent: 0%;
- text-align: inherit;
- background: #ffffff;
-}
-
-.showResource td {
- padding: 7px;
-}
-
-.input {
- padding: 1em;
- font-size: 110%;
- font-family: arial;
-}
-
-.input table {
- padding: 5px;
-}
-
-.input td {
- padding: 5px;
-}
-
-.input th {
- padding: 5px;
- text-align: left;
-}
-
-
+/* standard elements */
+html {
+ min-height: 100%;
+}
+
+* {
+ margin: 0;
+ padding: 0;
+}
+
+body {
+ background-color: #ffffff;
+ font-family: arial;
+}
+
+a img {
+ border: none;
+}
+/* Wizard CSS */
+.top {
+ display: block;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ color: #468C46;
+ margin: 0% 1% 0 1%;
+ border-bottom: 1px dotted #468C46;
+ padding: 7px;
+ background: #ffffff;
+}
+
+.greenasterisk {
+ font-size: 130%;
+ color: #468C46;
+}
+
+.properties {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ padding: 10px;
+ margin: 0% 1% 0 1%;
+}
+
+.properties p {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.properties table {
+ border-bottom: 1px dotted #468C46;
+ margin-bottom: 20px;
+}
+
+.properties td {
+ padding: 15px;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.properties em {
+ display: block;
+ color: red;
+ font-size: 95%;
+}
+
+.info_wizard {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ color: #468C46;
+}
+
+.info_wizard p {
+}
+/* General Purpose CSS*/
+.welcometextlavender {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ font-weight: bold;
+ color: #4169E1;
+ border-bottom-width: 1px;
+ border-bottom-style: dotted;
+ border-bottom-color: #4169E1;
+ clip: rect( auto, auto, auto, auto );
+ margin-left: 0%;
+}
+
+.formated_text {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.blueheader {
+ text-align: left;
+ color: #4169E1;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.info {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ color: #4169E1;
+ float: none;
+ margin: 0% 0% 0% 1%;
+}
+
+.info p {
+ float: none;
+ text-align: justify;
+}
+
+.lightgrey {
+ background-color: #f1f3f1;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 10px;
+}
+
+.lightgrey td {
+ padding: 5px;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 10px;
+}
+
+.darkgrey {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 10px;
+ background-color: #e1e5e1;
+}
+
+.darkgrey td {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 10px;
+ padding: 5px;
+}
+
+.hilighted {
+ color: #4169E1;
+ border-bottom: 1px solid #4169E1;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.underlined {
+ border-bottom: 1px solid #4169E1;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.tablessContent {
+ margin: 2% 0 0 0.3%;
+ background: #ffffff;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.input_style_blue {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 10px;
+}
+
+.headerlavender {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ background-color: #A0A0D8;
+ margin-right: 0px;
+ margin-left: 0px;
+ padding: 5px;
+}
+/*eXist Admin CSS*/
+.content {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ margin: 2% 0% 0 0%;
+ background: #ffffff;
+}
+
+.content ul {
+ margin-top: 5px;
+ display: block;
+ list-style: none outside;
+ padding: 5px;
+}
+
+.content li {
+ margin: 0 0 0 0;
+ padding: 0px;
+ display: block;
+ float: left;
+ position: relative;
+ top: -1.32em;
+}
+
+.manage_exist {
+ background: #ffffff;
+ margin: 0% 0% 0% 0%;
+ padding: 0px;
+}
+
+.showResource {
+ float: none;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ text-indent: 0%;
+ margin-top: 5px;
+ margin-left: 0.3%;
+ padding: 0px;
+ text-align: inherit;
+}
+
+.showResource table {
+ left: -100px;
+ position: static;
+ margin-top: 0px;
+ border-spacing: 1px 0px;
+}
+
+.showResource th {
+ padding: 10px;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ background-color: #C7C7F2;
+}
+
+.showResource td {
+ padding: 10px;
+}
+
+.showResource p {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ border: none;
+ padding: 5px;
+ margin: 0% 0% 0% 0%;
+}
+
+.exist_welcome_text {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ font-weight: bold;
+ padding: 5px;
+ color: #4169E1;
+ font-weight: bold;
+ border-bottom-width: 1px;
+ border-bottom-style: dotted;
+ border-bottom-color: #4169E1;
+ clip: rect( auto, auto, auto, auto );
+ margin-left: 0%;
+}
+
+.input {
+ padding: 1em;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.input_style {
+ border-color: #468C46;
+ border-style: solid;
+ border-width: 1px;
+}
+
+.login_table {
+ background-color: #E6E6FA;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.login_table td {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.logout {
+ margin-top: 10px;
+ margin-left: 48%;
+}
+
+.logout a {
+ padding: 5px;
+ text-decoration: none;
+ color: green;
+ background: transparent url(graphics/logout_button.gif) no-repeat center
top;
+ width: 64px;
+ height: 28px;
+ display: block;
+}
+
+.logout a:hover {
+ background: transparent url(graphics/logout_button.gif) no-repeat center
top;
+ color: #049;
+}
+
+.input_table {
+ border: 1px solid #4169E1;
+ border-spacing: 0px 1px;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.input_table td {
+ padding: 5px;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+.input_table th {
+ padding: 5px;
+ text-align: left;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+/*Exist Buttons CSS*/
+.collections_option_on a {
+ padding: 7px 80px 7px 80px;
+ width: 210px;
+ height: 28px;
+ text-decoration: none;
+ background: transparent url(graphics/manage_collections_on_tab.gif)
no-repeat center top;
+}
+
+.collections_option_on a:visited, a:active {
+ background: transparent url(graphics/manage_collections_on_tab.gif)
no-repeat center top;
+}
+
+.collections_option_off a {
+ padding: 7px 80px 7px 80px;
+ width: 210px;
+ height: 28px;
+ text-decoration: none;
+ background: transparent url(graphics/manage_collections_off_tab.gif)
no-repeat center top;
+}
+
+.collections_option_off a:visited, a:active {
+ background: transparent url(graphics/manage_collections_off_tab.gif)
no-repeat center top;
+}
+
+.users_option_on a {
+ padding: 7px 65px 7px 65px;
+ width: 210px;
+ height: 28px;
+ text-decoration: none;
+ background: transparent url(graphics/manage_users_on_tab.gif) no-repeat
center top;
+}
+
+users_option_on a:visited, a:active {
+ background: transparent url(graphics/manage_users_on_tab.gif) no-repeat
center top;
+}
+
+.users_option_off a {
+ padding: 7px 65px 7px 65px;
+ width: 210px;
+ height: 28px;
+ text-decoration: none;
+ background: transparent url(graphics/manage_users_off_tab.gif) no-repeat
center top;
+}
+
+users_option_off a:visited, a:active {
+ background: transparent url(graphics/manage_users_off_tab.gif) no-repeat
center top;
+}
+
+.login_button {
+ width: 54px;
+ height: 28px;
+ margin: 0;
+ padding: 0;
+ border: 0px;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 90%;
+ font-weight: bold;
+ text-align: center;
+ clip: rect( auto, auto, auto, auto );
+ cursor: pointer;
+ background: transparent url(graphics/button_1_small.gif) no-repeat
center top;
+ float: left;
+}
+
+.edit_button_res {
+ display: block;
+ margin-top: 5px;
+ margin-left: 0px;
+ width: 120px;
+ height: 28px;
+ float: left;
+ outline: none;
+ border: none;
+ text-align: center;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 90%;
+ font-weight: bold;
+ text-decoration: none;
+ background: url(graphics/button_1_large.gif) no-repeat center;
+ cursor: pointer;
+}
+
+.create_button_res {
+ display: block;
+ margin-top: 5px;
+ width: 120px;
+ height: 28px;
+ float: left;
+ border: none;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 90%;
+ font-weight: 600;
+ text-decoration: none;
+ cursor: pointer;
+ background: transparent url(graphics/button_1_large.gif) no-repeat
center;
+}
+
+.delete_button_res {
+ display: block;
+ margin-top: 5px;
+ width: 120px;
+ height: 28px;
+ float: none;
+ border: none;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 90%;
+ font-weight: 600;
+ text-decoration: none;
+ cursor: pointer;
+ background: transparent url(graphics/button_1_large.gif) no-repeat
center top;
+}
+
+.input_Edit_button {
+ width: 54px;
+ height: 28px;
+ margin: 0;
+ border: 0;
+ padding: 0;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 90%;
+ font-weight: 600;
+ cursor: pointer;
+ background: transparent url(graphics/button_1_small.gif) no-repeat
center top;
+ float: left;
+}
+
+.input_Create_button {
+ width: 54px;
+ height: 28px;
+ margin: 0;
+ border: 0;
+ padding: 0;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 90%;
+ font-weight: 600;
+ cursor: pointer;
+ background: transparent url(graphics/button_1_small.gif) no-repeat
center top;
+ float: left;
+}
+
+.execute_button_users {
+ width: 54px;
+ height: 28px;
+ margin: 0;
+ border: 0;
+ padding: 0;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 90%;
+ font-weight: 600;
+ cursor: pointer;
+ background: transparent url(graphics/button_1_small.gif) no-repeat
center top;
+ float: right;
+}
+/*Properties CSS */
+.groupheading {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 10px;
+ color: #468C46;
+}
+
+.manage {
+ background: #ffffff;
+ margin: 0 0.3% 0 0.3%;
+ padding: 0px;
+}
+
+.manage table {
+ padding: 3px;
+ border-spacing: 1px 0px;
+}
+
+.manage th {
+ padding-top: 8px;
+ padding-bottom: 8px;
+ padding-left: 5px;
+ text-align: left;
+}
+
+.manage td {
+ padding-top: 8px;
+ padding-bottom: 8px;
+ padding-left: 5px;
+}
+/*Properties Buttons CSS*/
+.floatResetButton {
+ position: fixed;
+ width: 64px;
+ height: 28px;
+ margin: 0;
+ padding: 0;
+ border: 0;
+ text-indent: -1000em;
+ cursor: pointer;
+ background: transparent url(graphics/cancel_button.gif) no-repeat center
top;
+ float: right;
+}
+
+.floatSubmitButton {
+ position: fixed;;
+ width: 53px;
+ height: 28px;
+ margin: 0;
+ border: 0;
+ padding: 0;
+ text-indent: -1000em;
+ cursor: pointer;
+ background: transparent url(graphics/apply_button_2.gif) no-repeat
center top;
+ float: right;
+}
+
+.submit_button {
+ width: 53px;
+ height: 28px;
+ margin: 0;
+ border: 0;
+ padding: 0;
+ text-indent: -1000em;
+ cursor: pointer;
+ background: transparent url(graphics/apply_button.gif) no-repeat center
top;
+ float: none;
+}
+/* SQLMA Admin CSS*/
+.manage_slqma {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ margin: 0% 1% 0% 1%;
+}
+
+.Options {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ margin: 0% 1% 0% 1%;
+}
+
+#options {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ margin: 0% 1% 0% 1%;
+}
+
+#EditFile {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ margin: 0% 1% 0% 1%;
+ float: none;
+}
+
+#CreateNewFile {
+ margin: 0% 1% 0% 1%;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ float: none;
+}
+
+.execute_button_sqlma {
+ display: block;
+ margin-top: 5px;
+ width: 120px;
+ height: 28px;
+ float: left;
+ border: none;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 90%;
+ font-weight: 600;
+ text-decoration: none;
+ cursor: pointer;
+ background: transparent url(graphics/button_1_large.gif) no-repeat
center;
+}
+
+.execute_button_sqlma_small {
+ display: block;
+ margin-top: 5px;
+ width: 54px;
+ height: 28px;
+ float: left;
+ border: none;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 90%;
+ font-weight: 600;
+ text-decoration: none;
+ cursor: pointer;
+ background: transparent url(graphics/button_1_small.gif) no-repeat
center;
+}
+
+.execute_button_sqlma_large {
+ display: block;
+ margin-top: 5px;
+ width: 120px;
+ height: 28px;
+ float: left;
+ border: none;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 90%;
+ font-weight: 600;
+ text-decoration: none;
+ cursor: pointer;
+ background: transparent url(graphics/button_1_large.gif) no-repeat
center;
+}
+
+.sqlmaheader {
+ margin-left: 1%;
+ color: #4169E1;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 13px;
+}
+
+init_table {
+ margin-left: 1%;
+ float: left;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 13px;
+}
+
+.init_table td {
+ padding: 8px;
+ text-align: left;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 13px;
+}
+
+.init_table th {
+ padding: 8px;
+ text-align: left;
+ color: #4169E1;
+ font-family: Helvetica, Calibri, Arial, sans-serif;
+ font-size: 13px;
+}
+
+
+

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/Thumbs.db


Property changes on: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/Thumbs.db
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/admin_home_target.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/admin_home_target.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/apply_button.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/apply_button.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/apply_button_2.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/apply_button_2.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/arrow_icon.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/arrow_icon.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/arrow_icon2.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/arrow_icon2.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_1_large.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_1_large.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_1_small.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_1_small.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_2_large.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_2_large.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_2_small.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/button_2_small.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/cancel_button.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/cancel_button.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/create_resource_button.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/create_resource_button.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/delete_red_button.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/delete_red_button.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/edit_button.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/edit_button.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/edit_green_button.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/edit_green_button.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/login_panel.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/login_panel.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/logos.gif


Property changes on: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/logos.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/logout_button.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/logout_button.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_collections_off_tab.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_collections_off_tab.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_collections_on_tab.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_collections_on_tab.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_users_off_tab.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_users_off_tab.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_users_on_tab.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/manage_users_on_tab.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_1_bottom.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_1_bottom.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_1_slice.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_1_slice.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_1_top.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_1_top.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_2_bottom.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_2_bottom.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_2_slice.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_2_slice.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_2_top.gif


Property changes on:
trunk/geant2_java-xml-ls/conf/axis-1.4/graphics/step_2_top.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream

Modified: trunk/geant2_java-xml-ls/conf/axis-1.4/index.html
===================================================================
--- trunk/geant2_java-xml-ls/conf/axis-1.4/index.html 2008-04-04 09:39:53
UTC (rev 3608)
+++ trunk/geant2_java-xml-ls/conf/axis-1.4/index.html 2008-04-04 09:42:42
UTC (rev 3609)
@@ -1,77 +1,116 @@
<html>
-
- <head>
- <title>perfSONAR Service Web Administration page</title>
- <link rel="stylesheet" type="text/css" href="main.css" />
- <meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1"><style type="text/css">
-<!--
-body,td,th {
- font-family: arial;
-}
-a:hover {
- color: #000000;
-}
--->
-</style></head>
- <body>
-<div class="adminPanel" >
-
-<div class="banner">
-<table border="0" align="left" cellpadding="0" cellspacing="0">
-<tr>
- <td><img src="perfsonar_logo.gif" alt="perfSONAR" width="192" height="94"
border="0" align="right"></td>
-</tr>
-</table>
-
-</div>
-
-<div class="mainWindow" >
-
-<div class="sidebar" >
-<table border="0" cellpadding="0" cellspacing="0">
-<tr >
-<th>Administration</th>
-</tr>
-<tr>
- <td>
- <p><a href="Wizard" target="main" class="navtex" >Service Configuration
Wizard</a></p></td>
-</tr>
-<tr>
- <td>
- <p><a href="ServiceAdmin?serviceProperties" target="main" class="navtex"
>Service configuration</a></p></td>
-</tr>
-<tr>
- <td>
- <p><a href="ServiceAdmin?loggingProperties" target="main" class="navtex"
>Logging configuration</a></p></td>
-</tr>
-<td>
- <p><a href="eXistAdmin" target="main" class="navtex" >eXist Database
Administration</a></p></td>
-</tr>
-</table>
-
-
-<a href="http://www.perfsonar.net/partners.html";></a> <br>
-<img src="partners.gif" alt="perfSONAR project partners" border="0"/>
</a></div>
-
-<div class="centerWindow" >
- <object data="http://www.perfsonar.net"; type="text/html" name="main"
width="101%" height="106%" class="main" >
- <p>Sorry for the inconvenience we are having connectiong to the main
page...</p>
- </object>
-</div>
-
-
-</div>
-
-<div class="footer" >PERFormance Service-Oriented Network monitoring
ARchitecture &nbsp;</div>
-
-
-
-
-
-</div>
-
-
- </body>
+ <head>
+ <title>perfSONAR Service Web Administration page</title>
+ <link rel="stylesheet" type="text/css" href="main.css"/>
+ <meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
+ <style type="text/css">
+ <!--
+
+ a {
+ }
+
+ .style3 {
+ color: #8585c1;
+ font-size: 13px;
+ }
+
+ .style3 a:link {
+ color: #8585C1;
+ cursor: pointer;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ }
+
+ .style3 a:active {
+ color: #117721;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ }
+
+ .style3 a:visited {
+ color: #8585C1;
+ cursor: auto;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ /*font-weight: bold;*/
+ }
+
+
+ .style3 a:hover {
+ color: #8585C1;
+ cursor: pointer;
+ text-decoration: underline;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ }
+ -->
+ </style>
+ </head>
+ <body>
+ <div class="adminPanel">
+ <div class="banner">
+ <table border="0" align="left" cellpadding="0"
cellspacing="0">
+ <tr>
+ <td>
+ <a href="welcome.htm" target="main"><img
src="perfsonar_logo.gif" alt="perfSONAR" width="192" height="94" border="0"
align="right"></a>
+ </td>
+ </tr>
+ </table>
+ </div>
+ <div class="mainWindow">
+ <div class="sidebar">
+ <table border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <th>
+ <a href="welcome.htm" class="button"
target="main">Admin home &nbsp; &nbsp; &nbsp;</a>
+ </th>
+ </tr>
+ <tr>
+ <td>
+ <p>
+ <span class="navtexheading">Basic
+ <br>
+ Configuration
+ </span>
+ </p>
+ <p>
+ <span class="navtex"><a href="Wizard"
target="main">Service</a></span>
+ </p>
+ </p>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <p>
+ <span class="navtexheading
style3">Advanced
+ <br>
+ Configuration
+ </span>
+ </p>
+ <p>
+ <span class="navtex style3"><a
href="ServiceAdmin?serviceProperties" target="main">Service</a>
+ <br>
+ <a
href="ServiceAdmin?loggingProperties" target="main">Logging</a>
+ <br>
+ <a href="eXistAdmin"
target="main">eXist Database</a>
+ <br>
+ </span>
+ </p>
+ </td>
+ </tr>
+ <tr>
+ </tr>
+ </table>
+ <img src="graphics/logos.gif" alt="perfSONAR project
partners" width="117" height="263" border="0" align="top"/>
+ </div>
+ <div class="centerWindow">
+ <object data="welcome.htm" type="text/html" name="main"
width="99%" height="100%">
+ </object>
+ </div>
+ </div>
+ <div class="footer">
+ PERFormance Service-Oriented Network monitoring ARchitecture
&nbsp;
+ </div>
+ </div>
+ </body>
</html>
-
-

Modified: trunk/geant2_java-xml-ls/conf/axis-1.4/main.css
===================================================================
--- trunk/geant2_java-xml-ls/conf/axis-1.4/main.css 2008-04-04 09:39:53
UTC (rev 3608)
+++ trunk/geant2_java-xml-ls/conf/axis-1.4/main.css 2008-04-04 09:42:42
UTC (rev 3609)
@@ -7,22 +7,51 @@
* {
margin: 0;
padding: 0;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ text-decoration: none;
+ border-top-style: none;
+ border-right-style: none;
+ border-bottom-style: none;
+ border-left-style: none;
}


body{
-
- background-color: #C0C0C0;
- width: 100%;
- height: 100%;
- font-family: arial;
+ background-color: #C0C0C0;
+ width: 100%;
+ height: 100%;
+ }
+a:link {
+ color: #468C46;
+ cursor: pointer;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
}
+a:active {
+ color: #117721;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ font-weight: bold;
+}
+a:visited {
+ color: #468C46;
+ cursor: auto;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+a:hover {
+ color: #468C46;
+ cursor: pointer;
+ text-decoration: underline;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}

.adminPanel{
- width: 90%;
- height: 60%;
+ width: 94%;
+ height: 50%;
float:left;
- margin-left: 5%;
+ margin-left: 3%;
margin-right: 5%;
background-color: #ffffff;
margin-bottom: 2%;
@@ -30,35 +59,199 @@
.navtex {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
- color: #666666;
+ color: #468C46;
text-align: right;
font-style: normal;
font-weight: normal;
+ line-height: 28px;
+ background-image: none;
}

+.navtexheading {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ color: #468C46;
+ text-align: right;
+ font-style: normal;
+ font-weight: bold;
+ line-height: normal;
+
+}
+.welcometext {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ color: #468C46;
+ border-bottom-width: 1px;
+ border-bottom-style: dotted;
+ border-bottom-color: #468C46;
+ padding-top: 10px;
+ padding-bottom: 8px;
+ padding-right: 0px;
+ clip: rect(auto,auto,auto,auto);
+ margin-right: 0px;
+ margin-left: 2%;
+}
+.heading1 {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 14px;
+ color: #468C46;
+ padding-top: 23px;
+ padding-bottom: 23px;
+ font-weight: bold;
+ margin-left: 2%;
+}
+
+.bodytext1 {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 11px;
+ color: #333333;
+ width: 100%;
+ margin-left: 18%;
+ font-weight: normal;
+ line-height: 22px;
+}

+.bodytextgreenline {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 11px;
+ color: #333333;
+ margin-left: 18%;
+ font-weight: normal;
+ line-height: 18px;
+ border-bottom-width: 1px;
+ border-bottom-style: dotted;
+ border-bottom-color: #468C46;
+ padding-bottom: 11pt;
+}
+
+.contenttable {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ color: #468C46;
+ padding-top: 0px;
+ margin-left: 20px;
+ font-weight: bold;
+ background-color: #FFFFFF;
+}
+.configheadinglavender {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ color: #8585C1;
+ font-weight: bold;
+ background-image: url(graphics/arrow_icon2.gif);
+ background-repeat: no-repeat;
+ background-position: 17px top;
+ padding-left: 38px;
+}
+
+.configheadinglavender a:link {
+ color: #8585C1;
+ cursor: pointer;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+.configheadinglavender a:active {
+ color: #117721;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ font-weight: bold;
+}
+.configheadinglavender a:visited {
+ color: #8585C1;
+ cursor: auto;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+.configheadinglavender a:hover {
+ color: #8585C1;
+ cursor: pointer;
+ text-decoration: underline;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
+
+.configheading {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ color: #27752C;
+ font-weight: bold;
+ background-image: url(graphics/arrow_icon.gif);
+ background-repeat: no-repeat;
+ background-position: 17px top;
+ padding-left: 38px;
+}
+
+.configheading a:link {
+ color: #27752C;
+ cursor: pointer;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+.configheading a:active {
+ color: #117721;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ font-weight: bold;
+}
+.configheading a:visited {
+ color: #27752C;
+ cursor: auto;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+.configheading a:hover {
+ color: #27752C;
+ cursor: pointer;
+ text-decoration: underline;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+}
+
.banner{
margin: 5px;
width: 99%;
height: 94px;
background-image: url(top_slice.gif);
background-color: #FFFFFF;
+ padding: 0px;
+ clip: rect(auto,auto,auto,auto);
+ float:left;
}
-
-
.mainWindow{
border: none;
+ padding: 0px;
width: 100%;
- height: 554px;
+ height: 750px;
background-color: #ffffff;
}
+.centerWindow{
+ background-color: #FFFFFF;
+ width: 82%;
+ height:80%;
+ margin-right: 5px;
+ margin-bottom: 5px;
+ margin-left: 0;
+ float: left;
+}
+.centerWindow object{
+ width: 101%;
+ height: 105%;
+ background-color: #FFFFFF;
+}
+
+.welcomepage{
+ background-color: #FFFFFF;
+ width: 100%;
+ height: 100%;
+}
+
/* Sidebar*/

-
.sidebar{
width: 15%;
- height: 300px;
- padding-bottom: 250px;
+ height: 71.1%;
+ padding-bottom: 12.1%;
padding-right: 0px;
float: left;
border-right-width: 1px;
@@ -73,12 +266,19 @@
color: #ffffff;
text-align: right;
background-color: #61AF61;
- padding: 10px;
- right: 0px;
width: 15%;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ font-weight: normal;
+ text-decoration:none;
+ background-repeat: no-repeat;
+
+ padding-top: 10px;
+ padding-right: 8%;
+ padding-bottom: 10px;
+ padding-left: 10px;
}
.sidebar td{
- color: #000000;
text-align: right;
background-color: #ffffff;
padding: 10px;
@@ -86,40 +286,42 @@
border-bottom-style: dotted;
border-bottom-color: #92C992;
}
+.sidebar a.button {
+ color: #ffffff;
+ text-align:left;
+ background-color: #61AF61;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ font-weight: normal;
+ text-decoration:none;
+ background-position: 100% 50%;
+ background-image: url(graphics/admin_home_target.gif);
+ background-repeat: no-repeat;
+
+}

+
+
.sidebar a{
- text-decoration: none;
font-weight: normal;
- padding: 0px;
+ padding-top: 0px;
+ padding-right: 0px;
+ padding-bottom: 0px;
+ padding-left: 0px;
+ margin-bottom: 0px;
}

.sidebar img{
- float: none;
+ float: right;
border: none;
- width: 120px;
- height: 60px;
- padding-top: 40px;
+ padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
- padding-left: 15px;
}
-.centerWindow{
- width: 83%;
- height: 500px;
- background-color: #ffffff;
- float: left;
-

-}
-.centerWindow object{
-
- width: 100%;
- height: 100%;

-}
-
.footer{
- height: 30px;
+ height: 20px;
text-align: right;
color: #61AF61;
background-color: #ffffff;
@@ -128,11 +330,13 @@
border-top-width: 1px;
border-top-style: dotted;
border-top-color: #61AF61;
- padding-top: 5px;
+ padding-top: 12px;
width: 100%;
border-right-style: none;
border-right-color: #FFFFFF;
border-left-color: #FFFFFF;
+ float: none;
+}
.footermain {
height: 20px;
text-align: right;
@@ -148,29 +352,6 @@
border-right-style: none;
border-right-color: #FFFFFF;
border-left-color: #FFFFFF;
-}
-.footermain {
- height: 20px;
- text-align: right;
- color: #61AF61;
- background-color: #ffffff;
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 10px;
- width: 100%;
+ }
+

-.footermain {
- height: 20px;
- text-align: right;
- color: #61AF61;
- background-color: #ffffff;
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 10px;
- border-top-width: 1px;
- border-top-style: dotted;
- border-top-color: #61AF61;
- padding-top: 5px;
- width: 100%;
- border-right-style: none;
- border-right-color: #FFFFFF;
- border-left-color: #FFFFFF; padding: 5px;
-}

Modified: trunk/geant2_java-xml-ls/conf/axis-1.4/sqlma_admin_script.js
===================================================================
--- trunk/geant2_java-xml-ls/conf/axis-1.4/sqlma_admin_script.js
2008-04-04 09:39:53 UTC (rev 3608)
+++ trunk/geant2_java-xml-ls/conf/axis-1.4/sqlma_admin_script.js
2008-04-04 09:42:42 UTC (rev 3609)
@@ -134,104 +134,3 @@

}

-
-function checkForPrompt(form){
-
- if (form.createDatabase != null || form.createUser != null) {
-
- var rootPass = prompt("Please enter root password for SQL database",
'');
- if (rootPass != null) {
- var el = document.createElement("input");
- el.type = "hidden";
- el.name = "rtPass";
- el.value = rootPass;
- form.appendChild(el);
- // document.form.submit();
- return true;
- }
- else {
- return false;
- }
- }
-
-}
-
-function insRow(i){
- var x = document.getElementById('fieldTable').insertRow(0);
- var field = x.insertCell(0);
- var type = x.insertCell(1);
- var size = x.insertCell(2);
- var nul = x.insertCell(3);
- var def = x.insertCell(4);
- var extra = x.insertCell(5);
-
- field.innerHTML = "<input type=\"text\" size=\"15\" name=\"field" + i +
"\" value=\" \" />";
- type.innerHTML = "<input type=\"text\" size=\"15\" name=\"type" + i +
"\" value=\" \" />";
- size.innerHTML = "<input type=\"text\" size=\"5\" name=\"size" + i + "\"
value=\" \" />";
- nul.innerHTML = "<select name=\"null" + i + "\">" +
- "<option value =\"NULL\" >NULL</option>" +
- "<option value =\"\NOT NULL\" >NOT NULL</option>" +
- "</select>";
- def.innerHTML = "<input type=\"text\" size=\"15\" name=\"default" + i +
"\" value=\" \" />";
- extra.innerHTML = "<input type=\"text\" size=\"40\" name=\"extra" + i +
"\" value=\" \" />";
-
-}
-
-function addTableDescription(){
-
- var x = document.getElementById('fieldTable').insertRow(0);
- var field = x.insertCell(0);
- var type = x.insertCell(1);
- var size = x.insertCell(2);
- var nul = x.insertCell(3);
- var def = x.insertCell(4);
- var extra = x.insertCell(5);
-
- field.innerHTML = "<h4>Field</h4>";
- type.innerHTML = "<h4>Type</h4>";
- size.innerHTML = "<h4>Size</h4>";
- nul.innerHTML = "<h4>Null</h4>";
- def.innerHTML = "<h4>Default</h4>";
- extra.innerHTML = "<h4>Extra</h4>";
-
- x = document.getElementById('fieldTable').insertRow(0);
-
- var label = x.insertCell(0);
- var input = x.insertCell(1);
- x.insertCell(2);
- x.insertCell(3);
- x.insertCell(4);
-
- label.innerHTML = "<h4>Table Name</h4>";
- input.innerHTML = "<input type=\"text\" size=\"15\" name=\"tableName\"
value=\" \" />";
-
-}
-
-function addSubmitButton(){
-
- var x = document.getElementById('fieldTable').insertRow(0);
-
- var submit = x.insertCell(0);
- x.insertCell(1);
- x.insertCell(2);
- x.insertCell(3);
- x.insertCell(4);
-
- submit.innerHTML = "<input type=\"submit\" name=\"Execute\"
value=\"Create Table\" />";
-
-}
-
-function importData(){
- //alert("HI");
- var index = document.tableForm.table.selectedIndex;
- var table = document.tableForm.table.options[index].value;
- var hidden = document.createElement("input");
- hidden.setAttribute("type", "hidden");
- hidden.setAttribute("value", table);
- hidden.setAttribute("name", "table");
- document.dataForm.appendChild(hidden);
-
- //alert(table);
-
-}
-

Added: trunk/geant2_java-xml-ls/conf/axis-1.4/welcome.htm



  • perfsonar: r3609 - in trunk/geant2_java-xml-ls/conf/axis-1.4: . graphics, svnlog, 04/04/2008

Archive powered by MHonArc 2.6.16.

Top of Page