mmcdole

Results 61 comments of mmcdole

I agree, this should be something we support. I honestly never expected people to use ParseURL() very much, and instead expected them to make their own HTTP requests and feed...

@requaos I like the idea of the variadic parameter. I think that would be a good idea. Some items in Options that I know people have requested: - ETAG -...

Unfortunately, this is considered an invalid feed per the spec: > RSS 2.0 adds that capability, following a simple rule. A RSS feed may contain elements not described on this...

Let me take a look at what feedparser is doing for this case. Python's dynamic nature may be helping them. So far, the only thing I can think of is...

@ayn, you should squash your commits for this work. Also, it seems like this PR contains more changes than just the status bar change. Why is REMenuContainerView deleted?

@kurtmckee is it possible to do this? For example, I'm writing a podcast app. I would prefer to have `itunes:author` take precedence over any of the other `feed.author` elements. I'd...

I believe the issue is this in util.py: https://github.com/kurtmckee/feedparser/blob/8c6294042b749544ad87f73cf55da143bf55e921/feedparser/util.py#L91 ``` python if isinstance(realkey, list): for k in realkey: if dict.__contains__(self, k): return dict.__getitem__(self, k) elif dict.__contains__(self, realkey): return dict.__getitem__(self, realkey)...

If we are unable to pop Safari's search dialog due to security, it would still be possible for sVim to use `window.find()` to cycle through searches. You would just need...

If you find yourself needing any help, I can lend a hand on an i3 section as that is what I run on my X1. Besides just the WM itself,...

I've enabled the following two options for the trackpad by creating the following file: `vim /etc/X11/xorg.conf.d/99-libinput-custom-config.conf` ``` Section "InputClass" Identifier "Touchpad Typing" MatchDriver "libinput" MatchProduct "SynPS/2 Synaptics TouchPad" Option "DisableWhileTyping"...