當前位置: 首頁>>代碼示例>>Python>>正文


Python managers.TaggableManager類代碼示例

本文整理匯總了Python中taggit.managers.TaggableManager的典型用法代碼示例。如果您正苦於以下問題:Python TaggableManager類的具體用法?Python TaggableManager怎麽用?Python TaggableManager使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了TaggableManager類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_deconstruct_kwargs_kept

 def test_deconstruct_kwargs_kept(self):
     instance = TaggableManager(through=OfficialThroughModel, to="dummy.To")
     name, path, args, kwargs = instance.deconstruct()
     new_instance = TaggableManager(*args, **kwargs)
     self.assertEqual(
         "tests.OfficialThroughModel", new_instance.remote_field.through
     )
     self.assertEqual("dummy.To", new_instance.remote_field.model)
開發者ID:alex,項目名稱:django-taggit,代碼行數:8,代碼來源:tests.py

示例2: test_formfield

 def test_formfield(self):
     tm = TaggableManager(verbose_name='categories', help_text='Add some categories', blank=True)
     ff = tm.formfield()
     self.assertEqual(ff.label, 'categories')
     self.assertEqual(ff.help_text, u'Add some categories')
     self.assertEqual(ff.required, False)
     
     self.assertEqual(ff.clean(""), [])
     
     tm = TaggableManager()
     ff = tm.formfield()
     self.assertRaises(ValidationError, ff.clean, "")
開發者ID:feuervogel,項目名稱:django-taggit,代碼行數:12,代碼來源:tests.py

示例3: test_formfield

    def test_formfield(self):
        tm = TaggableManager(verbose_name='categories', help_text='Add some categories', blank=True)
        ff = tm.formfield()
        self.assertEqual(ff.label, 'Categories')
        self.assertEqual(ff.help_text, 'Add some categories')
        self.assertEqual(ff.required, False)
        self.assertEqual(list(ff.queryset), list(self.food_model.tags.all()))

        self.assertEqual(list(ff.clean("")), [])

        tm = TaggableManager()
        ff = tm.formfield()
        self.assertRaises(ValidationError, ff.clean, "")
開發者ID:texastribune,項目名稱:django-taggit,代碼行數:13,代碼來源:tests.py

示例4: test_deconstruct_kwargs_kept

 def test_deconstruct_kwargs_kept(self):
     instance = TaggableManager(through=OfficialThroughModel, to='dummy.To')
     name, path, args, kwargs = instance.deconstruct()
     new_instance = TaggableManager(*args, **kwargs)
     self.assertEqual('tests.OfficialThroughModel', _remote_field(new_instance).through)
     self.assertEqual('dummy.To', _related_model(_remote_field(new_instance)))
開發者ID:izquierdo,項目名稱:django-taggit,代碼行數:6,代碼來源:tests.py

示例5: post_template

    @property
    def post_template(self):
        return 'tumblelog/post/%s.html' % slugify(self.__class__.__name__)

    @property
    def rss_template(self):
        return [
            'tumblelog/rss/%s.html' % slugify(self.__class__.__name__),
            self.post_template,
        ]


# Add the django-taggit manager, if taggit is installed
if USE_TAGGIT:
    from taggit.managers import TaggableManager
    taggit_manager = TaggableManager()
    taggit_manager.contribute_to_class(BasePostType, 'tags')


class BaseOembedPostType(BasePostType):
    """
    Abstract post type base classes whose subclasses retrieve data from an
    oEmbed endpoint.
    """
    caption = models.TextField(_('Caption'),
        blank=True,
        null=True,
        help_text=TEXTFIELD_HELP_TEXT
    )
    version = models.CharField(_('oEmbed Version'), max_length=3, null=True, \
        blank=True, editable=True)
開發者ID:registerguard,項目名稱:django-tumblelog,代碼行數:31,代碼來源:base.py

示例6: create_user

		try: 
			user = User.objects.get(username=row__):
		except: #User not Found
			create_user()
			print "No user with those names"

	    nationality = row__
	    current_location = row__
	    work = row__
	    startup_status = row__
	    portfolio_status = row__
	    itc_program_name = row__
	    itc_program_year = row__
	    linked_in_url = row__
    
    	skills = TaggableManager()
    	skills.add(row__)

    profile_tuple = (user=user, 
	nationality=nationality, 
	current_location, 
	current_location=current_location, 
	work=work,
	startup_status=startup_status,
	portfolio_status=portfolio_status,
	itc_program_name=itc_program_name,
	itc_program_year=itc_program_year)

    UserProfile.objects.create(profile_tuple)
	return
開發者ID:thebenwaters,項目名稱:itchackathon,代碼行數:30,代碼來源:script.py

示例7: test_deconstruct_kwargs_kept

 def test_deconstruct_kwargs_kept(self):
     instance = TaggableManager(through=OfficialThroughModel)
     name, path, args, kwargs = instance.deconstruct()
     new_instance = TaggableManager(*args, **kwargs)
     self.assertEqual(instance.rel.through, new_instance.rel.through)
開發者ID:JosephBuchma,項目名稱:django-taggit,代碼行數:5,代碼來源:tests.py


注:本文中的taggit.managers.TaggableManager類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。