- Language: en
18 results for full text search in version 1.8
-
QuerySet API reference
- … search A boolean full-text search, taking advantage of full-text indexing. This is like …
-
The Django admin site
- … search for all records in which first_name is exactly 'john winston' (containing a space). @ Using the ‘@’ operator to perform a full text …
-
Databases
- … full-text indexing and searching until MySQL 5.6.4. Since MySQL 5.5.5, the default storage engine …
-
django.forms.fields
- … text , * args , ** kwargs ) if self . required : self . choices = [] else : self . choices = [( "" , "---------" )] if self . match is not None : self . match_re = re . compile ( self . match ) if recursive : for root , dirs , files …
-
django.core.validators
- … search ( force_text ( value )))): raise ValidationError ( self . message , code = self . code ) def __eq__ ( self , other ): return ( isinstance ( other , RegexValidator ) and self . regex . pattern == other . regex . pattern and self . regex . flags == other . regex . flags and ( self …
-
django.middleware.common
- … full_path () referer = force_text ( request . META . get ( 'HTTP_REFERER' , '' ), errors = 'replace' ) if not self . is_ignorable_request ( request , path , domain , referer ): ua = request . META . get ( 'HTTP_USER …
-
django.contrib.admin.options
- … full_result_count = True # Validation of ModelAdmin definitions # Old, deprecated style: validator_class = None default_validator_class = validation . BaseValidator # New style: checks_class = BaseModelAdminChecks @classmethod def validate ( cls , model ): warnings . warn ( 'ModelAdmin.validate() is deprecated …
-
django.db.models.fields
- … full import path * Storage instances - these have their own deconstruct() method This is because the values here must be serialized into a text format (possibly new Python code, possibly JSON) and these are the only …
-
Working with forms
- … search form, because the URLs that represent a GET request can easily be bookmarked, shared, or resubmitted. Django’s role in forms Handling forms is a complex business. Consider Django’s admin, where numerous items …
-
Making queries
- … full details of all the various model lookup options. Throughout this guide (and in the reference), we’ll refer to the following models, which comprise a Weblog application: from django.db import models class Blog ( models …