Changeset 5857 for main/waeup.sirp


Ignore:
Timestamp:
12 Mar 2011, 17:10:14 (14 years ago)
Author:
uli
Message:

Another try.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/widgets/table.py

    r5856 r5857  
    109109
    110110
    111    
     111
    112112class YUIStaticTableView(grok.View):
    113113    grok.context(Interface)
    114114    grok.name('yuistatictables.js')
     115    grok.require('zope.Public')
    115116
    116117    def render(self):
     
    121122        except:
    122123            # No table provider for the context. Be gentle...
    123             return '/* No content */'
     124            return u'/* No content */'
    124125        tables = provider.getTables()
    125126        results = [table.getJSTableCode() for table in tables]
Note: See TracChangeset for help on using the changeset viewer.