Pascal Fouque
Pascal Fouque
For the problem with "track by", you can define your own "track by" function : ``` $scope.UniqueTracking = function(index, id){ return index + id } ``` and use it like...
I was thinking to something like that. Perhaps also downloading with python. Or we can stream content directly.
It seems to work fine but I have some concerns about deleting actual shell file. Perhaps you should keep it ( and update it) to avoid introducing a breaking change.
> However there are two type of changes between datadumps: > > 1. Existing releases/artists etc modified > 2. New releases/artists added There is also releases/artists removed or merged.
Thanks @ticosax , fix is working for me and i didn't see any regression
I guess we can close this one, I just checked and these are the URL currently used
I solved this using `formnovalidate` on these buttons to explicitly tell the browser to skip validation: ``` {% if wizard.steps.prev %} {% translate "first step" %} {% translate "prev step"...
[As per the documentation](https://django-formtools.readthedocs.io/en/latest/wizard.html#formtools.wizard.views.NamedUrlCookieWizardView), the wizard needs to be declared as 2 separate URLs, with and without the step parameter ``` urlpatterns = [ re_path(r'^contact/(?P.+)/$', contact_wizard, name='contact_step'), path('contact/', contact_wizard, name='contact'),...
> Do you ser necessary continue with the Remove db-diff? > > Because know I have access to that repo and could keep updated Up to you, I started this...
Ok the documenation is not so clear on that, but basically you have multiple options: - [BasicAuth directly in the mailbox url](https://django-mailbox.readthedocs.io/en/latest/topics/mailbox_types.html#gmail-imap-with-oauth2-authentication): `imap+ssl://:@imap.gmail.com` (Don't forget to replace with your credentials)...