Commit b89849dd authored by Ivan Tyagov's avatar Ivan Tyagov

Do not try to translate user input by using Localizier as it will fill up its...

Do not try to translate user input by using Localizier as it will fill up its internal structure (very inefficient) and lead to increase of ZODB (every modification is a new Localizer object holding all entries).
parent faa0fd3e
...@@ -106,7 +106,8 @@ ...@@ -106,7 +106,8 @@
<!-- Normal mode -->\n <!-- Normal mode -->\n
<input type="text"\n <input type="text"\n
title="Global Search"\n title="Global Search"\n
i18n:domain="ui" i18n:attributes="value; title" \n i18n:domain="ui" \n
i18n:attributes="title" \n
tal:attributes="value search_text;\n tal:attributes="value search_text;\n
name global_search_column;\n name global_search_column;\n
onkeypress string: submitFormOnEnter(event, this.form, \'${global_search_column_script}\');"/>\n onkeypress string: submitFormOnEnter(event, this.form, \'${global_search_column_script}\');"/>\n
...@@ -123,7 +124,8 @@ ...@@ -123,7 +124,8 @@
<input tal:define="params python: {\'%s:method\' %global_search_column_script:\'\',\'%s\' %global_search_column:\'this.value\'};"\n <input tal:define="params python: {\'%s:method\' %global_search_column_script:\'\',\'%s\' %global_search_column:\'this.value\'};"\n
type="text"\n type="text"\n
title="Global Search"\n title="Global Search"\n
i18n:domain="ui" i18n:attributes="value; title"\n i18n:domain="ui" \n
i18n:attributes="title"\n
tal:attributes=\'value search_text;\n tal:attributes=\'value search_text;\n
name global_search_column;\n name global_search_column;\n
onkeypress python:"if(event.keyCode==13){" + real_context.KnowledgePad_generateAjaxCall(context_url+"/"+form_id,box,box_id,params).replace("\\"this.value\\"","this.value")+ "return false;;}"\'/>\n onkeypress python:"if(event.keyCode==13){" + real_context.KnowledgePad_generateAjaxCall(context_url+"/"+form_id,box,box_id,params).replace("\\"this.value\\"","this.value")+ "return false;;}"\'/>\n
...@@ -352,6 +354,10 @@ ...@@ -352,6 +354,10 @@
<key> <string>content_type</string> </key> <key> <string>content_type</string> </key>
<value> <string>text/html</string> </value> <value> <string>text/html</string> </value>
</item> </item>
<item>
<key> <string>expand</string> </key>
<value> <int>1</int> </value>
</item>
<item> <item>
<key> <string>id</string> </key> <key> <string>id</string> </key>
<value> <string>ListBox_asHTMLLibrary</string> </value> <value> <string>ListBox_asHTMLLibrary</string> </value>
...@@ -360,6 +366,10 @@ ...@@ -360,6 +366,10 @@
<key> <string>output_encoding</string> </key> <key> <string>output_encoding</string> </key>
<value> <string>iso-8859-15</string> </value> <value> <string>iso-8859-15</string> </value>
</item> </item>
<item>
<key> <string>title</string> </key>
<value> <unicode></unicode> </value>
</item>
</dictionary> </dictionary>
</pickle> </pickle>
</record> </record>
......
1095 1096
\ 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