a | b | |
---|
| 0 | + | " add :twit <alias> command |
---|
| 0 | + | js << EOF |
---|
| 0 | + | AuPoil = { |
---|
| 0 | + | addScript: function(path) { |
---|
| 0 | + | var doc = window.content.document; |
---|
| 0 | + | var s = doc.createElement('script'); |
---|
| 0 | + | s.setAttribute('src', 'http://a.pwal.fr'+path); |
---|
| 0 | + | s.setAttribute('type', 'text/javascript'); |
---|
| 0 | + | doc.body.appendChild(s); |
---|
| 0 | + | }, |
---|
| 0 | + | quickTwit: function(alias) { |
---|
| 0 | + | var doc = window.content.document; |
---|
| 0 | + | // var url = "https://twitter.com/home/?status=$t+$u"; |
---|
| 0 | + | var url = "https://identi.ca//index.php?action=bookmarklet&status_textarea=$t+$u"; |
---|
| 0 | + | var path = '/json/?callback=apwal.quickPost&alias='+alias+'&arg='+encodeURIComponent(url)+'&url='+encodeURIComponent(doc.location.href) |
---|
| 0 | + | this.addScript('/_static/api.js') |
---|
| 0 | + | this.addScript(path) |
---|
| 0 | + | } |
---|
| 0 | + | } |
---|
| 0 | + | EOF |
---|
| 0 | + | command! -nargs=? pwal :open http://a.pwal.fr/<args> |
---|
| 0 | + | command! -nargs=? twit :js AuPoil.quickTwit('<args>') |
---|
| 0 | + | command! -nargs=? trac :open http://<args>.trac.bearstech.com |
---|
| 0 | + | command! -nargs=? pypi :open http://pypi.python.org/pypi/<args> |
---|
... | |
---|