Commit ab985a3e authored by Kevin Deldycke's avatar Kevin Deldycke

erp5.css and erp5.js are not authoritative over others CSS and JS (this let...

erp5.css and erp5.js are not authoritative over others CSS and JS (this let let user override default CSS and JS definitions).

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@9525 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 79410548
......@@ -63,10 +63,10 @@
dummy python: request.set(\'here\', here);\n
\n
global css_list css_list | python: [];\n
dummy python: not is_web_mode and css_list.append(\'%s/erp5.css\' % (here.portal_url.getPortalPath(), ));\n
dummy python: not is_web_mode and css_list.insert(0, \'%s/erp5.css\' % here.portal_url.getPortalPath());\n
\n
global js_list js_list | python: [];\n
dummy python: not is_web_mode and js_list.append(\'%s/erp5.js\' % (here.portal_url.getPortalPath(), ));\n
dummy python: not is_web_mode and js_list.insert(0, \'%s/erp5.js\' % here.portal_url.getPortalPath());\n
\n
global http_parameter_list request/form/copy;\n
http_parameter_list python: here.ERP5XhtmlStyle_filterParameterList(http_parameter_list);\n
......
2006-08-29 Kevin
* erp5.css and erp5.js are not authoritative over others CSS and JS (this let let user override default CSS and JS definitions).
2006-08-28 Kevin
* Test form accessibility earlier in developper_shortcut_render to let login_form be rendered in erp5_web when anonymous.
* Try to get form from 'form' variable before 'current_form_id'.
......
142
\ No newline at end of file
144
\ No newline at end of file
1.2.18
\ No newline at end of file
1.2.19
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment