I don't expect maintainers to drop everything and fix the bug. I would hope that they would at least send an acknowledgement that they have seen the bug and might work on it. A snarky "that is not a bug but a feature", "it has been fixed in the latest release", or "you are an idiot, do this instead" is better than silence.
If you post a module to CPAN, you have an obligation to maintain it. I suspect fixing bugs is more beneficial to the community than writing new, cool stuff. Even if it is really boring. The user has an obligation to report bugs if they encounter them so the maintainer is not in the dark. One big advantage of open source is that the user can provide a fix or at least a test case. The maintainer's responsiblity is to apply the patch if it is suitable. Not let it sit there gathering dust.
The best example is bug 27, a major limitation in URI which is only 5 years old. People have even provided patches.
Even better. (Score:1)
Some people have tickets that are old, but the original posters never responded to requests for more information (Net::Blogger).
Re: (Score:1)
And the maintainer doesn't have to go through huge amounts of effort to fix huge or poorly specified bugs. But there is a minimum amount of effort.
Take a deep breath (Score:2)
As a module author myself, I try to respond to all problems as quickly as I can. However, it's not part of my job and it's not very high on my life priorities. Although I try to be helpful and timely, I feel absolutely no obligation to respond to bug reports, fix modules, or otherwise do anything that's less important than whatever I decide I would li
Re: (Score:1)
At work, we do patch, subclass, and work around bugs. But nobody else ever sees those fixes. That is why users should have the courtesy to report bugs and ideally fix them. The maintainer should have the courtesy to respond. In the easy case, they check and apply the pa
Re: (Score:2)
This one is sad (Score:2)
Re: (Score:2)
It's not part of the core perl distribution. It may be part of Activestate's distribution, but that's not the same thing.
Re: (Score:2)
Re: (Score:2)
* It only breaks apart URIs, it doesn't put them back together
* The parser needs to break on either a ; or a &, not both of them at the same time. Although there shouldn't be both, I'm painfully aware that "shouldn't be" means "is".
* There is no way for the programmer to tell URI which delimiter to use. This is the rather troublesome part because it has implications
Re: (Score:2)
We had need of scanning URLs, not generating them. So, I'm embarrased to admin, I completely ignored the generation issue when figuring out a one-line patch and generating the bug report. Generating URLs is more complicated, because you'd need a way to specify whether you're going to emit them into HTML or XHTML. And the W3C recommendation isn't crystal clear on what the rules are. Oh yeah, and tests.
Sigh.
Re: (Score:1)
That appears to make no sense whatsoever.
Re: (Score:2)
More context. If you're generating a URL to go into HTML, you typically use & to separate paramaters. For XHTML, if you're playing by the rules, you have the option of using & or ;
Surprised me, too, but it's in the W3C recommendation.
Re: (Score:1)
But that rule applies to any content you put in XHTML or HTML documents. The fact that it’s a URI is a red herring.
Putting entity escaping into the URI processing code is bad distribution of responsibilities. It is the caller’s job to put the URI through entity escaping when the output necessitates it.
Re: (Score:2)
HTML doesn't require that the amperand (when used to separate key value pairs) be escaped in hrefs; XHTML does.
See http://www.w3.org/TR/xhtml1/#C_12 [w3.org]
Re: (Score:2)
Arg. That was supposed to be a preview, and not a post. I'd intended to add that while ensuring correct escape for XHTML is the programmers responsiblity, adding another layer of escaping into the pipeline after URI, rather than having a flavor of URI that knows how to escape for XHMTL, seems to me as thought it's putting the burden into the wrong place.
Re: (Score:1)
That makes the least sense yet. If the program is outputting URIs in HTML, it is outputting HTML, and so it has to deal with properly escaping content in other contexts anyway. What differentiates URIs from other content such that piercing the separation of concerns is sensible in their case?
Re: (Score:2)
But, like someone else said, the HTML escaping has nothing to do with the fact that it's an URL. Any attribute of a HTML tag ought to be escaped. It is an extra layer on top of the content, but it is not part of the content itself. For example, the content of the attribute bar in the tag <foo bar="a&b"> is "a
not accidental (Score:2)
We don't make CPAN module authors to sign any contracts. And even if we did, we could not enforce them, nor would we want to.
rollup (Score:2)
Re: (Score:1)
If it was a matter of an internal application where you can just patch and go, then the issue isn't so bad. However, if the module is a prereq for another module getting pushed to CPAN, maybe even a major release, it's pretty frustrating having to either put a hold on development, wait for a takeover and rerelease, or fork to get the job done.
I lucked out bi
Re: (Score:2)
Re: (Score:2)
Re: (Score:1)
Re: (Score:1)
Yeah, I agree. It’s the impenetrable silence that is a bother. The type of response matters little, as long as there is one.
Heck, even rejecting the bug saying “I don’t care, get lost” would be acceptable. At least then I know not to care anymore either and can proceed to evaluate my last-resort options (fork, switch modules, etc) with confidence that such was indeed necessary.
Re: (Score:2)