I want to be part of this organization Google Summer of Code GSOC 2023

2023-03-05 Thread Marinica Denis
Basic details _ My name is Marinica Denis Andrei, I live in Bucharest, Romania, Eastern European Time (GMT+2). As a bachelor's degree, I graduated from the Polytechnic University of Bucharest, Facul

Re: improvement for the front end

2022-03-16 Thread Denis Urman
Dude I saw this post on Reddit today! When I checked GitHub I saw I was already following you and I was like wait what? And I remembered our conversation. Great job 👏 I read through the docs earlier. Very impressive. I dont work with Python at the moment so I can’t use it but I’m going to follow

Re: Model Generation for CSV, XLS Files

2020-11-28 Thread Denis Urman
The CSV module in the Python standard library has solved the issues mentioned in this thread vis a vis format. No need to reinvent the wheel. There are options and flags for field names and delimiters. Before relying on a third party depencency, one must demonstrate the necessity. What edge cases d

Re: command for stopping server

2020-09-07 Thread Denis Urman
The canonical way to run a Django server is to link it up to a WSGI (uWSGI) or gunicorn, then run Apache or Nginx on top of that. These latter two things are typically handled through systemd. Some people use Docker or Supervisor, but that might be a lot for you to learn right now. Gunicorn & Nginx

Re: Proposal - Warn user when creating or applying a delete migration?

2020-06-12 Thread Denis Urman
It's easy enough to read the output before you migrate. It's pretty darn hard to accidentally delete an entire Model. It'd have to be a new or obscure Model with no references in your Views, no ForeignKeys to it, etc etc. Deleting a Field accidentally on the other hand is pretty easy to do. I d

#28636 - Translation language preference without restriction to `settings.LANGUAGES`

2017-09-30 Thread 'Denis Anuschewski' via Django developers (Contributions to Django itself)
Here is the PR . I think it would be beneficial to have an optional boolean flag in order to check the language preference against `LANG_INFO` rather than `settings.LANGUAGES`. It would allow one e.g. to get the preference and add a translation fallba

Re: Forms and edition of an object : non-pythonic default behaviour

2008-09-07 Thread Denis Frère
nks for your answer and again : great job ! I'm almost as excited discovering Django as I was when discovering Python years ago. Denis > > On Sep 7, 10:10 am, Denis Frère <[EMAIL PROTECTED]> wrote: > > > On Sep 6, 9:43 pm, "James Bennett" <[EMAIL PROTECTE

Re: Forms and edition of an object : non-pythonic default behaviour

2008-09-06 Thread Denis Frère
On Sep 6, 9:43 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > On Sat, Sep 6, 2008 at 8:40 AM, Denis Frère <[EMAIL PROTECTED]> wrote: > > Why LinkForm(request.POST, instance=link) doesn't behaves like > > link.update(request.POST) ? > > it doesn

Forms and edition of an object : non-pythonic default behaviour

2008-09-06 Thread Denis Frère
_d) >>> for key in my_d.keys(): ... print key, my_d[key] four 4 three 3 two II one 1 Why LinkForm(request.POST, instance=link) doesn't behaves like link.update(request.POST) ? Is it a will or an "omission" ? Thanks, Denis --~--~-~--~~~---~

django.contrib.comments.models requires get_user method

2006-04-13 Thread Denis
Hi It looks like django.contrib.comments.models (M/R) lacks get_user() method for the following classes: Comment, KarmaScore and UserFlag. Didnt find any suitable component choice in the ticketing system, so i decided to post here. I wonder what would be the proper way to fix this, coz ``self.use