mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	magic-removal: first step to integrate mutually referential models
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1702 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -16,15 +16,12 @@ HORIZONTAL, VERTICAL = 1, 2 | |||||||
| BLANK_CHOICE_DASH = [("", "---------")] | BLANK_CHOICE_DASH = [("", "---------")] | ||||||
| BLANK_CHOICE_NONE = [("", "None")] | BLANK_CHOICE_NONE = [("", "None")] | ||||||
|  |  | ||||||
|  |  | ||||||
| # prepares a value for use in a LIKE query | # prepares a value for use in a LIKE query | ||||||
| prep_for_like_query = lambda x: str(x).replace("%", "\%").replace("_", "\_") | prep_for_like_query = lambda x: str(x).replace("%", "\%").replace("_", "\_") | ||||||
|  |  | ||||||
| # returns the <ul> class for a given radio_admin value | # returns the <ul> class for a given radio_admin value | ||||||
| get_ul_class = lambda x: 'radiolist%s' % ((x == HORIZONTAL) and ' inline' or '') | get_ul_class = lambda x: 'radiolist%s' % ((x == HORIZONTAL) and ' inline' or '') | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| def manipulator_valid_rel_key(f, self, field_data, all_data): | def manipulator_valid_rel_key(f, self, field_data, all_data): | ||||||
|     "Validates that the value is a valid foreign key" |     "Validates that the value is a valid foreign key" | ||||||
|     klass = f.rel.to |     klass = f.rel.to | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user