[enh] results favico handling
This commit is contained in:
		
							parent
							
								
									bfdd6ebb92
								
							
						
					
					
						commit
						4f4cb1caca
					
				| @ -1,7 +1,6 @@ | |||||||
| from urllib import urlencode | from urllib import urlencode | ||||||
| from lxml import html | from lxml import html | ||||||
| from json import loads | from json import loads | ||||||
| from cgi import escape |  | ||||||
| 
 | 
 | ||||||
| categories = ['videos'] | categories = ['videos'] | ||||||
| locale = 'en_US' | locale = 'en_US' | ||||||
|  | |||||||
| @ -79,7 +79,6 @@ a { text-decoration: none; color: #1a11be; } | |||||||
| a:visited { color: #7b11be; } | a:visited { color: #7b11be; } | ||||||
| 
 | 
 | ||||||
| .result { margin: 19px 0 18px 0; padding: 0; max-width: 55em;  clear: both; } | .result { margin: 19px 0 18px 0; padding: 0; max-width: 55em;  clear: both; } | ||||||
| .result:hover { background: #e8e7e6; } |  | ||||||
| .result_title { margin-bottom: 0; } | .result_title { margin-bottom: 0; } | ||||||
| .result h3 { font-size: 1em; word-wrap:break-word; margin: 5px 0 1px 0; padding: 0 } | .result h3 { font-size: 1em; word-wrap:break-word; margin: 5px 0 1px 0; padding: 0 } | ||||||
| .result .content { font-size: 0.8em; margin: 0; padding: 0; max-width: 54em; word-wrap:break-word; line-height: 1.24; } | .result .content { font-size: 0.8em; margin: 0; padding: 0; max-width: 54em; word-wrap:break-word; line-height: 1.24; } | ||||||
| @ -201,3 +200,5 @@ tr:hover td { background: #DDDDDD; } | |||||||
| 
 | 
 | ||||||
|   .result img { max-width: 90%; width: auto; height: auto } |   .result img { max-width: 90%; width: auto; height: auto } | ||||||
| } | } | ||||||
|  | 
 | ||||||
|  | .favicon { float: left; margin-right: 4px; } | ||||||
|  | |||||||
| @ -1,13 +1,11 @@ | |||||||
| <div class="result {{ result.class }}"> | <div class="result {{ result.class }}"> | ||||||
| 
 | 
 | ||||||
|   {% if result['favicon'] %} |   {% if result['favicon'] %} | ||||||
|   <div style="float:left; margin:2px;"> |     <img width="14" height="14" class="favicon" src="static/img/icon_{{result['favicon']}}.ico" /> | ||||||
|     <img width="18" height="18" src="static/img/icon_{{result['favicon']}}.ico" alt="{{result['favicon']}}.ico" title="{{result['favicon']}}.ico" /> |  | ||||||
|   </div> |  | ||||||
|   {% endif %} |   {% endif %} | ||||||
| 
 | 
 | ||||||
|   <div> |   <div> | ||||||
|     <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3></br> |     <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3> | ||||||
|     <p class="content">{% if result.content %}{{ result.content|safe }}<br />{% endif %}</p> |     <p class="content">{% if result.content %}{{ result.content|safe }}<br />{% endif %}</p> | ||||||
|     <p class="url">{{ result.pretty_url }}</p> |     <p class="url">{{ result.pretty_url }}</p> | ||||||
|   </div> |   </div> | ||||||
|  | |||||||
| @ -1,13 +1,11 @@ | |||||||
| <div class="result"> | <div class="result"> | ||||||
|   {% if result['favicon'] %} |   {% if result['favicon'] %} | ||||||
|   <div style="float:left; margin:2px;"> |     <img width="14" height="14" class="favicon" src="static/img/icon_{{result['favicon']}}.ico" /> | ||||||
|     <img width="18" height="18" src="static/img/icon_{{result['favicon']}}.ico" alt="{{result['favicon']}}.ico" title="{{result['favicon']}}.ico" /> |  | ||||||
|   </div> |  | ||||||
|   {% endif %} |   {% endif %} | ||||||
| 
 | 
 | ||||||
|     <p> |     <p> | ||||||
|       <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3> |       <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3> | ||||||
|       <a href="{{ result.url }}"><img width="300" height="170"  src="{{ result.thumbnail }}" title={{ result.title }} alt=" {{ result.title }}"/></a> |       <a href="{{ result.url }}"><img width="400px" src="{{ result.thumbnail }}" title={{ result.title }} alt=" {{ result.title }}"/></a> | ||||||
|       <p class="url">{{ result.url }}</p> |       <p class="url">{{ result.url }}</p> | ||||||
|     </p> |     </p> | ||||||
| </div> | </div> | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user