summarylogtreecommitdiffstats
path: root/tiddlywiki.py
blob: 79bf6c85a1f685c2e081b270e04c82e970949759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Alexander Rødseth <rodseth@gmail.com>
# BSD license
# 24032009
# 28022011

from sys import argv
from os.path import join, exists
from os import mkdir, system, environ

def main():
    arguments = argv[1:]
    if arguments:
        where = arguments[0]
    else:
        where = join(environ['HOME'], '.tiddlywiki')
    goal = join(where, 'index.html')
    if not exists(where):
        mkdir(where)
        system('cp /usr/share/tiddlywiki/empty.html %s' % (goal))
    if ('BROWSER' in environ) and environ['BROWSER']:
        system(environ['BROWSER'] + " " + goal)
    else:
        system("/usr/bin/gnome-open " + goal)

if __name__ == "__main__":
    main()