Dan Davis

Results 113 comments of Dan Davis

This line, https://github.com/datadesk/django-bakery/blob/2c9c495e4e8faca7b81fa57635d1631933f14171/bakery/views/base.py#L150, is problematic. If PyFilesystem will not allow backslash, then paths must be concatenated without using `os.path.separator`.

Work-around below allows a developer using one DJANGO_SETTINGS_MODULE, or QA using a "preview" button, to see what the page will look like when generated "for the public". This is made...

So, my plan is to shadow the "build" management command with one of my own which overrides the setings.IS_PUBLIC. I think a context manager that returns whether you are in...

I don't need to do that - I've overridden create_request already... I guess its been awhile since I looked at this issue. I've been waiting for operations to make a...

So, to generalize this, we need to send custom meta-data to the request by default, by sending a custom header X-Bakery: 1 here https://github.com/datadesk/django-bakery/blob/2c9c495e4e8faca7b81fa57635d1631933f14171/bakery/views/base.py#L44

Is this not already possible with clever coding?

In my work for NLM sites implemented using Python/Django, I've enabled users to implement the banner, header, and footer simply, so that mostly the body is the main part of...

And I think as this is documentation, I'm not voting for it :)

So, I found a way around this, for those who just need to read recurrences, rather than create them: ```python def rrule(self): for content_line in self._unused: if content_line.name == 'RRULE':...

This is very complicated - https://icalendar.org/iCalendar-RFC-5545/3-8-5-3-recurrence-rule.html In my case, I built a daily appointment and then canceled one of them to see how specifically Exchange (my version) would export it....