Ionuț Ciocîrlan
Ionuț Ciocîrlan
Using fusecompress 2.6-2 from debian. On a clean bzr branch / checkout, doing bzr status two times in a row causes: virtual Compress::~Compress(), picard/.bzr/checkout/conflicts FuseCompress::open 0x7fd6ac002540 name: picard/.bzr/checkout/dirstate Compress::open m_refs:...
Ideally, a simple `slug = AutoSlugField()` should work out of the box, by using the model's `__str__`.
Release 1.0.7 broke the specialised matchers that are still documented here https://h2non.github.io/filetype.py/v1.0.0/match.m.html One could make the argument that these functions are internal API since they're not officially documented in the...
This merges the docs from `lektor-website` as a stand-alone site, along with the needed models, templates etc. Closes https://github.com/lektor/lektor/issues/756 Blocks https://github.com/lektor/lektor-website/issues/226 The script generating this branch is available at ....
Whether creating a thumbnail or not, one should be able to request a specific image format, and not be forced to have the source image in jpeg/png/gif format in the...
There are a number of issues with slugs in their current embodiment, I'll list them here and discuss them in detail afterwards: - `slugify` is applied indiscriminately, even to a...
That is, we shouldn't support both Jinja expressions and Python expressions. See for example https://www.getlektor.com/docs/api/db/types/checkboxes/ which sports both expression types. I personally lean towards Python. I find it a more...
There's two parts to this: exposing the current choice's label, and exposing all choices. Currently one has to do: `{{ this.datamodel.field_map['']['choices'] }}` to access all choices, and `{{ this.datamodel.field_map['']['choices_labels'][''] }}`...
Because C.has_permission and C.has_object_permission both run `self.evaluate_permissions()` in a disconnected manner, this leads to the following logical error when OR-ing permissions: Given ``` A = hpA & hopA, and B...
In my opinion, docs should be part of the product repository, and included / built along with the rest of the website. The way it is now, there isn't a...