Adding .content css to Yioop, a=chris

Chris Pollett [2012-03-18 01:Mar:th]
Adding .content css to Yioop, a=chris
Filename
bin/fetcher.php
css/search.css
diff --git a/bin/fetcher.php b/bin/fetcher.php
index 1c7da0ad1..ea116f718 100755
--- a/bin/fetcher.php
+++ b/bin/fetcher.php
@@ -1012,7 +1012,9 @@ class Fetcher implements CrawlConstants
                 if(!isset($this->hosts_with_errors[$host])) {
                     $this->hosts_with_errors[$host] = 0;
                 }
-                if($response_code >= 400) {
+                if($response_code >= 400 || $response_code < 100) {
+                    // < 100 will capture failures to connect which are returned
+                    // as strings
                     $this->hosts_with_errors[$host]++;
                 }
                 /* we print out errors to std output. We still go ahead and
diff --git a/css/search.css b/css/search.css
index 6c124d197..517539ba5 100755
--- a/css/search.css
+++ b/css/search.css
@@ -249,6 +249,22 @@ body.html-tb-lr
     float:left;
 }

+.content
+{
+    position:relative;
+    top: 1.5in;
+    margin-left: .25in;
+    margin-right: .25in;
+    width:90%;
+    min-width: 10in;
+    min-height:6in;
+    padding: 8px;
+    border:1px solid black;
+    background-color:white;
+    border-radius: 16px;
+    -moz-border-radius: 16px; -webkit-border-radius:16px;
+}
+
 .searchbox
 {
     width:8in;
ViewGit