- Timestamp:
- 14 Feb 2014, 09:08:03 (11 years ago)
- Location:
- main/waeup.skeleton/branches/uli-diazo-themed
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.skeleton/branches/uli-diazo-themed/etc/themed/debug.ini.in
r11086 r11095 86 86 document_root = %(LAYOUT_DIR)s/static 87 87 88 [app:static_custom] 89 use = egg:Paste#static 90 document_root = %(LAYOUT_CUSTOM_DIR)s/static/ 91 88 92 [composite:main] 89 93 use = egg:Paste#urlmap 90 94 /static = static 95 /static_custom = static_custom 91 96 / = default 92 97 93 98 [filter:theme] 94 99 use = egg:diazo 95 rules = file:///%(LAYOUT_ DIR)s/rules.xml100 rules = file:///%(LAYOUT_CUSTOM_DIR)s/rules.xml 96 101 prefix = / 97 102 doctype = <!DOCTYPE html> … … 115 120 env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt 116 121 # the directory where all real diazo config is done (no trailing slash) 117 LAYOUT_DIR = ${buildout:directory}/ layout122 LAYOUT_DIR = ${buildout:directory}/sources/waeup.kofa/layout 118 123 STATIC_DIR = %(LAYOUT_DIR)s/static 124 LAYOUT_CUSTOM_DIR = ${buildout:directory}/layout 125 STATIC_CUSTOM_DIR = %(LAYOUT_CUSTOM_DIR)s/static -
main/waeup.skeleton/branches/uli-diazo-themed/etc/themed/deploy.ini.in
r11086 r11095 88 88 document_root = %(LAYOUT_DIR)s/static/ 89 89 90 [app:static_custom] 91 use = egg:Paste#static 92 document_root = %(LAYOUT_CUSTOM_DIR)s/static/ 93 90 94 [composite:main] 91 95 use = egg:Paste#urlmap 92 96 /static = static 97 /static_custom = static_custom 93 98 / = default 94 99 … … 100 105 [filter:theme] 101 106 use = egg:diazo 102 rules = file:///%(LAYOUT_ DIR)s/rules.xml107 rules = file:///%(LAYOUT_CUSTOM_DIR)s/rules.xml 103 108 prefix = / 104 109 doctype = <!DOCTYPE html> … … 115 120 env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt 116 121 # the directory where all real diazo config is done (no trailing slash) 117 LAYOUT_DIR = ${buildout:directory}/ layout122 LAYOUT_DIR = ${buildout:directory}/sources/waeup.kofa/layout 118 123 STATIC_DIR = %(LAYOUT_DIR)s/static 124 LAYOUT_CUSTOM_DIR = ${buildout:directory}/layout 125 STATIC_CUSTOM_DIR = %(LAYOUT_CUSTOM_DIR)s/static -
main/waeup.skeleton/branches/uli-diazo-themed/layout/theme.html
r11064 r11095 18 18 rel="stylesheet"> 19 19 <link href="static/css/base.css" rel="stylesheet"> 20 <link href="static_custom/custom.css" rel="stylesheet"> 20 21 21 22 <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> … … 29 30 30 31 <!-- icons --> 31 <link rel="shortcut icon" href="static /ico/favicon.ico">32 <link rel="shortcut icon" href="static_custom/favicon.ico"> 32 33 33 34
Note: See TracChangeset for help on using the changeset viewer.