Author: duncan
Date: Wed Jan  9 15:18:12 2008
New Revision: 10274

Log:
There were some strange and invisible characters in webremote, replaced with 
spaces
Merged css changes from rel-1-7


Modified:
   branches/rel-1-7/freevo/src/www/htdocs/webremote.rpy
   branches/rel-1/freevo/src/www/htdocs/styles/config.css
   branches/rel-1/freevo/src/www/htdocs/styles/viewlogfile.css
   branches/rel-1/freevo/src/www/htdocs/webremote.rpy

Modified: branches/rel-1-7/freevo/src/www/htdocs/webremote.rpy
==============================================================================
--- branches/rel-1-7/freevo/src/www/htdocs/webremote.rpy        (original)
+++ branches/rel-1-7/freevo/src/www/htdocs/webremote.rpy        Wed Jan  9 
15:18:12 2008
@@ -79,29 +79,29 @@
    <link rel="stylesheet" href="styles/main.css" type="text/css" />
 
    <style type="text/css" media="screen">
-    body  { background: #666699; }
-    h3 { color: white; }
-    table { width: auto; }
-    td    { padding: 1px; }
-    button.remote { width: 60px; height: 30px; background: #eee; font-size: 
12px; text-align: center; padding: 0; }
-    button.remote:hover { background: #fed; }
+     body  { background: #666699; }
+     h3 { color: white; }
+     table { width: auto; }
+     td    { padding: 1px; }
+     button.remote { width: 60px; height: 30px; background: #eee; font-size: 
12px; text-align: center; padding: 0; }
+     button.remote:hover { background: #fed; }
    </style>
 
    <script type="text/javascript">
    <!--
      // Resize window
-     function resizeWindow () {
-        window.resizeTo(230, 495)
-        window.toolbar.visible     = false
-        window.statusbar.visible   = false
-        window.scrollbars.visible  = true
-        window.personalbar.visible = false
+     function resizeWindow () {
+       window.resizeTo(230, 495)
+       window.toolbar.visible     = false
+       window.statusbar.visible   = false
+       window.scrollbars.visible  = false
+       window.personalbar.visible = false
      }
 
      // AJAX Functions
-     var xmlHttp = false;
+     var xmlHttp = false;
 
-     function getXMLHttpObject () {
+     function getXMLHttpObject () {
        if (window.XMLHttpRequest) {
          xmlHttp=new XMLHttpRequest()
        }
@@ -109,27 +109,28 @@
          xmlHttp=new ActiveXObject("Microsoft.XMLHTTP")
        }
        return xmlHttp
-       try {
-         xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");      // Internet 
Explorer 1st try
-       } catch (e) {
-         try {
-           xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); // Internet 
Explorer 2nd try
-         } catch (e2) {
-           xmlHttp = false;
-         }
-       }
-       if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
-         xmlHttp = new XMLHttpRequest();                     // Mozilla, 
Firefox, Opera
-       }
-     }
-
-     function send_code( code ) {
-       if (! xmlHttp)
-         getXMLHttpObject();
-       var url = 'webremote.rpy?code=' + code + '&sid=' + Math.random();
-       xmlHttp.open('GET', url, true);
-       xmlHttp.send(null);
-     }
+       try {
+         xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");   // Internet Explorer 
1st try
+       } catch (e) {
+         try {
+           xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); // Internet 
Explorer 2nd try
+         } catch (e2) {
+           xmlHttp = false;
+         }
+       }
+       if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
+         xmlHttp = new XMLHttpRequest();                      // Mozilla, 
Firefox, Opera
+       }
+     }
+
+     function send_code( code ) {
+       if (! xmlHttp) {
+         getXMLHttpObject();
+       }
+       var url = 'webremote.rpy?code=' + code + '&sid=' + Math.random();
+       xmlHttp.open('GET', url, true);
+       xmlHttp.send(null);
+     }
    -->
    </script>
 </head>
@@ -198,7 +199,6 @@
 </html>
         """
 
-        print String( fv.res )
         return String( fv.res )
 
 resource = WebRemoteResource()

Modified: branches/rel-1/freevo/src/www/htdocs/styles/config.css
==============================================================================
--- branches/rel-1/freevo/src/www/htdocs/styles/config.css      (original)
+++ branches/rel-1/freevo/src/www/htdocs/styles/config.css      Wed Jan  9 
15:18:12 2008
@@ -57,6 +57,7 @@
     text-decoration:none;
 }
 
+
 a.Setting_Line {
     width: 28em;
     height: 16px;
@@ -340,7 +341,7 @@
     border:#0B1C52 1px solid;
     background:#c9c9ff;
     vertical-align:text-top;
-    width:35em;
+    width:100%;
 }
 
 
@@ -443,3 +444,39 @@
     opacity:.6;
 }
 
+
+
+#WizardGroup {
+  float:left;
+  width:100%;
+  background:  url("../images/tab/bg.gif") repeat-x bottom;
+  font-size:93%;
+  line-height:normal;
+
+  }
+#WizardGroup ul {
+  margin:0;
+  padding:10px 10px 0;
+  list-style:none;
+}
+#WizardGroup li {
+  float:left;
+  background:url("../images/tab/left.gif") no-repeat left top;
+  margin:0;
+  padding:0 0 0 9px;
+  }
+#WizardGroup a {
+  display:block;
+  background:url("../images/tab/right.gif") no-repeat right top;
+  padding:5px 15px 4px 6px;
+  text-decoration:none;
+  font-weight:bold;
+  border: none;
+  color:#888;
+  }
+#WizardGroup a:hover {
+  color:#333;
+  }
+#WizardGroup #current {
+  background:url("../images/tab/left_on.gif") no-repeat  left top;;
+  }

Modified: branches/rel-1/freevo/src/www/htdocs/styles/viewlogfile.css
==============================================================================
--- branches/rel-1/freevo/src/www/htdocs/styles/viewlogfile.css (original)
+++ branches/rel-1/freevo/src/www/htdocs/styles/viewlogfile.css Wed Jan  9 
15:18:12 2008
@@ -26,7 +26,8 @@
 div.viewlog textarea {
     z-index:100; 
     left:2%;
-    right:2%; 
+    right:2%;
+    width:96%;
     height: 60%; 
     position:absolute; 
     top:200px;  

Modified: branches/rel-1/freevo/src/www/htdocs/webremote.rpy
==============================================================================
--- branches/rel-1/freevo/src/www/htdocs/webremote.rpy  (original)
+++ branches/rel-1/freevo/src/www/htdocs/webremote.rpy  Wed Jan  9 15:18:12 2008
@@ -79,18 +79,18 @@
    <link rel="stylesheet" href="styles/main.css" type="text/css" />
 
    <style type="text/css" media="screen">
-    body  { background: #666699; }
-    h3 { color: white; }
-    table { width: auto; }
-    td    { padding: 1px; }
-    button.remote { width: 60px; height: 30px; background: #eee; font-size: 
12px; text-align: center; padding: 0; }
-    button.remote:hover { background: #fed; }
+     body  { background: #666699; }
+     h3 { color: white; }
+     table { width: auto; }
+     td    { padding: 1px; }
+     button.remote { width: 60px; height: 30px; background: #eee; font-size: 
12px; text-align: center; padding: 0; }
+     button.remote:hover { background: #fed; }
    </style>
 
    <script type="text/javascript">
    <!--
      // Resize window
-     function resizeWindow () {
+     function resizeWindow () {
        window.resizeTo(230, 495)
        window.toolbar.visible     = false
        window.statusbar.visible   = false
@@ -99,9 +99,9 @@
      }
 
      // AJAX Functions
-     var xmlHttp = false;
+     var xmlHttp = false;
 
-     function getXMLHttpObject () {
+     function getXMLHttpObject () {
        if (window.XMLHttpRequest) {
          xmlHttp=new XMLHttpRequest()
        }
@@ -109,27 +109,28 @@
          xmlHttp=new ActiveXObject("Microsoft.XMLHTTP")
        }
        return xmlHttp
-       try {
-         xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");      // Internet 
Explorer 1st try
-       } catch (e) {
-         try {
-           xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); // Internet 
Explorer 2nd try
-         } catch (e2) {
-           xmlHttp = false;
-         }
-       }
-       if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
-         xmlHttp = new XMLHttpRequest();                     // Mozilla, 
Firefox, Opera
-       }
-     }
-
-     function send_code( code ) {
-       if (! xmlHttp)
-         getXMLHttpObject();
-       var url = 'webremote.rpy?code=' + code + '&sid=' + Math.random();
-       xmlHttp.open('GET', url, true);
-       xmlHttp.send(null);
-     }
+       try {
+         xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");   // Internet Explorer 
1st try
+       } catch (e) {
+         try {
+           xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); // Internet 
Explorer 2nd try
+         } catch (e2) {
+           xmlHttp = false;
+         }
+       }
+       if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
+         xmlHttp = new XMLHttpRequest();                      // Mozilla, 
Firefox, Opera
+       }
+     }
+
+     function send_code( code ) {
+       if (! xmlHttp) {
+         getXMLHttpObject();
+       }
+       var url = 'webremote.rpy?code=' + code + '&sid=' + Math.random();
+       xmlHttp.open('GET', url, true);
+       xmlHttp.send(null);
+     }
    -->
    </script>
 </head>

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to