The oblique services manifest changed location, updated to follow.

master
Sean B. Palmer 2010-11-06 12:09:03 +00:00
parent 331bc44338
commit 63b981c994
2 changed files with 13 additions and 1 deletions

View File

@ -13,3 +13,6 @@ ci: ;
log: ;
# git log --date=short --format='%h %ad %s'
git graph
sync: ;
rsync -avz --delete ./ pubble:opt/phenny/

View File

@ -10,7 +10,7 @@ http://inamidst.com/phenny/
import re, urllib
import web
definitions = 'http://github.com/nslater/oblique/wiki'
definitions = 'https://github.com/nslater/oblique/wiki'
r_item = re.compile(r'(?i)<li>(.*?)</li>')
r_tag = re.compile(r'<[^>]+>')
@ -91,5 +91,14 @@ def py(phenny, input):
service(phenny, input, 'py', input.group(2))
py.commands = ['py']
def snippet(phenny, input):
py = "BeautifulSoup.BeautifulSoup(re.sub('<.*?>|(?<= ) +', '', " + \
"eval(urllib.urlopen('http://ajax.googleapis.com/ajax/serv" + \
"ices/search/web?v=1.0&q=" + urllib.quote(input.group(2)) + \
"').read().replace('null', 'None'))['responseData']['resul" + \
"ts'][0]['content'].decode('unicode-escape')), convertEntities=True)"
service(phenny, input, 'py', py)
snippet.commands = ['snippet']
if __name__ == '__main__':
print __doc__.strip()