(function() { models.register({ name : 'Pleeq', ICON : 'http://pleeq.com/favicon.ico', check : function(ps) { return (/photo/).test(ps.type); }, post : function(ps) { var url = 'http://pleeq.com/add_image/' + '?title=' + encodeURIComponent(ps.item) + '&url=' + encodeURIComponent(ps.pageUrl) + '&src=' + encodeURIComponent(ps.itemUrl); var form = { tags : (ps.tags && ps.tags.length)? joinText(ps.tags, ',') : '', subm : '+++Pleeq+this+image+++', }; return request(url, {sendContent : form}); }, }); })();