Changeset 8443
- Timestamp:
- 14 May 2012, 10:00:37 (13 years ago)
- Location:
- main/waeup.uniben/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/setup.py
r8360 r8443 89 89 # Add entry points here 90 90 [hurry.resource.libraries] 91 waeup_ uniben = waeup.uniben.browser.resources:waeup_uniben91 waeup_custom = waeup.uniben.browser.resources:waeup_custom 92 92 [console_scripts] 93 93 kofa-debug = grokcore.startup:interactive_debug_prompt -
main/waeup.uniben/trunk/src/waeup/uniben/browser/resources.py
r8441 r8443 21 21 ) 22 22 23 #: All local resources are registered under the name ``waeup_ uniben``.24 waeup_ uniben = Library('waeup_uniben', 'static')23 #: All local resources are registered under the name ``waeup_custom``. 24 waeup_custom = Library('waeup_custom', 'static') 25 25 26 26 custom_theme = ResourceInclusion( 27 waeup_ uniben, 'custom_theme.css',27 waeup_custom, 'custom_theme.css', 28 28 depends = [waeup_base_css]) 29 29 30 favicon = ResourceInclusion(waeup_ uniben, 'favicon.ico')30 favicon = ResourceInclusion(waeup_custom, 'favicon.ico')
Note: See TracChangeset for help on using the changeset viewer.