Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-11-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  closed
Component:  Core (Management |  Version:  1.8
  commands)  |
 Severity:  Release blocker  |   Resolution:  fixed
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

 * status:  new => closed
 * version:  1.8alpha1 => 1.8
 * resolution:   => fixed


Comment:

 The issue reported in this ticket is fixed in Django 1.8. Please open a
 new bug with steps to reproduce if you are encountering a different issue.
 Thanks!

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.457a472e6715929c4acdfa9fab1d9cff%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-11-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  new
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by kissgyorgy):

 * status:  closed => new
 * resolution:  fixed =>


Comment:

 I don't think the solution to the problem should be "Just don't use
 nonascii characters in path names".
 I'm not totally sure, but I suppose the problem is the `unicode_literals`
 future import.

 See Armin's opinion here: https://github.com/PythonCharmers/python-
 future/issues/22

 I got a traceback like this:
 {{{
 a = '/var/lib/jenkins/jobs/K\xc3\xa1rtyarendel\xc5\x91/workspace/orders'
 p = ('management.py',)
 path =
 '/var/lib/jenkins/jobs/K\xc3\xa1rtyarendel\xc5\x91/workspace/orders'
 b = 'management.py'

 def join(a, *p):
 """Join two or more pathname components, inserting '/' as needed.
 If any component is an absolute path, all previous path components
 will be discarded.  An empty last part will result in a path that
 ends with a separator."""
 path = a
 for b in p:
 if b.startswith('/'):
 path = b
 elif path == '' or path.endswith('/'):
 path +=  b
 else:
 >   path += '/' + b
 E   UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3
 in position 23: ordinal not in range(128)

 /usr/lib64/python2.7/posixpath.py:80: UnicodeDecodeError
 }}}

 As far as I understand ``os.path.join`` can't handle unicode inputs, but
 when you use the `unicode_literals`, everything will be unicode.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.7c515062f39d77bdb3b16b6b4f31b123%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-18 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  closed
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:  fixed
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

 * status:  assigned => closed
 * resolution:   => fixed


Comment:

 Had trouble on the Jenkins build on Python 2 when running `./runtests.py`:
 {{{
 Traceback (most recent call last):
   File "./runtests.py", line 431, in 
 options.debug_sql)
   File "./runtests.py", line 253, in django_tests
 extra_tests=extra_tests,
   File "/home/jenkins/workspace/master-ἥoἥascii-
 path/database/sqlite3/label/trusty/python/python2.7/django/test/runner.py",
 line 209, in run_tests
 suite = self.build_suite(test_labels, extra_tests)
   File "/home/jenkins/workspace/master-ἥoἥascii-
 path/database/sqlite3/label/trusty/python/python2.7/django/test/runner.py",
 line 150, in build_suite
 tests = self.test_loader.discover(start_dir=label, **kwargs)
   File "/usr/lib/python2.7/unittest/loader.py", line 206, in discover
 tests = list(self._find_tests(start_dir, pattern))
   File "/usr/lib/python2.7/unittest/loader.py", line 267, in _find_tests
 raise ImportError(msg % (mod_name, module_dir, expected_dir))
 ImportError: u'tests' module incorrectly imported from
 '/home/jenkins/workspace/master-\xe1\xbc\xa5o\xe1\xbc\xa5ascii-
 path/database/sqlite3/label/trusty/python/python2.7/tests/shortcuts'.
 Expected u'/home/jenkins/workspace/master-\u1f25o\u1f25ascii-
 path/database/sqlite3/label/trusty/python/python2.7/tests/shortcuts'. Is
 this module globally installed?
 }}}
 but `./tests/runtests.py` works so I'm using a different build script for
 [http://djangoci.com/view/All/job/master-%E1%BC%A5o%E1%BC%A5ascii-path/
 the build] with that invocation (and also using a different virtualenv
 path so we avoid the non-ASCII chars). It's green now!

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.e57243172f40c6ae7185fc9b46c2aa4a%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-18 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"1153bccc1bc654a547a310d0614b989606d25950"]:
 {{{
 #!CommitTicketReference repository=""
 revision="1153bccc1bc654a547a310d0614b989606d25950"
 [1.8.x] Refs #24324 -- Fixed crash in {% debug %} tag on Python 2.

 If Django is installed in a path that contains non-ASCII characters,
 the tag failed with UnicodeDecodeError.

 Backport of 098fa12dd390e733c7568d824eea2c346550c75a from master
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.5d6f50d1c80b93941f67ebef44518f80%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-18 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"5068a51d88a7084bd0349d150816fc6041caa224"]:
 {{{
 #!CommitTicketReference repository=""
 revision="5068a51d88a7084bd0349d150816fc6041caa224"
 [1.8.x] Refs #24324 -- Skipped fixtures_regress tests that fail on Python
 2 on a non-ASCII path.

 Backport of b8d6cdbcc90ff8af781d13131b79ce88a9eff66d from master
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.ddd37b14b751855b16f2c7e62d55b903%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-18 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"b8d6cdbcc90ff8af781d13131b79ce88a9eff66d"]:
 {{{
 #!CommitTicketReference repository=""
 revision="b8d6cdbcc90ff8af781d13131b79ce88a9eff66d"
 Refs #24324 -- Skipped fixtures_regress tests that fail on Python 2 on a
 non-ASCII path.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.14980f1d5f390a6b76955c351aff394b%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-18 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"098fa12dd390e733c7568d824eea2c346550c75a"]:
 {{{
 #!CommitTicketReference repository=""
 revision="098fa12dd390e733c7568d824eea2c346550c75a"
 Refs #24324 -- Fixed crash in {% debug %} tag on Python 2.

 If Django is installed in a path that contains non-ASCII characters,
 the tag failed with UnicodeDecodeError.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.0985a1a946d93a081d669e704b805fb9%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"307c0f299a6c26f5231d3516df5b4edc54b36553"]:
 {{{
 #!CommitTicketReference repository=""
 revision="307c0f299a6c26f5231d3516df5b4edc54b36553"
 Refs #24324 -- Fixed Python 2 test failures when path to Django source
 contains non-ASCII characters.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.5fc161311a2804b02f49bd1652c782f8%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"2aa06e439a29a1c24fa03744395cc57787e7198e"]:
 {{{
 #!CommitTicketReference repository=""
 revision="2aa06e439a29a1c24fa03744395cc57787e7198e"
 [1.8.x] Refs #24324 -- Fixed Python 2 test failures when path to Django
 source contains non-ASCII characters.

 Backport of 307c0f299a6c26f5231d3516df5b4edc54b36553 from master
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.452541bffc31caa4b73e3446f32f3725%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"09da1b465ea8ba9ecb99b1cd02a689bb831d0e1b"]:
 {{{
 #!CommitTicketReference repository=""
 revision="09da1b465ea8ba9ecb99b1cd02a689bb831d0e1b"
 [1.8.x] Refs #24324 -- Fixed UnicodeDecodeError in MigrationWriter on
 Python 2.

 Backport of fa66ea75326e669cd3d51fb926a4364b8ba08959 from master
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.286f66bb9eff883b68b0692acf1d164b%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"f9a99c410e4ccc2ca89fc6006c48a23b02bae873"]:
 {{{
 #!CommitTicketReference repository=""
 revision="f9a99c410e4ccc2ca89fc6006c48a23b02bae873"
 [1.8.x] Refs #24324 -- Fixed UnicodeDecodeError in template_backends tests

 The message for the SuspiciousFileOperation exception needs to
 be a unicode string.

 Backport of bebc1e53a3ab059849e5c4e5a55b2f5e68b67169 from master
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.5ea5e0cc0578d8d87501229796cc3c30%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"fa66ea75326e669cd3d51fb926a4364b8ba08959"]:
 {{{
 #!CommitTicketReference repository=""
 revision="fa66ea75326e669cd3d51fb926a4364b8ba08959"
 Refs #24324 -- Fixed UnicodeDecodeError in MigrationWriter on Python 2.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.9c84f261def1161858342b492dc62a05%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"bebc1e53a3ab059849e5c4e5a55b2f5e68b67169"]:
 {{{
 #!CommitTicketReference repository=""
 revision="bebc1e53a3ab059849e5c4e5a55b2f5e68b67169"
 Refs #24324 -- Fixed UnicodeDecodeError in template_backends tests

 The message for the SuspiciousFileOperation exception needs to
 be a unicode string.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.94deaede46cee92733ee639339da9b1d%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"a1fa0135ecb28911f31af4df994be26db59355e4"]:
 {{{
 #!CommitTicketReference repository=""
 revision="a1fa0135ecb28911f31af4df994be26db59355e4"
 [1.8.x] Refs #24324 -- Fixed get_app_template_dirs() UnicodeDecodeError on
 Python 2.

 The function implemented most of upath(), but skipped the check for
 strings that are already unicode.

 Backport of bad6280c4e3f75f3ccd27f8fd85a4043bb296128 from master
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.9037012bb213c7c1a8c311fd8a72f577%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"bad6280c4e3f75f3ccd27f8fd85a4043bb296128"]:
 {{{
 #!CommitTicketReference repository=""
 revision="bad6280c4e3f75f3ccd27f8fd85a4043bb296128"
 Refs #24324 -- Fixed get_app_template_dirs() UnicodeDecodeError on Python
 2.

 The function implemented most of upath(), but skipped the check for
 strings that are already unicode.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.96e553ea7ecbd22c27836b17a17c60dd%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"ba3a7636f1bb8c02eaabbeff9a3731ad27a82c5d"]:
 {{{
 #!CommitTicketReference repository=""
 revision="ba3a7636f1bb8c02eaabbeff9a3731ad27a82c5d"
 [1.8.x] Refs #24324 -- Fixed UnicodeDecodeError in makemigrations.

 If the project path contained a non-ASCII character, Python 2 crashed.

 Backport of c9ece2e6b9365fa4be16bd0de25dd7b68c8dc97e from master
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.df08e2208dc6db50b22cd8227d17f540%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"c9ece2e6b9365fa4be16bd0de25dd7b68c8dc97e"]:
 {{{
 #!CommitTicketReference repository=""
 revision="c9ece2e6b9365fa4be16bd0de25dd7b68c8dc97e"
 Refs #24324 -- Fixed UnicodeDecodeError in makemigrations.

 If the project path contained a non-ASCII character, Python 2 crashed.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.071bc163bf02d85ebd1106a1d409f142%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"63c5c9870129f6b81358c1ed7ed2392bbc46f77d"]:
 {{{
 #!CommitTicketReference repository=""
 revision="63c5c9870129f6b81358c1ed7ed2392bbc46f77d"
 Refs #24324 -- Fixed UnicodeEncodeError in SQLite backend while testing.

 If 'name' contained non-ASCII characters, the comparison raised a
 UnicodeEncodeError on Python 2.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.1ddd5a711ef34b389ffb5c3410d80ceb%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"4f43e5c4353325eb8d1c455c58e299ef95e2e422"]:
 {{{
 #!CommitTicketReference repository=""
 revision="4f43e5c4353325eb8d1c455c58e299ef95e2e422"
 [1.8.x] Refs #24324 -- Fixed UnicodeEncodeError in SQLite backend while
 testing.

 If 'name' contained non-ASCII characters, the comparison raised a
 UnicodeEncodeError on Python 2.

 Backport of 63c5c9870129f6b81358c1ed7ed2392bbc46f77d from master
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.f5e8a8ef4b15ccee94c54f0c1fdfa02e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"9dba901d9c44a117b35003e0c239476536c259aa"]:
 {{{
 #!CommitTicketReference repository=""
 revision="9dba901d9c44a117b35003e0c239476536c259aa"
 [1.8.x] Refs #24324 -- Fixed makemessages crash when Django is installed
 in a non-ASCII path.

 Backport of 81a94cc616ab80decaa495cfa1c0c623527fc0e7 from master
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.377fbded854652ef468936059937d82d%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"81a94cc616ab80decaa495cfa1c0c623527fc0e7"]:
 {{{
 #!CommitTicketReference repository=""
 revision="81a94cc616ab80decaa495cfa1c0c623527fc0e7"
 Refs #24324 -- Fixed makemessages crash when Django is installed in a non-
 ASCII path.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.591c83d9781c18038009ee5099f56641%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"b2f7daa4a6ba4f463dd79b19c337c738201479ad"]:
 {{{
 #!CommitTicketReference repository=""
 revision="b2f7daa4a6ba4f463dd79b19c337c738201479ad"
 [1.8.x] Refs #24324 -- Fixed UnicodeDecodeError in model_regress test on
 non-ASCII path.

 Backport of d316b43d0ab9db0f9913b094b84b11362d36d054 from master
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.e0c402d1d91b9dbb39b3d33fd1ad7412%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"d316b43d0ab9db0f9913b094b84b11362d36d054"]:
 {{{
 #!CommitTicketReference repository=""
 revision="d316b43d0ab9db0f9913b094b84b11362d36d054"
 Refs #24324 -- Fixed UnicodeDecodeError in model_regress test on non-ASCII
 path.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.ca4d565627081977166b06bdf9653e8d%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"bcb3bfa5a2716454e15ca0203e0debf497b14273"]:
 {{{
 #!CommitTicketReference repository=""
 revision="bcb3bfa5a2716454e15ca0203e0debf497b14273"
 [1.8.x] Refs #24324 -- Fixed management command discovery on non-ASCII
 paths.

 Backport of 4a0aeac1b5cfb7b6229a01119a596afb38d8a2a0 from master
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.a1341a2b1d23e834fb36a536c3fe4700%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character

2015-02-17 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"4a0aeac1b5cfb7b6229a01119a596afb38d8a2a0"]:
 {{{
 #!CommitTicketReference repository=""
 revision="4a0aeac1b5cfb7b6229a01119a596afb38d8a2a0"
 Refs #24324 -- Fixed management command discovery on non-ASCII paths.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.3c46476f855cf622fa4c9284f464d434%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #24324: Crashes when project path or path to Django install contains a non-ascii character (was: makemigrations fails with UnicodeDecodeError when path to project contains special charact

2015-02-16 Thread Django
#24324: Crashes when project path or path to Django install contains a non-ascii
character
-+-
 Reporter:  notsqrt  |Owner:  timgraham
 Type:  Bug  |   Status:  assigned
Component:  Core (Management |  Version:  1.8alpha1
  commands)  |
 Severity:  Release blocker  |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

 * status:  new => assigned
 * owner:  nobody => timgraham
 * version:  1.7 => 1.8alpha1


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.052313ae8b042a2b7714926df2d4b4c3%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.