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.
This commit is contained in:
parent
dfc747f9c6
commit
cb59e85c2e
|
@ -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…
Reference in New Issue