Mercurial > getan
annotate README @ 1:a3fe8e4e9184
- To exit getan you now can use double BACKSPACE, too.
- Fixed typo, added hint to Sascha Wilde's projects converter.
- Added Sascha Wilde's converter to import existing worklog configuration files.
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Tue, 29 Jul 2008 16:38:40 +0200 |
parents | 7eb7886ed8fd |
children | 1513c716eef0 |
rev | line source |
---|---|
0 | 1 0 - install pysqlite2 |
2 | |
3 On Debian GNU/Linux just do: | |
4 | |
5 # apt-get install python-pysqlite2 | |
6 | |
7 1 - create new time.db | |
8 | |
9 To create an empty database you need the 'sqlite3' | |
10 commandline tool. TODO: This will change. | |
11 | |
12 # apt-get install sqlite3 | |
13 | |
1
a3fe8e4e9184
- To exit getan you now can use double BACKSPACE, too.
Sascha L. Teichmann <teichmann@intevation.de>
parents:
0
diff
changeset
|
14 $ echo '.r schema.sql' | sqlite3 time.db |
0 | 15 |
16 2 - adding new projects to time.db: | |
17 | |
18 $ sqlite3 time.db | |
19 sqlite> INSERT INTO projects (key, description) VALUES ('f', 'FOO'); | |
20 sqlite> INSERT INTO projects (key, description) VALUES ('b', 'BAR'); | |
21 sqlite> .q | |
22 | |
1
a3fe8e4e9184
- To exit getan you now can use double BACKSPACE, too.
Sascha L. Teichmann <teichmann@intevation.de>
parents:
0
diff
changeset
|
23 To import an old worklog configuration you may use: |
a3fe8e4e9184
- To exit getan you now can use double BACKSPACE, too.
Sascha L. Teichmann <teichmann@intevation.de>
parents:
0
diff
changeset
|
24 |
a3fe8e4e9184
- To exit getan you now can use double BACKSPACE, too.
Sascha L. Teichmann <teichmann@intevation.de>
parents:
0
diff
changeset
|
25 ./contrib/convert-projects </PATH/TO/projects | sqlite3 time.db |
a3fe8e4e9184
- To exit getan you now can use double BACKSPACE, too.
Sascha L. Teichmann <teichmann@intevation.de>
parents:
0
diff
changeset
|
26 |
0 | 27 3 - starting getan: |
28 | |
29 $ ./getan | |
30 | |
31 or | |
32 | |
33 $ ./getan mytime.db | |
34 |