| 1 |
#!/usr/bin/python2.4
|
| 2 |
print "THIS IS JUST A TESTING APP, NOT USEABLE YET"
|
| 3 |
# You need to put the path to the lib dir here, e.g. /usr/lib/laysvn
|
| 4 |
import sys
|
| 5 |
sys.path.insert(0, 'lib')
|
| 6 |
|
| 7 |
"""
|
| 8 |
LaySVN main application
|
| 9 |
|
| 10 |
Copyright (C) 2006 Erich Schubert
|
| 11 |
|
| 12 |
This program is free software; you can redistribute it and/or
|
| 13 |
modify it under the terms of the GNU General Public License
|
| 14 |
as published by the Free Software Foundation; either version 2
|
| 15 |
of the License, or (at your option) any later version.
|
| 16 |
|
| 17 |
This program is distributed in the hope that it will be useful,
|
| 18 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 19 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 20 |
GNU General Public License for more details.
|
| 21 |
|
| 22 |
You can find the full GNU General Public Licence at
|
| 23 |
http://www.gnu.org/licenses/gpl.html
|
| 24 |
or included with your favourite Linux Distribution.
|
| 25 |
"""
|
| 26 |
import manager
|
| 27 |
import cli
|
| 28 |
|
| 29 |
# run manager hardcoded on test/ dir
|
| 30 |
m = manager.manager("test")
|
| 31 |
cli.parseCommandLine(m,sys.argv)
|
| 32 |
|
| 33 |
# vim:noet:
|
| 34 |
# Local Variables:
|
| 35 |
# indent-tabs-mode: t
|
| 36 |
# End:
|