From 5556054e58f1b0c0f0caf8c18cffdd6b1a725e09 Mon Sep 17 00:00:00 2001 From: Mike Crute Date: Wed, 29 Jul 2015 18:20:52 -0700 Subject: Final commit before moving to git. --- obalie/commands/ls.py | 16 ++++++++++++++++ obalie/test.py | 5 +++++ 2 files changed, 21 insertions(+) create mode 100644 obalie/commands/ls.py create mode 100755 obalie/test.py diff --git a/obalie/commands/ls.py b/obalie/commands/ls.py new file mode 100644 index 0000000..f10724a --- /dev/null +++ b/obalie/commands/ls.py @@ -0,0 +1,16 @@ +# vim: set filencoding=utf8 +""" +Directory Listing Command + +@author: Mike Crute (mcrute@gmail.com) +@organization: SoftGroup Interactive, Inc. +@date: April 20, 2010 +""" + +from obalie.commands import BaseCommand + + +class LsCommand(BaseCommand): + + def __call__(self, args): + pass diff --git a/obalie/test.py b/obalie/test.py new file mode 100755 index 0000000..4e2440d --- /dev/null +++ b/obalie/test.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python2.6 + +from obalie.client import Client +c = Client('https://subversion.ops.ag.com/repos/agcom/endeca/trunk') +print c.info().relative_path -- cgit v1.2.3