Wissperwind

Results 34 comments of Wissperwind

I was now redirected to a microsoft login page correctly and was able to log in: But afterwards I see a white page with "No authorization code was provided". In...

ok, the Azure AD Admin has changed something for me. The URL looks now different. I Login to microsoft, I am redirected to `https://lap-20-073.ssss.de:8080/foss/oauth2/callback?code=0.AXMA-g66LIO9o0KRJjIRKlj2OBziwPwYzq9ChKFAbkv6osRzAJI.AgABAAIAAAD--DLA3VO7QrddgJg7WevrAgDs_wQA9P9vjdjYs5NGWHI8o9U9DaqZ35HOHJB6wSLGy6Pl7DJJAQXBfAig_rnXdC9eReozMzo4cmgRz7uU8Qj_HGEj1SWlSYYHPaAU3t6LDbL0OiSXQ7u6K9iQwnZfhGKE7sBtDt04aqq0NM9RR4ybdGoBE8HVcom9KU-y5mBeZ6zL7c6yTQ7wu5oVTo_YIxUtoRT4DR93l9R36grqGXgwtMHbjUW1_TJms9LNNLj67z89sRid7aeyYpFiQ-dMUXLA73-z5rE7iTrrj6f1oAyhMDShhY6P7TUg4SRGaCto-uCwzWeeIwTsaW2RVkTODFcY0zfsnz3_Bism0bpq1IHtTnqTehw2RhdmreCiymQ-4svadOuh75g9XlEOIemNKla2PhYMrdEtmiq2-tMpPzswnTSupOvX809f2U1fiWylgTzvCSg3dlm8njb2ylZDgNuLmhhZzNlPlaFge4f7W4gAO9JoblkU_EW75gGL__sTtZ7Yp0caK5ejs25TKm4dwu9_fPmfKHbhIk6MirGiQpxJICaQnYOJSs69OsO7mvzMA1C177YSh6rSA1ugHxhOjfyy8sxW4CCr6WQwKq_9jFPjP84xo0FUPUgOwdaNs2JrNQP7X1lMhF4nF0KSQlR16plZaGVy3PSEejX906v8u3iFJcp7QLiYbb9tKFRin4ctCmkoBI1Rzwn6jiUcc_BvQm83O8FxcfuZsmozqtx3aaPrKDMX-BH0T0ZruXcHJKD6kLzOufl84CjfLSsuW6bZx4SqMJGbDeF39lGQdBVO-QecRHu9U0HLGcFJzfcGNAXlClhbg6A&state=L2Zvc3MvYWRtaW4v&session_state=1c3f2961-5687-4023-9a26-6909a3214ce3#` (I have changed randomly some numbers)...

What is the state of the feature? I also need to querry for something like benches in the forest. As far as I understand the feature is already implemented and...

I think this behaviour is good. Both include the trigger time, both trigger.

Ah, example.com is a value in the database. It has something to do with the sites framework. I think you can edit it on the django admin website or directly...

Hi, What is the current state? I might have a similar problem: ```python-traceback [22/Jan/2023:08:43:24] ENGINE Error in HTTPServer.serve Traceback (most recent call last): File "D:\some\folder\python-windows\Lib\site-packages\cheroot\server.py", line 1823, in serve self._connections.run(self.expiration_interval)...

I have no problem updating cherrypy. In which version is / will be this update included?

My idea: Iterate over seconds ``` def has_been(s, since, dt=None): if dt is None: dt = datetime.now(tz=since.tzinfo) if dt < since: raise ValueError("The since datetime must be before the current...

But with this implementation ``` start_as_string = "2022-12-02 16:32:59.999999" end_as_string = "2022-12-02 16:33:00.00001" ``` Would still return false.

How about that? ``` # own implementation of has been, that respects seconds. def has_been(s, since, dt=None): if dt is None: dt = datetime.now(tz=since.tzinfo) if dt < since: raise ValueError("The...