remove obsolete 'browser' package

git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3194 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2009-01-29 15:02:50 +00:00
parent 91a4203749
commit d33a1a4fbc
4 changed files with 2 additions and 53 deletions

View file

@ -1,4 +0,0 @@
"""
$Id$
"""

View file

@ -1,15 +0,0 @@
<!-- $Id$ -->
<configure
xmlns="http://namespaces.zope.org/browser"
xmlns:zope="http://namespaces.zope.org/zope"
i18n_domain="cybertools.commerce">
<page
for="cybertools.commerce.interfaces.IProduct"
name="index.html"
class="cybertools.commerce.browser.product.ProductView"
permission="zope.View"
/>
</configure>

View file

@ -1,34 +0,0 @@
#
# Copyright (c) 2008 Helmut Merz helmutm@cy55.de
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
"""
Basic browser view classes for products.
$Id$
"""
from zope import component
from zope.cachedescriptors.property import Lazy
class ProductView(object):
def __init__(self, context, request):
self.context = context
self.request = request

View file

@ -38,6 +38,7 @@ class Product(BaseObject):
def __init__(self, productId, title=None): def __init__(self, productId, title=None):
self.name = self.productId = productId self.name = self.productId = productId
self.title = title or u'unknown' self.title = title or u'unknown'
self.description = u''
self.shops = self.collection(self, 'products') self.shops = self.collection(self, 'products')
self.categories = self.collection(self, 'products') self.categories = self.collection(self, 'products')
self.suppliers = self.collection(self, 'products') self.suppliers = self.collection(self, 'products')
@ -50,6 +51,7 @@ class Category(BaseObject):
def __init__(self, name, title=None): def __init__(self, name, title=None):
self.name = name self.name = name
self.title = title or u'unknown' self.title = title or u'unknown'
self.description = u''
self.shops = self.collection(self, 'categories') self.shops = self.collection(self, 'categories')
self.products = self.collection(self, 'categories') self.products = self.collection(self, 'categories')
self.subcategories = self.collection(self, 'parentCategories') self.subcategories = self.collection(self, 'parentCategories')