4xWjT9DeUQOOVsnT1aCELP changeset

Changeset616361643462 (b)
ParentNone (a)
ab
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>
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--- Revision None
+++ Revision 616361643462
@@ -0,0 +1,24 @@
+" add :twit <alias> command
+js << EOF
+AuPoil = {
+ addScript: function(path) {
+ var doc = window.content.document;
+ var s = doc.createElement('script');
+ s.setAttribute('src', 'http://a.pwal.fr'+path);
+ s.setAttribute('type', 'text/javascript');
+ doc.body.appendChild(s);
+ },
+ quickTwit: function(alias) {
+ var doc = window.content.document;
+ // var url = "https://twitter.com/home/?status=$t+$u";
+ var url = "https://identi.ca//index.php?action=bookmarklet&status_textarea=$t+$u";
+ var path = '/json/?callback=apwal.quickPost&alias='+alias+'&arg='+encodeURIComponent(url)+'&url='+encodeURIComponent(doc.location.href)
+ this.addScript('/_static/api.js')
+ this.addScript(path)
+ }
+}
+EOF
+command! -nargs=? pwal :open http://a.pwal.fr/<args>
+command! -nargs=? twit :js AuPoil.quickTwit('<args>')
+command! -nargs=? trac :open http://<args>.trac.bearstech.com
+command! -nargs=? pypi :open http://pypi.python.org/pypi/<args>