Felix Fontein
Felix Fontein
@etam interesting, it doesn't do that for me. @mkrizek I think removing `set` from `safe_eval` is a good idea, since Ansible doesn't support sets anyway (because there is no `set`...
I have ``` $ git --version git version 2.37.1 ``` Oh. And I think I noticed what's actually happening... It wasn't an untracked directory, but an untracked **symlink** pointing to...
I have the same problem, when trying to feed a Base64-encoded [CRL](https://en.wikipedia.org/wiki/Certificate_revocation_list) in DER format to the `/base64/` endpoint.
Maybe leaving the `.decode("utf-8")` away in https://github.com/postmanlabs/httpbin/blob/master/httpbin/core.py#L1309 would fix the problem?
Well, that would require some work on the `Post` class. There's already an issue for that: #1709. You can of course also create your own subclass of `Post` and do...
Actually, most of the times `source_path` is only used to have something to sort posts by, or to show in error/status messages for the user of Nikola. There is only...
It would also be good if `copy_sources` wouldn't have to use some logic to guess the correct source paths for translated posts. Currently it uses `post.source_path` together with `utils.get_translation_candidate`. It...
The remaining uses of `source_path` are for: 1. Final tie-breaking when sorting posts (see `Nikola.sort_posts_chronologically`); 2. Allowing to link via source path (see `Nikola.filename_path`); 3. For various error/warning messages where...
@remram44: I disagree. Using file-like objects is not really making anything simpler. You can always override `Post.compile` to use the compiler's `compile_string` interface, if supported. (Some compilers need files on...
You have to consider that Nikola is based on doit, which uses files (on disk) and "up-to-date objects" (usually hashes of dicts) to determine what to rebuild. If you want...