Commit d8cf0af6 authored by Ivan Tyagov's avatar Ivan Tyagov

Use system preference to determine to redirect user to ingested document or not.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@32951 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ba5b3cdd
...@@ -60,9 +60,13 @@ MARKER = [\'\', None]\n ...@@ -60,9 +60,13 @@ MARKER = [\'\', None]\n
portal = context.getPortalObject()\n portal = context.getPortalObject()\n
portal_contributions = portal.portal_contributions\n portal_contributions = portal.portal_contributions\n
\n \n
system_preference = portal.portal_preferences.getActiveSystemPreference()\n
if synchronous_metadata_discovery is None:\n if synchronous_metadata_discovery is None:\n
# not specified, fallback to site system preference configuration\n # not specified, fallback to site system preference configuration\n
synchronous_metadata_discovery = portal.portal_preferences.getActiveSystemPreference().isPreferredSynchronousMetadataDiscovery()\n synchronous_metadata_discovery = system_preference.isPreferredSynchronousMetadataDiscovery()\n
\n
if redirect_to_document is None:\n
redirect_to_document = system_preference.isPreferredRedirectToDocument()\n
\n \n
document_kw = {}\n document_kw = {}\n
if use_context_for_container:\n if use_context_for_container:\n
...@@ -144,7 +148,7 @@ return document\n ...@@ -144,7 +148,7 @@ return document\n
</item> </item>
<item> <item>
<key> <string>_params</string> </key> <key> <string>_params</string> </key>
<value> <string>file=None, url=None, portal_type=None, classification=None, synchronous_metadata_discovery=None, redirect_to_document=False, attach_document_to_context=False, use_context_for_container=False, redirect_url=None, **kw</string> </value> <value> <string>file=None, url=None, portal_type=None, classification=None, synchronous_metadata_discovery=None, redirect_to_document=None, attach_document_to_context=False, use_context_for_container=False, redirect_url=None, **kw</string> </value>
</item> </item>
<item> <item>
<key> <string>errors</string> </key> <key> <string>errors</string> </key>
...@@ -186,6 +190,7 @@ return document\n ...@@ -186,6 +190,7 @@ return document\n
<string>context</string> <string>context</string>
<string>portal</string> <string>portal</string>
<string>portal_contributions</string> <string>portal_contributions</string>
<string>system_preference</string>
<string>document_kw</string> <string>document_kw</string>
<string>_write_</string> <string>_write_</string>
<string>_apply_</string> <string>_apply_</string>
...@@ -225,7 +230,7 @@ return document\n ...@@ -225,7 +230,7 @@ return document\n
<none/> <none/>
<none/> <none/>
<none/> <none/>
<int>0</int> <none/>
<int>0</int> <int>0</int>
<int>0</int> <int>0</int>
<none/> <none/>
......
69 71
\ 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