id int64 393k 2.82B | repo stringclasses 68
values | title stringlengths 1 936 | body stringlengths 0 256k ⌀ | labels stringlengths 2 508 | priority stringclasses 3
values | severity stringclasses 3
values |
|---|---|---|---|---|---|---|
43,801,163 | rust | backtraces broken on the Android bot | PIE is now required by Android (#17437) but it breaks backtrace support on the Android bot. It may just need to be updated to the current NDK / Android versions.
| O-android,C-bug | medium | Critical |
44,108,389 | kubernetes | Make deleted objects available from API for some time. | Users should be able to get information about deleted objects from the API for some time after deletion.
This cannot be by name, since the name may need to be reused immediately. So it has to be by UID (the time-space unique identifier described in #1225). This means that:
1. need to keep deleted objects in etcd f... | priority/backlog,area/api,area/etcd,area/usability,sig/api-machinery,kind/feature,lifecycle/frozen,sig/etcd | medium | Major |
44,366,441 | nvm | Convenience installation feature for upgrading an installed Node.js version | It would be helpful to have a convenience `nvm` command - e.g., `nvm upgrade <newVersion> [<oldVersion>]` - that bundles the following 3 operations, so as to facilitate _upgrading_ a locally installed version:
- install new Node.js version `<newVersion>`
- copy global packages from version `<oldVersion>`, which defaul... | feature requests | low | Critical |
44,580,957 | electron | Idea of runtime mode | Currently developers using atom-shell have to ship the whole atom-shell binaries when distributing their apps, but since now we have [asar](https://github.com/atom/asar) as atom-shell's app format, we may add runtime mode to atom-shell like [Adobe Air](http://www.adobe.com/products/air.html) or [Chrome Hosted Apps](htt... | discussion | high | Critical |
44,634,459 | TypeScript | Duplicate identifier error does not show up for method signatures | ``` TypeScript
interface A {
a();
a();
a();
}
```
Expected:
```
file.ts(2,5): error TSxxxx: Duplicate overload signature for 'a'.
file.ts(3,5): error TSxxxx: Duplicate overload signature for 'a'.
file.ts(4,5): error TSxxxx: Duplicate overload signature for 'a'.
```
Actual:
```... | Bug,Help Wanted | low | Critical |
44,650,229 | bitcoin | Unix Domain Sockets | Does bitcoind support unix domain sockets? I don't see any mention of it. If not, I would like to be able to use them for RPC instead of regular sockets. This will reduce the attack surface when there is not Internet communication needed.
| Feature,RPC/REST/ZMQ | low | Minor |
44,913,544 | rust | LLVM bindings have become incorrect in places. | Because of x86/x86_64 specifics, certain LLVM functions that used to return `unsigned int` and now return `unsigned long long` continue to be usable, ending up in truncated return values.
``` rust
pub fn LLVMABISizeOfType(TD: TargetDataRef, Ty: TypeRef) -> c_uint;
```
``` c
unsigned long long LLVMABISizeOfType(LLVMTa... | A-LLVM,A-testsuite,T-compiler,I-unsound,E-help-wanted,C-bug | low | Major |
44,929,293 | rust | Unable to export unmangled dll entry points for stdcall | Hi.
After some questions on IRC I think this might be a bug or at least a missing feature:
I'd like to export functions with a name of my choosing. I knew about #[no_mangle] and learned about #[export_name] on IRC, but both fail to work in my case.
Code/test.rs:
```
pub extern "stdcall" fn stdcall() {
}
#[no_mangle... | A-linkage,O-windows,C-enhancement | medium | Critical |
45,099,860 | youtube-dl | [site-support-request] turtlediary.com | ```
D:\youtube-dl>youtube-dl.exe --verbose http://www.turtlediary.com/kindergarten-games/science-games/plant-life-cycle.html
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['--verbose', 'http://www.turtlediary.com/kindergarten-games/science-games/plant-life-cycle.html']
[debug] Encodings: ... | site-support-request | low | Critical |
45,235,490 | youtube-dl | [site-support-request] educreations.com | ```
D:\youtube-dl>youtube-dl.exe --update
youtube-dl is up-to-date (2014.10.05.2)
D:\youtube-dl>youtube-dl.exe --verbose https://www.educreations.com/lesson/view/fact-and-opinion/18906630/?ref=appemail
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['--verbose', 'https://www.educreations.... | site-support-request | low | Critical |
45,259,606 | youtube-dl | problem www.ruscircus.ru | $ youtube-dl --verbose http://www.ruscircus.ru/video?act=play&vid=754
[3] 4500
mryazanov-2:~ maximryazanov$ [debug] System config: []
[debug] User config: []
[debug] Command-line args: ['--verbose', 'http://www.ruscircus.ru/video?act=play']
[debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8
[debug] youtu... | site-support-request | low | Critical |
45,396,864 | rust | Recursive traits should be allowed when boxing | The following should work:
``` rust
trait Future<T> {
fn take(self) -> T;
}
trait Stream<T>: Future<Option<(T, Box<Stream<T>>)>> {
}
pub fn main() {
println!("zomg");
}
```
| A-type-system,A-trait-system,T-lang,C-feature-request,T-types | low | Major |
45,423,396 | kubernetes | Image name/tag resolution preprocessing pass | As discussed in #1007, #1694, #1132, and elsewhere, Docker image names/tags are not immutable. If one wants a repeatable deployment, predictable rollbacks, etc., they need to be resolved at deployment time and recorded. I expect rollbacks to be driven off of version-controlled configuration data, which means they need ... | priority/important-soon,area/app-lifecycle,area/images-registry,sig/apps,lifecycle/frozen | medium | Critical |
45,718,265 | youtube-dl | DL on mytpi.com | kde$ youtube-dl --verbose http://www.mytpi.com/exercises#figure_4_vertical_bridge
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['--verbose', 'http://www.mytpi.com/exercises#figure_4_vertical_bridge']
[debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8
[debug] youtube-dl vers... | site-support-request | low | Critical |
45,873,174 | You-Dont-Know-JS | "this & object prototypes": cover strict mode `this` differences | Apparently in ES6 strict mode, `this` values of primitives are no longer boxed. News to me!
``` js
function foo() {
"use strict";
console.log(typeof this);
}
foo.call("hello"); // "string"
```
https://people.mozilla.org/~jorendorff/es6-draft.html#sec-ecmascript-function-objects
"...means that the this value i... | for second edition | low | Major |
45,905,242 | rust | Investigate how LLVM deals with huge stack frames | According to @thestinger, LLVM has UB when dealing with stack frames that have size of the order of magnitude of the address space. Investigate this and add the needed fixes.
This is related to #17913 and not dealt with in #18041.
| A-LLVM,A-codegen,P-low,T-compiler,I-unsound,C-bug | low | Major |
45,927,411 | youtube-dl | Keep Uploaded Date/Time after merging | eg. when downloading a file using -f bestvideo+bestaudio the resulting file has current date/time instead of when the original video was uploaded.
| request | low | Minor |
46,094,525 | bitcoin | Headers-first is disconnecting nodes added via config. | Just a note that if your headers first (HF) sync is latched on to a relatively fast node other nodes continue to be disconnected even where other nodes are nodes added via -addnode in the config/start-up.
I would guess this is not a major issue.
I saw this when I tested a HF node. Also had two other regular nodes pr... | P2P | low | Major |
46,125,256 | TypeScript | Support for wildcards in command line | It would be great if we could have wildcard support for files.
``` bash
tsc -w -m amd -t es5 **/*.ts
```
Currently we need to use unix commands.
``` unix
find . -name "*.ts" | xargs tsc -w -m amd -t es5
```
There are also cases when we would like to have wildcards for multiple different folders
``` bash
tsc -w -m ... | Suggestion,Help Wanted | low | Major |
46,174,814 | nvm | Testing the install script | I was thinking about @ljharb's [comment](https://github.com/creationix/nvm/pull/549#issuecomment-58923065) about the install script being untested, and had a look at how we could test it.
The testing tools that seem of interest to me are [Roundup](https://github.com/bmizerany/roundup), [shunt](https://github.com/odb/s... | installing node,testing,pull request wanted | low | Critical |
46,408,664 | youtube-dl | Site Support Request: tv.jw.org | This is a new one - very valuable to those who use it, but unfortunately not supported. I did update to version 2014-10-18 to be sure. Here is the output: This is over 4 hours (!) and unwatchable live from Ireland due to bottlenecks somewhere. The url underneath is folded.
```
bash-4.3$ youtube-dl/youtube-dl --verbo... | site-support-request | low | Critical |
46,747,700 | youtube-dl | radio-canada.ca site support request | hello
it would be great if this would work:
```
anarcat@angela:Downloads$ python ./youtube-dl --verbose http://ici.radio-canada.ca/widgets/mediaconsole/medianet/7184272
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['--verbose', 'http://ici.radio-canada.ca/widgets/mediaconsole/medianet/... | site-support-request | low | Critical |
46,753,414 | youtube-dl | Support for http://rosenwasser.co.uk | http://rosenwasser.co.uk requires you to log in to a see the videos. This is usually done through your web browser of course. How can you use youtube-dl on such a web site? Basically, how do you log in with youtube-dl?
Unfortunately I can't give a username and password but maybe the problem and solution is well kno... | site-support-request | low | Critical |
46,934,027 | rust | rustdoc output directory structure leaks home directory structure | Since Rust-CI has been continuously failing I've been looking to move my docs to GitHub Pages. This led me to notice that when `rustdoc` is called with an absolute path as input (as `cargo` does) the files in doc/src will show your entire home directory layout.
This is problematic not only because of the leak of someo... | T-rustdoc,C-bug,A-reproducibility,E-needs-investigation | low | Major |
46,973,290 | three.js | Loaders | List of loaders that would be nice to have:
## 3D
- [x] 3DMLoader
- https://www.rhino3d.com/opennurbs
- [x] 3DSLoader
- http://en.wikipedia.org/wiki/.3ds
- http://dzzd.net/3DSChunkDefinitions.html
- http://k3d.ivank.net/demos/parsing3DS.html
- [x] 3MFLoader
- [x] AMFLoader
- http://en.wikipedia.org/... | Enhancement,Loaders | high | Critical |
47,274,889 | youtube-dl | ERROR: Unsupported URL: https://cloud.mail.ru/....mov | youtube-dl --verbose 'http://cloud.mail.ru/public/fd0f575a49ef/%d0%94%d0%a2%d0%9f%2d4.mov'
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['--verbose', 'http://cloud.mail.ru/public/fd0f575a49ef/%d0%94%d0%a2%d0%9f%2d4.mov']
[debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8
... | site-support-request | low | Critical |
47,513,380 | youtube-dl | Support request: youwatch.org | Support request: youwatch.org
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['-g', 'http://youwatch.org/embed-fbfbjp9sxxrd-640x391.html', '--verbose']
[debug] Encodings: locale UTF-8, fs UTF-8, out UTF-8, pref UTF-8
[debug] youtube-dl version 2014.10.30
[debug] Python version 2.7.6 - Lin... | site-support-request | low | Critical |
47,580,495 | neovim | better 'autoread' (file-change detection) | 1. Libuv supports file notifications
2. Working with files that are also changed by other editors in (n)vim is finnicky at best, unless of course I'm misconfiguring. In that case mea culpa.
3. As mentioned by http://andre.arko.net/2013/09/11/vim-is-the-worst-editor/, if you have a lot of buffers open and some paranoid ... | enhancement,events,filesystem,options | high | Critical |
47,667,338 | rust | DST/custom coercions | Tracking issue for RFC rust-lang/rfcs#982.
Current state:
- [x] Implementation work (largely done)
- [ ] Stabilization -- the `CoerceUnsized` trait is unstable and we wish to revisit its design before stabilizing, so for now only stdlib types can be "unsized"
Things to consider prior to stabilization
* Int... | B-RFC-approved,A-DSTs,T-lang,C-tracking-issue,A-coercions,S-tracking-needs-summary | medium | Critical |
47,773,932 | TypeScript | Gracefully handle template literal properties in the parser | ``` TypeScript
var x = {
a: "Hello"
`b`: 123
}
```
Right now, the parser encounters the template string, decides it should bail out of object literal parsing, and we more or less recover thinking we have something like the following:
``` TypeScript
var x = ({ a: "Hello" } `b`) : 123 }
```
So we'll report an ... | Help Wanted,Effort: Moderate,Domain: Error Messages,Experience Enhancement | low | Critical |
47,791,943 | youtube-dl | Unable to download thatguywiththeglasses.com's videos. | Example:
$ youtube-dl -v http://thatguywiththeglasses.com/videolinks/thatguywiththeglasses/nostalgia-critic/45455-rise-of-the-commercials
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['-v', 'http://thatguywiththeglasses.com/videolinks/thatguywiththeglasses/nostalgia-critic/45455-rise-of... | site-support-request | low | Critical |
47,925,843 | nvm | `ksh` doesn't support `local` | `ksh` doesn't support `local` with portable function syntax, and `dash` doesn't support `typeset`.
| bugs,shell: ksh,pull request wanted | low | Major |
47,981,826 | rust | No way to have + or * as separator token in macros | I'm trying to write a macro that sums a list of expressions, but it doesn't work because it's not possible to have + or \* as the seperator token. For example:
``` rust
macro_rules! sum {
(
$($e:expr)+ => (
$($e)++ // ???
)
}
```
It'll interpret is as there being no seperator token, and it see... | C-enhancement,A-macros,T-lang | low | Major |
47,999,195 | neovim | Feature: text objects as command ranges | Something I've always wished Vim had is the ability to use text objects as command ranges, so you could do:
``` vim
:i}norm ^i// <CR>
```
to comment out lines inside a pair of curly brackets (that's a bad example, but it's the only one I could think of that doesn't use one of my user defined commands) rather than... | enhancement | low | Major |
48,013,530 | kubernetes | Policies on Labels and Selectors | Suppose there is one namespace with two users.
- Trustworthy Tammy is trusted to manage the prod pods.
- Fat-fingered Fred is only trusted to manage the dev pods. fred is prone to making mistakes.
Tammy makes a service that selects pods with "type=prod".
Now, say Fred starts some buggy code in pods. He meant to app... | area/security,priority/awaiting-more-evidence,sig/service-catalog,lifecycle/frozen | medium | Critical |
48,023,075 | rust | "Ghost" methods in rustdoc for cross-crate trait impls | Consider the following MWE:
```rs
pub trait Foo { fn root(); }
impl Foo for Option<usize> {
fn root() {}
}
```
Compiling, and navigating to `doc/lib/index.html?search=root` shows a clickable `core::option::Option::root` result. Clicking on it takes you to `doc/core/option/enum.Option.html#method.root` -- the pa... | T-rustdoc,C-bug | low | Major |
48,026,235 | neovim | Feature: Elastic Tabstops | http://nickgravgaard.com/elastictabstops/
Would be nice if neovim could have a mode to support elastic tabstops which is I think a very good solution to the long standing tab or space problem among programmers who have to read other's source code written in other less ideal editors.
I heard that this requires modifyi... | enhancement | high | Critical |
48,113,604 | rust | Cleanup and consolidate operator/method dispatch code | Once upon a time, both operator dispatch and method lookup went through the same tangled, twisty paths. It was a mess. But lo, they were severed and made two. Each could follow its own path. Overall, this is progress. But there is still room for improvement:
1. The second half of "operator dispatch" is basically the sa... | C-cleanup,A-type-system,T-compiler,T-types | medium | Major |
48,142,274 | rust | Unexpected trait behavior with default_type_params | This seems more like an error message issue than anything, but I was very confused for a while. Here is a repro:
``` rust
#![feature(unboxed_closures)]
#![feature(default_type_params)]
pub trait Invoke<A, R = ()> {
fn invoke(&mut self, args: A) -> R;
}
impl<A, R, F: Send + FnMut(A) -> R> Invoke<A, R> for F {
... | A-diagnostics,A-closures,T-compiler,C-bug,F-unboxed_closures | low | Critical |
48,153,553 | rust | Lifetime error messages should have better spans | This error has an arrow pointing where the lifetime issue is (though I don't know why it isn't more precise):
``` rust
struct Mine<'a> { s: &'a str }
impl <'a>Iterator<&'a str> for Mine<'a> {
fn next(&mut self) -> Option<&str> { Some("h") }
}
fn main() {}
```
```
<anon>:4:5: 4:53 error: method `next` has an inc... | A-diagnostics,P-medium,T-compiler,C-bug | low | Critical |
48,168,790 | neovim | UI: custom placement of statusline, tabline, winbar, cmdline | As long as ncurses are used, it should be pretty straightforward to add option for showing the _statusline_ and the _cmdline_ at the top (under the tab list if any) instead of at the bottom.
This is a feature I've been waiting for for more than 6 years. I have all important stuff in all applications at the top and _(n... | enhancement,ui,ui-extensibility,statusline | medium | Critical |
48,217,140 | TypeScript | No way to type an object with null prototype | Currently the base type of all objects in TS seems to be `{}`, which looks like an empty type but actually has members inherited from the Object object. This leaves no way to express a type with null prototype.
``` javascript
var foo: ??? = Object.create(null);
foo.toString(); // Want a compile error here
```
I did a... | Suggestion,Needs Proposal | medium | Critical |
48,403,101 | rust | monomorphization recursion limit error should be caught earlier | This little program gives a "reached the recursion limit during monomorphization" error.
``` rust
fn main() {
go(range(0, 5u));
}
fn go<T>(it: T) where T: Iterator<uint> {
let mut p = it;
match p.next() {
Some(_) => {
go(p.by_ref());
}
None => {}
}
}
```
http://is.... | A-type-system,C-enhancement,T-compiler,I-monomorphization,T-types | low | Critical |
48,553,075 | youtube-dl | Error downloading GDC video | Actually it's an audio file, not a video. Verbose output is below. Note that downloading free content (audio & video) seems to work. Just in case it might be a problem, there is a `*` character in my password (which I can't change). I'm using quotes on the command line (`-p "my*password"`)
```
[debug] System config: [... | account-needed | low | Critical |
48,587,265 | neovim | tcsh shell escaping | Backgroud:
I compile & install both Python[2.7.8] and Neovim in $HOME/INSTALL. And I have also added $HOME/INSTALL/bin to $PATH.
When start nvim, below 'COMMENT OUT' check will fail.
```
...
" \ && index(s:supported, system('python'.s:get_version)) >= 0 --> COMMENT OUT
...
let s:import_result = system(s:pytho... | environment,bug-vim | medium | Critical |
48,627,533 | TypeScript | Parameter info missing for generics | Hi,
**VS**: 2013 Update 4 RC
**TS**: 1.3
I believe we used to get help with the generic parameter at the point indicated below:
``` TypeScript
class Foo<TDescription>{ }
var foo = new Foo<
```
The parameter info only appears after the generic parameter has been filled in and the parenthesis opened:
``` TypeScript... | Suggestion,Help Wanted | low | Minor |
48,916,771 | neovim | CAPSLOCK detection provider | Users/plugins should be able to easily detect whether capslock is enabled. This can be done with a provider using these strategies:
- X11: `xset -q | grep Caps`
- Windows: http://stackoverflow.com/questions/13905342/winapi-how-to-get-the-caps-lock-state
- we can probably bake this into the nvim core without much t... | enhancement,mappings,normal-mode | low | Major |
49,096,307 | rust | Coherence and blanket impls interact in a suboptimal fashion with generic impls | There is a tricky scenario with coherence rules and blanket impls of traits. This manifested as #18835, which is an inability to implement `FnOnce` manually for generic types. It turns out to be a legitimate coherence violation, at least according to the current rules (in other words, the problem is not specific to `Fn... | A-type-system,C-enhancement,T-lang,T-types | medium | Critical |
49,187,331 | bitcoin | Initial connection management | Pointing two peers at each other via the "addnode" / "connect" args in bitcoin.conf on init results in multiple (3 as observed in getpeerinfo on regtest) connections (on different ports) and, hence, chatty traffic (say inventory exchange) when running off of the current master. Connecting via the "addnode" RPC call aft... | Bug,P2P | low | Major |
49,306,579 | javascript | Best practices for promises? | First of all, great job on this guide, I agree with it almost 100%. All of this should really be common knowledge, but I sure as hell didn't know most of these things when I started, so kudos for writing it all down.
Now, since promises have been standardized and a lot of people have started using them, it would be ni... | enhancement,question,pull request wanted | high | Critical |
49,380,447 | gin | Automatically generate RESTful API documentation with Swagger | One thing I really like about [go-restful](https://github.com/emicklei/go-restful) is their [built-in Swagger integration](https://github.com/emicklei/go-restful/blob/master/examples/restful-user-service.go). Check out the example project: https://github.com/emicklei/mora#swagger
Some things I really love about Gin is... | enhancement | high | Major |
49,435,213 | neovim | :! (bang) and system() are not interactive | If I type `!git add -p` it loops over the output and only stops if i press ctrl-c.
| bug,enhancement,terminal | medium | Critical |
49,436,743 | TypeScript | Allow classes to be parametric in other parametric classes | This is a proposal for allowing generics as type parameters. It's currently possible to write specific examples of monads, but in order to write the interface that all monads satisfy, I propose writing
``` javascript
interface Monad<T<~>> {
map<A, B>(f: (a: A) => B): T<A> => T<B>;
lift<A>(a: A): T<A>;
join<A>(t... | Suggestion,Help Wanted | high | Critical |
49,659,354 | youtube-dl | Downloading mp3 but message says video | Simple problem. When you download an audio file e.g. from soundcloud (thanks for supporting it!) then the message looks as following:
```
[download] Downloading video #8 of 14
```
We could change it to "Downloading file" or make it dependent on the file extension.
| request | low | Minor |
49,685,083 | youtube-dl | Site Request: UOL Mais | Example:
http://mais.uol.com.br/view/w72sr1ihch6f/filha-diz-que-largou-a-faculdade-de-direito-para-maquiar-defuntos-04020C9A3562D8915326?types=A&
Should support this kind of url ^
ps: same video above has a "short" url, http://mais.uol.com.br/view/15261550 not sure if this url should be supported as well, since it j... | site-support-request | low | Minor |
49,850,452 | You-Dont-Know-JS | "this & object prototypes": node.js REPL environment differences | Just started reading, great book. I got to here:
https://github.com/getify/You-Dont-Know-JS/blob/master/this%20&%20object%20prototypes/ch2.md#implicitly-lost
This snippet:
``` js
function foo() {
console.log( this.a );
}
var obj = {
a: 2,
foo: foo
};
var bar = obj.foo; // function reference/alias!
var ... | for second edition | low | Minor |
49,881,476 | youtube-dl | Site Request: nos.nl. | For example, [this url](http://nos.nl/artikel/2005405-rutte-meer-openheid-financi-n-navo.html) contains one video on the right-hand side of the screen. It would be nice if `youtube-dl` would notice that, and subsequently download the video.
Thank you.
| site-support-request | low | Major |
49,962,345 | TypeScript | Consider property access a form of type guards | This is a proposal for using property access as another form of type guards (see #900) to narrow union types. While we're investigating expanding the power of type guards (#1007) this feature would support the natural style that JavaScript programmers have in their code today.
### Using property access to narrow union ... | Suggestion,Awaiting More Feedback | high | Critical |
50,438,399 | rust | Surpress, mark, or order superflous trait resolution type errors correctly | During a `rusti` session on IRC, a confusing class of type errors has been discovered. This piece of code:
```
fn main() {
"1 2 3".split(" ").collect::<Vec<_>>()
}
```
Currently emits these two error messages:
```
figment_sketch.rs:2:13: 2:23 error: the trait `core::str::CharEq` is not implemented for the type `... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
50,460,850 | TypeScript | Some comments not emitted - upgrade 1.0.1 to 1.3.0 | > more file.ts
>
> ``` javascript
> // test
> var f = ''
> // test #2
> module foo {
> function bar() { }
> }
> // test #3
> module empty {
> }
> // test #4
> ```
>
> more file.js
>
> ``` javascript
> // test
> var f = '';
> // test #2
> var foo;
> (function (foo) {
> function bar() {
> }
> })(foo ||... | Bug,Help Wanted | low | Major |
50,500,891 | youtube-dl | Support iltalehti.fi (first? tabloid website of Finland) | ERROR: type should be string, got "https://en.wikipedia.org/wiki/Iltalehti\n\n$ youtube-dl --verbose http://www.iltalehti.fi/iltvdigi/201411290140927_v4.shtml\n[debug] System config: ['--prefer-free-formats']\n[debug] User config: []\n[debug] Command-line args: ['--verbose', 'http://www.iltalehti.fi/iltvdigi/201411290140927_v4.shtml']\n[debug] Encodings: locale UTF-8, fs UTF-8, out UTF-8, pref UTF-8\n[debug] youtube-dl version 2014.11.27\n[debug] Python version 2.7.5 - Linux-3.17.2-200.fc20.x86_64-x86_64-with-fedora-20-Heisenbug\n[debug] exe versions: ffmpeg 2.1.3, ffprobe 2.1.3\n[debug] Proxy map: {}\n[generic] 201411290140927_v4: Requesting header\nWARNING: Falling back on generic information extractor.\n[generic] 201411290140927_v4: Downloading webpage\n[generic] 201411290140927_v4: Extracting information\nERROR: Unsupported URL: http://www.iltalehti.fi/iltvdigi/201411290140927_v4.shtml; please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; type youtube-dl -U to update. Be sure to call youtube-dl with the --verbose flag and include its complete output.\nTraceback (most recent call last):\n File \"/usr/bin/youtube-dl/youtube_dl/extractor/generic.py\", line 651, in _real_extract\n doc = parse_xml(webpage)\n File \"/usr/bin/youtube-dl/youtube_dl/utils.py\", line 1411, in parse_xml\n tree = xml.etree.ElementTree.XML(s.encode('utf-8'), **kwargs)\n File \"/usr/lib64/python2.7/xml/etree/ElementTree.py\", line 1300, in XML\n parser.feed(text)\n File \"/usr/lib64/python2.7/xml/etree/ElementTree.py\", line 1642, in feed\n self._raiseerror(v)\n File \"/usr/lib64/python2.7/xml/etree/ElementTree.py\", line 1506, in _raiseerror\n raise err\nParseError: syntax error: line 24, column 0\nTraceback (most recent call last):\n File \"/usr/bin/youtube-dl/youtube_dl/YoutubeDL.py\", line 553, in extract_info\n ie_result = ie.extract(url)\n File \"/usr/bin/youtube-dl/youtube_dl/extractor/common.py\", line 240, in extract\n return self._real_extract(url)\n File \"/usr/bin/youtube-dl/youtube_dl/extractor/generic.py\", line 1044, in _real_extract\n raise ExtractorError('Unsupported URL: %s' % url)\nExtractorError: Unsupported URL: http://www.iltalehti.fi/iltvdigi/201411290140927_v4.shtml; please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; type youtube-dl -U to update. Be sure to call youtube-dl with the --verbose flag and include its complete output.\n" | site-support-request | low | Critical |
50,554,298 | youtube-dl | www.wienerstadtgespraech.at is not supported | E.g. http://www.wienerstadtgespraech.at/video/bude/
```
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['-F', '--verbose', 'http://www.wienerstadtgespraech.at/video/bude/']
[debug] Encodings: locale UTF-8, fs UTF-8, out UTF-8, pref UTF-8
[debug] youtube-dl version 2014.11.23.1
[debug] Pyt... | site-support-request | low | Critical |
50,723,628 | youtube-dl | [youtube.com] Issue with detecting already downloaded files | Hello,
I noticed that youtube-dl is not able to detect wether a youtube video is already downloaded if it was downloaded as two separated dash streams and merged with avconv and both streams are deleted afterwards.
For example if you download a video with the format 299+141 youtube-dl only checks if there are files c... | request | low | Minor |
50,888,009 | youtube-dl | video download from serviziopubblico.it | [debug] System config: []
[debug] User config: []
[debug] Command-line args: ['--verbose', 'http://www.serviziopubblico.it/puntate/ricchezza-e-nobilta/']
[debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8
[debug] youtube-dl version 2014.12.03
[debug] Python version 2.7.6 - Darwin-14.0.0-x86_64-i386-64bit
... | site-support-request | low | Critical |
50,913,671 | rust | Method lookup goes down the auto-deref rabbit hole when it doesn't need to | Here's a pathological example of two types, each implementing `Deref` on the other:
``` rust
use std::ops::Deref;
use std::rc::Rc;
struct Foo;
struct Bar;
impl Deref<Bar> for Foo {
fn deref<'a>(&'a self) -> &'a Bar {
panic!()
}
}
impl Deref<Foo> for Bar {
fn deref<'a>(&'a self) -... | P-low,T-lang,C-bug | low | Critical |
50,938,499 | youtube-dl | [site-support-request] Please add support for www.icourse163.org | PeterdeMacBook-Pro:~ Lin$ youtube-dl --verbose http://www.icourse163.org/learn/nudt-9004?tid=109001#/learn/content?type=detail&id=200005&cid=216009
[1] 34720
[2] 34721
PeterdeMacBook-Pro:~ Lin$ [debug] System config: []
[debug] User config: []
[debug] Command-line args: ['--verbose', 'http://www.icourse163.org/learn/nu... | site-support-request | low | Critical |
51,272,416 | youtube-dl | Add support for nzz.ch | rudolffischer@BueroPC-RF:~$ youtube-dl "http://www.nzz.ch/panorama/30-jahre-herzschmerz-aus-saas-fee-1.18438209" -v
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['http://www.nzz.ch/panorama/30-jahre-herzschmerz-aus-saas-fee-1.18438209', '-v']
[debug] Encodings: locale UTF-8, fs UTF-8, ou... | site-support-request | low | Critical |
51,276,401 | go | proposal: spec: various changes to := | <pre>This code is subtly wrong:
func f() (err os.Error) {
v, err := g();
if err != nil {
return;
}
if v {
v, err := h();
if err != nil {
return;
}
}
}
The := in the if statement causes a new err variable that shadows the
return parameter.
Maybe doing this should be an error. Maybe re... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
51,276,493 | go | cmd/vet: warn about unused struct or array, ignoring assignment to field or element | by **RyanneDolan**:
<pre>What steps will reproduce the problem?
v := new(struct{i int})
v.i = 1
What is the expected output? What do you see instead?
Should get "v declared and not used" error. Instead, compiles fine.
What is your $GOOS? $GOARCH?
linux/386
Which revision are you using? (hg identify)... | help wanted,NeedsFix,Analysis | low | Critical |
51,276,517 | go | gccgo: compilation fails on Darwin | by **f.guerrieri**:
<pre>What steps will reproduce the problem?
1. After the fix of <a href="https://golang.org/issue/392">issue #392</a> I updated the svn repo
2. from a clean objdir run configure and make
3. wait for the compilation to fail
What is the expected output? What do you see instead?
go1: warning: intern... | ExpertNeeded,help wanted,NeedsInvestigation | medium | Critical |
51,277,185 | go | cmd/cgo: cannot call functions with variable-argument lists. | by **akidan**:
<pre>A package such as the following will not compile with cgo.
(printf is a contrived example, but this would be useful for bridging objective c
through id objc_msgSend(id self, SEL op, ...);)
--- (file foo.go)
package foo
// #include <stdio.h>
import "C"
func PrintStuff() {
C.p... | NeedsInvestigation | low | Major |
51,277,467 | go | os/v2: fix inconsistent casing in names | <pre>Is there any sort of rule about the casing of functions used in the "os"
package? Looking through, it doesn't sound like it's very easy to recall whether a
given function should be called LikeThat or Likethat.
For instance:
Mkdir
MkdirAll
TempDir
Getenv
ForkExec
Readlink
ReadAt
Readdir
It feels very ... | v2,NeedsInvestigation | medium | Major |
51,277,898 | go | x/build: set up a qemu builder | by **m@capitanio.org**:
<pre>I noticed a significant improvements in the arm tool chain :-)
I think it makes now a sense to take a closer look at bugs
in different environments.
The first shot is a qemu in user mode:
qemu-arm version 0.12.5
The host is (ubuntu 10.10)
GOARCH=arm
GORUN=qemu-arm
hg identify ba58b167f1fc... | help wanted,Builders,NeedsInvestigation,new-builder | medium | Critical |
51,278,171 | go | cmd/cgo: add C.WcharString | <pre>for calling routines that need a wchar_t*</pre>
| help wanted,FeatureRequest | medium | Major |
51,278,400 | go | cmd/compile: 1.3MB program takes 290MB of memory to compile | <pre>When compiling pkg/exp/eval or test/64bit.go, RSS memory usage using 5g or 6g exceeds
100mb.
What is the expected output?
RSS usage should be more inline with other packages, around 10-20 mb
What do you see instead?
When compiling pkg/exp/eval or test/64bit.go, RSS memory usage using 5g or 6g exceeds
100mb.
... | Performance | low | Major |
51,278,874 | go | cmd/link: generate mingw-compatible symbol table | <pre>As per summary.</pre>
| NeedsInvestigation | low | Major |
51,279,108 | go | image/jpeg: chroma downsampling ratios are restricted | by **laeuter**:
<pre>What steps will reproduce the problem?
1. Try to decode my JPEG photos
What is the expected output?
They should be decodable
What do you see instead?
A good number is rejected with the UnsupportedError "chroma downsample ratio".
Inspection show that the (h,v) pairs of the components ar... | NeedsInvestigation | medium | Critical |
51,279,131 | go | x/pkgsite: generate static docs | <pre>It is fairly trivial to compile a given Go version and run the doc server locally to
search for an older API.
But it would be nice if golang.org provided access to docs per release. One simple
solution to this is to add an option to godoc to generate static docs on disk -- just a
tree of static files (search woul... | NeedsInvestigation,FeatureRequest,pkgsite | high | Critical |
51,279,198 | go | cmd/compile: include registerization info for gdb | <pre>What steps will reproduce the problem?
foo.go:
package main
import "os"
type I interface{}
func main() {
var i I = 1
os.Exit(i.(int))
}
6g foo.go
6l foo.6
gdb 6.out
GNU gdb (GDB) 7.2-gg20
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <<a hre... | NeedsInvestigation | low | Critical |
51,279,283 | go | cmd/gofix: typechecker should vet input | <pre>in gofix:
Method entries require "func()".
Func entries require not having it.
both should be consistent, and the
type checker should panic when presented
with input it doesn't understand.</pre>
| NeedsInvestigation | low | Major |
51,279,382 | go | cmd/compile: static init maps should never generate code | <pre>so that unreferenced maps can be dropped by linker</pre>
| Performance,NeedsInvestigation,binary-size | high | Critical |
51,279,393 | go | cmd/go: distingush between command line and gui apps on windows | <pre>Something that is controlled by "-H windows" / "-H windowsgui" flag
in 8l/6l at this moment.</pre>
| OS-Windows | low | Major |
51,279,634 | go | cmd/compile: why are stack frames so large? | <pre>In src/cmd/go, scanPackage has a 1816-byte stack frame on my 64-bit Mac.
Quickly counting local variables I see about 46 words worth of automatics,
so 368 bytes. Where is the rest?</pre>
| Performance,help wanted | medium | Major |
51,279,872 | go | x/tools/build/dashboard: email notify on subrepo breakages | <pre>Send mail when a sub-repository fails to build.</pre>
| NeedsInvestigation | low | Major |
51,279,949 | go | go/doc: collect methods from embedded interfaces | <pre>Summary says it all.</pre>
| NeedsInvestigation | low | Major |
51,280,143 | go | proposal: spec: cannot assign to a field of a map element directly: m["foo"].f = x | <pre>The non-addressability requirement of map index expressions makes sense by itself since
we don't want a surviving pointer to a map element.
But surely it should be ok to have an invisible temporary pointer p to the respective
field which is just used during the assignment (*p = x). It seems that this doesn't
intr... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
51,280,192 | go | compress/flate: api to configure sliding window size | <pre>It seems there is no way to set window size in current compress/flate API. (it looks
const value now)
In <a href="http://tools.ietf.org/html/draft-tyoshino-hybi-websocket-perframe-deflate-05">http://tools.ietf.org/html/draft-tyoshino-hybi-websocket-perframe-deflate-05</a>, there
is a parameter to limit the LZ77 s... | help wanted | medium | Major |
51,280,193 | go | cmd/api: work with gccgo | <pre>And use it to track the two implementations stay in sync.</pre>
| Suggested | low | Major |
51,280,248 | go | x/pkgsite: list main programs / commands separately from other packages | <pre>This is a follow-up to the really nice update from Russ with CL:
<a href="http://golang.org/cl/5711058/">http://golang.org/cl/5711058/</a>
It will be nice to separate user ($GOPATH) commands from packages in directory listing.
One way to do this is to show user commands (from $GOPATH/src/cmd/*) in Commands view,
... | NeedsInvestigation,pkgsite | low | Major |
51,280,375 | go | x/build: allow installation in a different directory on macos | <pre>The default is /usr/local/go, but it would be nice if it could do the right things if
you elect to install elsewhere.</pre>
| help wanted,OS-Darwin | low | Major |
51,280,389 | go | gccgo: gcov branch coverage doesn't look quite right | <pre>What steps will reproduce the problem?
<a href="https://groups.google.com/d/msg/golang-nuts/g8DsZaN8o9Q/hsY_83nDGiMJ">https://groups.google.com/d/msg/golang-nuts/g8DsZaN8o9Q/hsY_83nDGiMJ</a>
What do you see instead?
look at a report like
<a href="http://alberts.github.com/home/alberts/deps/src/code.google.com/... | NeedsInvestigation | low | Major |
51,280,513 | go | x/crypto/ssh/terminal: file descriptor type is inconvenient | by **jeff.allen**:
<pre>What steps will reproduce the problem?
1. write terminal.MakeRaw(os.Stdout.Fd())
2. notice it doesn't compile
3. write terminal.MakeRaw(int(os.Stdout.Fd()))
What is the expected output?
It would be nicer if MakeRaw agreed with Fd() that the type of a file descriptor is
uintptr.
Which revisio... | NeedsInvestigation | low | Major |
51,280,542 | go | x/pkgsite: support custom build tags list | <pre>Before filing a bug, please check whether it has been fixed since
the latest release: run "hg pull", "hg update default", rebuild, and
retry
what you did to reproduce the problem. Thanks.
What steps will reproduce the problem?
If possible, include a link to a program on play.golang.org.
1. Ru... | NeedsInvestigation,FeatureRequest,pkgsite | medium | Critical |
51,280,551 | go | syscall: support 'mode 2 seccomp' on Linux | <pre>Ubuntu 12.04 LTS comes with "mode 2 seccomp" and the mainline kernel is
currenly in the process of accepting seccomp patches.
In short, "mode 2 seccomp" adds an ability to apply syscall filters to the
current process.
A good tutorial is <a href="http://outflux.net/teach-seccomp/">http://outfl... | NeedsInvestigation | medium | Critical |
51,280,591 | go | go/build: ImportDir accepts directories that don't exist | <pre>What steps will reproduce the problem?
<a href="http://play.golang.org/p/P1R9-ON7KU">http://play.golang.org/p/P1R9-ON7KU</a>
What is the expected output?
Some sort of error.
What do you see instead?
An incomplete build.Package describing something that doesn't exist.
Which compiler are you using (5g, 6g, 8g,... | Thinking | medium | Critical |
51,280,994 | go | encoding/xml: foo>bar,attr - foo ignored | by **krolaw**:
<pre>see - <a href="http://play.golang.org/p/KIbSFNO0Sz">http://play.golang.org/p/KIbSFNO0Sz</a>
In the case of foo>bar,attr
foo is ignored in both Marshal an Unmarshal. This behavior contradicts tags.
Thanks.</pre>
| Suggested | high | Critical |
51,281,324 | go | doc: document typical runtime requirements of Go programs | by **hadrien.grasland**:
<pre>While browsing the golang.org website, I was unable to find a satisfactory documentation
of the run-time requirements of Go programs.
I did explore the "tiny" toy OS kernel example of the Go source tree, but it
is now deprecated. The "How is the run-time support implemente... | Documentation,NeedsInvestigation | low | Major |
51,281,388 | go | proposal: spec: remove string(int) | <pre>The conversion of an integer to a string was put in very early to bootstrap formatted
printing, if I remember correctly. It's odd, though, and no longer necessary, if it ever
was. It also causes inconsistencies, since string(0xD800) cannot produce the UTF-8
encoding for that code point (by definition, surrogates a... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
51,281,707 | go | reflect: MakeInterface | <pre>Feature request for MakeInterface, to go along with the newly-arrived MakeFunc (Issue
1765).
Good goal would be gomock without source code generation.</pre>
| NeedsInvestigation | high | Critical |
51,281,861 | go | cmd/compile: output variable names in data race reports | <pre>It would be nice if in data race reports we print variable size and symbolic name as
well. E.g. "Read of 'foo.Bar'".</pre>
| RaceDetector | low | Minor |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.