1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

gis: Merged revisions 7514,7520-7521 via svnmerge from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/gis@7523 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Justin Bronn 2008-05-10 16:18:22 +00:00
parent 579c9d4567
commit c3f48762fc
2 changed files with 5 additions and 5 deletions

View File

@ -29,7 +29,7 @@ def _display_login_form(request, error_message=''):
post_data = _encode_post_data({}) post_data = _encode_post_data({})
return render_to_response('admin/login.html', { return render_to_response('admin/login.html', {
'title': _('Log in'), 'title': _('Log in'),
'app_path': mark_safe(request.path), 'app_path': request.path,
'post_data': post_data, 'post_data': post_data,
'error_message': error_message 'error_message': error_message
}, context_instance=template.RequestContext(request)) }, context_instance=template.RequestContext(request))

View File

@ -1,6 +1,6 @@
""" """
Custom Query class for this backend (a derivative of Custom Query class for Oracle.
django.db.models.sql.query.Query). Derives from: django.db.models.sql.query.Query
""" """
import datetime import datetime
@ -12,8 +12,8 @@ _classes = {}
def query_class(QueryClass, Database): def query_class(QueryClass, Database):
""" """
Returns a custom djang.db.models.sql.query.Query subclass that is Returns a custom django.db.models.sql.query.Query subclass that is
appropraite for Oracle. appropriate for Oracle.
The 'Database' module (cx_Oracle) is passed in here so that all the setup The 'Database' module (cx_Oracle) is passed in here so that all the setup
required to import it only needs to be done by the calling module. required to import it only needs to be done by the calling module.