コード例 #1
0
    def __init__(self, to, **kwargs):
        # copied from parent only to change rel type to OneToManyRel
        try:
            assert not to._meta.abstract, "%s cannot define a relation with abstract class %s" % (
                self.__class__.__name__, to._meta.object_name)
        except AttributeError:  # to._meta doesn't exist, so it must be RECURSIVE_RELATIONSHIP_CONSTANT
            assert isinstance(
                to, basestring
            ), "%s(%r) is invalid. First parameter to ManyToManyField must be either a model, a model name, or the string %r" % (
                self.__class__.__name__, to, RECURSIVE_RELATIONSHIP_CONSTANT)

        kwargs['verbose_name'] = kwargs.get('verbose_name', None)
        kwargs['rel'] = OneToManyRel(
            to,
            related_name=kwargs.pop('related_name', None),
            limit_choices_to=kwargs.pop('limit_choices_to', None),
            symmetrical=kwargs.pop('symmetrical',
                                   to == RECURSIVE_RELATIONSHIP_CONSTANT),
            through=kwargs.pop('through', None))

        self.db_table = kwargs.pop('db_table', None)
        if kwargs['rel'].through is not None:
            assert self.db_table is None, "Cannot specify a db_table if an intermediary model is used."

        Field.__init__(self, **kwargs)

        msg = _(
            'Hold down "Control", or "Command" on a Mac, to select more than one.'
        )
        self.help_text = string_concat(self.help_text, ' ', msg)
コード例 #2
0
ファイル: generic.py プロジェクト: taylanpince/orangeblog
    def __init__(self, to, **kwargs):
        kwargs['verbose_name'] = kwargs.get('verbose_name', None)
        kwargs['rel'] = GenericRel(to,
                            related_name=kwargs.pop('related_name', None),
                            limit_choices_to=kwargs.pop('limit_choices_to', None),
                            symmetrical=kwargs.pop('symmetrical', True))

        # Override content-type/object-id field names on the related class
        self.object_id_field_name = kwargs.pop("object_id_field", "object_id")
        self.content_type_field_name = kwargs.pop("content_type_field", "content_type")

        kwargs['blank'] = True
        kwargs['editable'] = False
        kwargs['serialize'] = False
        Field.__init__(self, **kwargs)
コード例 #3
0
    def __init__(self, to, **kwargs):
        kwargs['verbose_name'] = kwargs.get('verbose_name', None)
        kwargs['rel'] = GenericRel(to,
                            related_name=kwargs.pop('related_name', None),
                            limit_choices_to=kwargs.pop('limit_choices_to', None),
                            symmetrical=kwargs.pop('symmetrical', True))

        # Override content-type/object-id field names on the related class
        self.object_id_field_name = kwargs.pop("object_id_field", "object_id")
        self.content_type_field_name = kwargs.pop("content_type_field", "content_type")

        kwargs['blank'] = True
        kwargs['editable'] = False
        kwargs['serialize'] = False
        Field.__init__(self, **kwargs)
コード例 #4
0
ファイル: generic.py プロジェクト: novdev/django
    def __init__(self, to, **kwargs):
        kwargs["verbose_name"] = kwargs.get("verbose_name", None)
        kwargs["rel"] = GenericRel(
            to,
            related_name=kwargs.pop("related_name", None),
            limit_choices_to=kwargs.pop("limit_choices_to", None),
            symmetrical=kwargs.pop("symmetrical", True),
        )

        # Override content-type/object-id field names on the related class
        self.object_id_field_name = kwargs.pop("object_id_field", "object_id")
        self.content_type_field_name = kwargs.pop("content_type_field", "content_type")

        kwargs["blank"] = True
        kwargs["editable"] = False
        kwargs["serialize"] = False
        Field.__init__(self, **kwargs)
コード例 #5
0
ファイル: related.py プロジェクト: joaquinquintas/trade
    def __init__(self, **kwargs):
        if self.__class__ == RelatedMediaField:
            raise ValueError, 'RelatedMediaField cannot be used directly.  You must subclass it.'

        kwargs['rel'] = RelatedMediaRel(self.to,
                            related_name=kwargs.pop('related_name', None),
                            limit_choices_to=kwargs.pop('limit_choices_to', None),
                            symmetrical=kwargs.pop('symmetrical', True))

        # We don't create any tables, but use generic relations through MediaRelation
        self.creates_table = False

        self.object_id_field_name = 'object_id'

        kwargs['blank'] = True
        kwargs['editable'] = False
        kwargs['serialize'] = False
        Field.__init__(self, **kwargs)
コード例 #6
0
    def __init__(self, to, **kwargs):
        # copied from parent only to change rel type to OneToManyRel
        try:
            assert not to._meta.abstract, "%s cannot define a relation with abstract class %s" % (self.__class__.__name__, to._meta.object_name)
        except AttributeError: # to._meta doesn't exist, so it must be RECURSIVE_RELATIONSHIP_CONSTANT
            assert isinstance(to, basestring), "%s(%r) is invalid. First parameter to ManyToManyField must be either a model, a model name, or the string %r" % (self.__class__.__name__, to, RECURSIVE_RELATIONSHIP_CONSTANT)

        kwargs['verbose_name'] = kwargs.get('verbose_name', None)
        kwargs['rel'] = OneToManyRel(to,
            related_name=kwargs.pop('related_name', None),
            limit_choices_to=kwargs.pop('limit_choices_to', None),
            symmetrical=kwargs.pop('symmetrical', to==RECURSIVE_RELATIONSHIP_CONSTANT),
            through=kwargs.pop('through', None))

        self.db_table = kwargs.pop('db_table', None)
        if kwargs['rel'].through is not None:
            assert self.db_table is None, "Cannot specify a db_table if an intermediary model is used."

        Field.__init__(self, **kwargs)

        msg = _('Hold down "Control", or "Command" on a Mac, to select more than one.')
        self.help_text = string_concat(self.help_text, ' ', msg)
コード例 #7
0
ファイル: generic.py プロジェクト: FredericoAndrade/django
 def get_choices_default(self):
     return Field.get_choices(self, include_blank=False)
コード例 #8
0
ファイル: generic.py プロジェクト: Gautier/django_old
 def get_choices_default(self):
     return Field.get_choices(self, include_blank=False)