Moved files into their new locations prior to commit of 0.2.

The changes in most files between 0.1 and 0.2 are so large that git is unable
to automatically detect the renames that took place. This commit moves files
into their new locations so that the history is accurate.
pull/5/head
Michael Spang 16 years ago
parent dfc747f9c6
commit cb59e85c2e
  1. 10
      debian/rules
  2. 0
      etc/accounts.cf
  3. 0
      etc/members.cf
  4. 0
      pylib/csc/__init__.py
  5. 0
      pylib/csc/adm/__init__.py
  6. 4
      pylib/csc/adm/accounts.py
  7. 6
      pylib/csc/adm/members.py
  8. 0
      pylib/csc/adm/terms.py
  9. 0
      pylib/csc/apps/__init__.py
  10. 0
      pylib/csc/apps/legacy/__init__.py
  11. 0
      pylib/csc/apps/legacy/helpers.py
  12. 2
      pylib/csc/apps/legacy/main.py
  13. 0
      pylib/csc/backends/__init__.py
  14. 0
      pylib/csc/backends/db.py
  15. 0
      pylib/csc/backends/ipc.py
  16. 0
      pylib/csc/backends/krb.py
  17. 0
      pylib/csc/backends/ldapi.py
  18. 3
      pylib/csc/common/__init__.py
  19. 0
      pylib/csc/common/conf.py

10
debian/rules vendored

@ -17,7 +17,7 @@ clean:
dh_clean
rm -f build-stamp
rm -rf build/
find py/ -name '*.pyc' -print0 | xargs -0 rm -f
find pylib/ -name '*.pyc' -print0 | xargs -0 rm -f
install: build
dh_testdir
@ -25,12 +25,12 @@ install: build
dh_clean -k
# configuration files will contain sensitive information
chmod 600 etc/csc/*
chmod 600 etc/*
dh_installdirs etc usr/lib/$(PYTHON)/site-packages usr/share/csc \
dh_installdirs etc/csc usr/lib/$(PYTHON)/site-packages usr/share/csc \
usr/lib/csc usr/bin
dh_install -X.svn -X.pyc py/csc usr/lib/$(PYTHON)/site-packages/
dh_install -X.svn -X.pyc etc/csc etc/
dh_install -X.svn -X.pyc pylib/csc usr/lib/$(PYTHON)/site-packages/
dh_install -X.svn -X.pyc etc/* etc/csc/
dh_install -X.svn -X.pyc sql/* usr/share/csc/
dh_install -X.svn -X.pyc bin/ceo usr/lib/csc/

@ -1,8 +1,8 @@
# $Id: accounts.py 44 2006-12-31 07:09:27Z mspang $
# UNIX Accounts Module
import re
from csc.backend import ldapi, krb
from csc.lib import read_config
from csc.backends import ldapi, krb
from csc.common.conf import read_config
CONFIG_FILE = '/etc/csc/accounts.cf'

@ -12,9 +12,9 @@ must also be moved into this module.
"""
import re
from csc.admin import terms
from csc.backend import db
from csc.lib import read_config
from csc.adm import terms
from csc.backends import db
from csc.common.conf import read_config

@ -12,7 +12,7 @@ This frontend is poorly documented, deprecated, and undoubtedly full of bugs.
"""
import curses.ascii, re, os
from helpers import menu, inputbox, msgbox, reset
from csc.admin import accounts, members, terms
from csc.adm import accounts, members, terms
# color of the ceo border
BORDER_COLOR = curses.COLOR_RED

@ -0,0 +1,3 @@
"""
Generally Useful Common Modules
"""
Loading…
Cancel
Save