SYMBOL INDEX (79 symbols across 14 files) FILE: django_bleach/forms.py function load_widget (line 13) | def load_widget(path): function get_default_widget (line 33) | def get_default_widget(): class BleachField (line 41) | class BleachField(forms.CharField): method __init__ (line 46) | def __init__( method to_python (line 79) | def to_python(self, value): FILE: django_bleach/models.py class BleachField (line 10) | class BleachField(models.TextField): method __init__ (line 11) | def __init__( method formfield (line 42) | def formfield(self, form_class=forms.BleachField, **kwargs): method pre_save (line 63) | def pre_save(self, model_instance, add): method from_db_value (line 71) | def from_db_value(self, value, expression, connection): FILE: django_bleach/templatetags/bleach_tags.py function bleach_value (line 11) | def bleach_value(value, tags=None): function bleach_linkify (line 26) | def bleach_linkify(value): FILE: django_bleach/tests/test_forms.py class TestBleachField (line 17) | class TestBleachField(TestCase): method test_empty (line 18) | def test_empty(self): method test_return_type (line 29) | def test_return_type(self): method test_bleaching (line 34) | def test_bleaching(self): method test_tags (line 63) | def test_tags(self): method test_attrs (line 89) | def test_attrs(self): class TestCustomWidget (line 124) | class TestCustomWidget(TestCase): method setUp (line 125) | def setUp(self): method test_custom_widget_type (line 167) | def test_custom_widget_type(self): method test_custom_widget_bleaches_content (line 172) | def test_custom_widget_bleaches_content(self): FILE: django_bleach/tests/test_modelformfield.py class BleachContentModelForm (line 11) | class BleachContentModelForm(forms.ModelForm): class Meta (line 12) | class Meta: class TestModelFormField (line 17) | class TestModelFormField(TestCase): method setUp (line 18) | def setUp(self): method test_formfield_type (line 25) | def test_formfield_type(self): method test_default_widget_type (line 31) | def test_default_widget_type(self): method test_custom_widget_type (line 44) | def test_custom_widget_type(self): method test_widget_override (line 56) | def test_widget_override(self): method test_same_allowed_args (line 69) | def test_same_allowed_args(self): method test_with_choices (line 79) | def test_with_choices(self): method test_optional_field (line 86) | def test_optional_field(self): method test_required_field (line 92) | def test_required_field(self): class CustomBleachedFormField (line 99) | class CustomBleachedFormField(bleach_forms.BleachField): ... class OverriddenBleachContentModelForm (line 102) | class OverriddenBleachContentModelForm(forms.ModelForm): class Meta (line 103) | class Meta: class TestModelFormFieldOverrides (line 111) | class TestModelFormFieldOverrides(TestCase): method setUp (line 112) | def setUp(self): method test_formfield_type (line 116) | def test_formfield_type(self): FILE: django_bleach/tests/test_models.py class BleachContent (line 15) | class BleachContent(models.Model): class TestBleachModelField (line 35) | class TestBleachModelField(TestCase): method test_bleaching (line 38) | def test_bleaching(self): method test_retrieved_values_are_template_safe (line 62) | def test_retrieved_values_are_template_safe(self): method test_saved_values_are_template_safe (line 70) | def test_saved_values_are_template_safe(self): method test_saved_none_values_are_none (line 78) | def test_saved_none_values_are_none(self): class BleachNullableContent (line 84) | class BleachNullableContent(models.Model): class TestBleachNullableModelField (line 101) | class TestBleachNullableModelField(TestCase): method test_bleaching (line 104) | def test_bleaching(self): FILE: django_bleach/tests/test_settings.py class TestBleachOptions (line 19) | class TestBleachOptions(TestCase): method test_custom_attrs (line 24) | def test_custom_attrs(self, settings): method test_custom_proto (line 32) | def test_custom_proto(self, settings): method test_custom_styles (line 40) | def test_custom_styles(self, settings): method test_custom_tags (line 49) | def test_custom_tags(self, settings): method test_strip_tags (line 54) | def test_strip_tags(self, settings): method test_strip_comments (line 59) | def test_strip_comments(self, settings): class TestDefaultWidget (line 64) | class TestDefaultWidget(TestCase): method test_default_widget (line 68) | def test_default_widget(self): method test_custom_widget (line 75) | def test_custom_widget(self, settings): method test_attribute_err (line 82) | def test_attribute_err(self, settings): method test_import_err (line 90) | def test_import_err(self, settings): FILE: django_bleach/tests/test_templatetags.py class TestBleachTemplates (line 5) | class TestBleachTemplates(TestCase): method test_bleaching (line 8) | def test_bleaching(self): method test_bleaching_none (line 22) | def test_bleaching_none(self): method test_bleaching_tags (line 31) | def test_bleaching_tags(self): method test_linkify (line 45) | def test_linkify(self): method test_linkify_none (line 58) | def test_linkify_none(self): FILE: django_bleach/utils.py function get_bleach_default_options (line 5) | def get_bleach_default_options(): FILE: setup.py function read (line 14) | def read(*parts): function find_variable (line 19) | def find_variable(variable, *parts): FILE: testproject/forms.py class CustomBleachWidget (line 16) | class CustomBleachWidget(forms.Textarea): method __init__ (line 17) | def __init__(self, attrs=None): class BleachForm (line 23) | class BleachForm(forms.Form): class PersonForm (line 63) | class PersonForm(forms.ModelForm): class Meta (line 64) | class Meta: FILE: testproject/migrations/0001_initial.py class Migration (line 7) | class Migration(migrations.Migration): FILE: testproject/models.py class Person (line 8) | class Person(models.Model): FILE: testproject/views.py function home (line 9) | def home(request): function model_form (line 20) | def model_form(request):