Re: New additions to django.contrib?

2013-03-22 Thread Mateusz Harasymczuk
About your topic on adding South to Django core. Andrew is working on that: https://www.djangoproject.com/weblog/2013/mar/22/kickstarting-schema-migrations-django/ -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this gr

Re: GitHub migration done!

2012-04-28 Thread Mateusz Harasymczuk
Could you make tags out of stable releases. It would help a lot :} -- 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/-/NzF2b8Xl9wUJ. To post to this g

Re: GitHub migration done!

2012-04-28 Thread Mateusz Harasymczuk
On Saturday, April 28, 2012 5:08:09 AM UTC+2, Adrian Holovaty wrote: > > OK, it's live! > https://github.com/django/django > Great news! Therefore probably you should update this site: https://www.djangoproject.com/download/ -- You received this message because you are subscribed to the Goog

Re: Proposal: drop Python 2.5 support in Django 1.5

2011-12-28 Thread Mateusz Harasymczuk
Me too. + 1 -- Matt Harasymczuk http://www.matt.harasymczuk.pl -- 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/-/4b6tOPU9xjMJ. To post to this grou

Re: Cleaning up manage.py and import paths

2011-10-12 Thread Mateusz Harasymczuk
I suggest naming it src, and then having example.com - contrib - docs - public - src - manage.py - myapp - __init__.py - settings.py - urls.py - virtualenv -- You received this message because you are subscribed to the Googl

Re: django tests fails!

2011-07-05 Thread Mateusz Harasymczuk
#urls.py url(r'^', include('rm.urls', namespace="rm"), name="rm"), #rm/urls.py url(r'progress/$', ProgressView.as_view(), name='progress'), -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit

Re: django tests fails!

2011-07-05 Thread Mateusz Harasymczuk
> python manage.py test Creating test database for alias 'default'... E...

Re: django tests fails!

2011-07-05 Thread Mateusz Harasymczuk
I am sorry, my bad. I was not sure that this one is a bug too, therefore I have asked at django-users: https://groups.google.com/forum/#!topic/django-users/S_4IuKw_e2U however I think it is, and it should be reported to trac. What do you think? -- You received this message because you are sub

django tests fails!

2011-07-05 Thread Mateusz Harasymczuk
I have found two bugs in tests django.contrib.auth https://code.djangoproject.com/ticket/16412 https://code.djangoproject.com/ticket/16413 -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit https://gr

Re: Django Error Display Page

2011-06-11 Thread Mateusz Harasymczuk
Why not to give ability to chose by the developer? if settings.VERBOSE_DEBUG: as it is else: tabbed view or DEBUG_VIEW = 'tabbed' DEBUG_VIEW = 'default' etc... IMHO: DEBUG_VIEW is better and more extensible in future. -- Matt Harasymczuk http://www.matt.harasymczuk.pl -- You receive

Re: Deprecation policy for IE6

2011-06-10 Thread Mateusz Harasymczuk
Totally agree, If someone moved out of the IE 6, then he/she move out of the IE 7, too. -- 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/-/fAHtqn9esi

Odp: Re: Django Error Display Page

2011-06-08 Thread Mateusz Harasymczuk
Colored output of the trackeback does not solve my problem of scrolling few screens in order to find whats happening, or use cmd-F key to quick jump. I think this is not a good way to do this. What's I am thinking is a tabs at the top which manipulates with visibility of certain divs of error pa

Django Error Display Page

2011-06-08 Thread Mateusz Harasymczuk
Hi, I have been thinking about this for quite a long time. Can you make an error display page less verbose? I mean not to exclude those useful information, but to initially fold (hide) them. Fold those items: - Python path at the top yellow background. - (Hide or fold) django traceback entries

Odp: Re: Allow disabling choices in a

2011-06-08 Thread Mateusz Harasymczuk
Indeed it is useful, I was using a custom made app to do so. Thank you -- Matt Harasymczuk http://www.matt.harasymczuk.pl -- 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

admin.site.register decorator

2011-05-28 Thread Mateusz Harasymczuk
Recently, I had to make more than one admin class in admin.py file. I have never had a situation like this before. I keept my admin classes in separate files in admin module. It came to me that after each class definition you have to make admin.site.register(Class, AdminClass) Hence: - Where is

Re: templates block prepend and append

2011-05-20 Thread Mateusz Harasymczuk
This should solve my problems, therefore my question is no longer valid. I missed that in the documentation. Probably I should ask at django-users first. Although {% extends "admin/index.html" after "blockname" %} would be a nice shorthand. or {% from "admin/index.html" import "blockname" %

templates block prepend and append

2011-05-20 Thread Mateusz Harasymczuk
I have recently fought with extending templates. Plenty of my usecases are almost the same: append some html before or after admin templates blocks. To do so, I have to take template, copy the contents and save modified file as a html in my templates dir. What happens if django contrib.admin pa

Odp: Re: model fields options

2011-05-07 Thread Mateusz Harasymczuk
In my opinion Meta class may contain this kind of information, and it would simplify the process of designing models. Especially handling fields which contains a lots of data inserted via arguments. However, I think that the Meta class properties should be an alias or a handy shortcut, not one

model fields options

2011-05-06 Thread Mateusz Harasymczuk
I had an idea. To move model fields options, such as: - blank=BOOL - null=BOOL - auto_add=BOOL - auto_add_now=BOOL - db_index=BOOL and others boolean options to Meta class of this model. It would make model fields more readable and human friendly. However I am not convinced, that it would be a g

countries model or list like settings.LANGUAGES

2011-05-01 Thread Mateusz Harasymczuk
I have to agree with this guy: http://code.djangoproject.com/ticket/5446 There should be a model to hold country name and language: {% quote %} The idea is to have something like: country = models.CountryField() language = models.LanguageField() Instead of: lang = models.CharField ( max_len