Re: Django 1.4 roadmap

2011-11-29 Thread Tomek Paczkowski
What happend to "SVN is least common denominator"? -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-developers/-/5DgmsJ17_8oJ. To post to this group, send email

Re: Deprecate change pk + save behavior for 1.4

2011-12-01 Thread Tomek Paczkowski
Settings pk as None is recommended method of model cloning, as per: https://docs.djangoproject.com/en/dev/topics/db/queries/#copying-model-instances -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit h

Re: Python 3 port - all tests now pass on 2.7.2 and 3.2.2 with the same codebase

2011-12-02 Thread Tomek Paczkowski
Most important: where to send all those beer pints? -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-developers/-/4NW-QeNEBvAJ. To post to this group, send emai

Re: Django 1.4 alpha on December 22nd

2011-12-11 Thread Tomek Paczkowski
This is good news. Thanks. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-developers/-/tZW8wIV9fv0J. To post to this group, send email to django-developers@go

Sprint in Kraków (Poland)

2012-01-07 Thread Tomek Paczkowski
ou're planning to attend, please register at: http://sprint.pykonik.org/registration/ As Django 1.4 is almost ready, most probably we will be focusing on fixing any bugs preventing the release. Sprint is organized by Kraków Python User Group Pykonik -- Tomek Paczkowski http://hauru.eu -- You rec

Re: Making management forms for formsets optional

2015-06-06 Thread Tomek Paczkowski
I remember that Ruby on Rails solved problem with checkboxes with a hidden field that was added before each checkbox [1] [1]: http://apidock.com/rails/ActionView/Helpers/FormHelper/check_box On Friday, June 5, 2015 at 11:29:21 AM UTC+1, Patryk Zawadzki wrote: > > Hi folks, > > I've talked to Ma

Re: AutoField issue in SQLite3

2013-08-28 Thread Tomek Paczkowski
I think Russ wanted to say that if you have this problem and want it fixed, the best way is go to ticket page on trac and contribute to it. It can be in couple of ways: provide useful steps to reproduce, reviewing patches etc. I see there is Pull Request attached, so try checking it out and se

Django Sprint in Kraków, PL: 15-16 Feb 2014

2014-01-10 Thread Tomek Paczkowski
[Cross posting with django-users] Hello, Pykonik, Kraków Python User Group, would like to invite you to 3rd Django Sprint in Kraków. We would like this event to become a winter tradition, so come and join us! This year we meet on weekend of 15th and 16th February in brand new offices of Base,

Re: inspectdb and non "public" schema in postgresql

2014-05-20 Thread Tomek Paczkowski
If I understand correctly, your legacy database is not in "public" schema. Django offers no support for Postgres schemas, it's left to the developer/ops people to have correct search_path set. There are two possible fixes for you: - set Postgres user default search path to contain your schema - h