summaryrefslogtreecommitdiffstats
path: root/.conkerorrc/init.js
blob: d8305af43f643df1eee04afe2f5a4a95e9b1d691 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
require("content-policy.js");
require("favicon");

theme_load_paths.push("/home/slash/.conkerorrc/themes/");

define_browser_object_class(
    "history-url", null,
    function (I, prompt) {
        check_buffer(I.buffer, content_buffer);
        var result = yield I.buffer.window.minibuffer.read_url(
            $prompt = prompt, $use_webjumps = false, $use_history = true,
            $use_bookmarks = false, $sort_order = 'date_descending'
        );
        yield co_return(result);
    }
);

function oni_before_quit_func() {
    var w = get_recent_conkeror_window();
    var result = (w == null) ||
            "y" == (yield w.minibuffer.read_single_character_option(
                $prompt="Quit Conkeror? (y/n)",
                $options=["y", "n"]));
    yield co_return(result);
}

function oni_block_flash(content_type, content_location) {
    var Y = content_policy_accept, N = content_policy_reject;
    var action = ({ "youtube.com": Y }
                  [content_location.host] || N);

    if (action == N)
        dumpln("blocked flash: " + content_location.spec);

    return action;
}

function oni_escape(str) {
    return str.replace(/(["$`])/g, '\\$1');
}

function oni_linkwave_add(I) {
    check_buffer(I.buffer, content_buffer);
    let url =
            load_spec_uri_string(load_spec(I.buffer.top_frame));
    let title = escape(yield I.minibuffer.read(
        $prompt = "name (required): ",
        $initial_value = I.buffer.title));
    let tags = escape(yield I.minibuffer.read(
        $prompt = "tags (space delimited): "));
    let description = escape(yield I.minibuffer.read(
        $prompt = "extended description: "));
    let command =
            '/home/slash/development/projects/linkwave/src/linkwave "'
            + url + '" "' + title + '" "' + description + '"';
    I.window.minibuffer.message(command);
}
interactive("linkwave-add", "Bookmark the page in linkwave",
            oni_linkwave_add);

function oni_linkwave_add_link(I) {
    bo = yield read_browser_object(I);
    let url = load_spec_uri_string(
        load_spec(encodeURIComponent(bo)));
    check_buffer(I.buffer, content_buffer);
    let title = escape(yield I.minibuffer.read(
        $prompt = "name (required): ",
        $initial_value = bo.textContent));
    let tags = escape(yield I.minibuffer.read(
        $prompt = "tags (space delimited): "));
    let description = escape(yield I.minibuffer.read(
        $prompt = "extended description: "));
    let command =
            '/home/slash/development/projects/linkwave/src/linkwave "'
            + url + '" "' + title + '" "' + description + '"';
    let result = yield shell_command(command);

    if (!result)
        I.window.minibuffer.message('Added to linkwave');
    else
        I.window.minibuffer.message('Couldn\'t add to linkwave');
}
interactive("linkwave-add-link", "Bookmark the a link in linkwave",
            oni_linkwave_add_link);

function oni_org_store_link(I) {
    var cmd_str = 'emacsclient \"org-protocol://store-link://'
            + encodeURIComponent(I.buffer.display_uri_string) + '/'
            + encodeURIComponent(I.buffer.document.title) + '\"';

    if (I.window != null) {
        window.minibuffer.message('Issuing ' + cmd_str);
    }

    shell_command_blind(cmd_str);
}
interactive("org-store-link",
            "Stores [[url][title]] as org link and copies url to emacs "
            + "kill ring",
            oni_org_store_link);

interactive("find-url-from-history",
            "Find a page from history in the current buffer",
            "find-url",
            $browser_object = browser_object_history_url);
interactive("find-url-from-history-new-buffer",
            "Find a page from history in a new buffer",
            "find-url-new-buffer",
            $browser_object = browser_object_history_url);

define_webjump("emacswiki",
               "http://www.google.com/cse?cx=004774160799092323420%3A6-ff2s0o6yi&q=%s",
               $alternative="http://www.emacswiki.org");
define_webjump("php",
               "http://www.php.net/manual-lookup.php?pattern=%s&scope=quickref",
               $alternative="http://www.php.net");
define_webjump("python",
               "http://docs.python.org/search.html?q=%s&check_keywords=yes&area=default",
               $alternative="http://www.python.org");
define_webjump("ddg",
               "https://duckduckgo.com/?q=%s",
               $alternative="https://duckduckgo.com");
define_webjump("metal-archives",
               "http://www.metal-archives.com/search?searchString=%s&type=band_name",
               $alternative="http://www.metal-archives.com");
define_webjump("djangodocs",
               "https://docs.djangoproject.com/search/?q=%s&release=5",
               $alternative="https://docs.djangoproject.com/");
define_webjump("google",
               "https://duckduckgo.com?q=!google%%20%s");
define_webjump("github",
               "https://github.com/search?q=%s&type=Everything&repo=&langOverride=&start_value=1",
               $alternative="https://github.com");
// Archlinux
define_webjump("arch/wiki",
               "https://wiki.archlinux.org/index.php?search=%s",
               $alternative="https://wiki.archlinux.org");
define_webjump("arch/aur",
               "https://aur.archlinux.org/packages.php?O=0&K=%s&do_Search=Go",
               $alternative="https://aur.archlinux.org");
define_webjump("arch/packages",
               "https://www.archlinux.org/packages/?sort=&q=%s&limit=50",
               $alternative="https://packages.archlinux.org");

content_policy_bytype_table.object = oni_block_flash;
cwd = make_file("/home/slash/downloads/");
hint_digits = "arstdhneio";
read_buffer_show_icons = true;
url_remoting_fn = load_url_in_new_buffer;

define_key(content_buffer_normal_keymap, "h",
           "find-url-from-history-new-buffer");
define_key(content_buffer_normal_keymap, "H",
           "find-url-from-history");
define_key(default_base_keymap, "C-x f", "follow-new-buffer");

add_hook("before_quit_hook", oni_before_quit_func);
add_hook("content_policy_hook", content_policy_bytype);
add_hook("mode_line_hook", mode_line_adder(buffer_count_widget, true));
add_hook("mode_line_hook", mode_line_adder(buffer_icon_widget, true));
add_hook("mode_line_hook", mode_line_adder(downloads_status_widget));

remove_hook("download_added_hook", open_download_buffer_automatically);

hints_minibuffer_annotation_mode(true);
theme_load("naquadah");