<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.mozilla.conkeror">
    <title>gmane.comp.mozilla.conkeror</title>
    <link>http://blog.gmane.org/gmane.comp.mozilla.conkeror</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3217"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3216"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3215"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3214"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3213"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3212"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3211"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3210"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3209"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3208"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3207"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3206"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3205"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3204"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3203"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3202"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3201"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3200"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3199"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3198"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3217">
    <title>Re: [PATCH] add super modifier</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3217</link>
    <description>&lt;pre&gt;
Thank you.  I hadn't noticed the patch that you posted to issue410, but I
have now responded there on the bug tracker.  This patch does not exactly
solve that issue, but once we decide what we want to do about it, this
patch with some modifications will.  Let's continue the discussion on the
tracker now.

&lt;/pre&gt;</description>
    <dc:creator>John J. Foerch</dc:creator>
    <dc:date>2013-02-14T23:42:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3216">
    <title>C-x-b on Twitter page blocks people</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3216</link>
    <description>&lt;pre&gt;Hi all,
I've had this happen 3 times over the past 2 weeks where if I am reading a
conversation on Twitter and I do a C-x-b to switch to the previous buffer,
Twitter interprets the `b` as `Block` and automatically blocks the
conversation starter. This is somewhat embarrassing and I only knew about
it when someone asked me why I had blocked them.

Does Twitter mode fix this?

Thanks!
-deech
_______________________________________________
Conkeror mailing list
Conkeror&amp;lt; at &amp;gt;mozdev.org
https://www.mozdev.org/mailman/listinfo/conkeror
&lt;/pre&gt;</description>
    <dc:creator>aditya siram</dc:creator>
    <dc:date>2013-02-14T16:00:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3215">
    <title>Re: C-x-b on Twitter page blocks people</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3215</link>
    <description>&lt;pre&gt;
Try using key-kill-mode.  I haven't added the mode to Conkeror yet, so
here it is and you can just put it in your rc, and add a test for twitter.

  function key_kill_event_kill (event) {
      var elem = event.target;
      if (elem instanceof Ci.nsIDOMHTMLInputElement ||
          elem instanceof Ci.nsIDOMHTMLTextAreaElement)
      {
          return;
      }
      event_kill(event);
  }

  define_page_mode("key-kill-mode",
      [],
      function enable (buffer) {
          buffer.browser.addEventListener("keyup", key_kill_event_kill, true);
          buffer.browser.addEventListener("keydown", key_kill_event_kill, true);
      },
      function disable (buffer) {
          buffer.browser.removeEventListener("keyup", key_kill_event_kill, true);
          buffer.browser.removeEventListener("keydown", key_kill_event_kill, true);
      },
      $display_name = "Key-kill");

  page_mode_activate(key_kill_mode);

  key_kill_mode.test.push(build_url_regexp($domain = "www.smbc-comics"));
  key_kill_mode.test.push(build_url_regexp($domain = "github"));
  key_kill_mode.test.push(/\/\/.*slashdot\.org\//);

&lt;/pre&gt;</description>
    <dc:creator>John J. Foerch</dc:creator>
    <dc:date>2013-02-14T20:37:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3214">
    <title>[PATCH] add super modifier</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3214</link>
    <description>&lt;pre&gt;This allows using the Windows-logo key as a modifier. It used to
trigger meta modifier, but changed to os modifier in recent xulrunner
versions (probably from 12).

See http://bugs.conkeror.org/issue410
---
 modules/commands.js |    1 +
 modules/input.js    |    2 ++
 modules/keymap.js   |   23 ++++++++++++++++++++++-
 3 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/modules/commands.js b/modules/commands.js
index 379b50f..d1921a6 100644
--- a/modules/commands.js
+++ b/modules/commands.js
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -336,6 +336,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; function send_key_as_event (window, element, combo) {
         split.metaKey,
         split.keyCode,
         split.charCode);
+    event.osKey = split.osKey;
     if (element) {
         return element.dispatchEvent(event);
     } else {
diff --git a/modules/input.js b/modules/input.js
index 6adbec1..327917e 100644
--- a/modules/input.js
+++ b/modules/input.js
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -42,6 +42,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; function event_clone (event) {
     this.altKey = event.altKey;
     this.shiftKey = event.shiftKey;
     this.sticky_modifiers = event.sticky_modifiers;
+
+    this.osKey = osKey(event);
 }
 
 
diff --git a/modules/keymap.js b/modules/keymap.js
index ee02f22..2b0b9d4 100644
--- a/modules/keymap.js
+++ b/modules/keymap.js
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -33,6 +33,18 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; function modifier (in_event_p, set_in_event) {
     this.set_in_event = set_in_event;
 }
 
+// xulrunner os-key modifier (version &amp;gt;= 15)
+function osKey (event) {
+    // For events cloned by event_clone, or faked by
+    // send_key_as_event
+    if (event.osKey)
+        return true;
+    // For original/real events
+    if (typeof event.getModifierState == "function")
+        return event.getModifierState("OS");
+    return false;
+}
+
 var modifiers = {
     A: new modifier(function (event) { return event.altKey; },
                     function (event) { event.altKey = true; }),
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -75,6 +87,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; if (get_os() == 'Darwin') {
     modifier_order = ['C', 'M', 'A', 'S'];
 } else {
     modifiers.M = modifiers.A;
+    // https://developer.mozilla.org/en-US/docs/DOM/KeyboardEvent#getModifierState()
+    modifiers.s = new modifier(function(event) { return osKey(event); },
+                               function(event) { event.osKey = true; });
+    modifier_order = ['C', 'M', 'S', 's'];
 }
 
 
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -117,7 +133,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; function unformat_key_combo (combo) {
         altKey: false,
         ctrlKey: false,
         metaKey: false,
-        shiftKey: false
+        shiftKey: false,
+        osKey: false
     };
     var M;
     var i = 0;
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -199,6 +216,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; define_key_match_predicate('match_any_unmodified_character', 'any unmodified cha
                     || event.keyCode &amp;gt; 31)
                 &amp;amp;&amp;amp; !modifiers.A.in_event_p(event)
                 &amp;amp;&amp;amp; !event.metaKey
+                &amp;amp;&amp;amp; !osKey(event)
                 &amp;amp;&amp;amp; !event.ctrlKey
                 &amp;amp;&amp;amp; !event.sticky_modifiers;
         } catch (e) { return false; }
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -209,6 +227,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; define_key_match_predicate('match_checkbox_keys', 'checkbox keys',
         return event.keyCode == 32
             &amp;amp;&amp;amp; !event.shiftKey
             &amp;amp;&amp;amp; !event.metaKey
+            &amp;amp;&amp;amp; !osKey(event)
             &amp;amp;&amp;amp; !event.altKey
             &amp;amp;&amp;amp; !event.ctrlKey;
         //XXX: keycode fallthroughs don't support sticky modifiers
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -220,6 +239,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; define_key_match_predicate('match_text_keys', 'text editing keys',
                 || event.keyCode == 13 || event.keyCode &amp;gt; 31)
             &amp;amp;&amp;amp; !event.ctrlKey
             &amp;amp;&amp;amp; !event.metaKey
+            &amp;amp;&amp;amp; !osKey(event)
             &amp;amp;&amp;amp; !modifiers.A.in_event_p(event);
         //XXX: keycode fallthroughs don't support sticky modifiers
     });
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -229,6 +249,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; define_key_match_predicate('match_not_escape_key', 'any key but escape',
         return event.keyCode != 27 ||
              event.shiftKey ||
              event.altKey ||
+             osKey(event) ||
              event.metaKey || // M-escape can also leave this mode, so we
                               // need to use an accurate determination of
                               // whether the "M" modifier was pressed,
&lt;/pre&gt;</description>
    <dc:creator>Nguyễn Tuấn Anh</dc:creator>
    <dc:date>2013-02-14T15:14:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3213">
    <title>Re: [PATCH] reddit.js: add support for comments</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3213</link>
    <description>&lt;pre&gt;
For a large patch like this, we should update the legalese of reddit.js.
Do you want copyright on your patch, or to assign it to someone else?

&lt;/pre&gt;</description>
    <dc:creator>John J. Foerch</dc:creator>
    <dc:date>2013-02-13T02:38:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3212">
    <title>Re: [PATCH] reddit.js: add support for comments</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3212</link>
    <description>&lt;pre&gt;
Okay, I'd like copyright on my patch. Will you update it? Or should I do it
and send it again?
&lt;/pre&gt;</description>
    <dc:creator>Joren Van Onder</dc:creator>
    <dc:date>2013-02-13T03:11:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3211">
    <title>Re: [PATCH] reddit.js: add support for comments</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3211</link>
    <description>&lt;pre&gt;
I'll do that.  Can you stop by the #conkeror irc channel some time to chat
about the patch?

&lt;/pre&gt;</description>
    <dc:creator>John J. Foerch</dc:creator>
    <dc:date>2013-02-13T03:15:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3210">
    <title>Re: [PATCH] minibuffer: do not assume saved_focused_frame is alive</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3210</link>
    <description>&lt;pre&gt;A larger change based on this patch has now been committed.

On Wed, Feb 6, 2013 at 2:37 AM, Joren Van Onder &amp;lt;joren.vanonder&amp;lt; at &amp;gt;gmail.com&amp;gt;wrote:

_______________________________________________
Conkeror mailing list
Conkeror&amp;lt; at &amp;gt;mozdev.org
https://www.mozdev.org/mailman/listinfo/conkeror
&lt;/pre&gt;</description>
    <dc:creator>Jeremy Maitin-Shepard</dc:creator>
    <dc:date>2013-02-10T00:10:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3209">
    <title>[PATCH] minibuffer: do not assume saved_focused_frame isalive</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3209</link>
    <description>&lt;pre&gt;When opening a hyperlink with its target attribute set to "_blank" a
new buffer is opened. When there is no content handler for the
mimetype a content_handler_prompt is opened and the new (blank) buffer
is killed. saved_focused_frame then references a destroyed object.

A simple example of what used to trigger the bug (unless a content
handler for midi files is available):
&amp;lt;a href="a.mid" target="_blank"&amp;gt;link&amp;lt;/a&amp;gt;
---
 modules/minibuffer.js | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/modules/minibuffer.js b/modules/minibuffer.js
index 0f3946d..7aec70a 100644
--- a/modules/minibuffer.js
+++ b/modules/minibuffer.js
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -358,8 +358,11 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; minibuffer.prototype = {
                 this.window.buffers.current.browser.focus();
                 if (this.saved_focused_element &amp;amp;&amp;amp; this.saved_focused_element.focus)
                     set_focus_no_scroll(this.window, this.saved_focused_element);
-                else if (this.saved_focused_frame)
-                    set_focus_no_scroll(this.window, this.saved_focused_frame);
+                else if (this.saved_focused_frame) {
+                    try {
+                        set_focus_no_scroll(this.window, this.saved_focused_frame);
+                    } catch (e) { /* saved_focused_frame may be dead */ }
+                }
                 this.saved_focused_element = null;
                 this.saved_focused_frame = null;
                 this._show(this.current_message || this.default_message);
&lt;/pre&gt;</description>
    <dc:creator>Joren Van Onder</dc:creator>
    <dc:date>2013-02-06T10:37:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3208">
    <title>Re: zombie tabs</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3208</link>
    <description>&lt;pre&gt;

Will do. Thanks. Also, would the following function be considered too
trivial for the Tips page?  (It wasn't trivial for me, but I got help
from the excellent WritingCommands page.)

interactive("load-file",
            "loads an initialization file",
            function(I) {
                filename= (yield I.minibuffer.read($prompt = "file name: "));
                I.window.minibuffer.message("loaded file "+filename);
                load(make_file(filename));
            }
           );

Best wishes,

Silvio
&lt;/pre&gt;</description>
    <dc:creator>Silvio Levy</dc:creator>
    <dc:date>2013-02-06T04:17:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3207">
    <title>Re: zombie tabs</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3207</link>
    <description>&lt;pre&gt;
Don't know.  First I've heard of such a problem.  Make use of
bugs.conkeror.org pls.

&lt;/pre&gt;</description>
    <dc:creator>John J. Foerch</dc:creator>
    <dc:date>2013-02-06T03:32:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3206">
    <title>zombie tabs</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3206</link>
    <description>&lt;pre&gt;
Since I have your attention, let me report another problem, which
while not critical is annoying enough.  I use conkeror in a single
window, with multiple tabs.  Sometimes, when I close the
active tab, its marker remains on the tab bar, though it moves to the
left of the newly active tab.

The buffer itself is no longer accessible -- either by clicking on the
tab bar, or by cycling through the tabs. So there is no way to get rid
of the zombie tab except by restarting conkeror. When I load the
previous session, the zombie is gone.

Certain tasks I do require a lot of tab opening and closing, so I
get a string of zombies, and end up restarting conkeror more often
than I'd like.  

I can't figure out why sometimes a zombie is left and sometimes not.

Silvio
&lt;/pre&gt;</description>
    <dc:creator>Silvio Levy</dc:creator>
    <dc:date>2013-02-06T02:53:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3205">
    <title>Re: jumps not being read</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3205</link>
    <description>&lt;pre&gt;

OK, thank you!

Silvio
&lt;/pre&gt;</description>
    <dc:creator>Silvio Levy</dc:creator>
    <dc:date>2013-02-06T02:55:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3204">
    <title>Re: jumps not being read</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3204</link>
    <description>&lt;pre&gt;
By the way, for a single file, pass an nsIFile object to 'load', not a
string.  String arguments are resolved against load_paths, which is not
what you want.  Make nsIFile objects with 'make_file':
load(make_file("~/.c/foo.js"))

&lt;/pre&gt;</description>
    <dc:creator>John J. Foerch</dc:creator>
    <dc:date>2013-02-06T02:01:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3203">
    <title>Re: jumps not being read</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3203</link>
    <description>&lt;pre&gt;

Ran it and then ran reinit.  No change.  Value of webjumps.foo still empty.

Finally I had the idea of moving /home/levy/.c to /home/levy/.cc and
redefining conkeror.rcfile accordingly. This fixed everything. Moved
it back to /home/levy/.c -- everything still working normally. That
is, changes in jumps.js become active upon reinit, as it used to be.
Caching doesn't seem to be getting in the way (but I'm saving the code
you sent in any case!)

Just one loose end left to tie up: How can I load a specific file by
hand (say one of the files in conkeror.rcfile)?

Thanks a lot for your help.

Silvio
&lt;/pre&gt;</description>
    <dc:creator>Silvio Levy</dc:creator>
    <dc:date>2013-02-06T01:06:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3202">
    <title>Re: jumps not being read</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3202</link>
    <description>&lt;pre&gt;
The javascript code to clear the startup-cache is as follows:

    var obs = Cc["&amp;lt; at &amp;gt;mozilla.org/observer-service;1"]
        .getService(Ci.nsIObserverService);
    obs.notifyObservers(null, "startupcache-invalidate", null);

You can put this in a command or a function for easy access.

Also, your webjump is called "foo"?  Check the value of webjumps.foo with
the M-: prompt, and see whether it shows up.

What version of XULRunner was it?

&lt;/pre&gt;</description>
    <dc:creator>John J. Foerch</dc:creator>
    <dc:date>2013-02-06T00:06:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3201">
    <title>Re: jumps not being read</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3201</link>
    <description>&lt;pre&gt;


Good to know. But if I understand your first message, evaluating an
expression with C-: is supposed to clear it, right?


I had caught up with the current version maybe two months ago, and I just
did it again now using

sudo -s; cd /usr/local/src/conkeror; git fetch; git merge origin 

No change in behavior.

Another clue, though, is that changes in bindings.js are likewise not
taking effect (which I hadn't noticed since I seldom make any).  

So yes, it's probably something to do with the startup-cache.  But 
evaluation with M-: definitely doesn't help.

Please tell me:  

1. Is there a command to clear the startup-cache explicitly?

2. How can I load a specific file by hand? (googling didn't help;
M-x load TAB gives nothing)

Silvio
&lt;/pre&gt;</description>
    <dc:creator>Silvio Levy</dc:creator>
    <dc:date>2013-02-05T23:13:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3200">
    <title>Re: jumps not being read</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3200</link>
    <description>&lt;pre&gt;
The startup-cache does persist across sessions unless explicitly cleared.
How old is your conkeror?

&lt;/pre&gt;</description>
    <dc:creator>John J. Foerch</dc:creator>
    <dc:date>2013-02-05T22:51:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3199">
    <title>Re: jumps not being read</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3199</link>
    <description>&lt;pre&gt;


Thanks for the reply. Alas, this is not it:

1. evaluating an expression and running reinit makes no difference
2. quitting conkeror and restarting makes no difference
3. as reported in the previous message, jumps.js is not being read
when conkeror starts. From googling "startup cache" I gather than the
startup cache is supposed to last only until the end of the session.

So, something else is "hiding" jumps.js, and using jumps from some
other source.  Please see log below of a session where I cleaned out
my conkerorrc for the purpose.  Note that when I restore my usual
conkerorrc, other things such as preferences and key bindings work as
far as I can tell; only the jumps behave strangely.

Thanks,

Silvio

gar:; ps aux | grep xulr   # make sure no processes survive
levy     21871  0.0  0.0   4660   816 pts/15   S+   19:49   0:00 grep xulr

gar:; ps aux | grep conk   # make sure no processes survive
levy     21873  0.0  0.0   4660   816 pts/15   S+   19:49   0:00 grep conk

gar:;  ls .c   # removed all other files from conkerorrc
jumps.js

gar:; cat .c/jumps.js    # only a single line
define_webjump("foo","file:///u/levy/foo.html");

gar:; xulrunner /usr/local/src/conkeror/application.ini
# no errors or warnings at initialization

C-xC-f about:config confirms that conkeror.rcfile is set to /u/levy/.c
C-xC-f foo  goes to foo.com, ignoring the define_webjump command in jumps.js
C-xC-f sub  goes to http://www.tvsubtitles.net/, a months-old web jump.
&lt;/pre&gt;</description>
    <dc:creator>Silvio Levy</dc:creator>
    <dc:date>2013-02-05T22:15:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3198">
    <title>Re: jumps not being read</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3198</link>
    <description>&lt;pre&gt;
Sounds like the startup-cache at work.  Try evaluating something with M-:
(a simple number will do), and that will clear the startup cache.

&lt;/pre&gt;</description>
    <dc:creator>John J. Foerch</dc:creator>
    <dc:date>2013-02-05T21:21:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3197">
    <title>jumps not being read</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.conkeror/3197</link>
    <description>&lt;pre&gt;My conkeror rc is the directory /u/levy/.c and it is apparently being
read, because most of my customizations work. Also, M-x reinit prints
"Loaded: /u/levy/.c/*.js".

However, the file .c/jumps.js, containing my web jumps, doesn't seem
to be read: all lines added in the last several weeks do not work.
Yet older jumps do work.

Note: the web jumps that don't work are near the top of .c/jumps.js,
so the problem is not that the file is being only partially read. It's
not being read at all. (The read time of the file doesn't get updated
when conkeror is started.)  Yet some older jumps do work.

Any idea what's going on, or how I might debug it?  

output of conkeror -v:
conkeror.mozdev.org conkeror 1.0pre

called with the command
exec xulrunner /usr/local/src/conkeror/application.ini "$&amp;lt; at &amp;gt;"

Thanks,

Silvio
&lt;/pre&gt;</description>
    <dc:creator>Silvio Levy</dc:creator>
    <dc:date>2013-02-05T20:37:38</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.mozilla.conkeror">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.mozilla.conkeror</link>
  </textinput>
</rdf:RDF>
