From 106791e18d29e89b1e242b49c086dae369b8c1e5 Mon Sep 17 00:00:00 2001 From: Max Usachev Date: Sat, 19 Jun 2010 10:42:38 +0300 Subject: [PATCH 1/1] added constants module --- constants.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 constants.py diff --git a/constants.py b/constants.py new file mode 100644 index 0000000..57af873 --- /dev/null +++ b/constants.py @@ -0,0 +1,8 @@ +# item types +TYPE_DIRECTORY = 'd' +TYPE_FILE = 'f' + +# fields +FIELD_TOPLEVEL = 'o' +FIELD_MIDDLELEVEL = 'ou' +FIELD_LOWLEVEL = 'cn' -- 1.7.9.5