#57 Pluggable app URLs

Fermé
jocelyn veut fusionner 2 commits à partir de jocelyn/jd-pluggable-urls vers FFDN/master
jocelyn a commenté il y a 8 ans

Allow apps to declare there URLs rather than registering them into the global urls.py

relates #53 A step towards #43

See CONTRIBUTING.md for more details on implementation.

Allow apps to declare there URLs rather than registering them into the global urls.py relates #53 A step towards #43 See CONTRIBUTING.md for more details on implementation.
zorun a commenté il y a 8 ans
Propriétaire

Thanks Jocelyn.

It looks good, I just have a few comments:

  • according to the doc, exported_urlpatterns is optional, but I don't see code that handles the case where there is no exported_urlpatterns (i.e. use the app name as URL prefix)
  • I don't understand the addition in the VPN models (db_table = 'vpn_vpnconfiguration')

Once this is fixed and the code has been run-tested for Illyse (I will do it), you have my ACK for merging :)

Thanks Jocelyn. It looks good, I just have a few comments: - according to the doc, `exported_urlpatterns` is optional, but I don't see code that handles the case where there is no `exported_urlpatterns` (i.e. use the app name as URL prefix) - I don't understand the addition in the VPN models (`db_table = 'vpn_vpnconfiguration'`) Once this is fixed and the code has been run-tested for Illyse (I will do it), you have my ACK for merging :)
zorun a commenté il y a 8 ans
Propriétaire

Ah, I see the reason why you forced the db table:

ProgrammingError at /vpn/2
relation "coin_vpnconfiguration" does not exist

It looks like by using the new apps.py features, Django now thinks that the VPN code belongs to the Coin app (for database table, for the admin, etc). It reflects the "new" recommended organisation (apps are supposed to be outside of the project directory), but it breaks quite a lot of things.

I think the best solution would be to move the vpn app to the toplevel of the git repository (it would actually make more sense, since it's an optional app). I will give it a try.

Ah, I see the reason why you forced the db table: ``` ProgrammingError at /vpn/2 relation "coin_vpnconfiguration" does not exist ``` It looks like by using the new apps.py features, Django now thinks that the VPN code belongs to the Coin app (for database table, for the admin, etc). It reflects the "new" recommended organisation (apps are supposed to be outside of the project directory), but it breaks quite a lot of things. I think the best solution would be to move the `vpn` app to the toplevel of the git repository (it would actually make more sense, since it's an optional app). I will give it a try.
jocelyn a commenté il y a 8 ans
Propriétaire

I think the best solution would be to move the vpn app to the toplevel of the git repository (it would actually make more sense, since it's an optional app). I will give it a try.

Although I agree (VPN is an optional app) I consider it's not a blocker for this PR (ok if I let the db_table=... for now). ok ?

> I think the best solution would be to move the vpn app to the toplevel of the git > repository (it would actually make more sense, since it's an optional app). I will give > it a try. Although I agree (VPN is an optional app) I consider it's not a blocker for this PR (ok if I let the `db_table=...` for now). ok ?
jocelyn a commenté il y a 8 ans
Propriétaire

according to the doc, exported_urlpatterns is optional, but I don't see code that handles the case where there is no exported_urlpatterns (i.e. use the app name as URL prefix)

Then you missed it :) that's here : https://code.ffdn.org/jocelyn/coin/src/6bbfd712e80799d6c55ff4750894c2de94ca6a78/coin/apps.py#L13

(I promiss I didn't change it afterwards :-p)

> according to the doc, exported_urlpatterns is optional, but I don't see code that handles the case where there is no exported_urlpatterns (i.e. use the app name as URL prefix) Then you missed it :) that's here : https://code.ffdn.org/jocelyn/coin/src/6bbfd712e80799d6c55ff4750894c2de94ca6a78/coin/apps.py#L13 (I promiss I didn't change it afterwards :-p)
jocelyn a commenté il y a 8 ans
Propriétaire

@zorun Then I think it's ready for testing, do you agree ?

@zorun Then I think it's ready for testing, do you agree ?
zorun a commenté il y a 8 ans
Propriétaire

Although I agree (VPN is an optional app) I consider it's not a blocker for this PR (ok if I let the db_table=... for now). ok ?

Well actually, no: even with the explicit db_table, the change breaks the VPN application in more ways (no VPN shows up in the admin anymore, and the user view gives a 404 even though an object exists). I think django-polymorphic really doesn't like the change of application name.

I will try to move the vpn app before this week-end.

> Although I agree (VPN is an optional app) I consider it's not a blocker for this PR (ok if I let the db_table=... for now). ok ? Well actually, no: even with the explicit db_table, the change breaks the VPN application in more ways (no VPN shows up in the admin anymore, and the user view gives a 404 even though an object exists). I think django-polymorphic really doesn't like the change of application name. I will try to move the vpn app before this week-end.
zorun a commenté il y a 8 ans
Propriétaire

Then you missed it :) that's here : https://code.ffdn.org/jocelyn/coin/src/6bbfd712e80799d6c55ff4750894c2de94ca6a78/coin/apps.py#L13

(I promiss I didn't change it afterwards :-p)

Ah right, it's in the meta-class, sorry :)

Be careful btw, rstrip is probably not what you intended here: think of the argument as a list of characters to remove, not as a string. For instance:

"lollipop.py".rstrip(".py") 'lollipo'

It will remove any trailing "p" and "y" in the filename...

> Then you missed it :) that's here : https://code.ffdn.org/jocelyn/coin/src/6bbfd712e80799d6c55ff4750894c2de94ca6a78/coin/apps.py#L13 > > (I promiss I didn't change it afterwards :-p) Ah right, it's in the meta-class, sorry :) Be careful btw, `rstrip` is probably not what you intended here: think of the argument as a list of characters to remove, not as a string. For instance: > >>> "lollipop.py".rstrip(".py") > 'lollipo' It will remove any trailing "p" and "y" in the filename...
zorun a commenté il y a 8 ans
Propriétaire

I have moved the VPN application, and adapted your branch to the change: the result is in the pluggable-urls branch. The VPN app works completely fine in this new branch!

I think you can either merge the new branch directly and fix the rstrip() issue afterwards, or fix the issue and rebase before merging. It's not really important either way, but this small issue should be fixed :)

Once it's merged, we can work on #55, and finally close #53...

Thanks for the good work!

I have moved the VPN application, and adapted your branch to the change: the result is in the pluggable-urls branch. The VPN app works completely fine in this new branch! I think you can either merge the new branch directly and fix the `rstrip()` issue afterwards, or fix the issue and rebase before merging. It's not really important either way, but this small issue should be fixed :) Once it's merged, we can work on #55, and finally close #53... Thanks for the good work!
zorun a commenté il y a 8 ans
Propriétaire

I fixed the rstrip() issue (and a few others), and merged the branch in master in b05e274424, thanks Jocelyn :)

I fixed the rstrip() issue (and a few others), and merged the branch in master in b05e2744246f89897c3462870aaecb1b2a736138, thanks Jocelyn :)
jocelyn a commenté il y a 8 ans
Propriétaire

Thanks, I had forgotten that rstrip thing to be honest :x.

Thanks, I had forgotten that `rstrip` thing to be honest :x.
Veuillez rouvrir cette Pull Request pour effectuer l'opération de fusion.
Connectez-vous pour rejoindre cette conversation.
Aucun jalon
Pas d'assignataire
2 Participants
Chargement…
Annuler
Enregistrer
Il n'existe pas encore de contenu.