collect scripts in oxtools

This commit is contained in:
j 2009-01-18 19:39:14 +11:00
commit 4f9c3da160
22 changed files with 1297 additions and 0 deletions

15
bin/oxposter Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
import os
import sys
root = os.path.join(os.path.abspath(os.path.dirname(__file__)), '..')
if os.path.exists(os.path.join(root, 'oxgst')):
sys.path.insert(0, root)
from oxposter import poster
if __name__ == "__main__":
poster.main()