Remove last references to 'edbob' package

This commit is contained in:
Lance Edgar 2016-10-09 21:12:13 -05:00
parent 9b50067bd7
commit b157b79938
18 changed files with 126 additions and 72 deletions

View file

@ -2,7 +2,7 @@
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2014 Lance Edgar
# Copyright © 2010-2016 Lance Edgar
#
# This file is part of Rattail.
#
@ -20,16 +20,17 @@
# along with Rattail. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################
"""
Pyramid Views
"""
from __future__ import unicode_literals, absolute_import
from .core import View
from tailbone.views.grids import (
GridView, AlchemyGridView, SortableAlchemyGridView,
PagedAlchemyGridView, SearchableAlchemyGridView)
from .crud import *
from .crud import CrudView
from .master import MasterView
from tailbone.views.autocomplete import AutocompleteView

View file

@ -2,7 +2,7 @@
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2015 Lance Edgar
# Copyright © 2010-2016 Lance Edgar
#
# This file is part of Rattail.
#
@ -24,7 +24,7 @@
CRUD View
"""
from __future__ import unicode_literals
from __future__ import unicode_literals, absolute_import
try:
from sqlalchemy.inspection import inspect
@ -38,20 +38,14 @@ from sqlalchemy_continuum.utils import is_versioned
from rattail.db import model
from rattail.db.continuum import count_versions, model_transaction_query
from rattail.util import prettify
from formalchemy import FieldSet
from pyramid.httpexceptions import HTTPFound, HTTPNotFound
from .core import View
from ..forms import AlchemyForm
from formalchemy import FieldSet
from edbob.util import prettify
from tailbone.db import Session
__all__ = ['CrudView']
from tailbone.views.core import View
from tailbone.forms import AlchemyForm
class CrudView(View):

View file

@ -31,7 +31,7 @@ import re
import sqlalchemy as sa
from sqlalchemy import orm
from edbob.util import prettify
from rattail.util import prettify
import formalchemy
from pyramid import httpexceptions