Changes between Initial Version and Version 5 of Ticket #7588


Ignore:
Timestamp:
May 15, 2016, 6:00:59 AM (8 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7588

    • Property Status changed from new to closed
    • Property Keywords UTF-8 added; utf8 removed
    • Property Resolution changed from to fixed
  • Ticket #7588 – Description

    initial v5  
    11Hi Martin:
    2 Thanks for your help, but the change add an common error for non english system.
     2
     3Thanks for your help, but the change add an common error for non-english system.
    34On line 8 of setup.py
     5{{{#!python
    46__date__     = r"$Date$"[7:-2]
     7}}}
    58
    6 If i make:
     9If i make:
     10{{{#!sh
    711svn checkout http://trac-hacks.org/svn/googlestaticmapmacro/0.11/ googlestaticmapmacro
     12}}}
    813
    9 I get on setup.py:
     14I get on setup.py (1):
     15{{{#!python
    1016__date__     = r"$Date: 2010-08-28 12:22:35 -0400 (sáb 28 de ago de 2010) $"[7:-2]
     17}}}
    1118
    1219Because in Spanish Saturday is Sábado.
    1320
    14 To correct this problem I have to add on setup.py {1}
     21To correct this problem I have to add on `setup.py`:
     22{{{#!python
    1523#!/usr/bin/env python
    1624# -*- coding: utf-8 -*-
     25}}}
    1726
    1827Would be nice if you correct this internationalization problem declaring the encoding
     
    2130Javier
    2231
    23 {1} http://www.python.org/peps/pep-0263.html for details
    24 
     32(1) http://www.python.org/peps/pep-0263.html for details