ovs: implement ICapContact.get_contact

This commit is contained in:
Vincent A 2013-11-11 15:32:10 +01:00 committed by Florent
commit e3d440d359
4 changed files with 77 additions and 12 deletions

View file

@ -19,7 +19,6 @@
import BeautifulSoup
import datetime
def nearest_parent(node, expected):
@ -39,15 +38,6 @@ def all_next_siblings(node):
node = node.nextSibling
return ret
def parse_date_from_site(sitedate):
parts = sitedate.split() # [d, m, Y, '-', 'H:M:S']
if len(parts[0]) == 1:
parts[0] = '0%s' % parts[0]
months = {'january': '01', 'february': '02', 'march': '03', 'april': '04', 'may': '05', 'june': '06', 'july': '07', 'august': '08', 'september': '09', 'october': '10', 'november': '11', 'december': '12'}
parts[1] = months[parts[1].lower()]
del parts[3]
return datetime.datetime.strptime(' '.join(parts), '%d %m %Y %H:%M:%S')
def image_to_text(src):
smileys = {'chat/e/grin.gif': ':D',
'chat/e/unsure.gif': ':s',