Mercurial > getan
view contrib/convert-projects @ 145:ccd47a2d37a6
Carefully handle non unicode strings for urwid
Urwid seems to have some issues with latin1 and unicode conversion when setting
a text box. Therefore be sure to pass only unicode strings to urwid.
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Tue, 13 Nov 2012 13:12:12 +0100 |
parents | a3fe8e4e9184 |
children |
line wrap: on
line source
#!/usr/bin/awk -f # Convert classic worklog projects file to SQL statements for inseration in the getan database. # USAGE: # ./convert-projects </PATH/TO/projects | sqlite3 time.db BEGIN { FS=":"; } /[^# \t]/ { printf "INSERT INTO projects (key, description) VALUES ('%s', '%s');\n", $1, $2; }