<?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://comments.gmane.org/gmane.comp.mozilla.conkeror/3216"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3214"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3209"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3206"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3197"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3196"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3194"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3193"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3191"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3189"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3187"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3185"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3182"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3178"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3174"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3167"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3164"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3161"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3156"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3149"/>
      </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://comments.gmane.org/gmane.comp.mozilla.conkeror/3216">
    <title>C-x-b on Twitter page blocks people</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.mozilla.conkeror/3214">
    <title>[PATCH] add super modifier</title>
    <link>http://comments.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.s&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://comments.gmane.org/gmane.comp.mozilla.conkeror/3209">
    <title>[PATCH] minibuffer: do not assume saved_focused_frame isalive</title>
    <link>http://comments.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(thi&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://comments.gmane.org/gmane.comp.mozilla.conkeror/3206">
    <title>zombie tabs</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.mozilla.conkeror/3197">
    <title>jumps not being read</title>
    <link>http://comments.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>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3196">
    <title>[PATCH] reddit.js: add support for comments</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3196</link>
    <description>&lt;pre&gt;Features: - scroll through comments with 'j' and 'k'
          - scroll through parent comments with 'J' and 'K'
          - vote on comments with ',' and '.'
          - automatically load more comments on end of page
---
 modules/page-modes/reddit.js | 313 ++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 294 insertions(+), 19 deletions(-)

diff --git a/modules/page-modes/reddit.js b/modules/page-modes/reddit.js
index 3da6282..da30f73 100644
--- a/modules/page-modes/reddit.js
+++ b/modules/page-modes/reddit.js
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -34,12 +34,41 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; function reddit_scroll_into_view (window, element) {
         element.scrollIntoView();
 }
 
+/* Select the next entry down from the currently highlighted one.
+ * Checks the URL to figure out if one a link page or comment page.
+ */
+function reddit_next (I) {
+    var doc = I.buffer.document;
+
+    // Not on comment page, so highlight next link
+    if (doc.URL.search("/comments/") == -1)
+        reddit_next_link(I);
+
+    // On comment page, so highlight next comm&lt;/pre&gt;</description>
    <dc:creator>Joren Van Onder</dc:creator>
    <dc:date>2013-02-04T16:01:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3194">
    <title>Running two processes XULRunner</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3194</link>
    <description>&lt;pre&gt;Hi again,

This is about XULRunner processes in Linux.

I have been using XULRunner 17, and as i have seen with "top" command, 
there is quite amount of CPU usage and memory. I wanted to try the 
newest stable version of XULRunner, so i downloaded and put in other 
place, to avoid replace files and could execute still the before version 
to do comparisons with the same pages at the same time.

/usr/share/xulrunner17/ are the files of the version 17.
/usr/bin/xulrunner17 --version
Mozilla XULRunner 17.0 - 20121119183901


I downloaded the latest version:
/usr/share/xulrunner/ are the files of the version 18.0.1
/usr/bin/xulrunner --version
Mozilla XULRunner 18.0.1 - 20130116073211

Both, xulrunner17 is a soft link from /usr/share/xulrunner17/xulrunner17 
(I changed the name of the main program from xulrunner to xulrunner17) 
    and xulrunner is a soft link from /usr/share/xulrunner/xulrunner  
(version 18.0.1)

Also, to avoid problems, i copy two directories of conkeror:
/usr/share/conkeror
and
/usr/share/co&lt;/pre&gt;</description>
    <dc:creator>Trash Folder</dc:creator>
    <dc:date>2013-01-17T02:24:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3193">
    <title>Modification in downloads</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3193</link>
    <description>&lt;pre&gt;Hi everyone!

First, say thank you to the developers of Conkeror (and of course the 
contributors and altruistic developers to help with this project).

This night i had my first really involved situation i have ever been. 
Yesterday afternoon i thought to improve the system of downloads (to be 
more productive and insert some features that i really miss before), and 
i don't know anything about Java-script, but i put lot of energies and 
hopes to get my "modification"... after 11 hours (yes, all night, i 
finished this morning at 9hours) i have done it!!

I know that for real developers what i did maybe is something easy, but 
i don't know anything about Java-script (just Java, MIPS assembly and 
really the basics of C). The most difficult situation was to understand 
the code without documentation...just reading and following methods, 
classes and variables from one to other modules.

I don't know what is the best way to share what i did, the 
modifications, and if there is any way to can get "feedback", l&lt;/pre&gt;</description>
    <dc:creator>Trash Folder</dc:creator>
    <dc:date>2013-01-16T21:31:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3191">
    <title>Bugs/Problems with conkeror</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3191</link>
    <description>&lt;pre&gt;
Hello.
Since some time ago I can't download pictures or whole pages in
conkeror. Normal downloads work as before.
I'm using the latest git version together with firefox 17.0.1 on ubuntu.

Best regards,
Valentin

Here are the error from the shell:
download state change: http://www.cityoflisbon-ia.gov/vertical/Sites/%7B8CDB492E-92D0-4DDE-9EFE-DF15166CB27B%7D/uploads/tree21.gif: -1, 5, 1060
NS_ERROR_FILE_NOT_FOUND: Component returned failure code: 0x80520012 (NS_ERROR_FILE_NOT_FOUND) [nsIXPCComponents_Utils.import]
XPCU_moduleLambda()&amp;lt; at &amp;gt;resource://gre/modules/XPCOMUtils.jsm:222
null()&amp;lt; at &amp;gt;resource://gre/modules/XPCOMUtils.jsm:176
DUI_show()&amp;lt; at &amp;gt;resource:///components/DownloadsUI.js:61
save_uri()&amp;lt; at &amp;gt;chrome://conkeror/content/save.js:78
null()&amp;lt; at &amp;gt;chrome://conkeror/content/commands.js:486
_do_call()&amp;lt; at &amp;gt;chrome://conkeror/content/coroutine.js:277
null()&amp;lt; at &amp;gt;chrome://conkeror/content/coroutine.js:408
exit_minibuffer()&amp;lt; at &amp;gt;chrome://conkeror/content/minibuffer-read.js:448
null()&amp;lt; at &amp;gt;chrome://conkeror/content/minibuffer-read.js:452
call_interactivel&lt;/pre&gt;</description>
    <dc:creator>v.plechinger&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2013-01-12T21:11:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3189">
    <title>Ghostery - 302 moved</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3189</link>
    <description>&lt;pre&gt;Hi,

I have started to use Conkeror just for a few weeks and i find it really 
good.

But i miss the extension from Firefox called "Ghostery", to block 
trackers and cookies.

I have downloaded from Mozilla Addons: 
https://addons.mozilla.org/en-US/firefox/addon/ghostery/

And edited the .xpi (deleting the MANIFESTs and adding the next 
paragraph to install.rdf).

  &amp;lt;!-- Conkeror --&amp;gt;
         &amp;lt;em:targetApplication&amp;gt;
             &amp;lt;Description&amp;gt;
&amp;lt;em:id&amp;gt;{a79fe89b-6662-4ff4-8e88-09950ad4dfde}&amp;lt;/em:id&amp;gt;
                 &amp;lt;em:minVersion&amp;gt;0.1&amp;lt;/em:minVersion&amp;gt;
                 &amp;lt;em:maxVersion&amp;gt;9.9&amp;lt;/em:maxVersion&amp;gt;
             &amp;lt;/Description&amp;gt;
         &amp;lt;/em:targetApplication&amp;gt;

After the installation and to allow open the settings i have added to 
the conkerorrc:

interactive("ghostery",
     "Open Ghostery settings.",
     function (I) {
         browser_object_follow(I.buffer, OPEN_NEW_BUFFER, 
'chrome://ghostery/content/options.html');
     });


It seems to work (disabling everything in trakers and cookies), but 
then, when &lt;/pre&gt;</description>
    <dc:creator>Trash Folder</dc:creator>
    <dc:date>2013-01-11T11:39:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3187">
    <title>Can Conkeror provide Firefox's "Save As: Web Page,Complete" function?</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3187</link>
    <description>&lt;pre&gt;The subject line pretty much says it all, but:  I'm looking to have
Conkeror save a web page in the same way that Firefox does when you click
the "Save Page As..." command and choose "Format: Web Page, Complete."
This means that a) a directory named after the page but with a "_files"
suffix is created, copies of all of the resources needed by the page are
saved there, and resource links on the page are rewritten to point there,
and b) the saved page reflects any changes wrought by Javascript since the
page was loaded.
_______________________________________________
Conkeror mailing list
Conkeror&amp;lt; at &amp;gt;mozdev.org
https://www.mozdev.org/mailman/listinfo/conkeror
&lt;/pre&gt;</description>
    <dc:creator>Sean McAfee</dc:creator>
    <dc:date>2012-12-29T22:01:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3185">
    <title>Tracking keypresses independently of chosen keyboardlayout</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3185</link>
    <description>&lt;pre&gt;Hello all,

I am having this problem: if I switch my keyboard to Russian, then key some
combinations don't work.

For instance, the letter 'n' is mapped to letter 'т' in Russian, and when I
press M-т I get the message that "M-т is undefined". Is it possible to make
Conkeror react to 'т' as if it was 'n' if it is pressed with a one of the
modifier keys? And likewise for other letters?

FYI, I am using Conkeror on Windows, but would like to hear any advice
(perhaps for Linux, it may serve as an inspiration) nonetheless.

&lt;/pre&gt;</description>
    <dc:creator>Artyom Shalkhakov</dc:creator>
    <dc:date>2012-12-21T04:58:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3182">
    <title>pdf viewer extension</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3182</link>
    <description>&lt;pre&gt;Hello,

maybe this is of broader interest: I just tried this firefox extension in conkeror:

https://addons.mozilla.org/firefox/downloads/file/181716/pdf_viewer-0.7.1.xpi

It opens pdf files directly in conkeror. This is what I added to the install.rdf:

     &amp;lt;!-- Conkeror --&amp;gt;
     &amp;lt;em:targetApplication&amp;gt;
       &amp;lt;Description&amp;gt;
        &amp;lt;em:id&amp;gt;{a79fe89b-6662-4ff4-8e88-09950ad4dfde}&amp;lt;/em:id&amp;gt;
        &amp;lt;em:minVersion&amp;gt;0.8&amp;lt;/em:minVersion&amp;gt;
        &amp;lt;em:maxVersion&amp;gt;2.0&amp;lt;/em:maxVersion&amp;gt;
      &amp;lt;/Description&amp;gt;
     &amp;lt;/em:targetApplication&amp;gt;

That's it!

Kind Regards
Stefan
&lt;/pre&gt;</description>
    <dc:creator>Stefan Husmann</dc:creator>
    <dc:date>2012-12-19T20:12:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3178">
    <title>refactor-completers branch</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3178</link>
    <description>&lt;pre&gt;Hi all,

I'm currently working on a big refactoring of the completions system.  The
basic goal is to have a completions system that is easier to read and
understand than the current one, and more flexible.  Then to write a nice
file-path completer, and more cool completer-based features.  One little
thing that I added already is the ability to delete bookmarks and history
items while in the url prompt with C-k, analogous to how you can delete
buffers in the switch-to-buffer prompt.

Well, this refactoring is a very large, complicated undertaking, and could
use the help of anybody out there in the community who wants to test and
review.  I haven't compiled a complete list of breaking changes that are
currently, or will end up being, in the branch, but if you're testing and
have things that use completers in your rc, the biggest ones that might
affect you are:

 - completers are now classes, and instantiated with the 'new' keyword
 - $match_required keywords renamed to $require_match
 - webjump keyword $descri&lt;/pre&gt;</description>
    <dc:creator>John J. Foerch</dc:creator>
    <dc:date>2012-12-10T20:53:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3174">
    <title>Reddit mode</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3174</link>
    <description>&lt;pre&gt;
Hi Everybody,

Is anyone else using Reddit mode with 
reddit_end_behavior="page";
When going through the Reddit entries (with "j"), this is supposed to go to
the next page after the last entry of the current page.  Lately, for me, after the last
entry, I get the message
 call interactively: TypeError:  node is null
If I try again, I get sent to the first entry of the current page.  I
don't know enough javascript to figure out the problem, but I was
wondering if it was a local issue with me or some other problem.

Jay
&lt;/pre&gt;</description>
    <dc:creator>Jay Belanger</dc:creator>
    <dc:date>2012-12-08T04:32:31</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3167">
    <title>tabs on the left</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3167</link>
    <description>&lt;pre&gt;With firefox, I use the ``Vertical Tabs'' extension to show
tabs on the left of the browser window.

I would like to modify tab-bar.js to archive such a behaviour.
Changing line 15 to
    element.setAttribute("orient", "vertical");
seems to be a good start.
What I need now is a way to tell conkeror to 
put the arrowscrollbox to the left, instead of to the top
of the main window. Does anybody know how to do this?

Kind regards,
Georg
&lt;/pre&gt;</description>
    <dc:creator>Georg</dc:creator>
    <dc:date>2012-12-06T15:48:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3164">
    <title>delicious?</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3164</link>
    <description>&lt;pre&gt;The delicious integretation no longer seems to work.

I.e. add_delicious_webjumps("username"); now gives me an error. Has
something changed, or did I manage to muck something up elsewhere?
&lt;/pre&gt;</description>
    <dc:creator>Benjamin Slade</dc:creator>
    <dc:date>2012-12-04T23:06:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3161">
    <title>nightlies repo down?</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3161</link>
    <description>&lt;pre&gt;Hi all,

I cannot reach the NoOne.org nightly build repo:

    $ host -vvv -t SOA noone.org 8.8.8.8
    Trying "noone.org"
    Received 27 bytes from 8.8.8.8#53 in 3676 ms
    Trying "noone.org.uzh.ch"
    Using domain server:
    Name: 8.8.8.8
    Address: 8.8.8.8#53
    Aliases:

    Host noone.org not found: 3(NXDOMAIN)
    Received 85 bytes from 8.8.8.8#53 in 75 ms

Is this a problem on my side?

Cheers,
Riccardo
&lt;/pre&gt;</description>
    <dc:creator>Riccardo Murri</dc:creator>
    <dc:date>2012-11-26T09:47:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3156">
    <title>Running Conkeror on Windows</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3156</link>
    <description>&lt;pre&gt;Hello all,

I'm running Conkeror on Windows 7 via Emacs' browse-url function with
the following command line:


(The recipe given on the wiki didn't work for me. Could anybody tell
how to read error messages from Conkeror?)

It works, but it seems that xulrunner redirects all command arguments
to Conkeror, including the first two, so Conkeror tries to open the
application.ini file (and fails). For the moment, I've resolved it
with the following addition to modules/command-line.js:


So, now I'm wondering if there is any way to run Conkeror without
having to add this fix.

Also, on the wiki, there is a mention of unsupported external editing
on Windows. Could anybody tell where to start looking to resolve the
issue?

Finally, would like to thank you people for this browser. Great work.

--
Cheers,
Artyom Shalkhakov
&lt;/pre&gt;</description>
    <dc:creator>Artyom Shalkhakov</dc:creator>
    <dc:date>2012-11-11T10:18:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3149">
    <title>Any way to take "screenshots" of individual pageelements?</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3149</link>
    <description>&lt;pre&gt;Here's something I've been pondering how to accomplish for a while:

Having designated an arbitrary set of elements on the current page, how can
I obtain individual images of those elements?

If there's no way to do this in Conkeror, then pointers to alternate means
(Firefox plugins, or whatever) would also be appreciated.
_______________________________________________
Conkeror mailing list
Conkeror&amp;lt; at &amp;gt;mozdev.org
https://www.mozdev.org/mailman/listinfo/conkeror
&lt;/pre&gt;</description>
    <dc:creator>Sean McAfee</dc:creator>
    <dc:date>2012-10-21T22:58:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.mozilla.conkeror/3146">
    <title>Files don't open after download</title>
    <link>http://comments.gmane.org/gmane.comp.mozilla.conkeror/3146</link>
    <description>&lt;pre&gt;Hi,

Recently, probably linked with my recent re-install of F17, conkeror no
longer opens pdf's (or other file types) after downloading them. After
download is finshed, conkeror asks to open the file with "mupdf" as I
have configured it, but nothing happens. i am using conkeror 1.0pre on
XULrunner 15.0.1. I am puzzled as I haven't change any configs...

Thanks for any help! 

&lt;/pre&gt;</description>
    <dc:creator>Johnny</dc:creator>
    <dc:date>2012-10-20T17:26:07</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>
