summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Expand)Author
2005-11-22Fixed use of "_" in RelaxNGCompact validator which was conflicting with gette...Jacob Kaplan-Moss
2005-11-21fixed a bug with some validators that used parameterized gettext_lazy strings...Georg Bauer
2005-11-21fixed a bug that prevented the unique validation to workGeorg Bauer
2005-11-21fixes #753 - ValidationError and CriticalValidationError now accept both stri...Georg Bauer
2005-11-21Fixed #800 -- Fixed bug in treatement of underscores and percent signs in SQL...Adrian Holovaty
2005-11-21Fixed #861 -- Model validator now validates unique_togetherAdrian Holovaty
2005-11-21Fixed bug for OneToOneFields in the admin -- the manipulator_validator_unique...Adrian Holovaty
2005-11-21Fixed #527 -- Changed method_get_related() to use rel.get_related_field() ins...Adrian Holovaty
2005-11-20Gave formfields.EmailField a maxlength kwargAdrian Holovaty
2005-11-20Gave EmailField a get_internal_type() method and removed it from DATA_TYPES i...Adrian Holovaty
2005-11-20Fixed #484 -- Model validator now raises an error for FloatFields without max...Adrian Holovaty
2005-11-20Fixed #527 and #768 -- Fixed longstanding bug with OneToOneFields. All unit t...Adrian Holovaty
2005-11-17Fixed #815 -- 'select' keyword in DB API calls is now quoted correctly. Thank...Adrian Holovaty
2005-11-16Changed FormWrapper.fields (from [1253]) to be a property, so that it's only ...Adrian Holovaty
2005-11-15Fixed #587 - iteration through formfields in a FormWrapper is now allowed (th...Jacob Kaplan-Moss
2005-11-15Fixed bug in postgresql backend that prevented the user of passwords with spa...Jacob Kaplan-Moss
2005-11-14Added "pretty" error pages to be used when DEBUG is True.Jacob Kaplan-Moss
2005-11-14Fixed #121 -- Django now quotes all names in SQL queries. Also added unit tes...Adrian Holovaty
2005-11-13Moved db.quote_name from a model-level function to a method of DatabaseWrappe...Adrian Holovaty
2005-11-12fixes #764 - the TokenParser now respects string parameters to filters that c...Georg Bauer
2005-11-12Fixed #778 -- Improved isExistingURL validator not to raise ValidationError f...Adrian Holovaty
2005-11-12Completely refactored legacy RSS framework to the new django.contrib.syndicat...Adrian Holovaty
2005-11-11Implemented quote_name() for ado_mssql DB backend. Thanks, Jakub Labath and E...Adrian Holovaty
2005-11-10Fixed #763 -- cache system now catches OSError for os.remove() call. Thanks, ...Adrian Holovaty
2005-11-10Fixed #724 -- Ensured get_next_by_FOO() and get_previous_by_FOO() methods don...Adrian Holovaty
2005-11-09Fixed #686 -- django-admin.py sqlreset and sqlclear no longer assume the admi...Adrian Holovaty
2005-11-09Fixed #683 -- Lightly refactored meta.fields.Field to add an attname attribute.Adrian Holovaty
2005-11-09Factored FORM_FIELD_ID_PREFIX out into a get_id() method in formfields.py -- ...Adrian Holovaty
2005-11-09Fixed #761; thanks, EugeneJacob Kaplan-Moss
2005-11-09Renamed enclosure_url, enclosure_length and enclosure_mime_type to give them ...Adrian Holovaty
2005-11-09Added django.core.rss.Feed -- the new RSS interface. Refs #329.Adrian Holovaty
2005-11-06Fixed #281 -- Made e-mail address validation much more strict and accurate.Adrian Holovaty
2005-11-06Fixed #312 -- Fixed bug when adding images in the admin when edit_inline and ...Adrian Holovaty
2005-11-06Reworded docstrings and settings documentation from [1068]Adrian Holovaty
2005-11-06Fixed #737 -- Changed validators.isValidIPAddress4 to use a single regex. Tha...Adrian Holovaty
2005-11-05Added meta.Admin list_select_related option, which specifies to use select_re...Adrian Holovaty
2005-11-05Fixed #734 -- Fixed namespace bug in validators.isValidIPAddress4. Thanks, Hu...Adrian Holovaty
2005-11-04Merged i18n branch into the trunk! Fixes #65, and perhaps some others. NB: th...Jacob Kaplan-Moss
2005-11-02Made floatformat filter not choke on non-floatsJacob Kaplan-Moss
2005-11-01Added quote_name hook for each database backend. Refs #121. Thanks, Robin Mun...Adrian Holovaty
2005-11-01Updated out-of-date docstring in django/core/db/__init__.pyAdrian Holovaty
2005-11-01Fixed #505 -- ssi template tag now displays a message instead of failing sile...Adrian Holovaty
2005-11-01Fixed #507 -- Changed MySQL backend so that it uses 'LIKE BINARY' for case-se...Adrian Holovaty
2005-10-29Fixed #675: PasswordFields now respect length and maxlength paramsJacob Kaplan-Moss
2005-10-29Fixed #140: memcached backends may now use multiple serversJacob Kaplan-Moss
2005-10-28Fixed #488 -- removetags template filter now removes tags without a space bef...Adrian Holovaty
2005-10-25Fixed #677 -- db.queries is now reset per request. Thanks, seancazzellAdrian Holovaty
2005-10-25Fixed #687 -- Fixed bug in floatformat template filter and added unit tests. ...Adrian Holovaty
2005-10-23Added 'django-admin.py installperms' commandAdrian Holovaty
2005-10-22Fixed #681 -- get_in_bulk no longer assumes PK fields are called id. Also add...Adrian Holovaty