Things should be working again, minus the web stuff.

This commit is contained in:
Greg Taylor 2008-12-15 04:35:00 +00:00
parent 322c626295
commit 5249f27074
19 changed files with 44 additions and 38 deletions

View file

@ -6,9 +6,9 @@ import time
from django.conf import settings
from apps.config.models import ConfigValue
from apps.helpsys.models import HelpEntry
from apps.objects.models import Object
from src.config.models import ConfigValue
from src.helpsys.models import HelpEntry
from src.objects.models import Object
from src import defines_global
from src import session_mgr
from src import ansi

View file

@ -13,7 +13,7 @@ if not functions_general.host_os_is('nt'):
import django
from apps.objects.models import Object
from src.objects.models import Object
from src import scheduler
from src import defines_global
from src import flags

View file

@ -1,7 +1,7 @@
"""
These commands typically are to do with building or modifying Objects.
"""
from apps.objects.models import Object, Attribute
from src.objects.models import Object, Attribute
# We'll import this as the full path to avoid local variable clashes.
import src.flags
from src import ansi

View file

@ -1,7 +1,7 @@
"""
Paging command and support functions.
"""
from apps.objects.models import Object
from src.objects.models import Object
from src import defines_global
def get_last_paged_objects(pobject):

View file

@ -2,7 +2,7 @@
This file contains commands that require special permissions to use. These
are generally @-prefixed commands, but there are exceptions.
"""
from apps.objects.models import Object
from src.objects.models import Object
from src import defines_global
from src import ansi
from src import session_mgr

View file

@ -3,7 +3,7 @@ Commands that are available from the connect screen.
"""
from django.contrib.auth.models import User
from apps.objects.models import Attribute, Object
from src.objects.models import Attribute, Object
from src import defines_global
from src.util import functions_general