Commit 85bcf486 authored by Fabien Morin's avatar Fabien Morin

update ERP5Site_renderQuickSearchDialog to use ERP5Site_processAdvancedSearch...

update ERP5Site_renderQuickSearchDialog to use ERP5Site_processAdvancedSearch to not make conflict with the top search box.
Split in many forms should be required to avoid this trick, but it's not possible to include a form in the main form. And split in many form is a very big change that will affect all sites and all projects.
So for now we will just use this trick like it is in the km.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26395 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d63efd33
...@@ -44,10 +44,10 @@ ...@@ -44,10 +44,10 @@
tal:define="dummy python: request.RESPONSE.setHeader(\'Content-Type\', \n tal:define="dummy python: request.RESPONSE.setHeader(\'Content-Type\', \n
\'text/html;; charset=utf-8\');">\n \'text/html;; charset=utf-8\');">\n
<div>\n <div>\n
<input type="text" size="40" name="new_advanced_search_text" id="SearchableText" class="autofocus"/>\n <input type="text" onkeypress="submitFormOnEnter(event, \'main_form\', \'ERP5Site_processAdvancedSearch\');" class="input-text" name="top_your_search_text" size="40" accesskey="4"/>\n
<select size="1" class="input" name="new_advanced_search_portal_type">\n <select size="1" class="input" name="top_your_search_portal_type">\n
<option value="" selected value="" i18n:translate="" i18n:domain="ui">Everything</option>\n <option value="" selected="selected" i18n:translate="" i18n:domain="ui">Everything</option>\n
<option value="all" selected value="" i18n:translate="" i18n:domain="ui">All Documents</option>\n <option value="all" i18n:translate="" i18n:domain="ui">All Documents</option>\n
<option tal:repeat="ptype here/getPortalDocumentTypeList"\n <option tal:repeat="ptype here/getPortalDocumentTypeList"\n
tal:attributes="value ptype"\n tal:attributes="value ptype"\n
tal:content="python:ptype"\n tal:content="python:ptype"\n
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
<option value="Person" i18n:translate="" i18n:domain="ui">Person</option>\n <option value="Person" i18n:translate="" i18n:domain="ui">Person</option>\n
<option value="Organisation" i18n:translate="" i18n:domain="ui">Organisation</option>\n <option value="Organisation" i18n:translate="" i18n:domain="ui">Organisation</option>\n
</select>\n </select>\n
<input type="submit" name="ERP5Site_viewQuickSearchResultList:method" value="Search"\n <input type="submit" name="ERP5Site_processAdvancedSearch:method" value="Search"\n
i18n:attributes="value" i18n:domain="ui"/>\n i18n:attributes="value" i18n:domain="ui"/>\n
</div>\n </div>\n
</tal:block>\n </tal:block>\n
......
...@@ -343,7 +343,7 @@ ...@@ -343,7 +343,7 @@
<input tal:condition="python: not line.isSummary() and line.getObject() is not None"\n <input tal:condition="python: not line.isSummary() and line.getObject() is not None"\n
type="checkbox" value="checked" name="uids:list"\n type="checkbox" value="checked" name="uids:list"\n
tal:attributes="checked python: line.getUid() in checked_uid_set;\n tal:attributes="checked python: line.getUid() in checked_uid_set;\n
value line/getUid;">\n value line/getUid;" />\n
<tal:block tal:condition="python: line.isSummary() or line.getObject() is None"></tal:block>\n <tal:block tal:condition="python: line.isSummary() or line.getObject() is None"></tal:block>\n
</td>\n </td>\n
<tal:block tal:repeat="value render_result">\n <tal:block tal:repeat="value render_result">\n
......
702 703
\ No newline at end of file \ 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