reviewboard.site.validation¶
- validate_repositories(form, field='repositories')[source]¶
Validate that the repositories all have valid, matching LocalSites.
This will compare the LocalSite associated with the form to that of each added Repository. Each Repository must have the same LocalSite that the form is using.
- Parameters:
form (
django.forms.Form
) – The form to validate.field (
unicode
) – The name of the form field to validate.
- Returns:
The list of repositories.
- Return type:
- Raises:
django.core.exceptions.ValidationError – The selected groups contained ones which were not properly limited to the local site.
- validate_review_groups(form, field='review_groups')[source]¶
Validate that the review groups all have valid, matching LocalSites.
This will compare the LocalSite associated with the form to that of each added Group. Each Group must have the same LocalSite that the form is using.
- Parameters:
form (
django.forms.Form
) – The form to validate.field (
unicode
) – The name of the form field to validate.
- Returns:
The list of groups.
- Return type:
- Raises:
django.core.exceptions.ValidationError – The selected groups contained ones which were not properly limited to the local site.
- validate_users(form, field='users')[source]¶
Validate that the users all have valid, matching LocalSites.
This will compare the LocalSite associated with the form to that of each added User. If the form has a LocalSite set, then all Users are required to be a part of that LocalSite. Otherwise, any User is allowed.
- Parameters:
form (
django.forms.Form
) – The form to validate.field (
unicode
) – The name of the form field to validate.
- Returns:
The list of users.
- Return type:
- Raises:
django.core.exceptions.ValidationError – The selected users contained ones which were not properly limited to the local site.